@charset "uft-8";
.info-hotspot .info-hotspot-title{
    font-size: 0 !important;
}
.info-hotspot .info-hotspot-title-wrapper{
    top: 90%;
    left: 0;
}
#miniMap{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    z-index: 99;
}
#miniMap .mapmask{
    width: 100%;
    background: rgba(58,68,84,0.8);
}
#mapPin{
    position: absolute;
    top: 150px;
    left: 72px;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    /* background-color: #dd1414a6;
    border: 1px solid #f6b8b8;
    box-shadow: 0px 0px 0px 4px #ea6767a6; */
    background-color: #232b89;
    border: 1px solid #d2d5ff;
    box-shadow: 0px 0px 0px 4px #151a5961;
    transition: 0.5s transform;
    animation: pin 2s linear infinite;
    z-index: 9;
}
@keyframes pin {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.5);
    }
    100%{
        transform: scale(1);
    }
}
/* #mapPin::before{
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    transform: rotate(-32deg);
    width: 2px;
    height: 10px;
    background: #fff;
}
#mapPin::after{
    content: '';
    position: absolute;
    top: -4px;
    left: 18px;
    transform: rotate(32deg);
    width: 2px;
    height: 10px;
    background: #fff;
} */
.offpin {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #BD9F68;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
}
.tooltip{
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 5px;
    background-color: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
    border-radius: 3px;
    font-size: 12px;
    visibility: hidden;
    /* display: block; */
    /* display: flex; */
    white-space: nowrap;
    z-index: 9;
}
#titleBar,
#autorotateToggle{
    display: none;
}
#sceneList{
    top: 50%;
    transform: translateY(-50%);
    padding: 0;z-index: 99;
}
#sceneList::-webkit-scrollbar{
    width: 10px;
}
#sceneList::-webkit-scrollbar-thumb{
    width: 6px;
    background: #636f7e;
    border-radius: 8px;
    border: 2px solid #313945;
}
#sceneList::-webkit-scrollbar-track{
    background: #313945;
    width: 4px;
}
#sceneList .scenes{
    background-color: rgba(58,68,84,0.8);
    -webkit-backdrop-filter: blur(3px) saturate(0.5);
    backdrop-filter:blur(3px) saturate(0.5);
}
#sceneListToggle{
    top: 50%;
    transform: translateY(-50%);
    transition: margin-left 0.5s ease-in-out;
}
#sceneListToggle.enabled{
    margin-left: 220px;
}
#sceneListToggle .icon{
    position: static;
}
#logo{
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #151A59;
    cursor: pointer;
}
#logo .bg{
    width: 100px;
    height: 100px;
    background-image: url(../img/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 95%;
}
#sceneList .scene{
    height: auto;
}
#sceneList .scene ul{
    display: flex;
    align-items: center;
}
#sceneList .scene .img{
    width: 90%;
    max-width: 97px;
}

#preventMobile{
    display: none;
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
}
#preventMobile p{
    color: #151A59;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.caption_bottom{
    position: absolute;
    bottom: 10px;
    left: 20px;
}
.caption_bottom p{
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(35, 43, 56, 0.8);
}

@media (max-width:1700px) {
    #sceneList .scene .img{
        max-width: 70px;
    }
    #sceneList .scene .text{
        font-size: 15px;
    }
}
@media (max-width:900px) {
    #preventMobile{
        display: flex;
        z-index: 999;
    }
}