/* popup.css */
.popup-content {
    display: none; /* Verstecken Sie den ursprünglichen Inhalt */
}

.popup-box {
    max-width: 1200px; /* Standardbreite für größere Bildschirme */
    width: 90%; /* Standardbreite für kleinere Bildschirme */
    max-height: 80%;
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}