/*Tipografia*/
@font-face {
    font-family: "Helvetica Neue Medium";
    src: local("Helvetica Neue Medium"), local("Helvetica-Neue-Medium"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-Medium.woff2")
            format("woff2"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-Medium.woff")
            format("woff"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-Medium.ttf")
            format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue Heavy";
    src: local("Helvetica Neue Heavy"), local("Helvetica-Neue-Heavy"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-Heavy.woff2")
            format("woff2"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-Heavy.woff")
            format("woff"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-Heavy.ttf")
            format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue LightItalic";
    src: local("Helvetica Neue Heavy"), local("Helvetica-Neue-Heavy"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-LightItalic.woff2")
            format("woff2"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-LightItalic.woff")
            format("woff"),
        url("../fuentes/HelveticaNeue/HelveticaNeueCyr-LightItalic.ttf")
            format("truetype");
}
* {
    font-family: "Helvetica Neue Medium", sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background-color: lightgray;
    min-height: 100vh;
    overflow-x: hidden;
    background: rgb(94, 94, 94);
    background-image: url("../imagenes/textura.png");
}

/* color del scroll en chrome */
/* *::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background-color: white;
}

*::-webkit-scrollbar-thumb {
    background-color: #a4244f;
    outline: 1px solid #a4244f;
}

/* color del scroll en firefox */
* {
    /* scrollbar-width: thin;
    scrollbar-color: #a4244f white; */
}
.row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.column {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.wrap {
    flex-wrap: wrap;
}
/*Agrega puntero a todos los botones*/
button {
    cursor: pointer;
}
button.btn {
    background-color: #a4244f;
    border: none;
    border-radius: 5px;
    font-weight: 400;
    padding: 5px;
    color: white;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
}
button.btn:active {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
}

.modal .contenedor {
    width: 100%;
    max-width: 400px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}

.modal .contenedor * {
    margin-bottom: 10px;
}

.modal .modal_button {
    margin-left: auto;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

.modal a {
    word-break: break-all;
}

.modal .modal_button::before {
    content: "";
    margin-left: 19px;
    width: 2px;
    height: 40px;
    position: relative;
    display: block;
    background-color: black;
    transform: rotate(45deg);
    border-radius: 2px;
}

.modal .modal_button::after {
    content: "";
    margin-top: -40px;
    margin-left: 19px;
    width: 2px;
    height: 40px;
    position: relative;
    display: block;
    background-color: black;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.modal .contenedor {
    padding: 15px;
}

.modal .contenedor .articulos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    padding: 0 !important;
    width: 100%;
}

.modal .contenedor .articulos form {
    padding: 0 !important;
}

.modal .contenedor .articulos a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal .contenedor .articulos img {
    width: 50px;
}

.modal .contenedor .titulo {
    font-size: 30px;
}

.modal .contenedor .informacion {
    font-size: 15px;
}

.modal .contenedor .descripcion {
    font-size: 20px;
}

.load {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 50px;
}

.load .progres {
    text-align: center;
    color: white;
    margin-left: 0;
    background: #a36479;
    width: 0%;
    border-radius: 50px;
    /*box-shadow: 0 0 10px 2px red;*/
}

.btn-eliminar {
    margin-top: auto;
    margin-bottom: 10px;
    border: none;
    border: 2px solid #df5826;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(140, 140, 140);
    transition: 0.1s ease all;
    background-color: transparent;
    color: #df5826;
}

.prog {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    margin: auto;
    text-align: center;
    font-size: 40px;
    color: rgb(0, 255, 0);
}

/*Estilos del contenedor*/
.contenido {
    margin: auto;
    width: 100%;
    /* max-width: 1200px; */
    min-height: 50vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 2px 0px gray;
}

/*Estilos de la seccion de contacto*/
.contacto {
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.contacto .logo_contacto {
    width: 200px;
    padding: 5px;
}

.contacto .escudo_contacto {
    width: 70px;
    padding: 5px;
}

/*telefono y correo*/
.contacto .inf {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-right: 2px solid lightgray;
}

/*enlaces de redes sociales*/
.contacto .redes {
    height: 100%;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacto .redes .icono:first-child {
    border-left: 1px solid lightgray;
}

.icono {
    width: 50px;
    height: 100%;
    border-right: 1px solid lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        0deg,
        rgba(22, 158, 216, 0.7) 35%,
        rgba(255, 255, 255, 1) 50%
    );
    transition: background 0.3s ease-out;
    background-size: 1px 45px;
}

.icono:hover {
    background-position: 1200px;
}

.icono img {
    margin: auto;
    width: 20px;
}

/*boton declaraBCS*/
.contacto .btn-contacto {
    width: 120px;
    height: 30px;
    border: none;
    margin-left: 20px;
    background-color: #cf8ea4;
    color: white;
}

/*Estilos de header*/
.header {
    padding-top: 0;
    width: 100%;
    height: 70px;
    background-color: #a4244f;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    box-shadow: 0 0 2px 0px gray;
    z-index: 99;
    transition: 0.5s ease all;
}

.header .logo {
    position: relative;
    /* top: 40px; */
    /* left: 20px; */
    margin: auto;
    height: 56px;
    transition: 0.1s linear all;
    cursor: pointer;
}

.header .logo:hover {
    opacity: 0.5;
}

/*contenedor de botones del header*/
.header .collapse {
    width: 100%;
    height: 100%;
    margin: 0px;
    margin-left: auto;
    transition: 0.3s all;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    padding: 0;
}
.header .container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 70px;
    max-width: 1140px;
}
.header .collapse > .elementos {
    /* width: 100%; */
    min-width: 120px;
    height: 100%;
    transition: 0.3s all;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(228, 228, 228);
    font-weight: 200;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    gap: 5px;
    padding: 0px 15px 0px 15px;
}

/*elementos de enlaces del header*/
.header .collapse .dropdown {
    min-width: 120px;
    height: 100%;
    /* margin: auto; */
    transition: 0.3s all;
    /* display: flex;
    justify-content: flex-start;
    align-items: center; */
    color: rgb(228, 228, 228);
    font-weight: 200;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    gap: 5px;
    padding: 0px 15px 0px 15px;
}

.header .collapse .dropdown .elementos {
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.header .collapse .dropdown a {
    min-width: 100%;
    height: 100%;
    margin: auto;
    color: white;
    text-decoration: none;
}

.header .elementos:hover {
    color: rgb(255, 255, 255);
}

/*encabezado de secciones*/
.seccion {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(50, 50, 50, 0.5);
    background-attachment: fixed;
    background-position: center;
    background-image: url("../imagenes/15434554991543349049loreto-baja-california-sur-mision-san-javier.jpg");
    height: 250px;
    background-size: cover;
    text-align: center;
    font-family: "Helvetica Neue Heavy", sans-serif bold;
}

.seccion .ayuntamiento {
    color: #a4244f;
    font-size: 17px;
}

.page-header .titulo {
    font-size: 40px;
    font-weight: bolder;
    color: rgb(230, 230, 230);
    max-width: 800px;
    text-align: center;
}

.talon {
    background-color: #a4244f;
    width: 100%;
    height: 3px;
    margin-top: 15px;
}

.presidente {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 100px;
    width: 100%;
    font-size: 15px;
}

.presidente .img {
    width: 300px;
    height: 400px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid lightgray;
}

.presidente .img img {
    height: 100%;
}

.presidente .mensaje_bienvenida {
    width: 80%;
    max-width: 300px;
    text-align: justify;
    padding-left: 15px;
    padding-right: 15px;
}

.presidente .nombre_presidente {
    width: 100%;
    text-align: left;
}

.presidente .texto_parrafo {
    width: 80%;
    max-width: 600px;
    text-align: justify;
}

/*introduccion de las secciones*/
.introduccion {
    padding-top: 80px;
    padding-bottom: 80px;
    font-size: 14px;
    text-align: center;
    color: rgb(80, 80, 80);
    width: 90%;
    max-width: 600px;
    margin: auto;
    line-height: 20px;
}

.aux {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: justify;
    padding: 40px;
}

.aux .concepto {
    font-size: 20px;
}

.aux .descripcion {
    font-size: 15px;
    color: rgba(100, 100, 100, 1);
}

/*tarjetas de presentacion de integrantes*/
.integrantes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.integrantes .card {
    width: 20%;
    min-width: 250px;
    margin: auto;
    margin-top: 0;
    margin-bottom: 20px;
}

.integrantes .card .img {
    width: 100%;
    margin-bottom: 10px;
    aspect-ratio: 711 / 889;
    object-fit: cover;
}

.integrantes .card .nombre {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: black;
    margin-bottom: 10px;
}

.integrantes .card .puesto {
    color: blue;
    margin-bottom: 10px;
}

.integrantes .card .descripcion {
    font-size: 15px;
    text-align: left;
    color: rgb(80, 80, 80);
}

/* articulos de transaprencia */
.articulos {
    padding: 40px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; */
    display: grid;
    max-width: 1200px;
    margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
}

.articulos .articulo {
    overflow: auto;
    margin: auto;
    margin-bottom: 15px;
    width: 250px;
    min-width: 200px;
    height: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border: 1px solid #997682;
    /* background-color: #a4e4ff; */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.3);
}

.articulos .articulo .titulo,
.articulos .articulo .descripcion,
.articulos .articulo .fraccion {
    margin: auto;
}

.articulos .articulo .titulo {
    font-size: 20px;
}

.articulos .articulo .fraccion {
    font-size: 15px;
}

.articulos .articulo .descripcion {
    font-size: 12px;
}

.articulos .articulo button,
.f-articulo button {
    margin-top: auto;
    margin-bottom: 10px;
    border: none;
    /* border: 2px solid #a4244f; */
    background-color: #a4244f;
    color: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(140, 140, 140);
    transition: 0.1s ease all;
}

.articulos .articulo button:active {
    box-shadow: 0px 0px 10px -3px #714514;
}
.nota-cont {
    align-items: flex-start;
    gap: 15px;
    max-width: 600px;
    max-height: 160px;
    overflow: hidden;
    position: relative;
    transition: 1s ease max-height;
}
.nota-cont.activo {
    /* max-height: 999px !important; */
}
.pre-text {
    max-width: 100%;
    /* min-width: 350px; */
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    margin: 0;
    font-family: inherit;
    font-size: 1rem;
    padding: 10px 0 10px 0;
    text-align: left;
}
.dif-efect {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    height: 100px;
    width: 100% !important;
    position: absolute;
    bottom: 0;
}
/*contenedor de pagina de inicio*/
.body {
    width: 100%;
    background-color: white;
}

/*contenedor de especifico de pagina de inicio 'info1','info2' etc*/
.body .info1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: 0;
    flex-wrap: wrap;
    margin-bottom: 180px;
    margin-top: 50px;
}

.body .info1 .img {
    width: 300px;
    height: 250px;
    min-width: 100px;
    border-radius: 5px;
    overflow: hidden;
    margin: auto;
}

.body .info1 .img img {
    width: 100%;
}

.body .info1 .text {
    width: 250px;
    min-width: 200px;
    color: black;
    margin: auto;
}

/*componentes de slider*/
.body .swiper {
    width: 100%;
    max-width: 1200px;
    padding: 70px 0;
}

.body .swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 400px;
    border-radius: 15px;
}

.body .swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 3/1;
    margin: auto;
}
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
    color: #a4244f !important;
}
.swiper-pagination span {
    background-color: #a4244f !important;
}
/*titulo de seccion de la pagina de inicio*/
.sectitle {
    text-align: center;
}

.body .info2 {
    margin-top: 15px;
    text-align: center;
    margin-bottom: 100px;
}

.body .info2 .enlaces {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.body .info2 .enlaces .enlace {
    width: 250px;
    height: 150px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

.body .info2 .enlaces .enlace a img {
    width: 250px;
    height: 150px;
    transition: 0.5s ease all;
}

.body .info2 .enlaces .enlace a img:hover {
    transform: scale(1.5);
}

/*galeria de la pagina de inicio*/
.galeria {
    width: 100%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    background: rgb(27, 106, 179);
    background: linear-gradient(
        0deg,
        rgba(27, 106, 179, 1) 0%,
        rgba(22, 158, 216, 1) 25%,
        rgba(255, 255, 255, 1) 50%
    );
    margin-top: 15px;
    background-attachment: fixed;
    background-size: cover;
    /* background-image: url("../imagenes/fondo2.jpg"); */
}

.galeria .imgal {
    margin: auto;
}

.galeria .imgal img {
    width: 300px;
    margin: auto;
    padding: 10px;
    border-radius: 20px;
    transition: 0.3s ease all;
    cursor: pointer;
}

.galeria img:hover {
    transform: scale(1.2);
}

.galeria .imgal .imgdel img {
    width: 50px;
    position: absolute;
    margin-top: -100px;
    margin-left: 125px;
    background-color: white;
    border-radius: 50%;
}

.swiper-wrapper .swiper-slide .slidedel {
    width: 140px;
    height: 140px;
    position: absolute;
    z-index: 1;
    transition: 0.3s ease all;
    cursor: pointer;
}

.swiper-wrapper .swiper-slide .slidedel:hover {
    transform: scale(1.2);
}

.swiper-wrapper .swiper-slide .slidedel img {
    width: 100px;
    position: absolute;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    min-width: unset;
    aspect-ratio: unset;
}

.footer {
    margin-top: auto;
    width: 100%;
    /* max-width: 1920px; */
    background-color: rgb(50, 50, 50);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer-holder {
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer .side {
    min-width: 200px;
    width: 20%;
    color: white;
    padding: 30px;
}

.footer .sidex2 {
    min-width: 280px;
    width: 40%;
    color: white;
    padding: 30px;
}

.footer .side .titulo,
.footer .sidex2 .titulo {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
}

.footer .side.floating {
    position: relative;
    /* right: 20px;
    top: 225px; */
    width: 280px;
    padding: 0;
    /* z-index: 98; */
}
.page-header {
    /* background-color: #b2afab; */
    background-position: 50%;
    background-size: cover;
    max-height: 999px;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
    position: relative;
    /* filter: brightness(0.5); */
    font-size: 3.6em;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 200;
    text-align: center;
}
.page-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    /* top: 0; left: 0; */
    width: 100%;
    height: 100%;
    background-image: url("/imagenes/presidencia.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(0.5);
}
/* The container <div> - needed to position the dropdown content */

.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

/* Dropdown Content (Hidden by Default) */

.dropdown-content {
    display: none;
    position: absolute;
    width: 100% !important;
    background-color: rgba(80, 80, 80, 1);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

/* Links inside the dropdown */

.dropdown-content .drop {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
    cursor: pointer;
}

/* Change color of dropdown links on hover */

.dropdown-content .drop:hover {
    background-color: rgba(120, 120, 120, 1);
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */

.show {
    display: block;
}

/*colores de linea del footer*/
.color1 {
    width: 3.22265625%;
    background-color: #a4244f;
}

.color2 {
    width: 6.4453125%;
    background-color: #a4244f;
}

.color3 {
    width: 12.890625%;
    background-color: #a4244f;
}

.color4 {
    width: 25.87890625%;
    background-color: #a4244f;
}

.color5 {
    width: 51.66015625%;
    background-color: #a4244f;
}

.linea {
    width: 100%;
    height: 40px;
    display: flex;
    background-color: #a4244f;
}

/*boton que expande el header responsivo*/
.toggler {
    display: none;
}

.tog {
    width: 80%;
    height: 5px;
    background-color: white;
    margin: auto;
    border-radius: 6px;
}

.toggler:hover {
    opacity: 0.7;
}

.loader {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.7);
}

/* pantalla de carga */
.loader .loadercont {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 50%;
    animation: rotation 3s linear infinite;
}

.loader .loadercont * {
    width: 1rem;
    height: 1rem;
    margin: auto;
    border-radius: 50%;
    border: none;
    padding: 0;
}

/* formularios */
.form-container {
    display: flex;
    flex-wrap: wrap;
}

form {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    padding: 15px;
    /* border: 2px solid gray; */
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: rgb(255, 243, 245);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}
input,
textarea,
select {
    width: 100%;
    border: 1px solid rgb(240, 240, 240);
    padding: 10px;
    background-color: white;
}
input[type="file"]::file-selector-button {
    border: none;
    padding: 15px;
    border-radius: 20px;
    color: black;
    font-weight: 600;
}
input[type="file"]::file-selector-button:hover {
    background-color: #dddddd;
}
input[type="file"] {
    background-color: inherit;
    border: none;
    padding: 0;
    width: 100% !important;
}
form button {
    width: 100%;
    background-color: #a4244f;
    color: white;
    border: none;
    font-weight: 300;
    padding: 10px 5px 10px 5px;
    margin-top: 10px;
    font-size: 17px;
}

form input,
form textarea {
    width: calc(100% - 22px);
    max-width: calc(100% - 22px);
}
form select,
form input,
form textarea {
    margin: auto;
    margin-bottom: 10px;
}
form textarea {
    min-width: calc(100% - 30px);
    min-height: 100px;
}
form * {
    margin-bottom: 10px;
    border-radius: 3px;
}

.user-form,
.update-user {
    margin: auto;
    width: 250px;
    border: none;
    background-color: white;
}

.user-form .nombre,
.update-user .nombre {
    width: 90%;
    padding: 10px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.user-form input,
.update-user input,
.user-form select {
    width: 90%;
    border: 1px solid gray;
    padding: 10px !important;
    outline: none;
}

.user-form select,
.update-user select {
    width: calc(90% + 20px);
    background-color: white;
}

.user-form button,
.update-user button {
    width: calc(90% + 20px);
    padding: 10px;
    border: none;
    background-color: #a4244f;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.float {
    position: fixed;
    left: 10px;
    top: 225px;
    z-index: 99;
    width: unset;
    transition: 0.3s linear all;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: white;
    border: 1px solid gray;
}
.float form {
    margin-bottom: 0 !important;
    background-color: inherit;
    box-shadow: none;
}
.float.collaps {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: none;
    overflow: hidden;
}

.float.expand {
    width: 200px;
    height: 400px;
    border-radius: 30px;
    overflow: auto;
    flex-direction: row;
}

.float .open {
    transition: 0.3s linear all;
}

.float .open:before {
    transition: 0.3s linear all;
}

.float .open:after {
    transition: 0.3s linear all;
}

.float.collaps .open {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #a4244f;
    color: white;
    margin-left: 0;
    margin-right: auto;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float.expand .open {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: auto;
    margin-left: 10px;
    margin-top: 10px;
    background-color: #a4244f;
    color: white;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float.collaps form {
    opacity: 0;
    transition: 0.1s linear all;
}

.float.expand form {
    opacity: 1;
    transition: 0.3s linear all;
}

.float.collaps .open:before {
    content: "";
    height: 30px;
    width: 5px;
    margin-top: 0px;
    margin-right: -5px;
    border-radius: 10px;
    background: white;
    position: relative;
    transform: rotate(90deg);
    display: inline-block;
    z-index: 9;
}

.float.collaps .open:after {
    content: "";
    height: 30px;
    width: 5px;
    margin-left: 0px;
    border-radius: 10px;
    background: white;
    position: relative;
    transform: rotate(0deg);
    display: inline-block;
    z-index: 9;
}

.float.expand .open:before {
    content: "";
    height: 30px;
    width: 5px;
    margin-top: 0px;
    margin-right: -5px;
    border-radius: 10px;
    background: white;
    position: relative;
    transform: rotate(45deg);
    display: inline-block;
    z-index: 9;
}

.float.expand .open:after {
    content: "";
    height: 30px;
    width: 5px;
    margin-left: 0px;
    border-radius: 10px;
    background: white;
    position: relative;
    transform: rotate(-45deg);
    display: inline-block;
    z-index: 9;
}

.float form {
    border: none;
    width: unset;
}

.float .logout {
    background-color: red;
    color: white;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    width: 100%;
}

.float .dash {
    background-color: #a4244f;
    color: white;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    width: 100%;
}

.float .arch {
    background-color: #a4244f;
    color: white;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    width: 100%;
}

.contenedor-1 {
    display: flex;
    flex-wrap: wrap;
}

.contenedor-1 .user-form {
    width: 45%;
    min-width: 350px;
}

.contenedor-1 .user-info {
    width: 60%;
    background-color: lightgray;
}

.contenedor-1 .user-info form {
    background-color: lightgray;
    width: 100%;
    height: calc(100% - 40px);
}

.contenedor-1 .lista-usuarios {
    width: 30%;
    height: calc(100% - 20px);
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    background-color: lightgray;
    overflow: auto;
    margin-left: auto;
}

.user-container {
    display: flex;
    background-color: lightgray;
    width: 50%;
    min-width: 350px;
    margin: auto;
    height: 340px;
}

.lista-usuarios .usuario {
    padding: 5px;
    width: 100%;
    cursor: pointer;
}

.lista-usuarios .usuario:hover {
    background-color: gray;
}

.noticias {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
}

.noticias .nota {
    width: 300px;
    text-decoration: none;
    color: black;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.1s;
    box-shadow: 5px 5px 30px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.noticias .nota:hover {
    transform: scale(1.1);
    z-index: 1;
}

.noticias .nota .img {
    width: 100%;
    height: 150px;
    background-color: black;
}

.noticias .nota .titulo {
    padding-bottom: 0;
    font-size: 24px;
    font-weight: 200;
    font-family: "Helvetica Neue LightItalic";
    width: calc(100% - 20px);
    margin: auto;
    margin-top: 20px;
    text-align: center;
}

.noticias .nota .descripcion {
    padding: 15px;
    margin-top: 20px;
    font-weight: 100;
    font-family: "Helvetica Neue Medium";
    color: #575757;
}
.noticias .nota .btn-noticia {
    background-color: #575757;
    color: white;
    border-radius: 50px;
    margin: auto;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    margin-bottom: 10px;
}
.noticias .nota .notdel {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white;
    padding: 4px;
    border-radius: 2px;
}

.noticias .nota .notdel img {
    width: 100%;
    height: 100%;
}

.del-arch {
    border: none;
}

.del-arch button {
    font-size: 12px;
    width: auto;
    margin-top: 0;
}

.archivos {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 300px;
    overflow: auto;
}

.archivos textarea {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
    height: 100%;
    min-height: 50%;
    max-height: 100%;
    margin: auto;
    text-align: left;
    font-family: "Helvetica Neue Medium", sans-serif;
    line-height: 25px;
}

.archivos button {
    margin: auto;
    padding: 10px;
    font-weight: 600;
    color: white;
    background-color: #67af45;
    border: none;
    margin-top: 10px;
}

.archivos .fecha {
    font-size: 30px;
    margin-bottom: 15px;
}

.archivos a {
    margin-bottom: 10px;
}

.reporte-log-pdf {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightsteelblue;
}

.reporte-log-pdf * {
    margin-right: 10px;
    margin-left: 2px;
}

.reporte-log-pdf input,
.reporte-log-pdf button {
    border: none;
    background-color: lightgray;
    padding: 5px;
    font-weight: 600;
}

.reporte-log-pdf button {
    background-color: #a4244f;
    color: white;
    font-size: 15px;
    border-radius: 2px;
}

.direcciones {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.direcciones ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.direcciones .pag {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #a4244f;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 5px;
}

.direcciones ul li {
    margin: auto;
    text-decoration: none;
    list-style: none;
}

.fizquierda,
.fderecha {
    width: 100px;
    height: 30px;
    background-color: #a4244f;
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.fderecha:before {
    content: "";
    height: 10px;
    width: 30px;
    margin-top: 10px;
    margin-left: 35px;
    background: white;
    position: relative;
    display: inline-block;
    z-index: 9;
}

.fizquierda.disabled,
.fderecha.disabled {
    background-color: gray !important;
    cursor: default;
}

.fderecha:after {
    content: "";
    height: 0px;
    width: 30px;
    margin-top: -50px;
    margin-bottom: 12px;
    margin-left: 60px;
    background: transparent;
    position: relative;
    display: inline-block;
    border-right: solid 10px white;
    border-top: solid 10px transparent;
    border-bottom: solid 10px transparent;
    transform: rotate(180deg);
    z-index: 9;
}

.fizquierda:before {
    content: "";
    height: 10px;
    width: 30px;
    margin-top: 10px;
    margin-left: 35px;
    background: white;
    position: relative;
    display: inline-block;
    z-index: 9;
}

.fizquierda:after {
    content: "";
    height: 0px;
    width: 30px;
    margin-top: -50px;
    margin-bottom: 12px;
    margin-right: 60px;
    background: transparent;
    position: relative;
    display: inline-block;
    border-right: solid 10px white;
    border-top: solid 10px transparent;
    border-bottom: solid 10px transparent;
    z-index: 9;
}

.table-container {
    overflow: auto;
    max-height: 100svh;
}

.documentos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.documentos a {
    text-align: center;
    width: 150px;
    margin: 20px;
    border-radius: 20px;
    padding: 5px;
}

.secdocs {
    width: calc(100% - 40px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.documentos a:hover {
    transform: scale(1.1);
}

.ask a .previewpdf {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 600px;
    height: 400px;
    z-index: 100;
    transition: 0.3s ease all;
}
body > .previewpdf {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 600px;
    max-width: 100%;
    height: 400px;
    z-index: 100;
    transition: 0.3s ease all;
    background-color: white;
}
.ask .fullpreviewpdf {
    width: 100%;
    min-width: 300px;
    height: 80vh;
}
.documentos a .previewpdf {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 400px;
    max-width: 600px;
    height: 400px;
    margin-left: 100%;
    margin-top: -200px;
    margin-bottom: -200px;
    transition: 0.3s ease all;
    z-index: 100;
}

.documentos .fullpreviewpdf {
    width: 100%;
    min-width: 300px;
    height: 80vh;
}
.secpreguntas {
    width: calc(100% - 40px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.ask {
    margin-bottom: 15px;
    width: 100%;
    color: white;
    border-radius: 10px;
    padding-top: 10px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    background-color: #a4244f;
}
.ask .ask {
    background-color: #d1386b;
}
.ask .ask .ask {
    background-color: #a36077;
}
.ask .ask .ask .ask {
    background-color: #a0868f;
}
.ask .ask .ask .ask .ask {
    background-color: #c9a7b3;
}
.ask .answer {
    max-height: 0px;
    background-color: rgba(57, 163, 57, 0.7);
    overflow: hidden;
    color: transparent;
    display: flex;
    justify-content: center;
    /* align-items: flex-start; */
    flex-wrap: wrap;
    font-size: 17px;
    font-weight: 300;
    margin-top: 10px;
    transition: linear 1s background-color, ease 0.5s color, 1s ease max-height;
    /* transition: all 1s linear; */
    text-align: center;
}

.ask .answer.expand {
    max-height: unset;
    background-color: white;
    padding: 20px;
    color: black;
    overflow: auto !important;
}

.ask .answer a,
.documentos a {
    text-align: center;
    width: 200px;
    margin: 20px;
    border-radius: 20px;
    border: 2px solid rgb(158, 80, 93);
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-wrap: pretty;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    text-decoration: none;
    color: inherit;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}
.ask .answer a:hover,
.documentos a:hover {
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0, 3.18, 0.99, 1);
    /* transition: all 0.3s cubic-bezier(0, 2.06, 0.32, 0.33); */
}
.secdocs .ask {
    font-size: 30px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

#calendario {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.controles-cal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.controles-cal .control {
    cursor: pointer;
    user-select: none;
}

.titulo-form-almanaque {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.f-almanaque input,
.f-almanaque select {
    padding: 10px !important;
    border: none !important;
    background-color: #dddddd;
    width: 100%;
    max-width: 100px;
    font-size: 12px;
}

.f-almanaque select {
    padding: 10px !important;
    border: none !important;
    background-color: #dddddd;
    width: calc(100% + 20px) !important;
    max-width: 120px;
    font-size: 12px;
}

.f-almanaque input[type="date"] {
    width: 120px;
    max-width: 150px;
}

.f-almanaque .wraper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.f-almanaque .wraper .field {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.f-calendario {
    padding: 0px;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.f-calendario * {
    margin: 0;
}

.f-campo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.f-calendario input,
.f-calendario select {
    padding: 10px !important;
    border: none !important;
    background-color: #dddddd;
}

.f-calendario button {
    width: 200px;
}

.w2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 25px;
}

.actividades {
    padding: 20px;
}

td.cal {
    user-select: none;
}

td.cal:hover {
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

td.cal:active {
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

/* fecha mostrada al seleccionar una fecha en agenda de gobierno (almanaque) */
.fecha-seleccionada {
    width: 100px;
    background-color: rgba(27, 106, 179, 1);
    padding: 10px;
    color: white;
    border-radius: 30px;
    margin-bottom: 15px;
    text-align: center;
}

/* aviso en agenda de gobierno (almanaque) */
.aviso-respuesta {
    font-size: 20px;
    background-color: #e7d16e;
    color: red;
    font-weight: 50;
    width: calc(100% - 20px);
    padding: 10px;
    text-align: center;
    font-family: "Helvetica Neue LightItalic";
}

form.eliminar-evento {
    border: none;
    padding: 0;
    width: unset;
    margin-top: 0;
    margin-bottom: 0;
}

form.eliminar-evento button {
    background-color: #bd3030;
}

/* animacion de la pantalla de carga */
@keyframes rotation {
    0% {
        width: 15%;
        transform: rotate(0deg);
        /* background-color: black; */
    }

    50% {
        width: 50%;
        transform: rotate(360deg);
        /* background-color: white; */
    }

    100% {
        width: 15%;
        transform: rotate(720deg);
        /* background-color: black; */
    }
}

@media (max-width: 1200px) {
    /*estilos responsivos del header*/
    .collapse {
        min-width: 100%;
        height: 90% !important;
        margin-top: 20px;
        justify-content: flex-start !important;
        flex-direction: column;
        gap: 5px;
        overflow: auto;
    }

    .header .elementos {
        width: 100%;
        padding: 0px !important;
        height: 50px !important;
    }

    .header .elementos:last-child {
        margin-bottom: 20px;
    }

    .header .dropdown .elementos {
        min-height: 50px;
        max-height: 50px;
    }

    .header .dropdown {
        width: 100%;
        padding: 0px !important;
        height: 50px !important;
        margin: 0 !important;
    }

    .toggler {
        width: 50px;
        height: 40px;
        /* background-color: #a4244f; */
        transition: 0.3s all;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: white;
        font-weight: bold;
        cursor: pointer;
        border-radius: 5px;
    }

    .header .logo {
        position: absolute;
        top: 5px;
        left: 5px;
        margin: auto;
        /* width: 180px; */
        transition: 0.1s linear all;
    }
    .header {
        padding-top: 10px;
        overflow: hidden;
        height: 50px;
        flex-wrap: wrap;
    }
    .header .collapse .elementos {
        border-bottom: 1px solid white;
    }

    .header.expand {
        height: calc(100svh - 90px);
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .container {
        height: 100vh !important;
    }
    /*estilo responsivo de la galeria de la pagina de inicio*/
    .galeria img {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 1800px) {
    .side.floating {
        position: relative !important;
        top: 0 !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

@media (max-width: 800px) {
    .contenido {
        width: 100%;
        margin: auto;
    }
    .body .swiper .swiper-slide img {
        aspect-ratio: 5/3;
    }
    .header {
        width: 100% !important;
    }

    .contacto * {
        border: none !important;
    }
    .page-header {
        font-size: 25px;
    }
}
