/* Style Preloader - #Weboebacaba */
#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #001f3f !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-logo {
    color: #ffffff !important;
    /* WebOeba debe estar en Segoe UI */
    font-family: "Segoe UI", Tahoma, sans-serif !important;
    font-size: 36px !important;
    letter-spacing: 2px !important;
    font-weight: 500;
}

.spinner {
    width: 60px !important;
    height: 60px !important;
    border: 6px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 6px solid #4caf50 !important;
    border-right: 6px solid #2196f3 !important;
    border-radius: 50% !important;
    margin-top: 20px !important;
    animation: spin 1s linear infinite !important;
}

.loader-text {
    color: #ffffff !important;
    margin-top: 20px !important;
    /* Otros textos en sans-serif */
    font-family: sans-serif !important;
    font-size: 14px !important;
    font-style: italic !important;
    opacity: 0.8 !important;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}