/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 04-abr-2024, 8:55:46
    Author     : dpino
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

@font-face {
    font-family: 'IBMPlexSans-Bold';
    src: url('../fonts/IBMPlexSans/IBMPlexSans-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'IBMPlexSans-Regular';
    src: url('../fonts/IBMPlexSans/IBMPlexSans-Regular.ttf') format('truetype');
}

/* Estilo del encabezado */
select,
select.form-select,
textarea,
textarea.form-control,
input[type="date"],
input[type="email"],
input[type="text"],
input[type="password"],
input[type="number"] {
    margin-top: .5rem;
    /* background-color: #ececec; */ /* def por David*/
    /* background-color: #F8FAFC; */ /* definicion estilos*/
    background-color: #F0F3F5; /* mejor vision */
    border: none;
    color: #6F7482 !important;
}

select {
    width: auto !important;
}

/*HEADER*/
header {
    display: flex;
    background-color: #fff;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}

header img {
    width: 200px;
    height: auto;
    display: inline-block;
    margin: 5px 0;
}

header img::after {
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    position: absolute;
    background: inherit;
    filter: blur(40px) saturate(400%);
    z-index: -1;
}
/* FIN HEADER */
header.landing {
    display: flex;
    background-color: #fff;
    color: #fff;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 50px 15px 50px;
    width: auto;
    border-radius: 35px;
}

header.landing img {
    width: 150px;
    height: auto;
}
header.landing button {
    margin-left: 40px;
    border: none;
    background-color: #FFF; /* Fondo inicial */
    color: gray; /* Color inicial del texto */
    position: relative; /* Necesario para el pseudo-elemento */
    overflow: hidden; /* Esconde cualquier parte que sobresalga */
    padding: 8px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px; /* Esquinas redondeadas */
    transition: background-color 0.4s ease, color 0.4s ease; /* Transición suave */
}

header.landing button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%; /* Comienza sin cubrir el botón */
    background-color: #00A4DC; /* Color de relleno */
    z-index: -1; /* Poner detrás del texto */
    transition: width 0.4s ease; /* Anima la expansión del relleno */
    border-radius: inherit; /* Mantiene el radio del borde del botón */
}

header.landing button:hover::before {
    width: 100%; /* Expande para cubrir todo el botón */
}

header.landing button:hover {
    color: #FFF; /* Cambia el color del texto a blanco */
    background-color: #00A4DC;
}


.principal-p {
    font-weight: bold;
    font-size: 20px;
    margin-top: 2rem;
    text-align: center;
    color: #fff;
}

.principal-p2 {
    font-size: 14px;
    margin-top: 2rem;
    text-align: center;
    color: #fff;
}

header p {
    /* font-family: 'Oswald'; */
    font-size: 2em;
    /* Tamaño de fuente */
    /* Estilo cursiva */
    color: #fff;
    text-align: center;
    color: #002e62;
    font-weight: bold;
    display: inline-block;
    margin: 5px 1em 5px 0;
}

header nav {
    margin-left: auto;
}

.form-select,
.form-control {
    border: none;
}

.is-invalid {
    background-color: #FBCCCC !important;
}

.is-valid {
    background-color: #D5FBCC !important;
}

.medium_difficult {
    background-color: #ff64007a !important;
}

.form-control.medium_difficult:focus {
    border-color: #fd7e14 !important;
    box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.25) !important;
}

body {
    font-family: 'IBMPlexSans-Regular', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    background-color: #002E62;
}

/*CLASE PARA EVITAR DESPLAZAMIENTO CUANDO SE ABREN LOS MODALES*/
.modal-open-custom {
    overflow: hidden !important;
}

.boton,
.botonlg,
.generic_button {
    background-color: #002E62;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    align-self: center;
    padding: 10px 20px;
    margin-top: auto;
}

.btn-principal-menu_enabled:hover,
.boton:hover,
.botonlg:hover {
    color: white;
    background-color: #002E62 !important;
    opacity: 0.9;
}
.botonlg.btnRespuestaAccion {
    margin-left: 5px;
}

.btn-principal-menu {
    background-color: #002E62;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.btn-principal-menu_disabled {
    opacity: .5;
}
.btn-principal-menu_disabled:hover {
    cursor: default;
}

.btn-invertido {
    background-color: #FFF;
    color: #002E62;
    border: none;
    border-radius: 5px;
    border: 1px solid #002E62;
    cursor: pointer;
    margin-top: 1rem;
    /* Empuja el botón hacia abajo */
    align-self: center;
    /* Centra el botón horizontalmente */
    padding: 10px 20px;
    /* Espaciado interno del botón */
    margin-top: auto;
}

.btn-info{
    margin-right: 5px;
}

/* Estilos para el contenedor de cookies */
.cookie-container {
    display:none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white; /* Caja blanca */
    color: #666; /* Letras grises */
    padding: 20px;
    text-align: center;
    z-index: 1000; /* Asegurarse de que esté por encima de otros elementos */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 1); /* Sombra ligera */
}

.cookie-container button {
    background-color: #002E62; /* Fondo azul oscuro */
    color: white; /* Letras blancas */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px; /* Bordes redondeados */
}

.cookie-container button:hover {
    opacity: 0.9; /* Efecto hover */
}

.loader-container {
    position: relative;
    text-align: center;
}

.loader {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    display: none;
    /* Oculta el loader por defecto */
}
.loader.loader--style2 {
    transform: translate(-150%, -50%);
}

.div-info {
    border-radius: 16px;
    border: 4px solid #ffffff00;
    /* Borde para visualizar la división */
    padding: 1rem;
    /* Espaciado interno */
    background-color: #fff;
    margin: auto auto;

}

.div-info-header p {
    color: black;
    text-align: center;
    font-size: 36px;
}

.div-info-header p:after {
    content: '';
    /* Necesario para que el pseudo-elemento aparezca */
    display: block;
    /* Para que ocupe todo el ancho */
    border-radius: 5px;
    height: .5rem;
    background-color: #002E62;
    width: 100%;
    margin: 10px 0 0 0;
    /* Separación superior */
}

.div-info-header.block-title{
    cursor: pointer;
}

.div-info-content {
    display: flex;
    flex-direction: column;
    /* Asegura que los elementos se dispongan verticalmente */
    justify-content: flex-end;
    color: grey;
    height: 80%;
}
div.modal-body.div-info-content div.comment {
    white-space: pre-line; /* Para mostrar los saltos de linea que pueda contener el texto */
}

.div-info-content-field {
    color: grey;
    margin-top: 8px;
}

.generic-field {
    margin-bottom: 1rem;
}

.infoAlert {
    color: #000;
    font-size: 16px;
    margin: 0 auto;
    width: auto;
    border-radius: 16px;
    background-color: #D5FBCC;
    /* Fondo amarillo claro */
    padding: 5px;
}

.div-info-seconday {
    justify-content: space-between;
    width: auto;
    text-align: center;
}

.div-info-seconday button {
    width: 30%;
    margin-top: 10px;
}

/*CONTENEDORES PRINCIPALES DE INFORMACION EN REGISTRO DE DENUNCIAA*/
.div-principal {
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}

.div-principal h2 {
    border-radius: 5px;
    background-color: #87C4FF;
    padding-left: 10px;
}

.div-cont-principal {
    margin: 0 auto !important;
    width: 85%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-content: center;
}

.div-cont-principal .div-cont-secondary {
    margin: 1rem;
    width: 50%;
    box-sizing: border-box;
}

.div-cont-principal .div-cont-secondary .div-info {
    width: 100%;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(2),
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(3),
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(4) {
    padding: 0;
}

/* Ajustar el header del segundo hijo específico */
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(2) .div-info-header {}

/* Cambiar el tamaño de fuente de los párrafos en hijos específicos */
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(2) .div-info-header p,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(3) .div-info-header p,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(4) .div-info-header p {
    font-size: 20px;
    margin: 0;
}

/* No mostrar el elemento after por defecto */
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(2) .div-info-header p.close:after,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(3) .div-info-header p.close:after,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(4) .div-info-header p.close:after {
    animation: scale-down-horizontal-center .5s ease-out forwards;
}

.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(2) .div-info-header p.closePer:after,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(3) .div-info-header p.closePer:after,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(4) .div-info-header p.closePer:after {
    display: none !important;
}

/* Elemento p del titulo con clase para mostrar el elemnto after*/
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(2) .div-info-header p.open:after,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(3) .div-info-header p.open:after,
.div-cont-principal .div-cont-secondary:first-child .div-info:nth-child(4) .div-info-header p.open:after {
    content: '';
    /* Necesario para que el pseudo-elemento aparezca */
    display: block;
    /* Para que ocupe todo el ancho */
    border-radius: 5px;
    height: .5rem;
    background-color: #002E62;
    width: 100%;
    margin: 10px 0 0 0;
    animation: scale-up-horizontal-center .6s ease-out;
    /* Separación superior */
}

/*ESTILOS TITULOS DE LOS CONTENEDORES DATA*/
.block-title {
    border-radius: 16px;
    display: flex;
    padding: 5px;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
}

.block-title label {
    margin-bottom: .5rem;
}

.block-title span {}

.block-title p {
    width: 100% !important;
    text-align: left;
}

.block-title .toggle-button {
    margin-left: auto;
    height: 20px;
    /* Ajusta la altura máxima según sea necesario */
    width: 20px;
    /* Ajusta el ancho según sea necesario */
    border: none;
    /* Quita el borde del botón si no lo necesitas */
    background-color: transparent;
    /* Opcional: Hacer que el fondo del botón sea transparente */
    cursor: pointer;
    /* Cambia el cursor al pasar sobre el botón */
    display: flex;
    justify-content: center;
    align-items: center;
}

/*fin estilos titulos*/

/*ESTILOS CONTENIDO DE LOS CONTENEDORES DATA*/
.block-content {
    display: none;
    padding: 10px;
}

.block-content fieldset {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #094a68;
}

.block-content .formulario {
    display: flex;
    flex-direction: row;
}

.block-content .formulario label {
    display: inline-block;
    width: 15em;
    text-align: right;
    padding: .1em .6em 0 0;
    font-weight: bold;
}

.block-content .formulario p {
    padding: .1em .6em 0 0;
    align-content: flex-end;
}

/*fin estilos contenido*/

@keyframes rotate-up {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(90deg);
    }
}

@keyframes rotate-down {
    from {
        transform: rotate(90deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.arrow-up {
    margin-bottom: 20px;
    color: #002E62;
    display: none;
    animation: rotate-down .25s ease-out;
}

.arrow-down {
    color: #002E62;
    display: block;
    animation: rotate-up .25s ease-out;
}

.arrow-down.rotate {
    transform: rotate(90deg);
}

.logOut-div {
    width: 90%;
    display: flex;
    justify-content: flex-end;
}

.logOut-div nav i {
    color: #fff;
}

.btn-close-modal i {
    color: #002E62;
}

span.details_admin_span{
    background-color: #002E62;
    color: #FFF;
    padding: 3px;
    border-radius: 5px;
    margin-left: 5px;
    text-align: center;
}
span.details_user_span{
    background-color: #fd7e14;
    color: #FFF;
    padding: 3px;
    border-radius: 5px;
    margin-left: 5px;
    text-align: center;
}

table#miTabla tbody tr td p{
    margin-bottom: 0 !important;
}
table#miTabla tbody tr td{
    align-content: center !important;
}


/*clase para hacer un div opaco a modo de desactivacion*/
.switchButtonContainer.switchButtonReadOnly {
    opacity: .5;
    cursor: default;
}

.switchButtonContainer.switchButtonReadOnly .switch-button-label,
.switchButtonContainer.switchButtonReadOnly .switch-button-background {
    cursor: default;
}

/*TIMELINE CSS INICIO*/
.timeline {
    border-radius: 5px;
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
    color: #fff;
    margin-left: 1rem;
}

.timeline ul {
    list-style-type: none;
    border-left: 2px solid #094a68;
    padding: 1rem 5px;
    margin-bottom: 0 !important;
}

.timeline ul li {
    padding: .5rem;
    position: relative;
    cursor: pointer;
    transition: .5s;
}

.timeline ul li span {
    display: inline-block;
    border-radius: 8px;
    padding: 2px 5px;
    font-size: 15px;
    text-align: center;
    color: #002E62;
    border: 1px solid #002E62;
}

.timeline ul li .timeline-content {
    /*display: none;*/
    /* EN CASO DE QUERER HACER UN DISPLAY DEL CONTENIDO DESCOMENTAR ESTA LINEA*/
}

.timeline ul li .timeline-title h3 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    color: #002E62;
    font-size: 14px;
    padding: 5px;
    border: 1px solid #002E62;
    border-radius: 8px;
    margin-right: auto;
}

.timeline ul li .timeline-title p {
    padding: 3px;
    font-size: 15px;
    color: #EE4E4E;
    margin: 0;
    margin-right: 5%;
    align-content: center;
    border: 1px solid #EE4E4E;
    border-radius: 5px;
    margin-left: auto;
    animation: shadowState 2s infinite;
}

@keyframes shadowState {
    0% {
        background-color: white;
        color: #EE4E4E;
        box-shadow: none;
        transform: scale(1);
    }

    50% {
        background-color: #EE4E4E;
        color: white;
        box-shadow: 0px 5px 15px rgba(238, 78, 78, 0.7);
        transform: scale(1.05);
    }

    100% {
        background-color: white;
        color: #EE4E4E;
        box-shadow: none;
        transform: scale(1);
    }
}

@keyframes scale-up-horizontal-center {
    0% {
        transform: scaleX(.2)
    }

    100% {
        transform: scaleX(1)
    }
}

@keyframes scale-down-horizontal-center {
    0% {
        transform: scaleX(1);
        /* Comienza a tamaño completo */
        opacity: 1;
        /* Completamente visible */
        transform-origin: center;
        /* Escala desde el centro */
    }

    100% {
        transform: scaleX(0);
        /* Reduce el tamaño a 0 en el centro */
        opacity: 0;
        /* Invisible al final */
        transform-origin: center;
        /* Escala desde el centro */
    }
}

/*CASO CSS PARA ENTYRADAS DE USUARIO*/
.timeline ul li .timeline-title.complainant h3 {
    background-color: #002E62;
    color: #fff;
    font-size: 15px;
    padding-top: 5px;
}

.timeline ul li .timeline-title.complainant p {
    padding: 10px;
    font-size: 15px;
}

.timeline .contentSpan {
    display: inline-block;
    background-color: #002E62;
    border-radius: 8px;
    padding: 2px 5px;
    font-size: 15px;
    text-align: center;
    color: #fff;
}

/*FIN CASO CSS PARA ENTYRADAS DE USUARIO*/
.timeline-title {
    display: flex;
    align-items: center;
    position: relative;
}

.timeline-title h3 {
    margin-left: 1rem;
}

.timeline-title button {}

.timeline ul li:before {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    background-color: #002E62;
    border-radius: 50%;
    left: -14px;
    top: 17px;
    transition: .5s;
}

.timeline ul li:hover {
    background-color: #F5F5F5;
}

.timeline ul li:hover:before {
    width: 10px;
    height: 10px;
    left: -11px;
    background-color: #002E62;
    border-radius: 50%; /* Hace que el punto sea circular */
    box-shadow: 0 0 10px 5px #002E62; /* Sombra circular */
}


.com {
    display: -webkit-inline-box;
    color: #002E62;
    text-align: left;
    border-radius: 10PX;
    width: auto;
    padding: 5PX;
    border: 1px solid #0056b3;
    background-color: #0000ff1c;
}

.com i {
    margin-right: .5rem;
    color: #029000;
}

.com p {
    margin-bottom: 0;
}

.noResponse{
    display: -webkit-inline-box;
    color: #002E62;
    width: auto;
    background-color: #ff000059;
    border: 1px solid red;
    border-radius: 10px;
    padding: 5px;
}
.noResponse i{
    margin: 5px;
}
.noResponse p{
    margin-bottom: 0px !important;
}
.nonAnsweredYet {
    color: #002E62;
    background-color: #fff;
}

#non-response-yet{
    display: -webkit-inline-box;
    background-color: #e9d23e8f;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid orange;
    width: fit-content;
}
#non-response-yet p{
    margin-bottom: 0 !important;
}
#non-response-yet i{
    margin: 5px !important;
}

@keyframes pulse {
    0% {
        background-color: grey;
        box-shadow: 0 0 0 0 #fff;
    }

    50% {
        background-color: #fff;
        box-shadow: 0 0 10px 2px #fff;
    }

    100% {
        background-color: grey;
        box-shadow: 0 0 0 0 #fff;
    }
}

.redirect {
    animation: pulse 1s linear 10;
}

@media (max-width:900px) {
    .timeline {
        width: 100%;
        padding: 30px 5px 30px 10px;
    }

    .timeline ul li .content h3 {
        color: #34ace0;
        font-size: 15px;
    }

}

/*TIMELINE CSS FIN*/

/*ESTILOS TOOLTIP NO PERSONALIZABLE*/
.asterisco {
    cursor: pointer;
    position: relative;
    display: inline-block;
    color: red;
}

/* Estilos para el tooltip */
.asterisco::after {
    font-style: italic;
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    /* Posiciona el tooltip al lado derecho del asterisco */
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 10;
    margin-left: 5px;
    /* Espaciado entre el asterisco y el tooltip */
    padding: 3px 6px;
    border-radius: 3px;
    background-color: #fff;
    color: red;
    font-size: 12px;
    line-height: 1.4;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Estilos para mostrar el tooltip cuando se sitúa el cursor sobre el asterisco */
.asterisco:hover::after {
    visibility: visible;
    opacity: 1;
}

/*FIN ESTILOS TOOLTIP*/

/* INPUT CHECKBOX NO EDITABLE*/
input[type="radio"] {
    cursor: pointer;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.125em;  /* equivalent to 18px if 1em = 16px */
    height: 1.125em; /* equivalent to 18px */
    border: 0.125em solid #002E62; /* equivalent to 2px */
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 0.625em;  /* equivalent to 10px */
    height: 0.625em; /* equivalent to 10px */
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}

input[type="radio"]:checked::before {
    transform: scale(1);
    background-color: #002E62;
}

.radio_label_pointer{
    cursor: pointer;
}

/*FIN INPUT CHECKBOX */

/*COOKIE MODAL CONFIG CSS*/
#cookie-config .div-info{
    width: auto !important;
    height: auto !important;
}
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    color: gray;
}

.cookie-options {
    margin: 10px 0;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 6px;
}

.cookie-option .arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    margin-right: 10px; /* Para separar la flecha del texto */
}

.cookie-option .cookie-label {
    flex-grow: 1;
    margin-left: 10px;
    font-weight: bold;
}

.cookie-option .cookie-status, 
.cookie-option .switch {
    margin-left: auto;
}

.cookie-option.active .arrow {
    transform: rotate(90deg);
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(14px);
}

/* Botón en la esquina inferior derecha con ancho ajustado al contenido */
.accept-cookies-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    width: fit-content;
    white-space: nowrap; /* Evita que el texto del botón se divida en líneas */
    width: auto;
    align-self: end;
}

.accept-btn:hover {
    background-color: #45a049;
}

/* Estilos para la funcionalidad de mostrar más */
.cookie-content-info-text {
    overflow: hidden;
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.cookie-content-info-text.expanded {
    max-height: 1000px;
}

.cookie-content-info-more {
    color: #1A73E8;
    cursor: pointer;
}

/* Estilos para las tablas de cookies */
.cookie-body table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.cookie-body table th, .cookie-body table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.cookie-body table th {
    background-color: #f2f2f2;
    text-align: left;
    font-weight: bold;
}

.cookie-body table tr:nth-child(even){background-color: #f9f9f9;}

.cookie-body table tr:hover {background-color: #ddd;}

.special-button {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 16px;
    background-color: #5655f1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.special-button i {
    transition: margin-right 0.3s ease;
    margin-right: 0; /* Sin espacio inicial entre el icono y el texto */
}

.special-button:hover i {
    margin-right: 8px; /* Agrega espacio entre el icono y el texto al hacer hover */
}

.special-button .wave {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.6);
    animation: wave-animation 0.6s linear;
    pointer-events: none;
}

@keyframes wave-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


.footer {
    margin-top: auto;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
}
div.bottom_footer {
    display: flex;
    justify-content: center; /* Asegura que el centro esté alineado correctamente */
    align-items: center; /* Opcional: Alinea los contenedores verticalmente */
    width: 100vw; /* Ocupar el ancho completo de la ventana */
}
div.bottom_avisos {
    text-align: center;
    flex: 0 1 auto; /* Solo ocupa el espacio necesario según su contenido */
    margin: 0 10px;
}
div.footer_leftEmptyContainer, 
div.footer_langContainer {
    flex: 1; /* Ambos ocupan el mismo espacio disponible */
}
div.footer_leftEmptyContainer, 
div.footer_langContainer {
    flex: 1; /* Ambos ocupan el mismo espacio disponible */
}
div.footer_langContainer span.footer_langTitle {
    color: #FFF;
}
div.footer_langContainer div.footer_langFlagsContainer {
    display: inline-block;
    margin-left: 10px;
}
div.footer_langContainer div.footer_langFlagsContainer span.footer_langFlag {
    margin: 0 5px;
    cursor: pointer;
}
div.footer_langContainer div.footer_langFlagsContainer span.footer_langFlag img {
    
}

/* Media Query para pantallas menores a 550px */
@media (max-width: 550px) {
    div.bottom_footer {
        flex-direction: column; /* Apila los elementos verticalmente */
        align-items: stretch; /* Asegura que ocupen el ancho disponible */
    }

    div.bottom_avisos {
        width: 100%; /* Hace que el contenedor central ocupe todo el ancho */
        text-align: center; /* Opcional: Centra el contenido */
    }

    div.footer_leftEmptyContainer {
        display: none; /* Oculta el contenedor izquierdo */
    }

    div.footer_langContainer {
        width: 100%; /* Ocupa todo el ancho disponible */
	text-align: center; /* Opcional: Centra el contenido */
    }
}


div.enlacePoliticaFooter,
div.aviso-legal,
div.politica-cookies,
div.politica-privacidad {
    display:inline-block;
    text-align: center;
}
.aviso-legal-enlace{
    cursor: pointer;
}
span.bottom_avisos_spacer {
    display: inline-block;
    color: #FFFFFF;
}

.poweredByDiv {
    margin-top: auto;
    margin: 0 auto;
    width: 10rem;
    display: flex;
    flex-direction: column;
    /* Asegura que los elementos se dispongan verticalmente */
    justify-content: flex-end;
    /* Empuja los elementos hijos al final del contenedor */
}

.poweredByDiv .poweredByDiv-text {
    font-size: 14px;
    font-weight: bold;
    font-family: 'IBMPlexSans-Bold', Arial, sans-serif;
    width: 100%;
    color: #fff;
    text-align: right;
}

div.policyAcceptContainer {
    display: inline-block;
    width: 1.2em;
}
div.policyContainer div.policyCorrect {
    color: green;
}
div.policyContainer div.mandatoryPolicy {
    text-align: left;
    color: red;
}
div.errores-politicas {
    text-align: left;
    color: red;
}