/**
 * Divi Blog modul -> popup megoldás - stílusok
 * hydroplusz.hu
 *
 * Illeszd be a gyerektéma /css/divi-blog-popup.css útvonalára,
 * vagy a Divi Theme Customizer > Additional CSS mezőbe.
 */

/* Háttér scroll-lock popup nyitva állapotban (a onepager section-ok ne scrollozzanak a popup mögött) */
body.divi-popup-open {
    overflow: hidden;
}

#divi-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#divi-popup-overlay.active {
    display: flex;
}

#divi-popup-box {
    background: #fff;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    border-radius: 6px;
}

#divi-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.divi-popup-body img {
    max-width: 100%;
    height: auto;
}
