﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0%;
    background-color:gray;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    /*overflow: auto;*/
    max-width: 5000px;
    min-height: 100vh;
    background-color: gray;
}

.indicator {
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-square {
    width: 15px;
    height: 15px;
    border-radius: 2px;
    border: 1px solid black;
}

.spinnerDiv {
    position: absolute;
    z-index: 3;
    height: 20px;
    width: 20px;
}

.location {
    background-color: #f0f0f0;
    background-position: center;
    margin: 0px;
    position: relative;
    padding:0;
}

.description {
    display: grid;
    color: white;
    background-color: black;
    min-width: 120px;
    position: absolute;
    text-align: left;
    font-size: 10px;
    border-radius: 7px;
    z-index: 1000;
    bottom: 15px;
    left: 40%;
    margin-left: 15px;
    padding: 5px 5px;
}
    .description.flip {
        left: auto;
        right: 40%;
        margin-left: 15px;
    }

.dot {
    height: 10px;
    width: 10px;
    border-radius: 60%;
    display: inline-block;
}

#loadertest {
    position: absolute;
    left: 25%;
    top: 50%;
    z-index: 1;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid blue;
    border-bottom: 16px solid blue;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.col{
    padding:0;
}
/*Show less and more for dashboard cards*/

/* Center the loader */
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid blue;
    border-bottom: 3px solid blue;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    z-index:99999;
    opacity: 1;
}
#sidebar-loader {
    position: absolute;
    left: 50%;
    top: 20%;
    z-index: 1;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid blue;
    border-bottom: 3px solid blue;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 99999;
}
#loginLoader {
    position: absolute;
    left: 50%;
    top: 35%;
    z-index: 1;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid blue;
    border-bottom: 3px solid blue;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
/*.rz-chart svg {
    overflow: visible;
}*/
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

#myDiv {
    display: none;
    text-align: center;
}
@media (max-width: 640.98px){
    .container {
        font-size: 10px;
    }

    .top-row h5 {
        font-size: x-small;
    }

    .location {
        font-size: x-small;
        display: inline-block;
        background-position-x: left;
        border: 1px solid hidden;
        margin: 0%;
        padding: 10px;
    }

    .card {
        background-color: #333;
        overflow: auto;
        white-space: nowrap;
        /*padding: 10px;*/
    }

    #loader {
        border: 2px solid #f3f3f3;
        border-radius: 100%;
        border-top: 2px solid blue;
        border-bottom: 2px solid blue;
        width: 20px;
        height: 20px;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        position: absolute;
        left: 50%;
        top: 15%;
    }
}

@media (max-height: 450px) {
    #loader {
        border: 2px solid #f3f3f3;
        border-radius: 100%;
        border-top: 2px solid blue;
        border-bottom: 2px solid blue;
        width: 20px;
        height: 20px;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        position: absolute;
        left: 50%;
        top: 10%;
    }
    html, body {
        margin: 0%;
        min-height: 100vh;
        overflow-y: inherit;
        
    }
    .card{
        font-size:10px;
    }
    .container{
        width:auto;
    }

}
@media (max-width: 768px) and (orientation: landscape) {
    /* Your CSS for landscape small screen devices */
}

.highcharts-title {
    font-size: 10px !important;
}

@media (min-width: 1000px) {
    .highcharts-title {
        font-size: 16px !important;
    }
}

.highcharts-axis-title {
    font-size: 10px !important;
}

@media (min-width: 1000px) {
    .highcharts-axis-title {
        font-size: 15px !important;
    }
}