/** Shopify CDN: Minification failed

Line 74:11 Expected ":"

**/
.custom-newsletter {
    background:#FCF1E9;
    display:flex;
    justify-content:center;
    margin-block:32px;
    overflow:hidden;
}

.custom-newsletter__container {
    max-width: 644px;
    padding-block: 64px;
}

.custom-newsletter__content {
    position: relative;
    z-index: 1;
}

.custom-newsletter__title {
    font-size: clamp(28px, 2.5vw, 32px);
    line-height: clamp(34px, 3vw, 40px);
    margin: 0 0 16px;
}

.custom-newsletter__subtext {
    margin: 0 0 32px;
}

.custom-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-newsletter__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-newsletter__label {
    
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3em; /* 133.333% */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin:0 0 8px;
}

.custom-newsletter__input {
    width: 100%;
    padding: 16px 24px;
    border-radius: 8px;
    background: #FFF;
    color: #000;
    outline: none;
    border: 1px solid #FFF;
    transition: border-color 0.2s ease;
    
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; 
}

.custom-newsletter__input::placeholder {
    opacity.5
}

.custom-newsletter__input:hover,
.custom-newsletter__input:focus {
    border-color: #E16F20;
    background-color: #ffffff;
}

.custom-newsletter__consent {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.custom-newsletter__checkbox {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #E16F20;
    cursor: pointer;
}

.custom-newsletter__consent-text {
    
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.42em;
    color: #000;
    cursor: pointer;
}

.custom-newsletter__button {
    width:fit-content;
    margin-top:16px;
    padding: 16px 32px;
    background-color: #E16F20;
    border-radius: 8px;
    border: none;
    color: #ffffff;
    
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.42em;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-newsletter__button:hover {
    background-color: #e69052;
}

.custom-newsletter__bg-icon-left,
.custom-newsletter__bg-icon-right {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display:flex;
}
.custom-newsletter__bg-icon-left {
    top:32px;
    left:0;
}
.custom-newsletter__bg-icon-right {
    bottom:32px;
    right:0;
}

@media(max-width:999px) {
    .custom-newsletter__bg-icon-left svg {
        width:120px;
        height:auto;
    }
    .custom-newsletter__bg-icon-right svg {
        width:170px;
        height:auto;
    }
}
@media(max-width:999px) {
    .custom-newsletter__bg-icon-left svg {
        width:80px;
    }
    .custom-newsletter__bg-icon-right svg {
        width:130px;
    }
}