div {
	box-sizing: border-box;
}

.pointer {
	cursor: pointer;
}

.bs {
	box-sizing: border-box;
}

.container {
	display: flex;
	flex-direction: column;
	margin: auto;
	padding: 1rem;
	box-sizing: border-box;
}

.c_row {
	display: flex;
	flex-direction: row;
	align-items: center;
	box-sizing: border-box;
}

.c_row-wrap {
	display: flex;
/*	flex-direction: row;*/
	flex-flow: row wrap;
	align-items: center;
	box-sizing: border-box;
}

.c_col {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.c_col_center {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.c_center {
	text-align: center;
	justify-content: center;
}
 
.menu {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #c50E20;
	box-sizing: border-box;
}

.inputText, .inputText2, .inputTextArea {
	width: 100%;
	color: #384047;
	background-color: #e8eeef;
	padding: 0.8rem;
	border: none;
	border-radius: 0.4rem;
	box-sizing: border-box;
}

.inputText, .inputText2 {
	font-size: 1rem;
}

.inputTextArea {
	font-size: 1rem;
}

.btn, .btns {
	font-size: 1rem;
	font-weight: 600;
	padding: 1rem 2rem;
	color: #FFF;
	background-color: #C50E20;
	text-align: center;
	border: none;
	border-radius: .25rem;
	overflow: hidden;
	transition: all 200ms ease-in-out;
	box-shadow: 0 .125rem 0.5rem rgba(0, 0, 0, 0.3);
	cursor: pointer;
	line-height: 0;
	box-sizing: border-box;
}

.btn {
	height: 2rem;
}

.btns {
	height: 1.5rem;
	padding: 0.5rem 2rem;
	margin: 0.3rem 0;
}

.btnDisabled {
	background-color: #CACACA;
	cursor: default;
}

.btnEnabled {
	background-color: #C50E20;
}

.btnSearch {
	margin-left: 0.2rem;
	padding: 0 0.4rem;
}

.btnClearSearch {
	margin-left: 0.2rem;
	padding: 0 0.4rem;
}

.btnClearSearchEnabled {
	background-color: #C50E20;
}

.btnClearSearchDisabled {
	background-color: #CACACA;
	cursor: default;
}


a {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: underline;
}

.ntd {
	text-decoration: none;
}

textarea {
	resize: none;
}

#loader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 9999;
	background: url('images/pageLoader.gif') 50% 50% no-repeat rgb(249,249,249);
	opacity: .8;
}

.title {
	font-size: 1em;
	font-weight: 600;
	margin: 0.5rem 0 1rem 0;
}

.imgLink {
    width: 20px;
    margin-right: 5px;
}

.imgLink2 {
    width: 20px;
}

.w100 {
	width: 100%;
}

.mt05 {
	margin-top:0.5rem;
}
 
.mt1 {
	margin-top:1rem;
}
 
.mt2 {
	margin-top:2rem;
}
 
.mt3 {
	margin-top:3rem;
}
 
.mt4 {
	margin-top:4rem;
}
 
.mb05 {
	margin-bottom:0.5rem;
}
 
.mb1 {
	margin-bottom:1rem;
}
 
.mb2 {
	margin-bottom:2rem;
}
 
.mb3 {
	margin-bottom:3rem;
}
 
.mb4 {
	margin-bottom:4rem;
}
 
.ml05 {
	margin-left:0.5rem;
}

.ml1 {
	margin-left:1rem;
}

.ml2 {
	margin-left:2rem;
}

.mr05 {
	margin-right:0.5rem;
}

.mr1 {
	margin-right:1rem;
}

.mr2 {
	margin-right:2rem;
}

.pad05 {
	padding: 0.5rem;
}
 
.pad1 {
	padding: 1rem;
}
 
.pad2 {
	padding: 2rem;
}
 
.bg-color {
	background-color:#f9f9f9;
}

.lineDataEven {
	background-color: #eee;
	height: 3rem;
}

.lineDataOdd {
	background-color: #f9f9f9;
	height: 3rem;
}

.lineDataSel {
	background-color: #fde575;
	height: 3rem;
}

.nowrap {
	white-space: nowrap;
}

/* Align text */
.taj {
	text-align: justify;
}

.dn {
    display: none;
}

.f {
    display: flex;
    align-items: center;
}

.cb {
    width: 1.2rem;
    height: 1.2rem;
}

.lconv {
    padding: 0.5rem;
	height: 4rem;
}

.compress {
	display:flex;
	overflow:hidden;
	height:3.5em;
	align-items:start;
	font-size:0.8em;
	line-height:1.2em;
}

.compress_vcenter {
	display:flex;
	overflow:hidden;
	height:3.5em;
	align-items:center;
	font-size:0.8em;
	line-height:1.2em;
}

.aic {
	align-items:center;
}

.c_mw800 {
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 800px;
	margin:auto;	
}

.bgSquare {
	display:flex;
	flex-direction: column;
	width:11rem;
	height:7rem;
	background-color:#eee;
	margin:1rem;
	padding:1rem;
	justify-content:center;
	align-items:center;
	text-align:center;
}

.bgCircle {
	display:flex;
	flex-direction: column;
	width:5rem;
	height:5rem;
	border-radius: 50%;
	background-color:#eee;
	margin:1rem;
	padding:1rem;
	justify-content:center;
	align-items:center;
	text-align:center;
}

.bgCircleSel {
	background-color:#fffca3;
}

@media all and (min-width: 865px) {
	.app-item-identificacion {
		flex-direction: row;
		align-items: center;
		margin-bottom: 1rem;
	}

	.app-wgt-item-identificacion {
		margin-left: 0.5rem;
	}
}
