.notification {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 99999;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    color: #fff;
    display: none;
    align-items: center;
    min-width: 250px;
    justify-content: center;
    box-shadow: 0 0 10px 0 rgb(172, 109, 255);
    transition: all 0.5s;
    font-size: 15px;
}

@keyframes notification_animation {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes notification_animation_hide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-800%);
    }
}


.show_notification {
    display: flex;
    animation: notification_animation 0.5s;
}

.hide_notification {
    display: flex;
    animation: notification_animation_hide 0.5s;
    transition: all 0.5s;
}

.good_notification {
    background-color: #4CAF50;
}

.notification_icon img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

.notification_text {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2em;
    font-weight: bold;
}

.bad_notification {
    background-color: #f44336;
}

.warning_notification {
    background-color: #ff9800;
}

.info_notification {
    color: #000;
    background-color: #ffffff;
}

@media (max-width: 425px) {
    .notification {
        top: 10px;
        right: 0;
        left: 0;
        margin: 30px;
    }

    @keyframes notification_animation_hide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-150%);
        }
    }
}

.timer{
    padding-right: 10px;
}