.newsletter-block {
    background-color: #0071b5;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: -2px 0 10px rgba(0,0,0,.4);
    display: none;
}

.newsletter-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    background-image: url("https://feeders.dev.raketech.net/wp-content/themes/expound/images/close.svg");
    background-size: cover;
}

.newsletter-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    margin: 0;
}

.af-form {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

.af-checkWrap .checkbox {
    display: inline-block;
    margin: 0;
}

.af-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bodyText {
    color: white;
    opacity: 0.9;
}

.bodyText p {
    margin: 0;
    color: white;
}

.af-body {
    display: grid;
    grid-template-columns: 45% 23% 25%;
    width: 100%;
    max-width: 670px;
    align-items: center;
    grid-gap: 20px;
    margin: 0 auto;
}

.af-textWrap input {
    margin: 0;
}

.newsletter-input-box {
    position: relative;
}

.choice {
    color: white;
    margin: 0;
}

.news-input {
    width: 100%;
    color: #28A2B5;
    padding: 10px 5px !important;
    box-sizing: border-box;
}

.newsletter-alert {
    color: #F4B624;
    padding: 5px 0;
    display: none;
    width: fit-content;
    position: absolute;
    bottom: -30px;
    margin-bottom: 0;
}

.news-submit {
    background-color: #79bbff !important;
    color: whitesmoke !important;
    width: 100%;
    font-weight: bold !important;
    padding: 15px 5px !important;
    border-radius: 5px;
    font-size: 16px !important;
    text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
    .newsletter-close:hover {
        cursor: pointer;
        opacity: 1;
    }

    .news-submit:hover {
        box-shadow: 0 0 10px #34d0ca;
        cursor: pointer;
    }
}


@media screen and (max-width:992px) {
    .af-form {
        flex-direction: column;
        padding: 10px;
    }

    .af-body {
        grid-template-columns: auto;
        grid-gap: 0;
    }

    .af-element-checkbox {
        padding-bottom: 5px;
    }

    .newsletter-input-box {
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .af-checkWrap {
        margin-bottom: 5px;
    }

    .newsletter-alert {
        bottom: -25px;
    }
}