.modal--basket.loading .modal-content {
    position: relative;
}

.modal--basket.loading .modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.modal--basket.loading .modal-content::after {
    content: '';
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-right-color: transparent;
    z-index: 1;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
