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

#contentNotification,
.contentNotification {
    position: fixed;
    min-width: 400px;
    bottom: 40px;
    /* right: 65px; */
    left: 15px;
    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.show-fixed {
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 90%;
}

.linear-alert-custom p {
    margin: 0;
}
.linear-alert-custom i {
    font-size: 20px !important;
    font-weight: 600;
}

.linear-alert-custom .square-24px {
    width: 24px;
    height: 24px;
    font-size: 24px;
}
.linear-alert-custom .square-24px.square-flex {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.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,
.linear-alert-custom.show-fixed .progress {
    animation: progress-alert 3s .25s linear forwards;
}

.linear-alert-custom.bg-jacarta-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 246 / var(--tw-bg-opacity));
}
.linear-alert-custom.text-jacarta-700 {
    --tw-text-opacity: 1;
    color: rgb(19 23 64 / var(--tw-text-opacity));
}
.uk-dark .linear-alert-custom.dark\:border-transparent {
    border-color: transparent;
}
.uk-dark .linear-alert-custom.dark\:bg-jacarta-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(19 23 64 / var(--tw-bg-opacity));
}
.uk-dark .linear-alert-custom.dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.linear-alert-custom .bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.linear-alert-custom .from-transparent {
    --tw-gradient-from: transparent;
    --tw-gradient-to: rgb(0 0 0 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.linear-alert-custom .to-green {
    --tw-gradient-to: var(--color-success);
}
.linear-alert-custom .to-blue {
    --tw-gradient-to: var(--color-info);
}
.linear-alert-custom .to-orange {
    --tw-gradient-to: var(--color-warning);
}
.linear-alert-custom .to-red {
    --tw-gradient-to: var(--color-danger);
}
.linear-alert-custom .to-accent {
    --tw-gradient-to: var(--color-primary);
}
.linear-alert-custom .to-jacarta-500 {
    --tw-gradient-to: #5A5D79;
}

@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);
    }
}