@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Open+Sans:wght@300;400;700&family=Roboto:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
}
body, html {
    /*background-color: var(---color-celeste-primario);*/
    height: 100%;
    width: 100%;
    color: #5d5c5c
}

.caja-input{
    border: thin solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 5px 10px;
    height: 60px;
    width: 280px;
}
.caja-input-titulo{
    font-weight: 300;
}
input{
    border: none;
    color: #5d5c5c;
    font-size: 15px;
    height: 35px;
    outline: none;
    width: 100%;
}
button{
    background-color: #00AEE1;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 20px;
    height: 60px;
    width: 280px;
}
/**************************/

/*** HEADER ***/
header{
    background-color: #001683;
    display: flex;
    height: 90px;
    width: 100%;
}
    .logo{
        /*background-color: aqua;*/
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 90px;
    }
        .logo img{
            max-height: 80px;
        }
    .nav{
        /*background-color: blueviolet;*/
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        height: 100%;
        width: calc(100% - 90px);
    }

/*** Menú ***/
#menu{
    /*background-color: chartreuse;*/
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 10px;
    width: max-content;
    height: max-content;
}
    #menu li a{
        /*border: thin solid #f0f;*/
        border-radius: 8px;
        color: #fff;
        display: block;
        font-size: 14px;
        font-weight: 300;
        padding: 10px 20px;
        text-decoration: none;
        transition: all 0.5s ease;
    }
        #menu li a:hover{
            background-color: #FFFFFF;
            color: #001683;
        }
.activo{
    background-color: #00AEE1;
}

/*** FOOTER ***/
footer{
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 30px;
    width: 100%;
}

/*** MAIN ***/
main{
    height: calc(100% - 120px);
    padding: 20px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.titulo{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;

}
.toolbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tools{
    display: flex;
    gap: 20px;
}
.tool-button a{
    background-color: #FFFFFF;
    border: thin solid #00AEE1;
    border-radius: 8px;
    color: #00AEE1;
    display: block;
    padding: 7px 15px;
    text-decoration: none;
}
.tool-button span{
    font-size: 15px;
}
.btn-activo{
    background-color: #00AEE1 !important;
    color: #FFFFFF !important;
}

/*** Elementos***/
.contenido{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;

}
.contenido_slider, .contenido-galeria, .contenedorImagenes{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px 0;
}
    .card-elemento, .card-slider{
        border: thin solid #00AEE1;
        border-radius: 8px;
        padding: 10px 20px;
    }
    .titulo-card{
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        padding-bottom: 3px;
    }
    .fecha-card, .nombre-archivo-card{
        padding-bottom: 10px;
    }
    .botones-card{
        display: flex;
        gap: 20px;
    }

    .card-slider{
        position: relative;
        width: 45%;
    }
    .card_slider_imagen{
        position: absolute;
        height: 125px;
        top: 25px;
        right: 15px;
    }
        .card_slider_imagen img{
            max-height: 125px;
        }
        .btn-elimina-imagen{
            background-color: rgba(220, 4, 4, 0.6);
            border-radius: 50%;
            height: 25px;
            width: 25px;
            position: absolute;
            top: 30px;
            right: 20px;
        }
            .btn-elimina-imagen a{
                text-decoration: none;
            }
            .btn-elimina-imagen span{
                color: #FFFFFF;
                font-size: 25px;
            }
.no-registros{
    font-size: 16px;
}
.error{
    /*background-color: chartreuse;*/
    color: #cb4545;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    height: 50px;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}
.info{
    /*background-color: chartreuse;*/
    color: #001683;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    height: 50px;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}
/*** ESTILOS PARA LA TABLA DE USUARIOS. ***/
.tabla_data{
    font-family:arial;
    font-size: 15px;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
.tabla_data thead tr th {
    background-color: #0073AA; /*Color de la cabecera*/
    font-size: 14px;
    padding: 4px;border: solid 1px #fff;
    color: #fff;
}
.tabla_data tbody td {
    padding: 8px;
    vertical-align: top;
}
.tabla_data tbody td span{
    font-size: 20px;
}
.tabla_data tbody tr {
    border-bottom: solid 1px #ccc;
    color: #555;
}
.tabla_data tbody tr:nth-child(odd) {background-color: #ECF2F6;}
.tabla_data tbody tr:nth-child(even) {background-color: #fff;}
.tabla_data tbody tr:hover{background-color: #FFFFDB;}
.tabla_data thead tr .header {
    background-image: url(../img/bg.gif);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 20px;
    cursor: pointer;
}
.tabla_data thead tr .headerSortUp { background-image: url(../img/asc.gif); }
.tabla_data thead tr .headerSortDown { background-image: url(../img/desc.gif); }
.tabla_data thead tr .headerSortDown, .tabla_data thead tr .headerSortUp {
    background-color: #00C0EF;
}

/*** GALERÍA DE IMÁGENES ***/
.card-galeria{
    border: thin solid #e0dfdf;
    height: 370px;
    width: 310px;
}
.card-galeria-imagen-full, .imagenItem{
    background-color: chartreuse;
    height: 310px;
    position: relative;
    width: 310px;
}
.card-galeria-titulo{
    background-color: rgba(0,0,0,0.5);
    bottom: 0;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    position: absolute;
    width: 310px;
}
.card-galeria-tool{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 18px;
}
.card-galeria-tool a{
    text-decoration: none;
}
.card-galeria-tool span{
    color: #001683;
    font-size: 22px;
}
.card-galeria-imagen{
    width: 310px;
}
.card-galeria-imagen img, .imagenItem img{
    height: 310px;
    width: 100%;
}

/*** Estilos para el libro de reclamaciones ***/
.contenedorDatosReclamo{
    border: solid 1px #ddd;
    border-radius: 10px;
    padding: 15px 20px;
}
.tituloFila{
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
}
.filaDatosReclamo{
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}
.filaUnicaDatosReclamo{
    padding-bottom: 10px;
}
.cajaDatosReclamo{
    width: 49%;
}
.tituloDatosReclamo{
    color: #777;
    font-weight: 700;
}
.infoDatosReclamo{
    color: #777;
    padding: 3px 0;
}
.textareaRespuesta{
    border: solid 1px #dfdfdf;
    outline: none;
    width: 100%;
}