.expiration-notice {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expiration-notice:not(.active) {
    display: none;
}

.popup-content {
    max-width: 800px;
    /* background-color: #f8d7da; */
    background: white;
    /*color: #721c24;*/
    padding: 15px;
    font-size: 16px;
    z-index: 1000;
    position: relative;
}

.popup-content h2 {
    margin-top: 0;
}

.popup-content footer {
    text-align: center;
    font-size: 18px;
}

#dismiss-button {
    border: #266bbe solid 1px;
    font-weight: bold;
    border-radius: 8px;
    color: #0759b2;
    background: #fff;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

#close-button {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -18px;
    right: -18px;
    cursor: pointer;
    display: none;
}

#close-button svg {
    width: 100%;
    height: 100%;
    display: block;
}