.showAfterLoading {
    display: none;
}

#hotspotTitleHover {
    position: fixed;
    z-index: 10;
    padding: 5px 10px;
    background: var(--primary-color-light);
    color: var(--secondary-color-dark);
    display: none;
    margin-bottom: 20px;
    pointer-events: none;
}

body.closeup #mobileMenu {
    right: -55px;
}
body.closeup #logo {
    left: -300px;
}
#radar {
    display: none;
    position: fixed;
    bottom: 12px;
    right: 0;
    transition: 1s margin-bottom, 1s right;
    padding: 10px;
}
#radar.noMap {
    margin-bottom: -245px;
}

#radar #radarButtons {
    position: absolute;
    top: -45px;
    right: 30px;
    display: flex;
}


#radar #radarButtons > div {
    margin: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
/*
#radar #orbitNavigation, #radar #radarNavigation, #radar #infoPopup, #radar #fullscreen, #radar #toggleRadar, #radar #navigationPopup {
    position: absolute;
    top: -36px;
    margin: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: no-repeat center/contain;
}*/
#radar .fa {
    font-size: 30px;
    color: white;
}
#fullscreen #fullscreenMinimize {
    display: none;
}
#radar #radarNavigation {
    right: 40px;
}


#radar #toggleRadar {
    /*right: 240px;*/
    background-image: url(../images/icons/ico_radar.svg);
}

#radar #navigationPopup {
    /*right: 190px;*/
}
#radar #infoPopup {
    /*right: 140px;*/
}
#radar #orbitNavigation {
    /*right: 90px;*/
    background-image: url(../images/icons/map_orbit.svg);
}

#radar #fullscreen {
    /*right: 40px;*/
}

#map {
    width: 300px;
    height: 225px;
    position: relative;
}

.frontMapContainer {
    width: 300px;
    height: 225px;
}
.floor {
    border: none;
    background: transparent;
    color: var(--primary-color-light);
    display: block;
    text-align: center;
    margin: 0 auto;
}
.floor:disabled {
    color: var(--primary-color-dark);
}
#floorButtons {
    position: absolute;
    top: 33%;
    left: -10%;
    transition: 1s all;
}
.radarMoveTo {
    position: absolute;
    background-color: var(--secondary-color-light);
    color: var(--primary-color-light);
    font-weight: 700;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.radarMoveTo::before {
    content: attr(data-name);
    position: absolute;
    top: 100%;
    text-align: center;
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
    width: 120px;
    font-size: 0.9em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s 0.5s;
}
.radarMoveTo:hover::before {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.radarMoveTo.selected {
    background-color: #d3d800;
    color: var(--secondary-color-dark);
}


.slidecontainer {
    width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 30px;
    background: var(--primary-color);
    outline: none;
    opacity: 0.9;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 25px;
    margin-top: 5px;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 47px; /* Set a specific slider handle width */
    height: 47px; /* Slider handle height */
    background: var(--tertiary-color); /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 10px;
}

.slider::-moz-range-thumb {
    width: 30px; /* Set a specific slider handle width */
    height: 30px; /* Slider handle height */
    background: var(--tertiary-color); /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 5px;
}


#radar.radarHidden {
    margin-bottom: 0;
}


@media only screen and (min-width: 1024px) {
    #toggleRadar {
        display: none;
    }
    body.closeup #radar {
        right: -350px;
    }
}
@media only screen and (max-width: 1023px) {
    body.closeup #radar {
        margin-bottom: -300px;
    }
    #radar {
        margin-bottom: -245px;
        bottom: 12px;
        left: 0;
        right: 0;
        padding: 10px 0;
        background: rgba(0,0,0,0.6);
    }
    #map {
        margin: 0 auto;
    }
}


#closeCloseupMode {
    border: none;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    background: none;
    font-size: 22px;
    line-height: 35px;
    vertical-align: middle;
}
#closeManageMat {
    position: fixed;
    top: 18px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}
body.closeup #productInfo {
    margin-left: 0;
}
#productInfo {
    position: fixed;
    bottom: 12px;
    left: 0;
    margin-left: -350px;
    width: 350px;
    z-index: 1000;
    background-color: rgb(10 10 10 / 80%);
    border-radius: 0;
    transition: 1s margin-left, 1s margin-bottom, 1s bottom, 1s top;
    color: var(--primary-color);
    text-align: center;
    backdrop-filter: blur(8px);
    max-height: 100%;

}
body.manageMat #productConfigurator {
    margin-left: 0;
}

#productConfigurator {
    position: fixed;
    bottom: 12px;
    left: 0;
    margin-left: -400px;
    width: 400px;
    z-index: 1100;
    background-color: rgb(10 10 10 / 80%);
    border-radius: 0;
    transition: 1s margin-left;
    color: var(--primary-color);
    text-align: center;
    backdrop-filter: blur(8px);
    padding-top: 20px;
}

#toggleProductInfo {
    position: fixed;
    top: 20px;
    right: 10px;
    border: none;
    color: var(--primary-color);
    background: transparent;
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: none;
}
#toggleProductInfo:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f062";
}
#productInfo.open #toggleProductInfo:after {
    content: "\f063";
}

@media only screen and (max-width: 400px) {
    #productInfo.needToShowMore #toggleProductInfo {
        display: block;
    }

    #productConfigurator, #productInfo {
        width: 100%;
    }

    #productInfo {
        margin-left: 0 !important;
        top: 100%;
        bottom: 0;
    }
    body.closeup #productInfo {
        top: calc(100% - 82px);
        bottom: 0;
    }
    body.closeup #productInfo.open {
        top: 0;
    }
    #hotspotTitleHover {
        display: none !important;
    }
}

#closeCloseupMode i {
    color: var(--primary-color-light);
    vertical-align: middle;
    display: block;
}
body.closeup .showCloseButtonDiv, body.earthCloseup .showCloseButtonDiv, body.manageMat .showCloseMatDiv  {
    top: 0;
}
#productInfo span {
    width: 100%;
    padding: 15px 30px;
    display: block;
    text-align: left;
}
#productInfo button {
    margin-bottom: 15px;
}
#productInfo .productTitleTT {
    padding-right: 60px;
}
.productTitleTT {
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 30px !important;
    font-size: 20px;
    line-height: 25px;
}
.showCloseButtonDiv, .showCloseMatDiv {
    position: fixed;
    top: -60px;
    left: 50%;
    z-index: 1000;
    width: 50px;
    transition: 1s all;
    margin-left: -25px;
    text-align: center;
    padding-top: 9px;
    padding-bottom: 9px;
    background: radial-gradient(rgb(121 158 220), rgb(237 0 29));
    border-radius: 0 0 25px 25px;
}

#popupHotspot .contentBtn {
    background-color: #ededed;
    color: #172e55;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 10px;
}
#popupHotspot .contentBtn.btn:hover, #popupHotspot .contentBtn.btn:focus, #popupHotspot .contentBtn.active {
    border: solid 1px #172e55;
    background-color: #172e55;
    color: #ededed;
}
#popupHotspot .contactsDocuments {
    display: none;
    border: solid 1px #172e55;
    background: var(--primary-color-light);
    padding: 20px;
    margin-bottom: 5px;
}
#popupHotspot .button-like {
    margin-bottom: 5px;
    margin-top: 10px;
}



#playerNavigationMessage, #timelineNavigationMessage {
    position: fixed;
    bottom: 12px;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px;
    color: white;
    opacity: 0;
    transition: 2s opacity;
    pointer-events: none;
}

.isMobile #playerNavigationMessage, .isMobile #timelineNavigationMessage {
    bottom: 60px;
    text-align: center;
}

.playerNavigation.orbitView #playerNavigationMessage, .timelineNavigation.orbitView #timelineNavigationMessage {
    opacity: 1;
}

#objectLoadingBar {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 150px;
    height: 15px;
}

#objectLoadingBar span {
    position: absolute;
    top: -15px;
    left: 0;
    line-height: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

#objectLoadingBar div {
    line-height: 15px;
    background-color: var(--tertiary-color-dark);
    transition: all 01s;
    font-size: 12px;
    font-weight: bold;
    color: white;
    padding: 0 5px;
}

@media only screen and (max-width: 1023px) {
    #objectLoadingBar {
        bottom: 50px;
    }
}