#virtual-tour-container-sdf {
    width: 100%;
    height: 95%;
    position: relative; /* Assurez-vous que le positionnement est correct */
}
#virtual-tour-container-sdf .pnlm-hotspot {
    z-index: 50000; /* Assurez-vous qu'il est au-dessus des autres éléments */
}
.popup {
    display: none;
    position: fixed;
    z-index: 10000;
    /*left: 0;
    top: 0;*/
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    /* Flexbox pour centrer */
    align-items: center; /* Centre verticalement */
    justify-content: center; /* Centre horizontalement */
}
.popup-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    height: 600px;/*80%;*/
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transform: translateY(-10px);    
}
.pnlm-hotspot-base {
    position: absolute;
    transform: translate(-50%, -50%); /* Pour centrer les hotspots sur leur position exacte */
}
.popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/*barre de téléchargement */
.loading-spinner {
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

.loading-bar {
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
    padding: 20px;
    position: relative;
}

#progress {
    width: 0%;
    height: 5px;
    background-color: #4caf50;
    position: absolute;
    top: 0;
    left: 0;
    animation: loadProgress 5s linear infinite;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
