﻿

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05); 
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
}


.loader-spinner {
    text-align: center;
}

.text-vino {
    color: #6D071A;
}

.loader-overlay {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




