.on-progress {


}

.on-progress svg {
    will-change: transform;
    width: 1.2em;
    height: 1.2em;
    animation: .6s linear infinite ds-loading;
}

@keyframes ds-loading {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* затемнение фона */
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-card {
    margin: auto;
    width: 3rem;
    height: 3rem;
    z-index: var(--bs-backdrop-zindex);
    background-color: var(--bs-secondary-background);;
    border-radius: .6rem;
}

.spinner-card .spinner-img {
    height: 1.4rem;
    width: 1.4rem;
    background-size: 1.4rem;
}