@charset "UTF-8";

* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

.titulo {
	color: #000;
	text-align:center;
	font-size:2.5rem;
	font-weight: bold;
	padding-bottom: 1.5rem;
	margin-bottom: 1rem;
	position: relative;
}
.titulo:hover:after {
	width: 70%;
}
.titulo:after {
	position: absolute;
	content: '';
	width: 50%;
	left: 0;
	height: 2px;
	border-radius: 10%;
	background-color: #000;
	right: 0;
	bottom: 13%;
	margin: auto;
	-webkit-transition: width 200ms ease;
	   -moz-transition: width 200ms ease;
	    -ms-transition: width 200ms ease;
	     -o-transition: width 200ms ease;
	        transition: width 200ms ease;
}

.contenido {
	font-weight: normal;
	font-size: 14px;
	text-align: justify;
}
.contenido img{
	border: solid transparent thin;
	margin: 0 auto 1rem;
    max-width: 95%;
	-webkit-transition: all 350ms ease;
	   -moz-transition: all 350ms ease;
	    -ms-transition: all 350ms ease;
	     -o-transition: all 350ms ease;
	        transition: all 350ms ease;
}
.contenido img:hover{
	box-shadow: 0 0 4px rgba(0,0,0,.4);
	border: solid #bdafaf thin;
}

h1,h2,h3,h4,h5,h6 {
	font-weight:normal;
	font-weight: bold;
}

.loading#divLoadingGeneral,
#divLoadingGeneral.loading {
	position: relative;
}
#divLoadingGeneral.loading::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.45);
	z-index: 1999999999;
	pointer-events: auto;
}
#divLoadingGeneral .spinner {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
	z-index: 2000000000;
}

.loading#divLoadingModal,
.loading#divLoadingModalR,
.loading#divLoadingBuscar,
.loading#divLoadingProcesar,
#divLoadingModal.loading,
#divLoadingModalR.loading,
#divLoadingBuscar.loading,
#divLoadingProcesar.loading {
	position: relative;
}
#divLoadingModal.loading::before,
#divLoadingModalR.loading::before,
#divLoadingBuscar.loading::before,
#divLoadingProcesar.loading::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.45);
	z-index: 1999999999;
	pointer-events: auto;
}
#divLoadingModal .spinner,
#divLoadingModalR .spinner,
#divLoadingBuscar .spinner,
#divLoadingProcesar .spinner {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
	z-index: 2000000000;
}

.spin {
	display: inline-block;
	animation: spinAnim 1s linear infinite;
}

@keyframes spinAnim {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.tab .tab-content {
	background-color:#FFF;
}

.impresion-table td {
	padding: 10px 12px;
}
.impresion-table thead td {
	font-weight: 600;
}
.impresion-table tbody tr:nth-child(even) {
	background-color: #f5f8fa;
}

.tab .tab-content > li h4 {
	width:120px;
	margin:150px auto;
	padding:70px 20px 20px 20px;
	border:solid 5px #dc5147;
	border-radius:120px;
	color:#dc5147;
	text-align:center;
	position:relative;
	overflow:hidden;
}

.tab .tab-content > li h4:before {
	width:50%;
	margin:0 auto;
	color:#dc5147;
	font-size:3rem;
	text-align:center;
	display:block;
	position:absolute;
	top:10px;
	left:25%;
}

.tab .tab-content > li:nth-child(1) h4:before {
	content:"1";
}

.tab .tab-content > li:nth-child(2) h4:before {
	content:"2";
}

.tab .tab-content > li:nth-child(3) h4:before {
	content:"3";
}

.tab .tab-content > li:nth-child(4) h4:before {
	content:"4";
}


.tab-horiz .tab-legend > li:first-child.active {
	padding-left:16px;
	border-left:0;
}

.tab-horiz .tab-legend > li:last-child.active {
	padding-right:16px;
	border-right:0;
}
