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

.options {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    height: 100%;
  }

  cf-highlighted-field{
    background-color: #b8e6bb;
    padding:2px 3px;
    border-radius: 5px;
  }

  #text-search-input{
    font-size: 12px;
  }

  .card {
    position: relative;
    margin: 0 2px;
  }
  
  .card-ts{
    width: calc(100% - 6px);
    margin-top: 15px;
  }
  
  .card-header {
    text-align: center;
    padding: 4px;
    color: black;
    margin: 0;
    margin-bottom: 4px;
  }
  
  .card-body {
    padding: 0 2px;
    overflow: hidden;
  }
  
  #pie{
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    display: flex;
    justify-content: center;
  }
  
  .time-picker-container {
    height: 15px;
  }
  
  label {
    margin: 0px;
    font-size: 12px;
  }
  
  .chart {
    height: calc(100% - 80px);
    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;
    overflow: hidden;
  }
  
  .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;
  }
  