#custom-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#custom-notification-content {
    position: relative;
    background-color: #fff;
    padding: 38px 28px;
    max-width: 550px;
    text-align: center;
    border-radius: 4px;
    font-size: 18px;
    max-height: 100vh;
    overflow: auto;
    margin: 20px;
}

#custom-notification-content img {
    width: 100%;
}

#custom-notification-close {
    display: inline-block;
    margin-top: 20px;
}

#custom-notification-close:hover {
    /*background-color: #286090;*/
}

#custom-notification-content p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}


.headerdonatebutton, .headerdonatebutton:visited, .headerdonatebutton_close, .headerdonatebutton_close:visited {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 5px;
}

.headerdonatebutton {
    background: #e94b35;
    color: #fff !important;
    padding: 7px 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none !important;
}

.headerdonatebutton:hover, .headerdonatebutton:focus {
    color: #fff;
    background: #474747;
    transition: all .5s;
}

.headerdonatebutton_close {
    background: #fff;
    color: #e94b35;
    padding: 7px 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.headerdonatebutton_close:hover, .headerdonatebutton_close:focus {
    color: #474747;
    background: #fff;
    transition: all .5s;
}

#custom-notification-content a {
    color: #474747;
    text-decoration: underline;
}