.notification {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.notification-box {
    background-color: white;
    box-shadow: 0px 0px 8px #555;
    min-width: 740px;
    min-height: 420px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-box-image {
    position: relative;
    background-size: contain;
}

.notification-box-close {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
    position: absolute;
    cursor: pointer;
    transition: opacity .2s ease-in;
    opacity: .7;
    background: url('../../images/graphic/Buttons.png') no-repeat -45px -45px;
}

.notification-box-close:hover {
    opacity: 1
}

.small-notification {
    top: 45px;
    position: fixed;
    width: 100vw;
    height: 60px;
    background-color: darkgray;
    display: flex;
    justify-content: space-between;
    z-index: 1199;
}

.small-notification-close {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    margin-right: 20px;
    cursor: pointer;
    background: url('../../images/graphic/Buttons.png') no-repeat -94px -47px;
}

.small-notification-text {
    display: flex;
}

.small-notification-icon {
    height: 45px;
    width: 45px;
    align-self: center;
    margin-left: 15px;
    background: url('../../images/graphic/Buttons.png') no-repeat -135px -47px;
}

.small-notification-text-value {
    color: white;
    font-size: 16px;
    line-height: 60px;
    margin-left: 10px;
    font-style: italic;
}

.download-popup-section {
    z-index: 998;
    height: 300px;
    position: fixed;
    left: 0px;
    background-color: white;
    width: 600px;
    display: none;
    justify-content: center;
    align-items: center;
    top: calc(100vh / 2 - 150px);
    left: calc(100vw / 2 - 300px);
}

@media (max-height: 550px) {
    .download-popup-section {
        display: none;
    }
}

.download-popup-section-opened {
    display: flex;
}

.download-popup-section-message {
    z-index: -10;
    height: 80px;
    margin-bottom: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-popup-section-message-text {
    color: black;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

.download-popup-section-message-buttons {
    width: 100%;
    color: #F06E00;
    font-size: 13pt;
    line-height: 21px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    transition: opacity .2s ease-in;
}

.download-popup-section-message-buttons div {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 12px;
    display: flex;
    cursor: pointer;
    opacity: 1;
}

.download-popup-section-message-buttons:hover {
    opacity: .7;
}

.download-popup-section-button-donate {
    height: 45px;
    width: auto;
    line-height: 45px;
    visibility: visible;
    color: #F06E00;
    flex-direction: row;
}

.download-popup-section-button-text {
    font-size: 20px;
    line-height: 66px;
}

.download-popup-section-button-icon {
    width: 45px;
    height: 45px;
    margin-top: 13px !important;
    margin-left: 0px !important;
    background: url(../../images/graphic/Buttons.png) no-repeat -180px -225px;
}

.download-popup-section-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s ease-in;
    background: url(../../images/graphic/Buttons.png) no-repeat -45px -45px;
}

.download-popup-section-close:hover {
    opacity: 1;
}