﻿/*NEWSLETTER*/

.newsletter_all{
    padding: 0 64px;
    position: relative;
    clear: both;
    background-color: var(--neutral-100);
    height: 172px;
}

.Newsletter { 
    min-height: 218px;
    margin-top: -149px; 
    background-color: #EBF0F5; 
    border-radius: 4px; 
    max-width: 1238px;
}

.newsletter_wrapper{
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 40px;
}

.newsletter_left{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.newsletter_right{
    flex: 1;
}

.newsletter_left_text,
.newsletter_right_text{
    color: #000;
    font-family: "Space Grotesk";
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
}

.newsletter_right_title h2{
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 30px;
    /* align-self: stretch; */
}

.newsletter_right_email {
    padding: 24px 0;
}

.newsletter_right_email_label{
    font-family: "Space Grotesk Bold";
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #000;
}

.input.newsletter_right_email_input{
    font-family: "Archivo";
    font-size: 13px;
    font-weight: 400;
    border-color: #CED7E0;
    border-radius: 4px;
    border: 1px solid var(--Neutral-Neutral-300, #CED7E0);
    height: 48px;
    padding: 0 16px;
    margin-bottom: 4px;
}

.newsletter_right_email_input::placeholder {
    font-family: "Archivo";
    font-size: 13px;
    font-weight: 400;
}

.newsletter_right_subscrever{
    display: flex;
    align-items: center;
    align-self: stretch;
}

.newsletter_right_checkbox{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    color: var(--Neutral-Neutral-9, #272B30);
    font-family: "Archivo";
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none; 
}

.newsletter_right_checkbox a,
.newsletter_right_checkbox a:link,
.newsletter_right_checkbox a:visited {
    color: var(--Neutral-Neutral-9, #272B30);
    text-decoration: underline;
}

.newsletter_right_checkbox a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/* .checkbox{
    /* appearance: none; 
    height: 24px;
    width: 24px;
    border-radius: 4px;
    border: 1px solid var(--Neutral-Neutral-300, #CED7E0);
    background: var(--Neutral-Neutral-100, #FFF);
    flex: 0 0 24px;
} */

.checkbox {
    appearance: none;

    width: 24px;
    height: 24px;
    flex: 0 0 24px;

    border-radius: 4px;
    border: 1px solid #CED7E0;
    background-color: #FFF;
    cursor: pointer;

    position: relative;
}

.checkbox:checked {
    background-color: #004CCC;
    border-color: #004CCC;
}

.checkbox:checked::after {
    content: "";
    position: absolute;

    width: 6px;
    height: 12px;

    border: solid #FFF;
    border-width: 0 3px 3px 0;

    top: 2px;
    left: 7px;

    transform: rotate(45deg);
} 

.subscribe_button{
    margin-left: 24px;
}

@media (max-width: 760px){
    .subscribe_button{
        margin-top: 24px;
        margin-left: 0px;
    }
}


