﻿
/*toster start*/
.toster {
    position: fixed;
    left: calc(50% - 140px);
    z-index: 9999;
    top: 10px;
    width: 280px;
}

    .toster.top-right {
        right: 10px !important;
        top: 10px !important;
    }

    .toster.top-left {
        left: 10px !important;
        top: 10px !important;
        right: unset;
    }

    .toster.bottom-left {
        left: 10px !important;
        top: unset;
        right: unset;
        bottom: 10px !important;
    }

    .toster.bottom-right {
        left: unset;
        top: unset;
        right: 10px;
        bottom: 10px !important;
    }

.toster-card {
    background: #f0fcf4;
    backdrop-filter: blur(6px);
    padding: 10px;
    display: flex;
    border-radius: 6px;
    border: 1px solid #22c55e;
    color:#000
}

.toster-card-icon {
    width: 18px;
    margin-right: 10px;
}

.toster-card-sec h2 {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.toster-card-sec p {
    margin-bottom: 0;
    font-size: 12px;
}

.toster-card-icon i {
    font-size: 19px;
    color: #22c55e;
    margin-top: -3px;
    display: block;
}


.toster-card.success h2 {
    color: #000;
}

.toster-card.success i {
    color: #000;
}

.toster-card.success {
    border-color: #adf8c9;
    background: #adf8c9;
}

.toster-card.error h2 {
    color: #000;
}

.toster-card.error i {
    color: #000;
}

.toster-card.error {
    border-color: #ff9393;
    background: #ff9393;
}

.toster-card.warning h2 {
    color: #000;
}

.toster-card.warning i {
    color: #000;
}

.toster-card.warning {
    border-color: #f97316;
    background: #f97316;
}
/*toster end*/



.loader {
   /* position: fixed;
    width: 100%;
    height: 100%;*/
    background: #0000006e;
    z-index: 9999;
    backdrop-filter: blur(3px);
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.loader-clock {
    width: 80px;
    aspect-ratio: 1;
    display: flex;
    color: #fff;
    border: 4px solid;
    box-sizing: border-box;
    border-radius: 50%;
    background: radial-gradient(circle 5px, currentColor 95%,#0000), linear-gradient(currentColor 50%,#0000 0) 50%/4px 60% no-repeat;
    animation: l1 2s infinite linear;
}

    .loader-clock:before {
        content: "";
        flex: 1;
        background: linear-gradient(currentColor 50%,#0000 0) 50%/4px 80% no-repeat;
        animation: inherit;
    }

@keyframes l1 {
    100% {
        transform: rotate(1turn)
    }
}