.btn-garanty-button{
    background: #002d71 !important;
}



/* Fondo que cubre toda la página */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4343438c; /* color de fondo */
    backdrop-filter: blur(6px); /* efecto de desenfoque */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

/* Contenedor del spinner y texto */
.loader {
    text-align: center;
}

/* Círculo giratorio */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top: 6px solid #007bff; /* color del círculo */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Animación del giro */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Texto */
.loading-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 500;
}

/* Ocultar suavemente */
.hidden {
    opacity: 0;
    visibility: hidden;
}

.jsPanel {
    z-index: 9999 !important;
}

