.mail-intro {
    margin: 0 0 15px;
}

#newsletter__subscription {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.newsletter__subscription-email {
    height: 45px;
    padding: 6px 12px;
    box-shadow: none;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .05) inset;
    border: 1px solid #e6e6e6;
    outline: 0;
    width: 100%;
    color: #000;
    font-size: 18px;
}

.newsletter__subscription-submit {
    clear: both;
    background-color: #2f8f41;
    border: 0;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: 15px 0 0;
    padding: 8px 30px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    width: auto;
    text-transform: uppercase;
}

.newsletter__subscription-submit:hover {
    background-color: #121212;
}

.site-newsletter__spinner {
    float: none;
    text-align: center;
    display: none;
    width: 100%;
    margin: 0;
}

.newsletter__subscription-msg.ok {
    background: #259046;
    color: #f8f8f8;
    text-align: center;
}

.newsletter__subscription-msg.error {
    text-align: center;
    margin: 15px 0 0;
    color: #fd0000;
}

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

    .site-footer .site-newsletter__spinner {
        display: none
    }
}





.site-newsletter__spinner .bounce {
    margin-right: 2px;
    text-align: center;
    width: 12px;
    height: 12px;
    background-color: #2f8f41;
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s ease-in-out infinite both
}

.site-newsletter__spinner .bounce1 {
    animation-delay: -.32s
}

.site-newsletter__spinner .bounce2 {
    animation-delay: -.16s
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    to {
        transform: scale(0);
        transform-origin: center
    }

    40% {
        transform: scale(1)
    }
}

