/* popup black background */
.enter-email-background {
    position: fixed !important;
    width: 100%;
    height: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.7);
    transition: opacity 0.7s ease-in-out;
    opacity: 0;
    z-index: 999998 !important;
}


.enter-email {
    position: relative;
    align-items: center !important;
    justify-content: center !important;
    width: 540px;
    max-width: 540px;
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 999999;
}

/* font family for all popup text */
.enter-email-background,
.enter-email-background *,
.enter-email,
.enter-email * {
    font-family: 'Montserrat', sans-serif !important;
}

/* Text styling */
.enter-email .header-3 {
    color: #333333 !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 22px !important;
    margin: 0 0 20px 0;
}

.enter-email .strip-title {
    color: #333333 !important;
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 700 !important;
    margin: 28px 0 0px 0 !important;
}

.enter-email .strip-title.extra-bold {
    color: #333333 !important;
    font-weight: 600 !important;
    font-size: 20px !important;
}

.enter-email .container {
    position: relative;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-5px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
}

/* button style */
.enter-email .register-email-form input[type='submit'] {
    width: 300px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 24px !important;
    position: relative;
    transform: translateY(-8px) !important;
    background: #ff434b !important;
    color: white !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer;
    font-size: 15px !important;
    transition: 0.3s ease !important;
}

/* button style */
.enter-email .register-email-form input[type='submit']:hover:not([disabled]) {
    background: #e6434b !important;
}

/* button style */
.enter-email .register-email-form input[type='submit'][disabled] {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* show popup smoothly */
.enter-email-background.hidden {
    opacity: 0;
    z-index: -1;
    pointer-events: none !important;
    visibility: hidden;
}

.enter-email-background.visible {
  top: var(--popup-top, 0) !important;
  animation: fadeIn 0.7s ease-in-out;
  opacity: 1;
  z-index: 999998;
  visibility: visible;
}

/* popup fadein - fadeout effect */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} 


/* popup text colors */
.enter-email .existing-user-message {
    color: #ff0000 !important;
    margin: 0px;
    font-size: 12px !important;
    transform: translateY(-32px);
}

.enter-email .strip-title.extra-bold {
    color: #333333 !important;
}

.enter-email .existing-user-message.bold {
    font-weight: 600 !important;
}

.enter-email .strip-title,
.enter-email .header-3 {
    color: #333333 !important;
}

.enter-email .text-frame {
    border: 1px solid #dfd5c0;
    width: 452px;
    height: 132px;
    position: relative;
    clip-path: polygon(
        0 0,
        37.5% 0,
        37.5% 20px,
        62.5% 20px,
        62.5% 0,
        100% 0,
        100% 100%,
        0 100%
    );
    background-color: #fbf9f4;
    margin: 52px auto 24px auto !important;
    top: 0px;
}

.enter-email-background .enter-email {
    align-items: center;
    justify-content: center;
    text-align: center !important;
    background-color: #fbf9f4;
    margin: 0;
}

/* exit X icon */
.enter-email img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

/* popup logo */
.enter-email .logo-top-left {
    z-index: 10;
    height: 18px;
}

/* popup logo */
.enter-email #logo {
    align-items: center;
    justify-content: center;
    min-height: 19px !important;
    min-width: 150px !important;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fbf9f4;
    z-index: 2;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    clip-path: inset(0 8px);
}

.enter-email .close-popup {
    position: absolute;
    width: 16px !important;
    height: 16px !important;
    top: 4px !important;
    left: 4px !important;
    pointer-events: none;
}

.enter-email .close-popup:hover {
    cursor: pointer;
}

.enter-email .register-email-form {
    width: 452px;
    max-width: 452px !important;
    box-sizing: border-box;
    margin: auto;
}

.enter-email .register-email-form input:not([type='submit']) {
    max-width: 454px;
    width: 100%;
    height: 48px !important;
    border: 1px solid #dfd5c0 !important;
    border-radius: 1px !important;
    background: #ffffff;
    margin: 8px 0px 16px 0;
    box-sizing: border-box;
    color: #111111 !important;
    padding-left: 16px !important;
    font-weight: 400 !important;
}

.enter-email .register-email-form input:not([type='submit'])::placeholder {
    color: #666666 !important;
    font-weight: 400 !important;
    font-size: 15px;
    line-height: 23px;
    margin-left: 16px;
}

.enter-email .consent-check {
    display: flex;
    align-items: flex-start;
    margin: 0;
    width: 450px;
    max-width: 450px;
    text-align: left;
}


.enter-email .consent-check input[type='checkbox'],
.enter-email .consent-check #consent-lg,
.enter-email #consent-lg {
    width: 20px !important;
    height: 20px !important;
    margin: 4px 14px 0px 0px !important;
    flex-shrink: 0;
    border: 1px solid #dfd5c0 !important;
    border-radius: 3px !important;
    background-color: #ffffff !important;
    padding: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box !important;
}


.enter-email .consent-check input[type='checkbox'].selected {
    background-image: url('https://d1wqgpqkhqinps.cloudfront.net/images/long_survey/new_cookies_checkbox_chosen.svg');
}

.enter-email .consent-check input[type='checkbox']:hover:not(:disabled) {
    cursor: pointer;
}

.enter-email .consent-check a {
    text-decoration: underline;
}

.enter-email .after-register .arrow,
.enter-email .after-register-popup .arrow {
    width: 72px;
    height: 72px;
    background-image: url('https://d1wqgpqkhqinps.cloudfront.net/images/after_register_arrow_sprite.png');
    background-size: auto 72px;
    animation: after-register-arrow 2s steps(16) infinite;
    margin: 40px 0 32px;
}

.enter-email .after-register .arrow:hover,
.enter-email .after-register-popup .arrow:hover {
    cursor: pointer;
}

.enter-email .after-register button,
.enter-email .after-register-popup button {
    width: 250px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 24px;
    margin: 0;
}

.enter-email .after-register a,
.enter-email .after-register-popup a {
    position: unset;
    margin-bottom: 40px;
}

.enter-email .remark {
    margin: 0;
    text-align: left;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.enter-email .remark .bold {
    font-weight: bold !important;
}

.enter-email a {
    text-decoration: underline;
    text-align: center;
}

.enter-email .error-info {
    margin: 16px 0 0;
}

.enter-email .error-info a {
    color: #b2000b;
}

.enter-email.lg-only {
    border: 1px solid #dfd5c0;
    background: #ffffff;
    position: relative;
    width: 480px;
    min-height: 426px;
    padding: 46px 42px;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
}

.enter-email.lg-only #logo {
    width: 94px;
    height: 18px;
    margin-bottom: 32px;
}

.enter-email.lg-only .limited-offer {
    position: absolute;
    top: 0;
    right: 0;
}

.enter-email.lg-only .strip-title {
    margin: 0 0 24px;
}

.enter-email.lg-only input:not([type='submit']) {
    max-width: 100%;
}

.enter-email.sm-only {
    padding: 0 24px;
    text-align: center;
    background-image: url('https://d1wqgpqkhqinps.cloudfront.net/images/gradient_buttons.png');
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.enter-email.sm-only .register-email {
    width: 100%;
}

.enter-email.sm-only .enter-email-logo {
    width: 94px;
}

.enter-email.sm-only .enter-email-limited-offer {
    width: 114px;
    height: 114px;
    margin: 40px 0 36px;
}

.enter-email.sm-only .register-email-form {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.enter-email.sm-only .register-email-form .strip-title {
    margin: 20px 0 0;
}

.enter-email.sm-only .register-email-form .navigation {
    margin: 8px 0 0;
}

.enter-email.sm-only .register-email-form input:not([type='submit']) {
    max-width: 100%;
    height: 48px !important;
    box-sizing: border-box;
    border: 1px solid #dfd5c0 !important;
    border-radius: 1px !important;
    margin: 24px 0;
}

.enter-email.sm-only .register-email-form input[type='submit'] {
    max-width: 100%;
    min-width: 202px;
    width: 100%;
}

.enter-email.sm-only .register-email-form .skip-klaviyo {
    margin: 30px 0;
    text-decoration: underline;
    border: none;
    background-color: transparent;
}

.enter-email.sm-only .consent-check {
    align-items: flex-start;
}

.enter-email.sm-only .consent-check input[type='checkbox'] {
    width: 16px !important;
    height: 16px !important;
    margin: -8px 14px 0px 0px !important;
    border: 1px solid #dfd5c0 !important;
    border-radius: 3px !important;
    flex-shrink: 0;
    background-color: #ffffff !important;
    padding: 0;
    background-image: url('https://d1wqgpqkhqinps.cloudfront.net/images/long_survey/new_offer_checkbox.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.enter-email.sm-only .consent-check input[type='checkbox'].selected {
    background-image: url('https://d1wqgpqkhqinps.cloudfront.net/images/long_survey/new_offer_checkbox_chosen.svg');
}

.enter-email.sm-only
    .consent-check
    input[type='checkbox']:hover:not(:disabled) {
    cursor: pointer;
}

.enter-email.sm-only .consent-check a {
    text-decoration: underline;
}

.enter-email.sm-only .gradient-buttons {
    width: 100%;
}

.enter-email .layout-column {
    flex-direction: column;
}

.enter-email .button {
    font-size: 15px;
    border-radius: 24px !important;
    text-align: center;
    border: none;
    outline: none;
    display: inline-block;
    background-color: transparent;
    color: #333333;
    box-sizing: border-box;
    padding: 8px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    height: 48px;
    line-height: 32px;
    min-width: 254px;
    width: 254px;
}

.enter-email .button[disabled] {
    cursor: auto;
}

.enter-email .button.raised {
    font-weight: 600;
    color: white;
    transition: 0.15s background-color linear;
}

.enter-email .button.raised.primary {
    background: #ff434b;
    border-radius: 24px !important;
}

.enter-email .button.raised.primary:not([disabled]):hover {
    background: linear-gradient(0deg, #e6434b 0%, #e6434b 100%) !important;
}

.enter-email .button.raised.white {
    background-color: white;
    color: #333333 !important;
    border: 1px solid #333333;
}

.enter-email .button.raised.titles {
    color: #ffffff !important;
    background-color: #333333 !important;
}

.enter-email .header-1 {
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 42px !important;
    text-transform: none !important;
    margin: 0;
}


.enter-email .header-3.bold {
    font-weight: 600 !important;
}

.enter-email .regular {
    font-size: 15px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 23px !important;
}

.enter-email .extra-bold {
    font-weight: 600 !important;
    font-size: 20px !important;
}

.enter-email .button.raised.primary.ft-popup {
    position: relative;
    transform: translateY(-64px);
}



.enter-email #consent-lg {
    appearance: none;
    -webkit-appearance: none;
    width: 20px !important;
    height: 20px !important;
    border: 1px solid #dfd5c0;
    background-color: #ffffff;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    margin: 4px 14px 0 0!important;
}

#consent-lg:checked::after {
    position: absolute;
    color: #111111;
    font-size: 12px;
    font-weight: normal;
}

.enter-email .clicking-area {
    position: absolute;
    top: 11px;
    left: 11px;
    width: 24px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.enter-email-background .enter-email .register-email-form .header-3 {
    margin: 8px 0 0px !important;
}

.enter-email .register-email-form input[type='email']::placeholder {
    color: #666666 !important;
}

.enter-email
    .register-email-form
    input[type='email']::-webkit-input-placeholder {
    color: #666666 !important;
}

.enter-email .register-email-form input[type='email']:-moz-placeholder {
    color: #666666 !important;
}

.enter-email .register-email-form input[type='email']::-moz-placeholder {
    color: #666666 !important;
}

.enter-email .register-email-form input[type='email']:-ms-input-placeholder {
    color: #666666 !important;
}

.enter-email .button.icon,
.enter-email .button.icon .tooltip {
    align-items: center;
    justify-content: center;
}

.enter-email i[data-photomyne-icon] .icon-click-passthrough {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: transparent;
}

/* desktop view */
@media (min-width: 570px) {
    .enter-email .after-register-popup .text-frame {
        transform: translateY(-83px);
        height: 142px;
    }

    .enter-email {
        height: 454px;
    }

    .enter-email.after-register-popup #logo {
        transform: translateY(48px);
    }

    .enter-email.show-existing-message #logo {
        top: 44px !important;
    }

    .enter-email.show-existing-message {
        height: 500px !important;
    }

    .enter-email .text-frame .trail {
        top: -68px;
    }

    .enter-email.show-existing-message .register-email-form {
        position: relative;
        transform: translateY(-8px);
    }
}

/* Phone (max-width: 480px) */
@media (max-width: 570px) {
    .enter-email #logo {
        position: absolute;
        top: 62px;
        left: 50%;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }

    .enter-email .logo-top-left {
        transform: translateX(-50%) !important;
    }

    .enter-email .after-register-popup .text-frame .header-3 {
        display: inline;
    }

    .enter-email.show-existing-message #logo {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
    }

    .enter-email.show-existing-message .after-register-popup #logo {
        top: 57px;
    }

    .enter-email {
        height: 480px !important;
        width: 339px !important;
    }

    .enter-email .after-register-popup .text-frame {
        height: 170px !important;
        top: 6px !important;
        width: 300px;
        margin: 16px auto 18px auto !important;
        transform: translateY(-65px);
    }

    .enter-email.show-existing-message {
        height: 510px !important;
    }

    .enter-email .text-frame {
        width: 300px;
        top: 8px;
        height: 150px !important;
        margin: 50px auto 12px auto !important;
    }

    .enter-email .text-frame .trail {
        width: 380px;
        height: 170px !important;
        top: -48px !important;
    }

    .enter-email .after-register-popup .button.raised.primary.ft-popup {
        transform: translateY(-37px);
    }

    .enter-email .register-email-form input:not([type='submit']) {
        margin: 12px 0px 16px 0 !important;
        width: 300px;
    }

    .enter-email.show-existing-message .register-email-form {
        position: relative;
        transform: translateY(-12px);
    }

    .enter-email .consent-check label {
        width: 263px !important;
    }

    .enter-email .consent-check {
        margin: 0px auto 24px auto;
        width: 300px;
    }

    .enter-email .button {
        width: 256px !important;
        height: 48px;
    }

    .enter-email .header-3 {
        font-size: 14px;
    }

    .enter-email .strip-title.extra-bold {
        font-size: 17px !important;
    }

    .enter-email .container {
        transform: translateY(6px);
    }
}