/* 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: 13px;
    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:9999;
    background:rgba(0,0,0,0.6);
    color:#fff;
    border-radius:10px;
    font-family:monospace;
    overflow:hidden;
}

#hud-header {
    padding:6px 10px;
    cursor:pointer;
    font-size:12px;
    background:rgba(255,255,255,0.1);
}

#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;

    bottom:4px;

    right:68px;

    z-index:9999;

    display:flex;

    gap:10px;
}

#scene-nav button{

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.65);

    color:white;

    font-size:20px;

    cursor:pointer;
}

#scene-nav button:hover{

    background:rgba(0,0,0,.85);
}

#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;

}

/* Pannellum fullscreen compatibility */

/* .pnlm-container:-webkit-full-screen #menu,
.pnlm-container:-webkit-full-screen #hud,
.pnlm-container:-webkit-full-screen #scene-nav{

    display:block !important;

}

.pnlm-container:fullscreen #menu,
.pnlm-container:fullscreen #hud,
.pnlm-container:fullscreen #scene-nav{

    display:block !important;

} */

#viewer-wrapper{

    position:relative;

    width:100%;

    height:100%;

}