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

#chart{
    width: 100%;
    height: calc(100% - 5px);
}

.widget {
    background: white;
    border: 0.5px solid #CCC;
    margin: 5px;
}

.imanager {
    height: calc(20% - 10px);
    width: calc(100% - 10px);
}

.slicer {
    margin-top: 0;
    height: 100%;
    width: calc(50% - 2px);
}

.slicer-container {
    display: flex;
    height: calc(30% - 10px);
    width: 100%;
}

html, body, .row {
    height: 100%;
    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);
    }
}

body {
    background: #DDD;
}

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;
  }
  
#adt-legend-more-button {
    font-size: 9px;
}