html, h6 {
  font-size: 12px;
  overflow: hidden;
}

.main{
  width: 100%;
  height: 100%;
}

.left, .right {
  width: 50%;
  height: 100%;
}
.options {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 530px;
  height: 155px;
  margin-top: 10px;
}

.card-trf {
  width: calc(100% - 6px);
}

.card {
  position: relative;
  margin: 0 2px;
}

.card-header {
  text-align: center;
  padding: 4px;
  color: white;
  background: #24282D;
  margin: 0;
  margin-bottom: 4px;
}

.card-body {
  padding: 0 2px;
  overflow: hidden;
  height: calc(100% - 20px);
  width: 100%;
}

#pie {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
}

#donut {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
}

#bar {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}

#rf {
  margin-top: 0;
  width: calc(100% - 4px);
  height: calc(100% - 40px);
  display: flex;
  justify-content: center;
}


label {
  margin: 0px;
  font-size: 12px;
}

.grid-input {
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: lightgray;
  width: 40px;
}

.chart {
  height: calc(50% - 5px);
  width: calc(100% - 6px);
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.loader {
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #24282D;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

div::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 5px;
}
div::-webkit-scrollbar-track-piece {
  background: #E9ECEF;
  border-radius: 5px;
}
div::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

.range-filter-container {
  width: 100% !important;
}