@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
	--principal: #ee691e;
	--secundario: #5D6770;
	--terciario: #D3BF9A;
	--gris: #8B8F91;
    --blanco: #fff;
    --negro: #000;
    --grisClaro: #ccc;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
.container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
.preHeader {
    background-color: var( --secundario );
    color: var( --blanco );
    box-sizing: border-box;
    padding: 8px;
}
.dFlex, .preHeader .container {
    display: flex;
    align-items: center;
}
.preHeader { margin-bottom: 168px; }
.preHeader .container { justify-content: flex-end; }
.preHeader span { color: var( --grisClaro ); }
.preHeader a { margin-left: 15px; color: var( --blanco ) }
.preHeader i { color: var( --grisClaro ); }
header {
    position: absolute;
    top: 37px;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
    z-index: 20;
    background-color: var( --blanco );
    border-bottom: 1px solid var( --grisClaro );
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    display: block;
    width: 150px;
    height: auto;
    box-sizing: border-box;
    padding: 10px;
    background-color: var( --blanco );
    box-shadow: -1px 10px 21px -9px rgba( 0, 0, 0, 0.75 );
    margin: -40px 0;
    z-index: 1;
}
header nav { max-width: calc( 100% - 200px ); width: 750px; display: block; }
header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
header nav ul li a {
    display: block;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    padding: 5px 10px;
    color: var( --negro );
}
header nav ul li a span {
    display: block;
    opacity: 0;
    transition: 0.4s all;
    width: 1px;
    height: 3px;
    background-color: var( --principal );
    margin: 5px auto;
    border: none;
}
header nav ul li a:hover > span, header nav ul li a:focus > span, header nav ul li a.active span {
    opacity: 1;
    width: 100%;
}
.button {
    background-color: var( --principal );
    border: 1px solid var( --principal );
    color: var( --blanco );
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    transition: 0.4s all;
}
.button:hover, .button:focus {
    background-color: var( --blanco );
    color: var( --principal );
}
header nav ul li a.button { margin-top: -15px; height: 30px; display: block; }
.bMobile {
    display: none;
    color: var( --negro );
    font-size: 25px;
}
.fullImg { width: 100%; height: auto; }
.swiper-button-next:after, .swiper-button-prev:after { display: none; }
.swiper-button-next, .swiper-button-prev { color: var( --principal ); font-size: 40px; }
.swiper-container { overflow: hidden; position: relative; padding: 0; }
.swiper-pagination-bullet { background: var( --gris ); opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var( --principal ); }
.swiper-pagination-bullet { width: 20px; height: 20px; }
footer {
    background-color: var( --gris );
    color: var( --blanco );
    box-sizing: border-box;
    padding: 40px 0;
    text-align: center;
}
footer .logo {
    width: 100px;
    height: auto;
    margin: 10px auto;
}
footer .dFlex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 650px;
    width: 98%;
}
.redesSociales ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.redesSociales ul li { margin: 0 10px; }
.redesSociales ul li a {
	text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 100%;
	position: relative;
	width: 40px;
	height: 40px;
	margin: 0 3px;
	box-sizing: border-box;
	padding-top: 5px;
    background-color: var( --blanco );
}
.redesSociales ul li a i {
	color: var( --principal );
	font-size: 18px;
	position: relative;
	z-index: 1;
}
.redesSociales ul li a b {
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}
.redesSociales ul li a span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	width: 0;
	background-color: var( --principal );
}
.redesSociales ul li a:hover span {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	top: 0;
	left: 0;
}
.redesSociales ul li a:hover i { color: var( --blanco ); }
footer .dFlex a { color: var( --blanco ); margin: 0 8px; }
.copyRight {
    background-color: var( --principal );
    color: var( --blanco );
    box-sizing: border-box;
    padding: 5px 0;
}
.copyRight .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
}
.copyRight p { width: 403px; }
.copyRight ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: 350px;
    margin: 0;
    padding: 0;
}
.copyRight ul li { margin-left: 15px ;}
.copyRight ul li a { color: var( --blanco ); }
.noticiasSection { padding: 50px 0; text-align: center; }
.noticiasSection .button {
    width: 100px;
    margin: 20px auto;
}
.noticias, .directorio {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
}
.noticias .notas {
    display: block;
    width: 31%;
    margin: 1%;
    align-self: stretch;
    color: var( --negro );
    box-sizing: border-box;
    padding-bottom: 10px;
    border-bottom: 1px solid var( --principal );
}
.noticias .notas h3 { margin-bottom: 0; }
.directorio .personal {
    display: block;
    width: 23%;
    margin: 1%;
    align-self: stretch;
    color: var( --negro );
    box-sizing: border-box;
    padding-bottom: 10px;
    border-bottom: 1px solid var( --principal );
}
.directorio .personal h3 { margin-bottom: 0; }
.directorio .personal span, .directorio .personal a, .directorio .personal b { display: block; }
.directorio .personal a, .directorio .personal b { color: #666; }
.denuncias {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
}
.denuncia {
    width: 250px;
    margin: 10px;
    border: 1px solid var( --grisClaro );
    box-sizing: border-box;
    padding: 10px;
    color: var( --negro );
    transition: 0.4s all;
    align-self: stretch;
    transition: 0.4s all;
    background-color: var( --blanco );
    margin-top: 5px;
    display: block;
}
.denuncia h3 { margin-bottom: 0; }
.denuncia i {
    font-size: 50px;
    color: var( --principal );
}
.denuncia.small h3 { font-size: 14px; }
.denuncia:hover, .denuncia:focus {
    margin-top: -5px !important;
}
#tramitesList { display: none; }
#deptoHeader {
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
}
#deptoHeader i { font-size: 18px; color: var( --principal ); margin-right: 5px; }
.guinda { background-color: var( --principal ); color: var( --blanco ); }
.guinda .button {
    background-color: var( --blanco );
    border: 1px solid var( --blanco );
    color: var( --principal );
}
.guinda .button:hover {
    background-color: var( --principal );
    color: var( --blanco );
}
.tramite .denuncia {
    width: 23%;
    margin: 1%;
}
.tramite h3 { font-size: 20px; } 
.tramite i { font-size: 70px; } 
.blocker { z-index: 99 !important; }
.inputDiv label {
	text-align: left;
	display: block;
	width: 100%;
	margin-top: 20px;
}
.inputDiv input, .inputDiv select, .inputDiv textarea {
	font-family: "Poppins", sans-serif;
    border: none;
	border-bottom: 1px solid #000;
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	outline: none;
	text-align: left;
	color: #000;
}
.inputDiv input[type="file"] { border-bottom: none; }
.inputDiv textarea { height: 120px; }
.loader {
	display: none;
	width: 150px;
	text-align: center;
	position: fixed;
	top: 47%;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10002;
}
.loader h2 { text-align: center; color: var( --blanco ); margin: 15px 0; }
.loader > div {
	width: 18px;
	height: 18px;
	background-color: var( --terciario );
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader > div.bounce1 { background-color: var( --principal ); }
.loader > div.bounce3 { background-color: var( --secundario ); }
.loader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
.capaNegra {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10001;
	background-color: var( --negro );
	opacity: 0.7;
	display: none;
}
#legales, #post { padding: 80px 0; }
#post img { margin: 30px 0; }
#post h2 { margin-bottom: 0; }
.detallePuesto { margin-bottom: 20px; }
.detallePuesto .info { margin-bottom: 10px; }
.detallePuesto .info, .detallePuesto .info label { width: 100%; display: block; }
.detallePuesto .info input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    font-size: 16px;
}
#payment-form { border: 1px solid #333; box-sizing: border-box; padding: 8px; }
.botonFlotante {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 98;
    background-color: var( --principal );
    color: var( --blanco );
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var( --blanco );
}
.botonFlotante.dos {
    background-color: var( --secundario );
    right: 150px;
}
.botonFlotante i {
    font-size: 25px;
    margin: 0;
}
.botonFlotante h3 {
    font-size: 11px;
    margin: 0;
}
.social-share { display: flex; gap: 10px; }
.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }
.telegram { background: #0088cc; }
.social-share a:hover { opacity: 0.8; }
.imgLogo {
    width: 100%;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgLogo img {
    max-height: 150px;
    margin: 0 auto;
}
.imgLogo span {
    display: block;
    background-color: #fafafa;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
#qrReader {
	width: 100%;
	height: calc(80vh - 120px);
	background-color: #000;
}
#qrReader video {
	width: 100%;
	height: 100%;
}