:root {
    --slider-width: 50px;
    --container-width: 500px;
    --button-width: 10px
}

.chart-container canvas {
    border: 2px solid black;
}

.chart-container {
    height: 75px;
}

.canvas-container {
    position: relative;
}

.navigator-container {
    position: absolute;
    width:100%;
    padding: 0px 0px 0px 0px;
    height:80px;
}

.slider-container {
    border: 2px solid black!important;
    height: 50px;
    width: calc(100%-125px);
    margin: 0;
    margin: 0px 60px;
    position:relative;
}

.slider-window {
    background-color: rgba(97, 97, 97, 0.425);
    height: 48px;
    position: absolute;
    left: calc(50% - 25px);
    cursor: move;
    margin: 0;
    border: none;
    z-index:999;
}

.left-button {
    margin: 0;
    background-color: rgb(100, 100, 100);
    width: var(--button-width);
    height: 48px;
    position: absolute;
    left: 0px;
    cursor: w-resize!important;
    border: none;
    padding: 0;
}

.right-button {
    padding: 0;
    border: none;
    margin: 0;
    background-color: rgb(100, 100, 100);
    width: var(--button-width);
    height: 48px;
    position: absolute;
    right: 0px;
    cursor: e-resize!important;
}

.static-canvas {
    border: none !important;
    position: absolute;
    width: calc(100%);
    pointer-events: none;
    z-index:1;
}

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #FFA400;
    border-radius: 50%;
    width:80px;
    height:80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: calc(50% - 40px);
    position: absolute;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    }
}

.heatmap-slider {
    accent-color: darkgrey;
    width: 100%;
}

.small-slider {
    width:70px;
}

@media only screen and (max-width: 768px) {
    .small-slider {
        width:60px;
    }
}
