.woo-newsletter-container{
    display: flex;
    width: 100%;
    background-color: #FFFEF9;
    gap:35px;
    align-items:center;
}

.woo-newsletter-block-left{
    width: 60%;
}
.woo-newsletter-block-left.full-width{
    width: 100%;
}

.woo-newsletter-block-right{
    width: 40%;
}

.woo-newsletter-heading{
    display: block;
    width: 100%;
    font-size: 26px;
    font-weight: 600;
}

.woo-newsletter-text{
    margin-top: 20px;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
}

.woo-newsletter {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* allows consent to go below */
    gap: 0px; /* optional spacing between input & button */
}

.woo-newsletter-user{
    font-size: 12px;
    border: 1px #D8D4CA solid;
    border-radius: 4px;
    padding: 15px;
}
.woo-newsletter-user b{
    font-size: 16px;
}

#woo-newsletter-email {
    flex: 1;
    min-width: 0; /* prevents overflow */
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px #D8D4CA solid;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #F6F4ED;
    color: #5C5C53;
}
#woo-newsletter-email.error {
    border: 1px #C21010 solid;
    border-right: none;
    color: #C21010;
    font-weight: 500;
}

.woo-newsletter button {
    width: 80px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    background-color:#5C5C53;
    color: #FFFEF9;
    border: none !important;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    cursor: pointer;
}

.woo-newsletter button:hover,
.woo-newsletter button:focus{
    outline: none !important;
    background-color:#9b9b8b;
}

.woo-newsletter-consent {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin-top: 10px;
    color: #5C5C53 !important;
}

.woo-newsletter-consent input[type="checkbox"] {
    display: inline-block;
    border: .125rem solid;
    border-color: #bebebe !important;
    border-radius: .1875rem;
    width: 1.4375rem;
    height: 1.4375rem;
    position: relative;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    margin-right: .8125rem;
    transition: all .3s;
    cursor: pointer
}

.woo-newsletter-consent input[type="checkbox"]:checked {
    border-color: #212227 !important;
}

.woo-newsletter-consent input[type="checkbox"]::before{
    content: " ";
    display: block;
    height: .75rem;
    width: .375rem;
    background-color: transparent;
    position: absolute;
    top: .125rem;
    left: .4375rem;
    border-bottom: 3px solid #212227;
    border-right: 3px solid #212227;
    opacity: 0;
    transition: opacity .2s;
    transform: rotate(45deg)
}

.woo-newsletter-consent input[type="checkbox"]:checked::before {
    opacity: 1;
}

.woo-newsletter-consent input[type="checkbox"].error {
    border: 1px #C21010 solid !important;
}

.woo-newsletter-consent a{
    color: #5C5C53 !important;
    font-weight: 500;
}

.woo-newsletter-response{
    display: table;
    width: 100%;
    font-size: 12px;
    margin-top: 7px;
    font-weight: 500;
    color: #C21010;
}
.woo-newsletter-response.error{
    color: #C21010;
}
.woo-newsletter-response.success{
    color: #3ba81c;
}

@media only screen and (max-width:1024px){

    .woo-newsletter-container{
        flex-direction:column;
    }

    .woo-newsletter-block-left,
    .woo-newsletter-block-right{
        width:100%;
    }
}

/* CHECKBOX STYLE */
input[type="checkbox"]{
    display: inline-block;
    border: .125rem solid;
    border-color: #bebebe !important;
    border-radius: .1875rem;
    width: 1.4375rem;
    height: 1.4375rem;
    position: relative;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    margin-right: .8125rem;
    transition: all .3s;
    cursor: pointer
}

input[type="checkbox"]:checked {
    border-color: #212227 !important;
}

input[type="checkbox"]::before{
    content: " ";
    display: block;
    height: .75rem;
    width: .375rem;
    background-color: transparent;
    position: absolute;
    top: .125rem;
    left: .4375rem;
    border-bottom: 3px solid #212227;
    border-right: 3px solid #212227;
    opacity: 0;
    transition: opacity .2s;
    transform: rotate(45deg)
}

input[type="checkbox"]:checked::before {
    opacity: 1;
}
