:root{
    /*escudo*/
    --amarillo: #D9B302; /*USADO*/

    /*sede*/
    --marronClaro: #968776; /*USADO*/
    --marronClaro2: #ada08f; /*USADO*/
    --marronClaro3: #b3afaa4d; /*USADO*/
    --marronOscuro:#6a5944; /*USADO*/

    /*color logo vda*/
    --DarkOrange: #8B4200; /*USADO*/
    --DarkGrey: #675b53; /*USADO*/
}

body{
    overflow-x: hidden;
}

h1{
    font-size: 24px;
    text-transform: uppercase;
    color: var(--marronOscuro);
}

h4{
    font-size: 18px;
    text-align: justify;
    text-transform: uppercase;
    color: var(--marronOscuro);
}

h3{
    font-size: 16px;
    color: var(--marronClaro);
}
h5{
    font-size: 14px;
    color: var(--marronClaro);
}
.dropdown-item p, .dropdown__link p, .submenu__item p{
    padding: 5px;
    margin-bottom: 0;
}
.destacar{
    color: var(--marronOscuro);
    font-weight: 700;
}
/*Para dispositivos móviles*/
@media (max-width: 900px) {
    h1{
        text-align: center;
    }
}

.container{
    padding: 10px 50px;
}

/*----BARRA NAVEGACION----*/

.navbar-expand-lg .navbar-nav .nav-link {
    text-transform: uppercase;
}

.nav-fill{
    margin-left: 130px;
}

.navbar{
    padding: 3px;
}


.nav-link, a {
    color: var(--DarkGrey);
    font-weight: 500;
    text-decoration: none;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-menu a {
    color: black;
    padding: 5px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    display: block;
}
.dropdown-menu a:hover{
    background-color: var(--marronClaro);
    color:white;
}

.dropdown:hover .nav-link, a.nav-link:hover{
    background-color: var(--marronOscuro);
    border-radius: 3px;
    padding: 15px 0;
    color: white;
}

.dropdown:hover svg, .nav-link:hover>svg{
    stroke:white;
}

.dropdown:hover g, .nav-link:hover>svg>g{
    fill:white;
}

.nav-link:focus{
    color: var(--marronClaro);
}

.dropdown__item, .submenu__item {
    cursor: pointer;
}

.submenu {
    position: relative;
}

.submenu__list {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    padding-left: 0;
    background-color: #fff;
    width: 80%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
} 


/*Para dispositivos medianos-grandes*/
@media (min-width: 1000px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown__item:hover, .submenu__item:hover {
    background-color: rgb(234, 234, 234);
    }

    .submenu:hover .submenu__list {
        display: block;
    }
}
/*menu seleccionado*/
a.nav-link.active, button.nav-link.active{
    background-color: var(--DarkGrey);
    border-radius: 3px;
    padding: 15px 0;
    color: white;
}

a.nav-link.active svg, button.nav-link.active>svg{
    stroke: white;
}

button.nav-link.active>svg>g{
    fill:white;
}

/*item seleccionado*/
.dropdown-item.activo, .dropdown-item:active, .dropdown__link.activo {
    background-color: var(--marronClaro2);
    color:white;
    font-weight: bold;
}

/*----CARRUSEL----*/

.carousel-item{
    width: 100%;
    height: 400px;
}
.carousel-item a{
    display: block;
    height: 100%;
    padding: 0;
}

.carousel-item img{
    width: 100%;
    height: 100%;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .carousel-item{
        width: 100%;
        height: 250px;
    }
    .carousel-item img{
        width: 100%;
        height: 100%;
    }
}

/*---CONTENIDO INDEX----*/

ul{
    list-style: none;
    text-align: justify;
}

ul a, a{
    color: var(--DarkGrey);
}

ul a:hover, a:hover{
    color: var(--marronOscuro);
    font-weight: 700;
    text-decoration: none;
}

.noticias li{
    margin-bottom: 3px;
}
.centrarImagen img{
    display: block;
    margin: auto;
}

.colmena{
    background-color: #d9b2022b;
    border-radius: 50% 0;
}

.colmena:hover{
    background-color: #d9b20260;
    border-radius: 0 50%;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .colmena{
        background-color: #d9b2022b;
        border-radius: 20px;
    }
    .colmena:hover{
        background-color: #d9b20260;
        border-radius: 20px;
    }
    .ext{
        text-align: center;
    }
}

.enlacesinteres ul{
    margin-left: -25px;
    text-align: justify;
}


.enlacesinteres li, .enlacesinteres svg{
    margin-bottom: 3px;
}

footer{
    background-color: var(--marronOscuro);
    padding: 30px 0
}

div.redesSociales{
    width: 100%;
    display: flex;
    justify-content: center;
}

.redesSociales svg{
    display: block;
    margin: auto;
}

.redesSociales svg:hover>g{
    fill: var(--amarillo);
}

.center{
    text-align: center;
}

.footer p, .footer a{
    margin:10px 0;
    line-height: 20px;
    color: whitesmoke;
}

.footer a:hover, .footer svg:hover{
    color: var(--amarillo);
    stroke:var(--amarillo);
    cursor: pointer;
    font-weight: 600;
}

footer hr {
    color: var(--marronClaro);
}

.footer .info, .footer .info a{
    font-size: 12px;
}

/*----SALUDA ALCALDE----*/

.saluda img{
    float: left;
    margin: 20px;
    border-radius: 3%;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .saluda img{
        display: block;
        margin: auto;
        margin-bottom: 10px;
    }
}

.saluda p{
    margin-top: 30px;
    text-align: justify;
}

.contacta a{
    color: var(--marronClaro);
}

.contacta{
    padding: 30px;
    margin-top: 90px;
    background-color: #d9b2022b;
    border-radius: 20px;
}

.contacta:hover{
    background-color: #d9b20260;
}

.contacta:hover>a{
    font-weight: 500;
    color: var(--marronOscuro);
}

.listaSaluda p{
    padding: 10px;
    margin: 0;
    border: 1px solid var(--marronOscuro);
}

.listaSaluda p:hover{
    background-color: var(--marronClaro);
}

.listaSaluda p:hover>a{
    color:whitesmoke;
}

.listaSaluda {
    border: 1px solid var(--marronOscuro);
}

.listaSaluda .select{
    color:whitesmoke;
    font-weight: bold;
    background-color: var(--marronClaro2);
}

.cabeceraLista{
    padding: 10px;
    background-color: var(--marronOscuro);
    color: whitesmoke;
    font-weight: bold;
    border-radius: 20px 20px 0 0;
}

/*----AVISO LEGAL----*/

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .justificar h1, .justificar h3{
        text-align: center;
    }
}

.justificar p{
    text-align: justify;
}

/*---CORPORACION MUNICIPAL---*/

.corporacion svg:hover{
    stroke: var(--amarillo);
    cursor: pointer;
}

.fondoPSOE{
    background-color: rgba(255, 0, 0, 0.074);
    border-radius: 20px;
}

.fondoPP{
    background-color: rgba(0, 147, 216, 0.074);;
    border-radius: 20px;
}

.fondoAIVA{
    background-color: rgba(0, 0, 254, 0.074);
    border-radius: 20px;
}

.fondoVOX{
    background-color: rgba(21, 194, 27, 0.123);
    border-radius: 20px;
}

.corporacion img{
    display: block;
    margin: auto;
    border-radius: 20px;
    width: 200px;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .corporacion p{
        text-align: center;
    }
}

/*----IMAGEN INSTITUCIONAL---*/

.contacto p{
    line-height: 13px;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .contacto p{
        margin-bottom: 5px;
    }
}

.imgInstitucional img{
    display: block;
    margin: auto;
    margin-top: 20px;
}

.imgInstitucional h3{
    text-align: center;
    padding: 10px;
}

.bandera{
    margin-top: 80px;
    margin-bottom: 20px;
}

.bandera h3{
    padding-top: 20px
}

.contactos p>a{
    padding-left: 2px;
}

/*---DIRECTORIO MUNICIPAL---*/

h1.subcategorias{
    text-transform: none;
}

.listaSubcategorias{
    text-align: left;
}

.numerosSubcategorias{
    text-align: right;
}

.listaSubcategorias li, .numerosSubcategorias li{
    margin-bottom: 10px;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    p.directorio{
        text-align: justify;
    }
    .circle{
        margin-top: 18px;
        margin-bottom: 0px;
    }

}

/*---DIRECTORIO----*/
.alinearDer{
    text-align: right;
}


.circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--marronOscuro);
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight:500;
    margin-bottom: 17px;

}


/*----REGLAMENTO ORG. GOB-----*/

.reglamento h3, .reglamento h4{
    margin-top: 20px;
}

.reglamento p{
    margin-top: 5px;
}

.reglamento li, .reglamento p{
    text-align: justify;
}

.reglamento a{
    margin: 20px 0;
    padding-left: 0;
}

.listaSaluda p.sublista{
    background-color: var(--marronClaro3);
}

.listaSaluda p.sublista:hover{
    background-color: var(--marronClaro);
}

.listaSaluda p.sublista:hover>a{
    color:whitesmoke;
}

/*----EL TIEMPO----*/
.tiempo iframe{
    display: block;
    margin: 0 auto; 
}

/*----PLENO DIRECTO----*/
.listaSaluda p.dobleBorde{
    border-bottom: 45px var(--marronOscuro) solid;
}

.listaSaluda p.separador{
    color: whitesmoke;
    font-weight: bold;
    background-color: var(--marronOscuro);
    padding: 10px;
}

.pleno iframe{
    border-radius: 20px;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .pleno iframe{
        width: 250px;
        height: 200px;
    }
}


/*----TLF INTERES----*/
.datosInteres li{
    padding: 3px 0;
}
/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .datosInteres a{
        padding-left: 0;
    }

    .datosInteres li{
        text-align: left;
    }
    ul.datosInteres{
        padding-left: 10px;
    }
}


/*----ASOCIACION----*/
.card .card-header .asociacion{
    background-color: var(--marronClaro);
}
.alinearIzq{
    text-align: left;
}

.infoContacto{
    padding: 20px;
    background-color: #d9b2022b;
    border-radius: 20px;
}

.infoContacto p{
    margin-bottom: 0;
}

/*----AEDL----*/
.justificado{
    text-align: justify;
}

.agenciaEmpleo svg{
    color: var(--marronClaro);
    margin-bottom: 4px;
}

.agenciaEmpleo li{
    margin-bottom: 10px;
}

.marronBold{
    font-weight: bold;
    color: var(--marronOscuro);
}


/*----GUIA EMPRESARIAL----*/
.redondo {
    border-radius: 50%;
}

/*---RENTA BASICA---*/
.renta li>a{
    text-align: justify;
}

/*---TRAMITES---*/
.tramites h4{
    margin-top: 20px;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    h1, h4{
        text-align: center;
    }
}
/*---CONTACTA---*/

.accordion-button:not(.collapsed) {
    color: var(--marronOscuro);
    font-weight: bold;
    background-color: var(--marronClaro3);
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.accordion-button:not(.collapsed)::after {
    background-image: url(img/flecha4.svg);
}

.accordion-button::after {
    background-image: url(img/flecha3.svg);
}

.acHeader{
    color: var(--marronClaro);
    font-weight: bold;
}

.botonEnviar, .botonBorrar{
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3.8px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 10px;

}

.botonEnviar{
    border: 2px var(--amarillo) solid;
    background-color: #d9b2023b;
    color: var(--amarillo);
}

.botonEnviar:hover{
    background-color: var(--amarillo);
    color:white;
}

.botonBorrar{
    border: 2px var(--DarkOrange) solid;
    background-color: #8b41004f;
    color: var(--DarkOrange);
}

.botonBorrar:hover{
    background-color: var(--DarkOrange);
    color: white;
}

/*-----COMO LLEGAR----*/
.redondear{
    border-radius: 20px;
}
.llegar h3{
    margin-top: 30px;
}

.llegar li{
    text-align: justify;
}

/*----ENTORNO NATURAL---*/
.tablaClima td{
    padding-left: 30px;
    width: 500px;
    border: 1px solid var(--marronOscuro);
}
/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .tablaClima td{
        padding-left: 0;
    }
}
/*---VOLUNTARIOS---*/
.espaciado li{
    margin-bottom: 20px;
}

img.tlf112 {
    box-shadow: 3px 3px 6px 5px var(--marronOscuro);
}

/*-----GENERAL-----*/
.flechaSubir img{
margin-right: 50px;
margin-bottom: 10px;
}

/*Para dispositivos móviles*/
@media (max-width: 500px) {
    .flechaSubir img{
        display: block;
        margin: auto;
    }
}

/*----NOTICIAS-----*/
.btn-guardar{
    border: 2px var(--marronOscuro);
    background-color: var(--marronOscuro);
    color: white;
}
.btn-guardar:hover{
    border: 2px var(--marronOscuro);
    background-color: #4b3f30;
    color: white;
}

.btn-cerrar{
    border: 2px var(--marronOscuro);
    background-color: var(--marronClaro2);
    color: white;
}
.btn-cerrar:hover{
    border: 2px var(--marronClaro);
    background-color: var(--marronClaro);
    color: white;
}

i.icon-brown{
    color:var(--marronOscuro);
}

.mes{
    /* color: rgb(98, 69, 16); */
    color: rgb(148, 127, 87);
}

.imgNoticia {
    border-radius: 10px;
}

/* CALENDARIO */
.calendar-container-index {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-container-index>iframe{
    width: 100%;
    height: 400px;
}

/*Para vista pantalla mediana*/
@media (max-width: 720px) {
    .calendar-container-index>iframe{
        width: 100%;
        height: 400px;
    }
}


/* Preview articulo noticia introducido - Formatos */
#preview {
    margin-top: 10px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}
#preview b {
    font-weight: bold;
}
#preview i {
    font-style: italic;
}
#preview u {
    text-decoration: underline;
}

.btn-estilo{
    border: 2px #ec9f33;
    background-color: #efa63f;
    color: white;
}
.btn-estilo:hover{
    border: 2px #905618;
    background-color: #905618;
    color: white;
}

.justificado{
    text-align: justify;
}

/* lista eventos */
h2 a{
    font-size: 23px;
    color: var(--marronOscuro);
}

.ic-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    margin-bottom: 20px;
}


.ic-content {
    display: block;
    border: 0px;
    margin: 0px;
    padding: 8px;
}


/* .ic-content {
    display: block;
    border: 0px;
    margin: 0px;
    padding: 8px;
} */


.ic-float-left {
    float: left;
}
.ic-align-center {
    text-align: center;
}

.ic-box-date {
    display: block;
    text-transform: capitalize;
    width: 50px;
    height: 50px;
    padding: 10px;
    /* background-color: #D8831C; */
    color: #fff;
    margin: 8px 8px 2px 8px;
    border-radius: 50%;
    box-sizing: content-box !important;
}

.actualidad-color {
    background-color: #7d3554; 
}
.cultura-color {
    background-color: #D8831C; 
}

.deportes-color {
    background-color: #ffea41;
}
.festejos-color {
    background-color: #b34d5d; 
}
.formacion-color {
    background-color: #7d513f; 
}
.noticias-color {
    background-color: #bf080e; 
}
.sanidad-color {
    background-color: #00d2fd; 
}
.turismo-color {
    background-color: #7bc554; 
}

.ic-day {
    line-height: 25px !important;
    font-size: 30px;
    font-weight: bold;
}

.ic-month {
    line-height: 16px !important;
    font-size: 15px;
    letter-spacing: 0px;
    margin-left: 1px;
    font-weight: normal;
}
.ic-year {
    line-height: 12px !important;
    font-size: 10px;
    letter-spacing: 2px;
    margin-left: 2px;
    font-weight: bold;
}
.ic-cat {
    margin-top: 0px;
    margin-left: 15px;
    font-weight: bold;
    color: var(--marronClaro);
    text-transform: uppercase;
    font-size: 10px;
}
/*Para dispositivos móviles*/
@media (max-width: 500px) {
    h2 a{
        font-size: 17px;
        color: var(--marronOscuro);
    }
    .ic-cat {
        margin-top: 0px;
        font-weight: bold;
        color: var(--marronClaro);
        text-align: center;
        text-transform: uppercase;
        font-size: 10px;
    }
    .ic-box {
        text-align: center;
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: center; 
        margin-top: 10px;
    }
    .ic-box-date {
        width: 50px;
        height: 50px;
    }
    .ic-day {
        margin-top: 5px;
        line-height: 18px !important;
        font-size: 24px;
        font-weight: bold;
    }
    
    .ic-month {
        line-height: 17px !important;
        font-size: 10px;
        letter-spacing: 0px;
        margin-left: 1px;
        font-weight: normal;
    }
    .ic-year {
        line-height: 2px !important;
        font-size: 8px;
        letter-spacing: 2px;
        margin-left: 2px;
        font-weight: bold;
    }
}

/*--EVENTOS--*/
ol.tapas li::marker { /*letra A,B,C... del order list*/
    color: #492310;
    font-weight: bold;
}
ol.tapas li{
    padding: 10px 30px;
    color: #492310;
}
ol.tapas{
    list-style-position: inside;
    background-color: #49231026;
    border: 10px groove #B46717;
}

ol.tapasSM li::marker { /*letra A,B,C... del order list*/
    color: #492310;
    font-weight: bold;
}
ol.tapasSM li{
    color: #492310;
    margin-bottom: 15px;
    
}
ol.tapasSM{
    list-style-position: inside;
    background-color: #49231026;
    border: 10px groove #B46717;
    padding: 0;
}
ol.tapasSM li{
    margin-bottom: 15px;
}
span.importante{
    font-family: var(--inicio);
    font-size: 18px;
    font-weight: bold;
    color:#B46717;
}

 /* Estilo para los elementos de paginación */
 .pagination .page-item.active .page-link {
    background-color: var(--marronOscuro); /* Fondo naranja para el elemento activo */
    color: white; /* Texto blanco para el elemento activo */
    border-color: var(--marronOscuro); /* Borde naranja para el elemento activo */
}

.pagination .page-link {
    color: var(--marronOscuro); /* Texto naranja para los elementos no activos */
    border-color: var(--marronOscuro); /* Borde naranja para los elementos no activos */
}

/* Estilo al pasar el ratón (hover) en los elementos de paginación */
.pagination .page-item .page-link:hover {
    background-color: var(--marronClaro); /* Fondo naranja claro al pasar el ratón (hover) */
    color: white; /* Texto blanco al pasar el ratón (hover) */
    border-color: var(--marronOscuro); /* Borde naranja claro al pasar el ratón (hover) */
}

/*FIESTAS*/
.fiestas img{
    display: block;
    margin: auto;
    border-radius: 20px;
    width: 250px;
    height: 250px;
}
a.lista{
    padding-left: 0;
    padding-right: 0;
}
a.lista>i{
    padding: 5px 0;
}

p.info{
    font-size: 13px;
    font-style: italic;
}

a.btn:hover{
    font-weight: 400;
}

.textoRojo{
    color:red;
}

/*asociaciones*/
ul.asociaciones>li{
    margin-top: 10px;
}

a.ahover:hover{
    font-weight: 500;
}


/* solicitudes*/

.formularioSolicitud{
    background-color: rgba(255, 242, 179, 0.496);
    padding: 10px;
    border-radius: 20px;
}

.btn-fechas{
    border: 2px #EFA63F;
    background-color: #EFA63F;
    color: white;
}
.btn-fechas:hover{
    border: 2px #905618;
    background-color: #905618;
    color: white;
}
