/* 360VRT4FM.css */

html, body {
    margin:0;
    width:100%;
    height:100%;
    overflow:hidden;
    background:#000;
    font-family:Arial, sans-serif;
}

#panorama {
    width:100%;
    height:100%;
}

#menu {
    position:absolute;
    top:15px;
    left:55px;
    z-index:9999;
    background:rgba(0,0,0,0.55);
    color:#fff;
    padding:14px;
    border-radius:12px;
    /* min-width:80px; */
}

#menu h3 {
    margin:0 0 10px 0;
    font-size:16px;
}

#menu h3{

    margin:12px 0 6px;

    color:#ffffff;

    font-size:14px;

    border-bottom:1px solid rgba(255,255,255,.15);

    padding-bottom:4px;
}

#menu a {
    display:block;
    color:#7dd3fc;
    text-decoration:none;
    padding:6px 0;
    cursor:pointer;
}

#menu-header {
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 8px;
    opacity: 0.8;
}

#menu-header:hover {
    opacity: 1;
}

#menu-content{

    display:none;

}

.menu-open #menu-content{

    display:flex;

    gap:18px;

}



#group-list{

    max-width:200px;

    max-height:70vh;

    overflow-y:auto;

}



#scene-list{

    max-width:140px;

    max-height:70vh;

    overflow-y:auto;

}



#group-list h3{

    margin:6px 0;

    cursor:pointer;

}



#scene-list a{

    display:block;

}

#menu a:hover {
    color:#fff;
}

#hud{

    position:absolute;

    top:15px;
    right:15px;

    z-index:8999;

    background:rgba(0,0,0,.6);

    color:white;

    border-radius:10px;

    font-family:monospace;

    overflow:hidden;

}



#hud-header{

    display:flex;

    justify-content:flex-end;

    padding:8px 10px;

}



#hud-toggle{

    cursor:pointer;

    font-size:20px;

}



#hud-content-wrapper{

    padding:10px;

}



#hud-nav{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:12px;

    /* margin-bottom:12px; */

    /* margin-right:6px; */

}



#hud-prev,
#hud-next{

    border:none;

    background:none;

    color:white;

    cursor:pointer;

    font-size:14px;

    opacity:.7;

}



#hud-prev:hover,
#hud-next:hover{

    opacity:1;

}



#hud-indicator{

    font-size:12px;

    opacity:.65;

}



.hud-collapsed #hud-content-wrapper{

    display:none;

}

.hud-credit{

    text-align:center;

    line-height:1.5;

}

.hud-logo{

    width:120px;

    height:auto;

    margin-bottom:2px;

}

.hud-credit a{

    color:#7dd3fc;

    text-decoration:none;

}

.hud-credit a:hover{

    color:white;

}








#hud-content {
    padding:10px;
    font-size:13px;
    line-height:1.4;
}

.hud-collapsed #hud-content {
    display:none;
}

.infobox {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);

    color: #fff;
    border-radius: 12px;
    padding: 12px;

    z-index: 10000;
    text-align: center;
}

.infobox img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}

.infobox button {
    margin-top: 10px;
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    background: #38bdf8;
    color: #000;
    cursor: pointer;
}

.hidden {
    display: none;
}

.infobox button:hover {
    background: #0ea5e9;
}
  
.custom-hotspot_01 {
    width: clamp(24px, 4vw, 48px);
    height: clamp(24px, 4vw, 48px);

    background-image: url('Img/hotspot_100x100.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    cursor: pointer;
}

#scene-nav{

    position:absolute;

    inset:0;

    z-index:9999;

    pointer-events:none;

}


#prev-scene,
#next-scene{

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    width:46px;
    height:46px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.45);

    color:white;

    font-size:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    line-height:1;

    cursor:pointer;

    pointer-events:auto;

    transition:.18s;

    backdrop-filter:blur(4px);

    box-shadow:0 0 12px rgba(0,0,0,.35);

}


#prev-scene{

    left:4px;
    /* padding-left:1px; */

}


#next-scene{

    right:4px;
    /* padding-right:1px; */

}


#prev-scene:hover,
#next-scene:hover{

    background:rgba(0,0,0,.8);

    transform:
        translateY(-50%)
        scale(1.08);

}

#group-list::-webkit-scrollbar,
#scene-list::-webkit-scrollbar{

    width:8px;

}

#group-list::-webkit-scrollbar-thumb,
#scene-list::-webkit-scrollbar-thumb{

    background:rgba(255,255,255,.25);

    border-radius:8px;

}

#viewer-wrapper{

    position:relative;

    width:100%;

    height:100%;

}

#autorotate-controls{

    position:absolute;

    right:10px;

    bottom:64px;

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:4px;

}

#autorotate-controls button{

    width:36px;

    height:36px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.45);

    color:white;

    font-size:22px;

    cursor:pointer;

    transition:.18s;

    backdrop-filter:blur(4px);

    box-shadow:0 0 12px rgba(0,0,0,.35);

}

#autorotate-controls button:hover{

    background:rgba(0,0,0,.8);

    transform:scale(1.08);

}