/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
/* Popup beállítások */
#popup-container2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Sötét háttér */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.6s, visibility 0.6s;
    z-index: 9999; /* A popup z-index */
}

#popup-container2.show {
    visibility: visible;
    opacity: 1;
}

#popup2 {
    position: relative;
    max-width: 90%; /* Kép igazítása kisebb képernyőkhöz */
    max-height: 90%; /* Kép magasságának korlátozása */
    z-index: 10001; /* Popup belsejének magasabb z-indexe */
}

#popup2 img {
    width: auto; /* Kép teljes méretben */
    height: 600px;
    display: block; /* Megakadályozza az extra margókat */
}

#close-popup2 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8); /* Fehér áttetsző háttér */
    color: #000;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10002; /* X gomb z-index, hogy felül legyen a popupon */
    padding: 0;
    outline: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
