﻿
/*loader start*/
.pulse {
    width: 22.4px;
    height: 22.4px;
    border-radius: 50%;
    background: #f4abff;
    box-shadow: 0 0 0 0 rgba(244,171,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(244,171,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;
    }
}

.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*/
