h2{color: var(--azul_claro)}
.form{width: 100%; height: auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;}
.form .btn{display: flex; justify-content: center; width: 100%; padding: 1em 0;}
.form .btn button{padding: 5px 7px; cursor: pointer; border:2px solid #ccc; background: var(--azul); color: #FFF; border-radius: 6px; font-size: 1.5em;}
.formulario{width: 80%; display: flex; flex-wrap: wrap; justify-content: center;background: var(--celeste_claro); padding: 1em;}
.formulario input{width: 50%; padding: 5px 7px; border:1px solid #cfcfcf; border-radius: 12px;}
.formulario input[type="radio"]{width: 30px;height: 30px;}
.filtros{width: 100%; display: flex; justify-content: center; margin: 1em 0; }
.filtros .form_option{margin: 0 1em; display: flex; margin: 0 1em; align-items: center;}
.filtros .form_option label{white-space: pre; margin:0 1em; font-size: 1.3em;}

.data_colegiados{width: 100%; height:  auto; display: flex; justify-content: center; align-items: flex-start;}
.colegiados{width: calc(80% + 2em); margin:  0 auto; height: auto;}

.cargando{width: 100%;position: relative; height: 10px; background: gray; border-radius: 16px; display: flex; align-items: center; justify-content: flex-start; height: 20px;}
.progress{height: 100%;border-radius: 12px; background: var(--azul_claro); width: 0%;
-webkit-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.progress-data{
	text-align: center;
	color: #FFF;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.colegiado{
	width: calc(100% - 2em);
	padding: 1em;
	display: flex;
}
.colegiado.thead{
	background: var(--azul);
	color: #FFF;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
}

.colegiado:nth-of-type(2n+3){
	background: #cfcfcf;
}
.colegiados.table{
	border:2px solid #ddd;
	border-radius:12px;
	margin: 2em 0;
	
}
.colegiado .nombre{padding: 0 1em; width: 50%; text-transform: uppercase;}
.colegiado .estado{padding: 0 1em; width: 20%;}
.colegiado .btn{padding: 0 1em; width: 30%; display: flex; justify-content: center; align-items: center;}
.colegiado .btn a{cursor: pointer; }
.colegiado .btn a img{cursor: pointer}
.colegiado .btn .btn_detalle{position: relative;}
.alt_detalle{display: none;justify-content: center;
	align-items: center;
	padding: 2px 5px;
	position: absolute;
	bottom: 100%;
	left: calc(-25% - 5px);
	z-index: 2;
	background: #FFF;
	font-size: 0.7em;
	white-space: pre;
	border:1px solid #111;
	width: auto;

}
.colegiado .btn .btn_detalle:hover .alt_detalle{
	display: flex;
}

.content-modal{
	position: fixed;
	z-index: 999;
	background: rgba(0,0,0,.4);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	display: none;
	top: 0;
	left: 0;
}
.banner_modal{
	padding: 1em;
	width: calc(100% - 2em);
	background: var(--gris);
	display: flex;
	justify-content: space-between;
	height: 70px;
	overflow:hidden;
}
.banner_modal img{
	height:70px;
	width: auto;
	max-width:70px;
}
.banner_modal .texto{width: calc(100% - 70px);text-align: center; color: var(--azul); font-weight: bold;}
.modal{
	width: calc(450px - 2em);
	max-width: 90%;
	background: #FFF;
	padding: 1em;
}
.modal .dato.imagen{
	display: flex;
	justify-content: center;
	height: 150px;
	width: 100% !important;
}
.modal .dato.imagen img{
	width: auto;
	height: auto;
	max-height: 150px;
	max-width: 150px;
}
.modal .dato{
	width: calc(100% - 2em);
	padding: 1em 1em;
}
.modal .dato label{
	width: auto;
	color: var(--azul);
	font-weight: bold;
	min-width: 105px;
	display: inline-block;
	text-align: right;
}
.modal .btn_cerrar{
	justify-content: center;
	display: flex;
}
.modal .btn_cerrar button{
	padding: 5px 7px;
	border:none;
	border-radius: 6px;
	border:1px solid var(--azul);
	background: transparent;
	cursor: pointer;
}
.modal .btn_cerrar button:hover{
	padding: 5px 7px;
	border:none;
	border-radius: 6px;
	border:1px solid var(--azul_claro);
	background: var(--azul);
	color: #FFF;
	cursor: pointer;
}
.paginado{width: 100%; margin: 1em 0;  display: -ms-flexbox;display: flex; justify-content: center;}
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--azul);
    border-color: var(--azul_claro);
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

@media (max-width: 768px){
	.filtros .form_option{justify-content: center; flex-wrap: wrap; font-size: 0.7em;}
	.colegiados{width: calc(100% - 1em); margin:  0 0.5em; font-size: 0.7em;}
	.pagination{
		justify-content: center;
		flex-wrap: wrap;
	}
	.formulario input{width: 90%;}

	.formulario input[type="radio"]{width: 20px;height: 20px;}
	.filtros .form_option label{white-space: pre; margin:0 1em; font-size: 1em;}
}