.alert_newsletter {
    text-align: right;
    padding: 0 5px;
    margin-bottom: 5px;
    overflow-x: hidden;
}

.alert_newsletter_content {
    display: inline-block;
    width: 300px;
    max-width: 100%;
    font-size: .8rem;
    color: #000000;
    font-weight: 600;
    text-align: center;
    padding: 5px;
    margin-right: -310px;
    background-color: var(--color-background-green-opacity);
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    cursor: default;
}

.alert_newsletter_content.error {
    color: #000000;
    background-color: var(--color-background-red);
}

.newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 50px 80px;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.1);
}

.newsletter p {
    text-align: start;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-footer-text);
    margin: 0;
    line-height: 30px;
}

.newsletter p span.hl {
    color: #242424;
    font-weight: 600;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#add_contact_news input {
    font-size: .8rem;
    color: var(--color-footer-text);
    background-color: var(--color-text-white);
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 20px;
    height: auto;
}

#add_contact_news input::placeholder {
    font-size: .8rem;
    color: #A5A5A5;
    font-weight: 300;
}

#add_contact_news button {
    color: #ffffff;
    background-color: #000000;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    height: auto;
    width: 100%;
    margin: 50px 0 20px;
}

#add_contact_news button:hover {
    background-color: #000000cc;
}

#add_contact_news p.terms {
    font-size: 0.875rem;
    color: #353535;
    font-weight: 300;
    text-transform: none;
}

#add_contact_news p.terms a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline !important;
}

/*
1300px
*/
@media (max-width: 81.25em) {
    .newsletter p {
        font-size: .875rem;
    }

    #add_contact_news input,
    #add_contact_news button {
        font-size: .75rem;
        padding: 15px;
    }
}

/*
768px
*/
@media (max-width: 48em) {
    .newsletter {
        flex-direction: column;
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .newsletter p {
        text-align: start;
        line-height: 20px;
    }

    #add_contact_news input {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row > div {
        width: 100%;
    }

    .form-data {
        flex-direction: column;
        width: 100%;
    }

    #add_contact_news input {
        font-size: .75rem;
        padding: 15px 20px;
        margin: 10px 0;
    }

    #add_contact_news input::placeholder {
        font-size: .75rem;
    }

    #add_contact_news button {
        font-size: .75rem;
        padding: 15px;
    }
}