* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -ms-content-zooming: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    background: black;
}


/* body {
            opacity: 0;
        } */

#titleBar {
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    height: 40px;
    text-align: center;
}

.mobile #titleBar {
    height: 50px;
    right: 50px;
}


/* If there is a fullscreen button the title bar must make space for it */

body.fullscreen-enabled #titleBar {
    right: 80px;
}

body.fullscreen-enabled.mobile #titleBar {
    right: 100px;
}


/* If there are multiple scenes the title bar must make space for the scene list toggle */

body.multiple-scenes #titleBar {
    left: 40px;
}

body.multiple-scenes.mobile #titleBar {
    left: 50px;
}

#titleBar .sceneName {
    width: 100%;
    height: 100%;
    line-height: 30px;
    padding: 5px;
    background-color: rgb(58, 68, 84);
    background-color: rgba(58, 68, 84, 0.8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.mobile #titleBar .sceneName {
    line-height: 40px;
}

#fullscreenToggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: rgb(103, 115, 131);
    background-color: rgba(103, 115, 131, 0.8);
}

.mobile #fullscreenToggle {
    width: 50px;
    height: 50px;
}

body.fullscreen-enabled #fullscreenToggle {
    display: block;
}

#fullscreenToggle .icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
}

.mobile #fullscreenToggle .icon {
    top: 10px;
    right: 10px;
}

#fullscreenToggle .icon.on {
    display: none;
}

#fullscreenToggle .icon.off {
    display: block;
}

#fullscreenToggle.enabled .icon.on {
    display: block;
}

#fullscreenToggle.enabled .icon.off {
    display: none;
}

#autorotateToggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: rgb(103, 115, 131);
    background-color: rgba(103, 115, 131, 0.8);
}

.mobile #autorotateToggle {
    width: 50px;
    height: 50px;
}


/* If there is a fullscreen button, autorotate must placed a bit to the left */

body.fullscreen-enabled #autorotateToggle {
    right: 40px;
}

body.fullscreen-enabled.mobile #autorotateToggle {
    right: 50px;
}

#autorotateToggle .icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
}

.mobile #autorotateToggle .icon {
    top: 10px;
    right: 10px;
}

#autorotateToggle .icon.on {
    display: none;
}

#autorotateToggle .icon.off {
    display: block;
}

#autorotateToggle.enabled .icon.on {
    display: block;
}

#autorotateToggle.enabled .icon.off {
    display: none;
}

#sceneListToggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: rgb(103, 115, 131);
    background-color: rgba(103, 115, 131, 0.8);
}

.mobile #sceneListToggle {
    width: 50px;
    height: 50px;
}

#sceneListToggle .text {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 100%;
    line-height: 30px;
}

#sceneListToggle .icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
}

.mobile #sceneListToggle .icon {
    top: 10px;
    right: 10px;
}

#sceneListToggle .icon.on {
    display: none;
}

#sceneListToggle .icon.off {
    display: block;
}

#sceneListToggle.enabled .icon.on {
    display: block;
}

#sceneListToggle.enabled .icon.off {
    display: none;
}

#sceneList {
    position: absolute;
    top: 0;
    left: -220px;
    padding-top: 40px;
    width: 220px;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin-left: 0;
    -webkit-transition: margin-left 0.5s ease-in-out;
    transition: margin-left 0.5s ease-in-out;
}

.mobile #sceneList {
    padding-top: 50px;
}

#sceneList .scenes {
    width: 100%;
    background-color: rgb(58, 68, 84);
    background-color: rgba(58, 68, 84, 0.8);
}

.mobile #sceneList {
    width: 100%;
    height: 100%;
    left: -100%;
}

.mobile #sceneList.enabled {
    margin-left: 100%;
}

.mobile #sceneList .scenes {
    height: 100%;
}

#sceneList.enabled {
    margin-left: 220px;
}

#sceneList .scene {
    display: block;
    width: 100%;
    height: 30px;
}

.mobile #sceneList .scene {
    height: 40px;
}

#sceneList .scene .text {
    width: 100%;
    height: 100%;
    padding: 0 15px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile #sceneList .scene .text {
    line-height: 40px;
}


/* .no-touch #sceneList .scene:hover {
    background-color: rgb(103, 115, 131);
    background-color: rgba(103, 115, 131, 0.8);
} */

#sceneList .scene.current {
    background-color: rgb(103, 115, 131);
    background-color: rgba(103, 115, 131, 0.8);
}


/* Hide scene list when only a single scene exists */

body.single-scene #sceneList,
body.single-scene #sceneListToggle {
    display: none;
}


/* Link hotspot */

.link-hotspot {
    width: 5vh;
    height: 11vh;
    /* margin-left: -30px;
    margin-top: -30px; */
    opacity: 0.9;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.mobile .link-hotspot {
    width: 70px;
    height: 70px;
}

.zone-hotspot-icon {
    width: 100%;
    height: 50%;
    cursor: pointer;
}

.link-hotspot-icon {
    width: 145%;
    height: 65%;
    cursor: pointer;
}

.info-hotspot-icon {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mobile .link-hotspot {
    top: 19px;
    /* ( 70 - (16 + 2*8) ) / 2 */
}


/* Info hotspot */

.info-hotspot {
    background-image: url("../../res/360_ui/view_icon.png");
    /* background: yellow; */
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    opacity: 0.9;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    cursor: pointer;
    background-position: center;
    animation: hotspotIcon_pulsatingLoop 1.4s infinite;
}

@keyframes hotspotIcon_pulsatingLoop {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 115%;
    }
    100% {
        background-size: 100%;
    }
}

.hotspot_pulsating_circle {
    top: 14%;
    left: -3%;
    width: 150%;
    height: 40%;
    border-radius: 100%;
    background: white;
    opacity: 0.3;
    position: absolute;
    transform: scale(0.7);
    background-blend-mode: overlay;
    pointer-events: none;
    animation: pulsatingEffect 1.4s infinite;
}

@keyframes pulsatingEffect {
    0% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.info-hotspot:hover {
    background-image: url("../../res/360_ui/view_onHover.png");
}

.info-hotspot .info-hotspot-header {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(103, 115, 131);
    cursor: pointer;
    -webkit-transition: width 0.3s ease-in-out 0.5s, border-radius 0.3s ease-in-out 0.5s;
    transition: width 0.3s ease-in-out 0.5s, border-radius 0.3s ease-in-out 0.5s;
}

.mobile .info-hotspot .info-hotspot-header {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}


/* .desktop.no-touch .info-hotspot .info-hotspot-header:hover {
    width: 260px;
    border-radius: 5px;
    -webkit-transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
} */

.desktop .info-hotspot.visible .info-hotspot-header,
.desktop.no-touch .info-hotspot.visible .info-hotspot-header:hover {
    width: 260px;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.mobile .info-hotspot .info-hotspot-icon-wrapper {
    width: 50px;
    height: 50px;
}

.info-hotspot .info-hotspot-icon {
    width: 90%;
    height: 90%;
    margin: 5%;
}

.info-hotspot .info-hotspot-title-wrapper {
    position: absolute;
    left: 40px;
    top: 0;
    width: 0;
    height: 40px;
    padding: 0;
    overflow: hidden;
    -webkit-transition: width 0s 0.4s, padding 0s 0.4s;
    transition: width 0s 0.4s, padding 0s 0.4s;
}

.info-hotspot .info-hotspot-title {
    display: inline-block;
    vertical-align: middle;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.info-hotspot .info-hotspot-close-wrapper {
    position: absolute;
    left: 260px;
    top: 0;
    height: 40px;
    width: 40px;
    border-top-right-radius: 5px;
    background-color: rgb(78, 88, 104);
    visibility: hidden;
    -ms-transform: perspective(200px) rotateY(90deg);
    -webkit-transform: perspective(200px) rotateY(90deg);
    transform: perspective(200px) rotateY(90deg);
    -ms-transform-origin: 0 50% 0;
    -webkit-transform-origin: 0 50% 0;
    transform-origin: 0 50% 0;
    -webkit-transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s, transform 0.3s 0.3s, visibility 0s 0.6s;
    transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s, transform 0.3s 0.3s, visibility 0s 0.6s;
}

.desktop .info-hotspot.visible .info-hotspot-close-wrapper {
    visibility: visible;
    -ms-transform: perspective(200px) rotateY(0deg);
    -webkit-transform: perspective(200px) rotateY(0deg);
    transform: perspective(200px) rotateY(0deg);
    -webkit-transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s, visibility 0s 0s;
    transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s, visibility 0s 0s;
}

.info-hotspot .info-hotspot-close-icon {
    width: 70%;
    height: 70%;
    margin: 15%;
}

.info-hotspot .info-hotspot-text {
    position: absolute;
    width: 300px;
    height: auto;
    max-height: 200px;
    top: 40px;
    left: 0;
    padding: 10px;
    background-color: rgb(58, 68, 84);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow-y: auto;
    visibility: hidden;
    /* rotate(90deg) causes transition flicker on Firefox 58 */
    -ms-transform: perspective(200px) rotateX(-89.999deg);
    -webkit-transform: perspective(200px) rotateX(-89.999deg);
    transform: perspective(200px) rotateX(-89.999deg);
    -ms-transform-origin: 50% 0 0;
    -webkit-transform-origin: 50% 0 0;
    transform-origin: 50% 0 0;
    -webkit-transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s, visibility 0s 0.3s;
    transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s, visibility 0s 0.3s;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.desktop .info-hotspot.visible .info-hotspot-text {
    visibility: visible;
    -ms-transform: perspective(200px) rotateX(0deg);
    -webkit-transform: perspective(200px) rotateX(0deg);
    transform: perspective(200px) rotateX(0deg);
    -webkit-transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s, transform 0.3s 0.3s, visibility 0s 0s;
    transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s, transform 0.3s 0.3s, visibility 0s 0s;
}


/* Hide controls when width is too small */

@media (max-width: 600px) {
    body.view-control-buttons .viewControlButton {
        display: none;
    }
}

.viewControlButton .icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
}


/* 360________________________________________ */

#ref {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../../res/360_ui/ref.png");
    z-index: 1;
    left: 14%;
}

.small_icon {
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    transform-origin: center bottom;
    background-position: center;
    z-index: 1;
    cursor: pointer;
}

#info_btn {
    background-image: url("../../res/360_ui/info_icon.png");
    right: 2.1%;
}

#info_btn:hover {
    background-image: url("../../res/360_ui/info_icon_hover.png");
}

#mute_btn {
    background-image: url("../../res/360_ui/unmute_icon.png");
    right: 5.7%;
}

#mute_btn:hover {
    background-image: url("../../res/360_ui/unmute_icon_hover.png");
}

#unmute_btn {
    background-image: url("../../res/360_ui/mute_icon.png");
    right: 5.7%;
}

#unmute_btn:hover {
    background-image: url("../../res/360_ui/mute_icon_hover.png");
}

#fullscreen_btn {
    background-image: url("../../res/360_ui/fullscreen_icon.png");
    right: 9.3%;
}

#fullscreen_btn:hover {
    background-image: url("../../res/360_ui/fullscreen_icon_hover.png");
}

#unfullscreen_btn {
    background-image: url("../../res/360_ui/fullscreen_icon_close.png");
    right: 9.3%;
}

#unfullscreen_btn:hover {
    background-image: url("../../res/360_ui/fullscreen_icon_close_hover.png");
}

#zoomOut_btn {
    background-image: url("../../res/360_ui/zoom_out_icon.png");
    right: 13%;
}

#zoomOut_btn:hover {
    background-image: url("../../res/360_ui/zoom_out_icon_hover.png");
}

#zoomIn_btn {
    background-image: url("../../res/360_ui/zoom_in_icon.png");
    right: 16.6%;
}

#zoomIn_btn:hover {
    background-image: url("../../res/360_ui/zoom_in_icon_hover.png");
}

#explore_btn:hover {
    background-image: url("../../res/360_ui/explore_btn_hover.png");
}

#autorotateToggle {
    display: none;
}


/* .pop_up_window {
            display: none;
            position: relative;
            height: 100vh;
            max-height: 100%;
            margin: 0 auto;
            transform: scale(0.8);
            z-index: 100;
            background-color: brown;
            border-radius: 30px;
        } */

#iframe_container {
    /* background-color: yellowgreen; */
}

#popUp_background_image {
    width: 96vw;
    max-width: 169.78vh;
    height: 56.25vw;
    max-height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    top: 0;
    transform: scale(1);
    z-index: 99;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
    background-image: url("../../res/common/dark_popUp.png");
    background-position: center;
    /* background-image: url("../../res/360_ui/ref_new360.png"); */
    /* display: none; */
}

#toVideo_interactiveArea {
    width: 8%;
    height: 7%;
    top: 63%;
    left: 49%;
    /* background: crimson; */
    position: absolute;
    z-index: 15;
    cursor: pointer;
    /* display: none; */
}

.btn_container {
    width: 100%;
    height: 4.7vh;
    /* top: 89vh; */
    bottom: 6%;
    position: absolute;
    z-index: 101;
    display: none;
}

#skipVideo_btn {
    float: right;
    margin: 0 3%;
    cursor: pointer;
}

#skipVideo_btn:hover {
    background: white;
    color: black;
}

.common_btn {
    width: 24.3vh;
    height: 100%;
    text-align: center;
    color: white;
    border: 0.1vh solid white;
    background: none;
}

@font-face {
    font-family: "Audrey-MediumOblique";
    src: url("../../res/Fonts/Audrey-MediumOblique.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-Regular";
    src: url("../../res/Fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-LightItalic";
    src: url("../../res/Fonts/Montserrat-LightItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url("../../res/Fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-MediumItalic";
    src: url("../../res/Fonts/Montserrat-MediumItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../../res/Fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-SemiBoldItalic";
    src: url("../../res/Fonts/Montserrat-SemiBoldItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Verdana Italic";
    src: url("../../res/Fonts/Verdana Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Oswald-Medium";
    src: url("../../res/Fonts/Oswald-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Audrey-Bold";
    src: url("../../res/Fonts/Audrey-Bold.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

.btn_text {
    font-family: "Montserrat-Regular";
    font-size: 1.5vh;
    margin-top: 1.3vh;
}

#iframe_container {
    display: none;
}


/* .closeBtn {
            width: 4%;
            height: 7%;
            top: 4%;
            right: -2%;
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
            z-index: 2;
            cursor: pointer;
        } */


/* #pop_up_closeBtn {
            background-image: url("../../res/lightboxes/closeDark_popUp_btn.png");
            cursor: pointer;
        } */

#map_closeBtn {
    background-image: url("../../res/lightboxes/closeBright_popUp_btn.png");
    cursor: pointer;
}

#end_closeBtn {
    background-image: url("../../res/lightboxes/closeBright_popUp_btn.png");
    cursor: pointer;
}

.link-hotspot_text {
    position: absolute;
    font-family: "Montserrat-Regular";
    text-align: center;
    font-size: 10vh;
    /* bottom: -59%; */
    pointer-events: none;
    transform: scale(0.17);
    line-height: 15vh;
    transform-origin: top center;
    /* background: aliceblue; */
    left: -699%;
    top: 49%;
    width: 1500%;
}

#audio_pop_up {
    /* background-image: url("../../res/360_ui/ref_audio.png"); */
}

#video_pop_up {
    /* background-image: url("../../res/360_ui/ref_video.png"); */
}


/* IMAGE____________________________________ */


/* #image_selector {
    width: 8.2%;
    height: 83%;
    position: absolute;
    left: -3%;
    top: 7.4%;
    overflow: hidden;
}

.image_items {
    width: 100%;
    height: 18.9%;
    background: white;
    border: 0.4vh solid black;
    margin: 6% 0% 6% 0%;
    padding: 0% 15% 0% 15%;
    cursor: pointer;
}

.image_css {
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: center center;
}

#image-popup-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-display {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#image-popup-title {
    font-size: 5vh;
    color: black;
    margin-bottom: 2vh;
}

#image-popup-description>p,
#multi-image-popup-description>p {
    font-size: 2.7vh;
}

#image-popup-image {
    width: 55%;
}

#image-popup-image-details {
    width: 45%;
    margin-left: 2.5vh;
} */


/* #multi-image-popup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60vh;
} */

.fa {
    color: red;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border: 1px solid red;
    background: white;
    cursor: pointer;
    margin-top: 3vh;
}

.prev-btn:hover {
    background: red;
}

.prev-btn:hover .fa {
    color: #fff;
}

.next-btn:hover {
    background: red;
}

.next-btn:hover .fa {
    color: #fff;
}

.popup-swiper {
    width: 55%;
}

.popup-swiper-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}


/* #multi-image-popup-details {
    width: 45%;
    margin-left: 2.5vh;
} */

#multi-image-popup-title {
    font-size: 5vh;
    color: black;
    margin-bottom: 2vh;
}

.popup-swiper .navigation_btn {
    bottom: 0 !important;
    right: 0;
}

.popup-swiper .swiper-button-next,
.popup-swiper .swiper-button-prev {
    border-radius: 0 !important;
    border: 1px solid rgb(239, 12, 29);
    background: #fff;
}

.carousel_container .swiper-slide-corridor {
    padding: 0.5vh 0.5vh 0.5vh 0.5vh;
    background: white;
}

.swiper-pagination-bullet-active {
    background: red !important;
}


/* AUDIO____________________________________ */


/* VIDEO____________________________________ */


/* #video_titleContainer {
            width: 35%;
            height: 41%;
            bottom: 0%;
            right: 2%;
            position: relative;
            float: right;
            pointer-events: none;
        }
        
        #video_textContent {
            width: 36.5%;
            height: 56%;
            top: 44.4%;
            right: 0%;
            position: absolute;
            float: right;
            font-size: 2vh;
            font-family: 'Montserrat-Regular';
            line-height: 3vh;
            color: black;
            pointer-events: none;
        }
        
        #videoContainer {
            width: 58%;
            height: 79%;
            top: 9%;
            left: 0%;
            position: absolute;
        } */


/* #video_mp4 {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #111011;
} */

#player {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #111011;
}

.video_controlsBtn {
    width: 100%;
    height: 90%;
    position: absolute;
    background: skyblue;
}


/* AUDIOTRIGGER____________________________________ */

#audioTrigger_pop_up {
    position: absolute;
    width: 100vw;
    max-width: 177.78vh;
    height: 56.25vw;
    max-height: 100%;
    /* max-height: 100vh; */
    /* margin: 0 auto; */
    /* overflow: hidden; */
    transform: scale(0.8);
    z-index: 100;
    /* background-color: brown; */
    background-position: center;
    /* background-image: url('../../res/360_ui/ref_audioTrigger.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

#audioTrigger_image {
    width: 45%;
    height: 45%;
    top: 6%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

#audioTrigger_title {
    /* font-size: 5.2vh; */
    /* line-height: 6vh; */
    width: 100%;
    height: 13%;
    top: 58%;
    position: absolute;
    float: right;
    font-family: "Audrey-Bold";
    color: tomato;
    pointer-events: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-shadow: 0.5vh 0.5vh black;
    /* background: red; */
}

#audioTrigger_content {
    width: 59%;
    height: 14%;
    top: 74.6%;
    position: absolute;
    float: right;
    font-size: 2.3vh;
    font-family: "Montserrat-Regular";
    line-height: 3vh;
    color: white;
    pointer-events: none;
    text-align: center;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}


/* END_______________________________________________________________ */

#end_pop_up {
    position: absolute;
    width: 100vw;
    max-width: 177.78vh;
    height: 56.25vw;
    max-height: 100%;
    /* max-height: 100vh; */
    /* margin: 0 auto; */
    /* overflow: hidden; */
    transform: scale(0.8);
    z-index: 100;
    /* background-color: brown; */
    background-position: center;
    /* background-image: url('../../res/360_ui/ref_audioTrigger.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: none;
}

#end_title {
    width: 100%;
    height: 13%;
    top: 25%;
    position: absolute;
    float: right;
    font-size: 5.2vh;
    font-family: "Audrey-Bold";
    line-height: 6vh;
    color: tomato;
    pointer-events: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-shadow: 0.5vh 0.5vh black;
    /* background: red; */
}

#end_content {
    width: 57%;
    height: 14%;
    top: 47%;
    float: right;
    font-size: 2.3vh;
    font-family: "Montserrat-Regular";
    line-height: 2.9vh;
    color: white;
    pointer-events: none;
    text-align: center;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

#scene_name {
    width: 53%;
    height: 6%;
    bottom: 10%;
    left: 3%;
    position: absolute;
    float: right;
    font-size: 2.2vh;
    font-family: "Audrey-Bold";
    line-height: 6vh;
    color: white;
    pointer-events: none;
    display: none;
}

#scene_foregroundTextContent {
    width: 27%;
    height: 9%;
    bottom: 1%;
    left: 3%;
    position: absolute;
    float: right;
    font-size: 1.5vh;
    font-family: "Montserrat-Regular";
    line-height: 2.2vh;
    color: white;
    pointer-events: none;
    display: none;
}


/* INDICATOR_______________________________________________________________ */

#tutorial_indicator {
    position: absolute;
    width: 14%;
    height: 8%;
    bottom: 8%;
    right: 3.5%;
    background-image: url("../../res/common/tutorial_indicator.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    display: none;
    transform-origin: bottom right;
    transform: rotate(-15deg);
    animation: indicatorPop 0.9s forwards;
}

@keyframes indicatorPop {
    0% {
        transform: rotate(-25deg);
    }
    50% {
        transform: rotate(10deg);
        transform: scale(1.1);
    }
    100% {
        transform: rotate(0deg);
    }
}

#tutorial_indicator_closeBtn {
    position: absolute;
    width: 5%;
    height: 14%;
    top: 8%;
    right: 2%;
    background-image: url("../../res/common/tutorial_indicator_closeBtn.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
}


/* TEXT POP-UP_______________________________________________________________ */


/* #text_title {
            top: 12%;
            width: 100%;
            height: 7%;
            bottom: 0%;
            pointer-events: none;
            font-size: 5.5vh;
            font-family: 'Oswald-Medium';
            text-align: center;
            position: absolute;
            margin-left: auto;
            margin-right: auto;
            left: 0;
            right: 0;
        } */


/* #text_content {
            width: 92%;
            height: 62%;
            top: 24%;
            font-family: 'Montserrat-Regular';
            color: black;
            text-align: justify;
            position: absolute;
            margin-left: auto;
            margin-right: auto;
            left: 0;
            right: 0;
            overflow-y: auto;
            scroll-padding-left: 2%;
        } */


/* .text_subHeader {
            font-family: 'Montserrat-SemiBold';
            font-size: 2.5vh;
            text-align: center;
        } */


/* LINK POP-UP__________________________ */


/* FULLSCREEN TEXT______________________________________________________ */

#poUp_fullscreen_text {
    font-family: "Audrey-MediumOblique";
    /* font-size: 2vh; */
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    color: #4c453f;
    top: 103%;
}

@media screen and (min-aspect-ratio: 16/9) {
    #image_content {
        font-size: 2.7vh;
        line-height: 4vh;
    }
    /* #video_textContent {
                font-size: 2.7vh;
                line-height: 4vh;
            } */
    #audioTrigger_content {
        font-size: 2.3vh;
        line-height: 3vh;
    }
    #audioTrigger_image_credit {
        font-size: 1.8vh;
        line-height: 3vh;
    }
    #end_content {
        font-size: 2.3vh;
        line-height: 3vh;
    }
    /* #text_title {
                font-size: 5.5vh;
            } */
    /* #text_content {
                font-size: 2.295vh;
                line-height: 3vh;
            } */
    /* .text_subHeader {
                font-size: 2.5vh;
            } */
    #poUp_fullscreen_text {
        font-size: 2.5vh;
    }
    /* #link_content {
        font-size: 2.7vh;
        line-height: 4vh;
    } */
    /* .referenceText {
                font-size: 2.295vh;
            } */
    .superscript_thin {
        font-size: 1.5vh;
        top: -0.6vh;
    }
    .superscript_thin_small {
        font-size: 1vh;
    }
    /* .superscript_title {
                font-size: 4vh;
                top: -0.6vh;
            } */
    #audioTrigger_title {
        font-size: 5.2vh;
        line-height: 6vh;
    }
    /* #link_title {
        font-size: 5.5vh;
    } */
}

@media screen and (max-aspect-ratio: 16/9) {
    /* #link_title {
        font-size: 3.09375vw;
    } */
    #audioTrigger_title {
        font-size: 2.925vw;
        line-height: 3.375vw;
    }
    #image_content {
        font-size: 1.52vw;
        line-height: 2.25vw;
    }
    /* #video_textContent {
                font-size: 1.52vw;
                line-height: 2.25vw;
            } */
    #audioTrigger_content {
        font-size: 1.29vw;
        line-height: 1.75vw;
    }
    #audioTrigger_image_credit {
        font-size: 1.01vw;
        line-height: 1.75vw;
    }
    #end_content {
        font-size: 1.29vw;
        line-height: 1.75vw;
    }
    /* #text_title {
                font-size: 3.09vw;
            } */
    /* #text_content {
                font-size: 1.29vw;
                line-height: 1.75vw;
            } */
    /* .text_subHeader {
                font-size: 1.4vw;
            } */
    #poUp_fullscreen_text {
        font-size: 1.4vw;
    }
    /* #link_content {
        font-size: 1.52vw;
        line-height: 2.25vw;
    } */
    /* .referenceText {
                font-size: 1.29vw;
            } */
    .superscript_thin {
        font-size: 0.84375vw;
        top: -0.3375vw;
    }
    .superscript_thin_small {
        font-size: 0.5625vw;
    }
    /* .superscript_title {
                font-size: 2.25vw;
                top: -0.417vw;
            } */
    /* IMAGE POPUP __________________________________________________ */
    /* #image-popup-title,
    #multi-image-popup-title {
        font-size: 2.8125vw;
        margin-bottom: 1.125vw;
    }
    #image-popup-description>p,
    #multi-image-popup-description>p {
        font-size: 1.5188vw;
    }
    #image-popup-image-details,
    #multi-image-popup-details {
        margin-left: 1.406vw;
    } */
    /* #multi-image-popup-content {
        height: 33.75vw;
    } */
}

sup {
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: "Oswald-Medium";
    /* font-weight: bold; */
    vertical-align: super;
    /* font-size: smaller; */
    font-size: x-large;
}


/* IMAGE FULLSCREEN_______________________________________________________________ */

#image_fullscreen_container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    display: none;
    /* background: tomato; */
    z-index: 150;
}

#image_fullscreen_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    background-color: #000;
    background-image: url("../../res/common/light_overlay.png");
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 25;
}

#image_fullscreen_preview {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("../../res/content_images/zone_01/01/A.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5%;
    z-index: 30;
}

#image_fullscreen_close {
    width: 4vw;
    height: 6vh;
    top: 3%;
    position: absolute;
    background-image: url("../../res/lightboxes/closeBright_popUp_btn.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 35;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    cursor: pointer;
    display: none;
}

.referenceText {
    font-family: "Montserrat-LightItalic";
    /* font-family: 'Montserrat-MediumItalic'; */
    /* font-family: 'Audrey-MediumOblique'; */
    color: #000;
    /* font-size: 2.5vh; */
}

.superscript_thin {
    /* font-weight: 100; */
    font-family: "Montserrat-Regular";
    vertical-align: super;
    position: relative;
    vertical-align: top;
    /* font-size: small; */
    /* font-size: 1.5vh; */
}

.tripodCover {
    width: 400px;
    height: 400px;
    background: yellow;
    border: 3px solid red;
    border-radius: 50%;
    z-index: 900;
    /* position: absolute; */
}

#tripodCover {
    border: 4px green solid;
    border-radius: 50%;
}