/*-------------------------------------------------------------------------------------------------------------------------------*/


/* Notification alert
/*-------------------------------------------------------------------------------------------------------------------------------*/

#notifications-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 350px;
}

.notification-alert {
    width: 100%;
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.notification-alert.success {
    background: #31ad22;
}

.notification-alert.warning {
    background: #ffb400;
}

.notification-alert.error {
    background: #d00000;
}

.notification-alert .fa {
    font-size: 22px;
    color: #fff;
    position: absolute;
    top: 4px;
    right: 8px;
    cursor: pointer;
    transition: .3s;
}

.notification-alert .fa:hover {
    transform: rotate(24deg);
}