.LogoMobile {
    /* width: 15vh; */
    height: 50px;
}

.imgProvider {
    width: 5rem;
    height: 5rem;
}

.imgProviderModal {
    width: 3rem;
    height: 3rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.imgPackageModal {
    width: 8rem;
    height: 8rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.card-recarga {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 10rem;
    max-height: 10rem;
    border-radius: 0.85rem
}

.bagDescription {
    border-radius: 0.85rem;
    box-shadow: 0 6px 10px 0 rgba(128, 98, 96, .16);
    background-color: #3e63a9;
    height: 100%;
    font-size: 14px;
    line-height: 15px;
}

.bagDescription.active {
    transform: scale(1.1);
    margin-bottom: -12px;
    margin: 0
}

/* Estilo para el div de carga */
#loading {
    position: fixed;
    /* Fija el div para que ocupe toda la pantalla */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--secondary), var(--primary-hover));
    display: flex;
    /* Utiliza flexbox para centrar el spinner */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Asegura que esté por encima de todo el contenido */
}

/* Estilo para la imagen de carga */
.loading-image {
    width: 25vw;
    /* Ajusta el tamaño de la imagen según tus necesidades */
    height: 80vh;
}

/* Estilo para la imagen de carga 2*/
.loading-image2 {
    position: absolute;
    top: 40%;
    left: 35%;
    width: 30vw;
    /* Ajusta el tamaño de la imagen según tus necesidades */
    height: 10vh;
}

/* Estilo para el spinner */
.spinner {
    position: absolute;
    top: 50%;
    left: 45%;
    border: 16px solid #f3f3f3;
    /* Bordes del spinner */
    border-top: 16px solid #3498db;
    /* Color del borde superior */
    border-radius: 50%;
    /* Forma circular */
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    /* Animación de giro */
}

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

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

/* Oculta el contenido mientras se muestra el loading */
#content {
    display: none;
}