/* ------------------------------------------------------------ *\
	Popup Modals

    Can be found on the index.html page.
\* ------------------------------------------------------------ */
.js-popup.popup {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modal-background-color);
    z-index: 1;
    max-width: 100%;
}
.js-popup.popup:before {
    content: none;
}
.js-popup.popup .popup__content {
    padding: 28px 21px 20px;
    width: 616px;
    background-color: red;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: -o-radial-gradient(
        center top,
        ellipse,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    background: radial-gradient(
        ellipse at center top,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    border-radius: 12px;
}
.mobile-only {
    display: none;
}
.desktop-only {
    display: block;
}
@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
    .desktop-only {
        display: none;
    }
}
@media (max-width: 767px),
    screen and (max-width: 812px) and (orientation: landscape) {
    .js-popup.popup .popup__content {
        width: 94%;
    }
}
.js-popup.popup .popup__title {
    text-align: center;
    font-size: 24px;
    color: var(--modal-header-text-color);
    text-transform: uppercase;
    margin-bottom: 23px;
    pointer-events: none;
}
.js-popup.popup .popup__body {
    background-color: var(--modal-content-background-color);
    padding: 33px 20px 20px 28px;

    border-radius: 5px;
    overflow: auto;
    height: 368px;
    font-size: 13px;
    letter-spacing: -0.0125em;
    margin-bottom: 23px;
    max-width: 100%;
    text-align: left;
}
.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h3 {
    color: var(--modal-content-header-text-color);
    margin-bottom: 17px;
    font-size: 16px;
    letter-spacing: 0.017em;
    text-transform: uppercase;
}
.js-popup.popup .popup__body p {
    margin-bottom: 42px;
}
.js-popup.popup .popup__actions {
    text-align: center;
    margin-bottom: 6px;
}
/* .js-popup.popup .popup__actions .btn {
  background: var(--button-background-secondary);
} */
.js-popup.popup.is-visible {
    opacity: 1;
    pointer-events: all;
    z-index: 1060;
}
.wrapper.is-fixed {
    height: 100vh;
    overflow: hidden;
}
.offer-wrapper.is-fixed {
    overflow: inherit;
}
.popup__actions .js-close:after {
    content: normal;
}
.btn.js-close {
    min-width: 280px;
}

.popup__body .popup__entry {
    max-width: 75%;
    margin: 0 auto;
}

.popup__body .customer-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    font-size: 16px;
    height: 100%;
}

#opt-out-modal .popup__content {
    width: 350px;
}

#opt-out-modal .popup__body {
    height: unset;
}

#not-customer .popup__title {
    margin-bottom: 0px;
}
