.o-zip-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10050;
}

.o-zip-popup.is-active {
    display: block;
}

.o-zip-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.o-zip-popup__container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    pointer-events: none;
}

.o-zip-popup__dialog {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: min(1260px, 90vw);
    max-height: 90vh;
    overflow-y: auto;
    pointer-events: auto;
    padding: 3.2rem 3.8rem 3.2rem 3.8rem;
    text-align: left;
}

.o-zip-popup__dialog.no-padding {
    padding: 3.2rem 0 3.2rem 0;
}

.o-zip-popup__body .o-highlight-block {
    padding: 0;
    margin: 0;
}

.o-zip-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.o-zip-popup__close::before,
.o-zip-popup__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.25rem;
    height: 1px;
    margin: -1px 0 0 -0.625rem;
    background: #484E5C;
    transition: transform 0.2s ease;
}

.o-zip-popup__close::before {
    transform: rotate(45deg);
}

.o-zip-popup__close::after {
    transform: rotate(-45deg);
}

.o-zip-popup__close:hover::before,
.o-zip-popup__close:hover::after {
    transform: rotate(0);
}

body.is-zip-popup-open {
    overflow: hidden;
}
