#newsletter-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    opacity: 0;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    z-index: 1000;
}

#newsletter-popup-inner {
    grid-row: 1;
    grid-column: 2;
    width: 992px;
    max-width: 100vw;
}

#newsletter-popup-inner .card-header {
    background-color: #337ab7;
}

#newsletter-popup-inner .btn-custom-blue {
    background-color: #337ab7 !important;
}
#newsletter-popup-inner .btn-custom-blue:hover {
    background-color: #23527c !important;
}

.newsletter-popup-error {
    color: red;
    display: none;
}

@media (min-width: 1200px) {
    #newsletter-popup-inner {
        width: 1200px;
    }
}