/* Main Page */

.fsdfsdf {   /* * */
    /* Prevent Select */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                        supported by Chrome, Edge, Opera and Firefox */
}

html {
    height: 100%;
    width: 100%;
    overflow: hidden;   
    margin: 0;
    padding: 0;
}

body {
    font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.navbar {
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black;
    z-index: 999;
}

.navbar-color{
    background-color: #021526;
}

.sidepanel {
    height: 100%; 
    width: 0; 
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: #021526;
    overflow-x: hidden;
    padding-top: 60px; 
    transition: 0.5s; 
    overflow-y: scroll;
}

.closebtn {
    position: absolute;
    top: 12px;
    right: 22px;
    background-color:  #021526;
    color: #c3c3c3;;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    margin: 0;
}

.closebtn2 {
    position: absolute;
    background-color:  #021526;
    color: #c3c3c3;;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    text-align: end;
    right: 0;
    margin: 0 22px 12px 0;
}
  
.openbtn {
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    background-color:  #021526;
    border: none;
    color: white;
    margin: 0;
    padding: 0;
}
  
.closebtn:hover,.closebtn2:hover {
    color: white;
}

.sidepanel-content{
    padding: 16px;
}

.side-panel-h3{
    text-align: center;
    color: white;
}

.sidepanel p{
    color: white;
}

.login-form {
    vertical-align: middle;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #021526;
    color: white;
    position: absolute; 
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
}

.btn-primary,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus {
    background-color: #393E46;
    border-color: #393E46;
}

.btn-primary:hover {
    background-color: darkslategray;
    border-color: darkslategray;
}

#overlay-menu {
    background-color: whitesmoke;
    display: block;
    font-size: 0;
    background-image:url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' width='40px'><text x='10' y='10' fill='grey' font-size='16'>_____</text></svg>");
    content-visibility: hidden;
    position: absolute;
    padding: 8px 40px 8px 8px;
    margin: 10px;
    top: 56px;
    right: 0;
    z-index: 999;
    width: 40px;
    height: 40px;
}

#overlay-menu:hover {
    width: fit-content;
    height: fit-content;
    background-image: none;
    content-visibility: visible;
    font-size: 16px;
}

#cesiumContainer {
    position: absolute; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
}

#slider-date{
    margin: auto 30px auto 0;
    position: absolute;
    right: 0;
    bottom: 4px;
    z-index: 2;
    color: white;
}

#videoIcon {
    margin: auto 30px auto 0;  
    position: absolute; 
    left: 30px; 
    bottom: 4px; 
    z-index: 2; 
    color: white;
}

.slidecontainer {
    position: absolute;
    width: 100%; 
    bottom: 0;
    z-index: 1;
    background: #444444; 
    opacity: 1; 
    -webkit-transition: .2s;
    transition: opacity .2s;
    text-align: start;
}
  
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 80%; 
    height: 1px; 
    outline: none;
    background: white; 
    direction: ltr;
    margin: 14px 0 14px 60px;
}

@media (max-width: 1300px) {
    .slider{ 
        -webkit-appearance: none;  /* Override default CSS styles */
        appearance: none;
        width: 70%; 
        height: 1px; 
        outline: none;
        background: white; 
        direction: ltr;
        margin: 14px 0 14px 60px;
    }
 }

 @media (max-width: 900px) {
    .slider{ 
        -webkit-appearance: none;  /* Override default CSS styles */
        appearance: none;
        width: 50%; 
        height: 1px; 
        outline: none;
        background: white; 
        direction: ltr;
        margin: 14px 0 14px 60px;
    }
 }

 @media (max-width: 600px) {
    .slider{ 
        -webkit-appearance: none;  /* Override default CSS styles */
        appearance: none;
        width: 30%; 
        height: 1px; 
        outline: none;
        background: white; 
        direction: ltr;
        margin: 14px 0 14px 60px;
    }
 }

.slidecontainer:hover {
    opacity: 1;
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    width: 6px;
    height: 26px;
    background: black; 
    cursor: pointer; 
}

.slider::-moz-range-thumb {
    width: 6px; 
    height: 26px; 
    background: black; 
    cursor: pointer;
}