.newsletterNotification {
    background: #002652;
    bottom: 30px;
    color: #F3F3F5;
    display: none;
    height: auto;
    padding: 15px;
    position: fixed;
    left: 30px;
    min-width: 250px;
    max-width: 320px;
    z-index: 999;
    font-family: arial;
}
.newsletterNotification h2 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;

}
.newsletterNotification p {
    font-size: 12px;
    line-height: 1.4;
}
.newsletterNotification p a {
    color: #F3F3F5;
    text-decoration: underline;
}
.newsletterNotification span {
    display: flex;
}
.newsletterNotification span a,
.newsletterNotification span a:hover {
    background: #F3F3F5;
    color: #002652;
    border: 1px solid #F3F3F5;
    font-size: 15px;
    flex-grow: 1;
    flex-basis: 0;
    line-height: 32px;
    text-align: center;
    text-decoration: none;
}
.newsletterNotification span a.newsletterNotification__close {
    background: #002652;
    border: 1px solid #F3F3F5;
    color: #F3F3F5;
}
@media (max-width: 576px) {
    .newsletterNotification {
        bottom: 0;
        left: 0;
        max-width: 100%;
        padding: 15px;
        right: 0;
        width: fit-content;
    }
    .newsletterNotification h2 {
        font-size: 16px;
    }
    .newsletterNotification p {
        font-size: 12px;
    }
    .newsletterNotification span a,
    .newsletterNotification span a:hover {
        font-size: 14px;
    }
}