/* =========================
   Notification Popup Modal
========================= */

.notification-popup-dialog{
    max-width:420px;
}

/* card */

.notification-popup-card{
    border-radius:14px;
    border:none;
    box-shadow:0 15px 35px rgba(0,0,0,0.18);
    overflow:hidden;
}

/* header */

.notification-popup-header{
    display:flex;
    align-items:center;
    gap:10px;
    padding:18px 18px 10px 18px;
    border-bottom:none;
}

/* icon */

.notification-popup-icon{
    width:38px;
    height:38px;
    background:#ff4d4f;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

/* title */

.notification-popup-title{
    font-size:16px;
    font-weight:600;
    flex:1;
    margin:0;
}

/* body */

.notification-popup-body{
    padding:5px 18px 20px 66px;
    font-size:14px;
    color:#444;
    line-height:1.5;
}

/* animation */

.notification-popup .modal-content{
    animation:notificationPopupSlide 0.35s ease;
}

@keyframes notificationPopupSlide{
    from{
        transform:translateY(25px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* mobile */

@media(max-width:576px){

.notification-popup-dialog{
    margin:15px;
}

.notification-popup-title{
    font-size:15px;
}

.notification-popup-body{
    font-size:13px;
}

}