.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.loader .spinner {
    width: 50px;
    height: 50px;
    border: 7px solid #D6BAEB;
    border-radius: 50%;
    border-top-color: #7133A0;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}