﻿ 
.back-link {
    text-decoration: none;
    display: none
}

.icon-back {
    font-size: x-large
}
/*notif modal style start */

.notification-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .notification-modal-overlay.show {
        display: flex;
    }

.notification-modal {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: notificationModalShow 0.3s ease;
}

.notification-modal-close {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 28px;
    color: #999;
    cursor: pointer;
}

.notification-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f5b400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.notification-modal h3 {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 700;
    color: #222;
}

.notification-modal p {
    margin: 0 auto 22px;
    color: #777;
    line-height: 1.9;
    font-size: 14px;
}

.notification-allow-btn {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 13px;
    background: #f5b400;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

    .notification-allow-btn:hover {
        opacity: 0.9;
    }

.notification-later-btn {
    width: 100%;
    border: 0;
    background: transparent;
    color: #888;
    padding: 12px;
    margin-top: 5px;
    cursor: pointer;
    font-size: 13px;
}

@keyframes notificationModalShow {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
 
