﻿
/*loader start*/
.pulse {
    width: 22.4px;
    height: 22.4px;
    border-radius: 50%;
    background: #faf512;
    box-shadow: 0 0 0 0 rgba(60,179,113,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(60,179,113,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: #fffff;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
/*loader  end*/

/*Modal Added Loading Start*/
#loadingModal {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loadingModalContent {
    background-color: #fff;
    padding: 12px 32px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#loadingModalContent h3 {
    margin-bottom: 0;
    font-size: 16px;
}
/*Modal Added Loading End*/