/** Shopify CDN: Minification failed

Line 198:0 Unexpected "}"

**/
.newsletter_popup_wrapper {
    max-width: 48.8rem;
    margin: 0 auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

.newsletter_popup_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-height: max-content;
    border-radius: 10px;
}

.popupSocialMedia .social_icons_footer {
    padding-left: 0;
    justify-content: center;
}

.popupSocialMedia .social_icons_footer .social__item {
    list-style: none;
}

.popup-newsletter-form__field-wrapper .field__input::placeholder {
    color: #928071;
}

.popup-newsletter-form__field-wrapper .field__input {
    border-bottom: 1px solid #E9E6E3;
    width: 100%;
}
.popup-newsletter-form__field-wrapper .field__input::placeholder {
    color: currentColor;
}
.newsletter_popup_wrapper button#Subscribe {
    width: 100%;
    margin-top: 1.5rem;
    cursor: pointer;
    color: var(--color-primary-button-text);
    border: 1px solid var(--color-primary-button-border) !important;
    background: var(--color-primary-button-background);
}
.newsletter_popup_wrapper button#Subscribe:hover{
   color: var(--color-primary-button-hover-text);
    border: 1px solid var(--color-primary-button-hover-border) !important;
    background: var(--color-primary-button-hover-background); 
}

.newsletter_popup_wrapper .popup_img img {
       max-height: 40.8rem;
    object-fit: contain;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.newsletter-popup__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #331F17;
    z-index: 9;
    cursor: pointer;
}

.popupClose {
    position: absolute;
    top: -4rem;
    right: 0;
    background: var(--color-secondary-background);
    border-radius: 6px;
    cursor: pointer;
}
.closeText {
    padding: 8px 15px;
    color: currentColor;
    text-transform: uppercase;
    line-height: 1;
    font-size: 12px;
}
.newsletter_popup_wrapper form#contact_form {
    background: var(--color-secondary-background);
}

.popupEmailBox {
    padding: 24px 30px;
    background: var(--color-secondary-background);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.popupSocialMedia {
    margin-top: 3rem;
}

.popupEmailBox .field__input {
    padding-left: 8px;
}

.popupEmailBox .paragraph {
    margin-top: 1rem;
} 

.content-left {
    text-align: left;
}
.content-center {
    text-align: center;
}
.content-right {
    text-align: right;
}

.newsletter_popup_wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter_popup_container {
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s ease;
}

/* ACTIVE STATE */
.newsletter_popup_wrapper.is-active,
.newsletter_popup_wrapper.is-active {
  opacity: 1;
  visibility: visible;
}

.newsletter_popup_wrapper.is-active .newsletter_popup_container {
  transform: translateY(0) scale(1);
}
@media screen and (max-width: 1200px) {
    .newsletter_popup_wrapper {
        max-width: 45%;
    }
}
@media screen and (max-width: 768px) {
    .newsletter_popup_wrapper {
       max-width: 90%;
        left: 0;
        top: 50%;
        right: 0;
        margin: 0 auto;
        transform: translate(-1%, -50%);
    }

    .newsletter_popup_wrapper .popup_img img {
        max-height: 30rem;
    }
}


/* Fix: Popup colors - override color-scheme-5 */
.popupEmailBox {
--color-foreground: rgb(51, 31, 23);
color: #331f17;
}
.popupEmailBox .h3 {
color: #2c1810 !important;
}
.popupEmailBox .paragraph {
color: #2c1810 !important;
}
.newsletter_popup_container .field__input {
color: #331f17 !important;
background-color: #ffffff !important;
-webkit-text-fill-color: #331f17 !important;
}
.newsletter_popup_container .field__input::placeholder {
    color: #a07850 !important;
    opacity: 1 !important;
    }
    .popupClose {
    background: rgba(44, 24, 16, 0.7) !important;
    }
    .closeText {
    color: #ffffff !important;
    }
}