﻿#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translate(0,-4px);-ms-transform:rotate(3deg) translate(0,-4px);transform:rotate(3deg) translate(0,-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:2px solid transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner 400ms linear infinite;animation:nprogress-spinner 400ms linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes nprogress-spinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}

#nprogress .peg {
    box-shadow: none
}

#nprogress .spinner-icon {
    width: 28px;
    height: 28px;
    border: 5px solid transparent;
    border-top-color: goldenrod;
    border-left-color: goldenrod;
}
/* ===== Progress Bar RTL ===== */

/* progress bar */

#nprogress .bar {
    height: 5px;
    background: goldenrod;
}



#notif-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    min-width: 260px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    opacity: 0;
    transform: translateY(-10px);
    animation: notif-enter .35s ease forwards;
}

    .notification.exit {
        animation: notif-exit .35s ease forwards;
    }

    .notification.success {
        background: linear-gradient(135deg, #28c76f, #20a65b);
    }

    .notification.error {
        background: linear-gradient(135deg, #ea5455, #d13637);
    }

    .notification.warning {
        background: linear-gradient(135deg, #ff9f43, #ff881a);
    }

    .notification.info {
        background: linear-gradient(135deg, #00cfe8, #05b5cc);
    }

@keyframes notif-enter {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes notif-exit {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}
