/* Button Loader CSS Starts */
.loading {
    pointer-events: none;
    cursor: not-allowed !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.loading::before {
    display: block;
    content: "";
    opacity: 1;
    border-radius: 50%;
    width: 18px !important;
    height: 18px !important;
    transition: opacity 1s .5s;
    animation: .8s linear infinite rotate;
    border: 2px solid !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    border-top-color: white !important;
    border-bottom-color: white !important;
}
@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}
/* Button Loader CSS Ends */