#nl_popin_content_container {
    background: var(--footer_brand_bg);
    max-width: 90%;
}
.nl_popin_content {
    box-sizing: border-box;
    width: auto;
    max-width: 640px;
    padding: 70px;
    overflow: hidden;
}

.nl_popin_content .title {
    font-family:'Futura', sans-serif;
    font-size: 35px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    color: var(--footer_brand_color);
}

.nl_popin_content .image img{
    max-width: 350px;
    margin: 0 auto;
    display: block;
}
.nl_popin_content .title small {
    font-size: 20px;
}

.nl_popin_content .title strong {
    font-weight: normal;
    color: #a98524;
}

.nl_popin_content .text {
    font-family:'Futura', sans-serif;
    font-size: 17px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 150%;
    color: var(--footer_brand_color);
}

.nl_popin_content .form {
    text-align:center;
}

.nl_popin_content form {
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
}

.nl_popin_content form .txt::placeholder {
    color:#fff;
}
label[for='popup_email'] {
    display: block;
    line-height: 130%;
    font-size: .9em;
    margin-bottom: .8em;
    color: var(--footer_brand_color);
}

.nl_popin_content form input[type='submit'] {
    line-height: 50px;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    font-family: var(--first_font);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 1;
    overflow: hidden;
    position: relative;
    border-width: 1px 5px;
    border-style: solid;
    border-color: var(--newsletter_border_color_submit);
    min-width: 160px;
    background: var(--main_color_associate);
    color: var(--main_color);
    transition: all .3s ease;
    cursor: pointer;
}
.nl_popin_content form input[type='submit']:hover {
    border-color: var(--footer_brand_color);
    background: 0 0;
    color: var(--footer_brand_color);
}
#popup_email {
    font-family: 'Futura', sans-serif;
    font-size: 14px;
    float: left;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    text-indent: 10px;
    border: 1px solid var(--footer_brand_color);
    color: var(--footer_brand_color);
    background: var(--footer_brand_bg);
    width: 100%;
    padding: 0 10px;
}
.form.newsletter .field.mail{
    width: 50%;
    margin-right: 10px;
    flex-grow: 1;
}
@media ( max-width: 768px ) {
    .nl_popin_content {
        padding: 30px 20px 20px 20px;
    }

    .nl_popin_content .title {
        font-size: 20px;
        line-height: 150%;
    }

    .nl_popin_content .title small {
        font-size: 16px;
        line-height: 130%;
    }

    .nl_popin_content .text {
        font-size: 16px;
        line-height: 150%;
    }

    .nl_popin_content form .txt {
        width: 100%;
        margin:0;
    }

    .nl_popin_content form .btn {
        width: 100%;
        margin:10px 0 0 0;
    }
}