﻿
/*loader start*/
/*.pulse {
    width: 22.4px;
    height: 22.4px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
    animation: pulse-kefe91md 1.5s infinite linear;
    position: relative;
}

    .pulse:before,
    .pulse:after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
        animation: inherit;
        animation-delay: -0.5s;
    }

    .pulse:after {
        animation-delay: -1s;
    }

@keyframes pulse-kefe91md {
    100% {
        box-shadow: 0 0 0 44.8px #0000;
    }
}*/


.spinner {
    position: relative;
    width: 22.4px;
    height: 22.4px;
}

    .spinner::before,
    .spinner::after {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        animation: spinner-b4c8mmmd 0.5s backwards, spinner-49opz7md 1.25s 0.5s infinite ease;
        border: 5.6px solid #ffffff;
        border-radius: 50%;
        box-shadow: 0 -33.6px 0 -5.6px #ffffff;
        position: absolute;
    }

    .spinner::after {
        animation-delay: 0s, 1.25s;
    }

@keyframes spinner-b4c8mmmd {
    from {
        box-shadow: 0 0 0 -5.6px #ffffff;
    }
}

@keyframes spinner-49opz7md {
    to {
        transform: rotate(360deg);
    }
}

.custom-loader {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #090909b5;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
/*loader  end*/
