﻿/*.radio-encuesta input[type="radio"] {
    display: none;
}

.radio-encuesta {
    display: inline-block;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    text-align: center;
    background-color: #e0e0e0;
}

    .radio-encuesta input[type="radio"]::after{
        background-color: #25b372 !important;
        color: #fff !important;
    }*/
#noty_layout__topRight {
    margin-top: 70px!important;
}
.radio-encuesta label {
    display: inline-block;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    text-align: center;
    background-color: #e0e0e0;
    text-transform: uppercase;
}
.radio-encuesta input[type="radio"] {
    display: none;
}
    .radio-encuesta input[type="radio"]:checked + label {
        font-weight: bold;
        background-color: #1b9cd8 !important;
        color: #fff !important;
    }


/*.wizard {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}*/

.steps {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: calc(100%);
}
.step {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.separator-inicio, .separator-fin {
    height: 2px; /* Altura de la línea */
    background-color: #2cbacc; /* Color de la línea */
    margin: 0 0 0 0; /* Espacio entre la línea y los íconos */
}
.separator-inicio-a, .separator-fin-a {
    height: 2px; /* Altura de la línea */
    background-color: #f0f2f5; /* Color de la línea */
    margin: 0 0 0 0; /* Espacio entre la línea y los íconos */
}

.steps li:first-child .separator-inicio,
.steps li:first-child .separator-inicio-a,
.steps li:last-child .separator-fin,
.steps li:last-child .separator-fin-a {
    background-color: #FFF; /* Cambia el color de fondo */
}

.fondo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/fondo.png');
    background-repeat: repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.3;
    z-index: -1;
}

.grid-footer {
    justify-content: center !important;
}


.input-with-spinner {
    position: relative;
    display: flex;
}

.input-spinner {
    position: absolute;
    right: 8px;
    top: 6px;
    display: none;
}


#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading-indicator-container {
    display: flex;
    align-items: center;
}

#loading-indicator {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #1b9cd8;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}

#loading-text {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.8);
}


.portada-container {
    display: inline-block;
    position: relative;
}

    .portada-container a {
        position: absolute;
        bottom: 4em;
        left: 1em;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 6px;
        color: black;
        text-transform: uppercase;
        padding: 0.5em;
        margin-bottom: 0.5em;
        min-width: 40%;
    }
        .portada-container a:hover {
            background-color: rgba(0, 123, 255, 0.8); /* Cambia el color al pasar el ratón */
            color: #ffffff;
        }
        .portada-container a:nth-child(2) {
            bottom: 7em; /* Ajusta la posición vertical del segundo enlace */
        }

        .portada-container a:nth-child(3) {
            bottom: 10em; /* Ajusta la posición vertical del tercer enlace */
        }


.login-container {
    display: inline-block;
    position: relative;
}

    .login-container #login-form {
        position: absolute;
        top: 50%;
        left: 2%;
        transform: translateY(-50%);
        border-radius: 6px;
        padding: 0.5em;
        width: 96%;
        z-index: 1;
    }

    .login-container img {
        position: relative; 
        z-index: 0; 
    }

