*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#mainContainer{
    width: 100%;
}
#cesiumContainer {
    height: 100vh;
}

#loaderContainer {
    z-index: 1;
    position: absolute;
    height: 280px;
    width: 350px;
    display: none;
    
}
#loaderText{
    position: absolute;
    width: 100%;
    bottom: 0px;
    padding: 5px 5px 5px 10px;
    color: white;
    text-align: center;
}
.arrow {
    transform: scale(3);
}

#sidebar {
    width: 20%;
    min-width: 400px
}

.viewerContainer {
    width: 80%;
    height: 100vh;
}

.loader {
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    border: 15px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    animation: orbita 2s linear infinite;
    -webkit-animation: orbita 2s linear infinite;
    -moz-animation: orbita 2s linear infinite;
    -o-animation: orbita 2s linear infinite;
}

.loaderText {
    left: 50%;
    top: 30%;
}

@keyframes orbita {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}