/* @group Newsletter form
------------------------------------ */
.newsletter-form {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: var(--z-index-modal);
    transition: all .7s;
}
.newsletter-form label span {
    font-size: 1em;
}
[data-newsletter="show"] .newsletter-form {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.newsletter-form__container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 144rem;
    overflow: hidden;
    background-color: var(--marron);
}
.newsletter-form .outer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-lowest);
}
.newsletter-form .close-newsletter {
    position: absolute;
    top: 0;
    right: 0;
    z-index: var(--z-index-medium);
    margin: 2rem;
}   
.newsletter-form .close-newsletter .icon-close {
    font-size: 3rem;
    color: var(--johannes);
}
.newsletter-form .content {
    position: relative;
    z-index: var(--z-index-medium-low);
    max-width: 78rem;
    margin: 0 auto;
    padding: 10rem 2rem;
    text-align: center;
}
.newsletter-form .content h2 {
    font-family: var(--font-pragmatica);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 125%;
    text-transform: capitalize;
    color: var(--marron);
    margin: 0 0 2.4rem;
}
.newsletter-form .content p {
    font-family: var(--font-petrona);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 150%;
    color: var(--marron);
    max-width: 53rem;
    margin: 0 auto 3rem;
}
@media only screen
and (min-width : 961px) {
    .newsletter-form {
        justify-content: center;
        align-items: center;
    }
    .newsletter-form__container {
        height: 53.6rem;
    }
    .newsletter-form .content {
        padding: 10rem 0;
    }
    .newsletter-form .content h2 {
        text-transform: uppercase;
        font-size: 2.8rem;
        line-height: 128.571%;
        letter-spacing: 0.05em;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */