:root {
    --color-system-base: #606FF2;
    --color-system-base-2: #3956F1;
    --color-system-base-3: #ADF217;
    --color-system-base-4: #F2764A;
    --color-system-base-5: #53535B;
    --color-system-base-6: #F0F0F2;
}

.navbar-clone {
    transition: all .1s ease-in-out, padding-right 0s;
}

@keyframes fadeOutAlert {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    100% {
        display: none;
    }
}

.custom-show-alert.auto-hide,
.custom-sys-alert.auto-hide {
    animation-name: fadeOutAlert;
    animation-timing-function: ease;
    animation-duration: 1s;
    /* Duração da animação */
    animation-delay: 10s;
    /* Atraso antes da animação começar */
    animation-fill-mode: forwards;
    /* Mantém o estado final da animação */
}


/* --------------------------------------------------------------------------- */

.alert-timer {
    box-shadow: 1px 1px 10px 1px #707070;
}

.alert-timer .close-wrapper {
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 24px;
    /* top: 13px; */
    right: 8px;
}

.alert-timer .timer-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.alert-timer .btn-close {
    width: 24px;
    height: 24px;
    padding: 0px;
    margin: 0px;
    position: relative;
    z-index: 2;
    top: 0px;
    right: 0px;
}

.alert-timer .timer-circle-bg,
.alert-timer .timer-circle {
    fill: none;
    stroke-width: 2;
}

.alert-timer .timer-circle-bg {
    stroke: #636363;
}

.alert-timer .timer-circle {
    stroke: #fff;
    stroke-dasharray: 88;
    stroke-dashoffset: 88;
}

.alert-timer .btn-close:hover {
    color: #000000;
}

.alert-timer .btn-close {
    /* top: -1px; */
    top: -4px;
}

.alert-timer .btn-close::before {
    content: '\00D7';
}

.alert-timer .btn-close.pause {
    top: 0px
}

.alert-timer .btn-close.pause::before {
    content: '\023F8';
}

/* --------------------------------------------------------------------------- */

#preloader {
    background-color: #000000de;
    padding: 0;
    margin: 0;
    height: 100%;
    position: fixed;
    z-index: 99999;
    width: 100%;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#preloader span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: block;
}

.loading {
    width: 150px;
    height: 150px;
    text-align: center;
    border-radius: 50%;
    background-color: transparent;
    animation: 3s SpinAround infinite ease alternate;
    border-left: 3px solid #6E4AFF;
    border-bottom: 3px solid #C82CFF;
    box-shadow: inset 0 3px 0px 0 rgba(0, 0, 0, 0.2);
}

#preloader>.inner>span {
    color: var(--color-system-base-6);
}

@keyframes SpinAround {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* --------------------------------------------------------------------------- */