/*!
 * © 2025 Anton O. — harkushyn.com
 * Proprietary license. Viewing and execution allowed only when the
 * script is delivered from https://harkushyn.com. Any reproduction,
 * modification, distribution or embedding elsewhere is strictly
 * prohibited without prior written consent.
*/


/*Notification*/
#notification-messages-block {
    z-index: 999;
    position: fixed;
    top: 30px;
    width: 100%;
    font-family: Arial, sans-serif;
    pointer-events: none;
}

#notification-messages-block div {
    display: none;
    width: 80%;
    max-width: 600px;
    margin: 5px auto;
    align-items: center;
    background-color: #2c2c2c;
    color: #cdcdcd;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    pointer-events: auto;
}

#notification-messages-block button {
    display: flex;
    justify-content: right;
    align-items: center;
    border: none;
    background: none;
    color: #8fc8ff;
    font-size: 14px;
    border-radius: 25px;
    padding: 10px;
}

#notification-messages-block button:hover {
    background-color: #555555;
}