/* ******************* */
/* LINEAR ALERT CUSTOM */
/* ******************* */

#contentNotification {
    position: fixed;
    min-width: 400px;
    bottom: 40px;
    right: 25px;
    z-index: 9999;
}

.linear-alert-custom {
    position: relative;
    display: inline-block;

    width: 100%;
    padding: 20px 25px 20px 15px;

    border-radius: 4px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);

    opacity: 0;
    visibility: hidden;

    /* color: #f6f5f9; */
    /* background-color: #141619; */
}

.linear-alert-custom .progress {
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: 0;
    height: 3px;
    border-radius: 4px;

    /* background-image: linear-gradient(to right, #529bdb, #3250bf); */
}

.linear-alert-custom.show {
    animation: fade-alert linear forwards;
    animation-duration: 4000ms;
}
.linear-alert-custom.show .progress {
    animation: progress-alert 3s .25s linear forwards;
}

@keyframes fade-alert {
    5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    90% {
        opacity: 1;
        transform: translateY(0px);
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes progress-alert {
    to {
        width: calc(100% - 10px);
    }
}