.patch-loader {
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #b91949;
    border-top-color: transparent;
    animation: spin infinite 1s ease-in-out;
}

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