.swal2-with-backdrop {
    background: rgba(0,0,0,.4);
}
.swal2-with-backdrop {
    background: rgba(10, 10, 10, 0.86);
}
.clickable {
    cursor: pointer;
}

.icono-area {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
    vertical-align: middle;
}

.icon-small-resumen {
    width: 40px;
    height: 40px;
}
/* Custom Colors */
:root {
    --Cenape-Blue: #000073;
    --Cenape-Orange: #EF841A;
    --custom-light-blue: #e6eaf7;
    --custom-light-orange: #fbe9d4;
    --custom-white: #ffffff;
}
.bgc-cenape {
    background: var(--Cenape-Blue)!important;
}
.bgc-cenape3 {
    background: var(--Cenape-Orange) !important;
}
.dollar-symbol {
    background-color: var(--Cenape-Orange);
    color: white;
    border-radius: 5px;
    padding: 0 4px;
    /*margin-left: 3px;*/
}
.image-container_U {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 300px;
}
.image-container_U2 {
    position: relative;
    width: 100%;
    max-width: 400px;
}
.text-justify{
    text-align: justify;
}
.image-container_U::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -50px;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--Cenape-Blue), var(--Cenape-Orange));
    border-radius: 20px;
    z-index: -1;
}
.image-container_U2::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -50px;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--Cenape-Blue), var(--Cenape-Orange));
    border-radius: 20px;
    z-index: -1; /* Envía el cuadrado detrás de la imagen */
}
.main-image_U {
   border-radius: 20px;
    z-index: 1;
}


.paragraph-container {
    position: relative;
    padding-top: 20px; /* Espacio para la línea encima del párrafo */
}

.paragraph-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 11px;
    width: 200px;
    height: 7px;
    background: linear-gradient(to right, var(--Cenape-Blue), var(--Cenape-Orange));
    /*border-radius: 2px; */
}
.paragraph-container2 {
    position: relative;
    padding-top: 20px; /* Espacio para la línea encima del párrafo */
}

.paragraph-container2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 11px;
    width: 200px;
    height: 7px;
    background: linear-gradient(to right, var(--Cenape-Blue), var(--Cenape-Orange));
    /*border-radius: 2px; */
}


/*ESTILOS DEL VIDEO DE CARGA DE LA FUNCION SHOWLOADER*/

/* Estilo del contenedor del video */
.loading-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loading-video-container video {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover; /* Ajustar el video al contenedor sin distorsionarlo */
}

/* Quitar la barra de desplazamiento y el fondo blanco */
.swal2-popup.loading-popup {
    overflow: hidden; /* Evita el scroll dentro del popup */
    background: transparent; /* Elimina el fondo blanco */
    padding: 0;
    border-radius: 0;
    width: 100%; /* Asegura que ocupe el 100% del ancho en móviles */
    max-width: 100vw;
    height: auto; /* Permite que el video ajuste su altura dinámicamente */
}

/* Hacer que el video se ajuste en pantallas más pequeñas */
@media only screen and (max-width: 768px) {
    .loading-video-container {
        width: 100%;
        height: auto;
        max-height: 100vw;
    }

    .loading-video-container video {
        width: 100vw; /* Hacer que el video ocupe el ancho total de la pantalla */
        height: auto;
        max-height: 100vw;
    }

    .swal2-popup.loading-popup {
        width: 100vw;
        height: auto;
        padding: 0;
    }
}

/* Ajustes adicionales para pantallas aún más pequeñas */
@media only screen and (max-width: 480px) {
    .loading-video-container video {
        width: 100vw;
        height: auto;
    }

    .swal2-popup.loading-popup {
        width: 100vw;
        height: auto;
        padding: 0;
    }
}



/* Estilo del contenedor del GIF */
.loading-gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 20px;
}

.loading-gif {
    max-width: 25%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Quitar la barra de desplazamiento y el fondo blanco */
.swal2-popup.gif-loading-popup {
    overflow: hidden; /* Evita el scroll dentro del popup */
    background: transparent; /* Elimina el fondo blanco */
    padding: 0;
    border-radius: 0;
    width: 100%; /* Asegura que ocupe el 100% del ancho en móviles */
    max-width: 100vw;
    height: auto; /* Permite que el GIF ajuste su altura dinámicamente */
}

/* Hacer que el GIF se ajuste en pantallas más pequeñas */
@media only screen and (max-width: 1024px) {
    .loading-gif-container {
        width: 100%;
        height: auto;
    }

    .loading-gif {
        max-width: 30%; /* Aumentar el tamaño del GIF en pantallas medianas */
        height: auto;
    }

    .swal2-popup.gif-loading-popup {
        width: 100vw;
        height: auto;
        padding: 0;
    }
}

/* Ajustes para pantallas pequeñas (móviles) */
@media only screen and (max-width: 768px) {
    .loading-gif-container {
        width: 100%;
        height: auto;
        max-height: 100vw; /* Ajustar la altura máxima del contenedor */
    }

    .loading-gif {
        max-width: 50%; /* Aumentar el tamaño del GIF en pantallas pequeñas */
        height: auto;
        max-height: 100vw; /* Limitar la altura para evitar desbordamiento */
    }

    .swal2-popup.gif-loading-popup {
        width: 100vw;
        height: auto;
        padding: 0;
    }
}

/* Ajustes adicionales para pantallas aún más pequeñas */
@media only screen and (max-width: 480px) {
    .loading-gif {
        max-width: 70%; /* El GIF ocupará el 80% del ancho en pantallas pequeñas */
        height: auto;
    }

    .swal2-popup.gif-loading-popup {
        width: 100vw;
        height: auto;
        padding: 0;
    }
}







#globe-container3d {
    width: 100%;
    height: 80vh;
    position: relative;  /* Para asegurar que se coloque correctamente */
}

.rotating-globe-3d {
    width: 200px; /* Ajusta el tamaño de la imagen */
    height: 200px; /* Ajusta el tamaño de la imagen */
    transform-style: preserve-3d; /* Mantiene la transformación en 3D */
    animation: rotateGlobe3D 5s infinite linear; /* Animación 3D */
}

/* Definimos la animación */
@keyframes rotateGlobe3D {
    0% {
        transform: rotateY(0deg); /* Punto inicial de la rotación en el eje Y */
    }
    100% {
        transform: rotateY(360deg); /* Rotación completa en el eje Y */
    }
}




/* Estilos del contenedor del icono de carga */
.loading-icon {
    overflow: hidden; /* Oculta cualquier contenido que desborde */
}


/* Imagen de carga */
.loading-image {
    width: 200px;  /* Ancho fijo para asegurar que sea cuadrada */
    height: 200px;
    object-fit: cover;  /* Asegura que la imagen mantenga sus proporciones */
    animation: spin 2s infinite linear; /* Animación de rotación */
}

/* Animación de giro para la imagen */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.globe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ocupa la altura completa de la pantalla */
}

.rotating-globe {
    width: 200px; /* Ajusta el tamaño de la imagen */
    height: 200px; /* Ajusta el tamaño de la imagen */
    animation: rotateGlobe 4s linear infinite; /* Animación de rotación continua */
}

/* Definimos la animación */
@keyframes rotateGlobe {
    0% {
        transform: rotate(0deg); /* Punto inicial de la rotación */
    }
    100% {
        transform: rotate(360deg); /* Rotación completa */
    }
}


/* ESTILO DE PANTALLA DE CARGA*/
/* Custom loader specifically for main-container */
#custom-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: white; /* Fondo blanco para simular una "página en blanco" */
    display: none; /* Lo ocultamos inicialmente */
    z-index: 9991; /* Asegura que esté por encima del contenido de la página */
}

/* Animation for the loader content (can use your existing styles) */
.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loading-animation h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.loading-animation .loading-dots {
    display: flex;
    font-size: 3rem;
}

.loading-animation .dot {
    animation: bounce 1s infinite ease-in-out;
}

/* Centrar el contenido del loader */
.loader-content {
    text-align: center;
}

/* Estilos para el texto CENAPE y los puntos */
.loading-text {
    font-size: 4.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: white;
}


/* Ajustes de tamaño de texto para pantallas medianas */
@media (max-width: 1024px) {
    .loading-animation h1 {
        font-size: 3.5rem; /* Disminuye el tamaño en pantallas medianas */
    }
}

/* Ajustes de tamaño de texto para pantallas pequeñas */
@media (max-width: 768px) {
    .loading-animation h1 {
        font-size: 3rem; /* Ajusta el tamaño del texto en móviles */
    }
}

/* Ajusta las animaciones de las letras y puntos */
.loading-text .letter {
    display: inline-block;
    animation: bounce 1s infinite ease-in-out;
}

/* Saltar con un retraso diferente para cada letra */
.letter:nth-child(1) {
    animation-delay: 0s;
}

.letter:nth-child(2) {
    animation-delay: 0.1s;
}

.letter:nth-child(3) {
    animation-delay: 0.2s;
}

.letter:nth-child(4) {
    animation-delay: 0.3s;
}

.letter:nth-child(5) {
    animation-delay: 0.4s;
}

.letter:nth-child(6) {
    animation-delay: 0.5s;
}

/* Puntos suspensivos en blanco */
.dot:nth-child(7) {
    animation-delay: 0.6s;
}

.dot:nth-child(8) {
    animation-delay: 0.7s;
}

.dot:nth-child(9) {
    animation-delay: 0.8s;
}

/* Animación de salto */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Colores personalizados */
.letter.cen { color: var(--Cenape-Blue); }
.letter.ape { color: var(--Cenape-Orange); }
.dot { color: var(--custom-white); }










/*Floating buttons*/

.adminActions {
    position: fixed;
    bottom: 15px;
    right: 55px;
    z-index: 999;
}

.adminButton {
    height: 60px;
    width: 60px;
    background-color: rgba(67, 83, 143, 0.8);
    border-radius: 50%;
    display: none;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.adminButton i {
    font-size: 22px;
}

.adminButtons {
    position: absolute;
    width: 100%;
    bottom: 120%;
    text-align: center;
}

.adminButtons a {
    display: block;
    width: 60px;
    height: 62px;
    border-radius: 50%;
    text-decoration: none;
    margin: 10px auto 0;
    line-height: 1.15;
    color: #fff;
    opacity: 1;
    visibility: visible;
    position: relative;
    box-shadow: 0 0 5px 1px rgba(51, 51, 51, 0.3);
    right: 25px;
}

.adminButtons a:hover {
    transform: scale(1.05);
}

.adminButtons .back-button {
    background-color: #f44336;
    transition: opacity 0.2s ease-in-out 0.2s, transform 0.15s ease-in-out;
    font-size: 1.3em;
}
.adminButtons .back-step-button {
    background-color: #5179D6;
    transition: opacity 0.2s ease-in-out 0.15s, transform 0.15s ease-in-out;
    font-size: 1.3em;
}.adminButtons .continue-step-button {
     background-color: #5179D6;
     transition: opacity 0.2s ease-in-out 0.15s, transform 0.15s ease-in-out;
     font-size: 1.3em;
 }
.adminButtons .whatsapp-button {
    background-color: #51CA5E;
    transition: opacity 0.2s ease-in-out 0.15s, transform 0.15s ease-in-out;
    font-size: 1.3em;
}

.adminActions a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: x-large;
}

.adminToggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, 0.3);
}

.adminToggle:hover {
    box-shadow: 0 3px 6px 2px rgba(51, 51, 51, 0.3);
}

.adminToggle:checked ~ .adminButtons a {
    opacity: 1;
    visibility: visible;
}

.adminActions.active {
    bottom: 65px;
    right: 55px;
}
.bgAnimationButton {
    animation: pulse 1.2s ease infinite;
    background: #51ca5e;
    opacity: 1;
    width: 60px;
    height: 62px;
    border-radius: 50%;
    bottom: 15px;
    right: 20px;
    position: fixed;
}
.bgAnimationButton.active {
    bottom: 65px;
    right: 15px;
}
@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/*flotante comentarios*/

.float {
    position: fixed;
    width: 60px;
    height: 62px;
    bottom: 90px;
    right: 23px;
    background-color: #264aa9;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    z-index: 999;
}

.float:hover {
    color: white;
    background-color: #4D6D9B;
}

.my-float {
    margin-top: 19px;
    font-size: 1.5em;
}


.truncate-multiline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*fin flotante comentarios*/

/*FLAGS*/
.flag-dropdown-item img{
    display: inline-block;
    height: 16px;
    margin-right: 3px;
    border-radius: 2px;
    pointer-events: none;
}
/*FIN FLAGS*/

html, body {
    touch-action: pan-x pan-y !important;
    overflow: auto !important;
    overscroll-behavior: none !important;
}

::before {
    backface-visibility: hidden;
}

.modal-backdrop.show{
    opacity: 0 !important;
}

/* PROCESS INFORMATION TEST VOCACIONAL */
.disc-list {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
    counter-reset: step;
    /* Allows us to show the step number */
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    /* Put the discs in a row */
    flex-wrap: wrap;
    justify-content: center;
    /* Allow them to wrap around as required */
}
.disc-list li {
    counter-increment: step;
    /* Increment the list number */
    position: relative;
    width: 14rem;
    height: 14rem;
    text-align: center;
    border-radius: 50%;
    /* Make it a circle */
    background: #888;
    color: #888;
    display: flex;
    flex-shrink: 0;
    /* Don't allow the discs to squash inside the container */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 1.25rem 1.5rem 1.5rem;
    /* Right margin is the normal width - the border-width */
    overflow: visible;
}
.disc-list li:nth-child(1) {
    background: #00AFC0;
    color: #00AFC0;
}
.disc-list li:nth-child(2) {
    background: #00A3E1;
    color: #00A3E1;
}
.disc-list li:nth-child(3) {
    background: #27579C;
    color: #27579C;
}
.disc-list li:nth-child(4) {
    background: #934FC0;
    color: #934FC0;
}
.disc-list li:nth-child(5) {
    background: #C04F8E;
    color: #C04F8E;
}
.disc-list li:nth-child(6) {
    background: #C04F5D;
    color: #C04F5D;
}
.disc-list li:nth-child(7) {
    background: #C07E4F;
    color: #C07E4F;
}
.disc-list li:nth-child(8) {
    background: #C0B54F;
    color: #C0B54F;
}
.disc-list li span {
    color: #FFF;
    display: block;
    font-size: 1rem;
    max-width: 12rem;
    margin-left: auto;
    margin-right: auto;
    font-family: "Gotham", sans-serif;
}
.disc-list li svg {
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    bottom: -1.5rem;
    /* Same as the disc-list li margin */
    right: -1.5rem;
}
.disc-list li svg path {
    stroke: currentcolor;
}
/* END PROCESS INFORMATION TEST VOCACIONAL */