/* ==========================================================
   NEWSLETTER
   Namespace: newsletter-
   ========================================================== */

.newsletter-bg {
    background: #444;
    color: #fff;
    border: solid 3px #000;
}

.newsletter-container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    align-items: center;
}

.newsletter-hidden {
    display: none;
}

.newsletter-intro {
    display: flex;
    align-items: center;
}

.newsletter-icon {
    margin-right: 15px;
}

.newsletter-text {
    margin-bottom: 0;
}

.newsletter-field {
    display: flex;
    align-items: center;
}

.newsletter-input {
    color: #98a5b5;
    line-height: 12px;
    font-size: 14px;
    border: solid 1px #ebebeb;
    padding: 0.55em;
    width: 100%;
    height: 48px;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0 !important;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-action {
    display: flex;
    align-items: center;
}

.newsletter-button {
    color: #FFFFFF;
    line-height: 12px;
    font-size: 14px;
    padding: 0.55em;
    width: 100%;
    text-transform: uppercase;
    background: #FF0000;
    height: 48px;
    border: none;
    border-radius: 0 !important;
    cursor: pointer;
}

.newsletter-button:hover {
    background-color: #000;
    color: #FFF;
}

.newsletter-success {
    margin-bottom: 0;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 767px) {

    .newsletter-form {
        display: block;
    }

    .newsletter-intro,
    .newsletter-field,
    .newsletter-action {
        width: 100%;
        margin-bottom: 15px;
    }

    .newsletter-intro {
        justify-content: center;
    }

    .newsletter-action {
        margin-bottom: 0;
    }

}