* {
	box-sizing: border-box;
}

.space-between {
	justify-content: space-between;
}

.space-around {
	justify-content: space-around;
}

.flex {
	display: flex;
}

.fc {
	flex-direction: column;
}

.margin-1em {
	margin: 1em;
}

.margin-05em {
	margin: 0.5em;
}

.clearedtd05 td, .clearedtd05 th{
	padding: 0.5em;
}

.clearedtd05 td:nth-child(odd) {
	font-weight: bold;
}

.ack ::-webkit-scrollbar {
	width: 5px;	/* remove scrollbar space */
	height: 5px;
	background: #f1f1f1;	/* optional: just make scrollbar invisible */
	border-radius: 5px;
}

.ack ::-webkit-scrollbar-thumb {
	background:#c1c1c1;
	border-radius: 5px;
}

.ack {
	display: inline-block;
	position: relative;
}

.ack .list {
	display: none;
	position: absolute;
	overflow-y: auto;
	overflow-x:hidden;
	width: 100%;
	max-height: 20em;
	background: inherit;
	border: solid 0.1em #AAA;
}

.ack input:focus ~ .list {
	display: block;
	z-index: 100;
}

.ack .list div, .ack .list marquee {
	border-bottom: solid 0.1em #AAA;
	padding: 0.5em;
}

.ack .list .wrapped, .wrapped {
	white-space: nowrap;
	overflow: hidden;
	text-overflow:ellipsis;
}

.over_list {
	font-weight: bolder;
	background: #836493;
	color: #FFF;
}

.hidden {
	display: none;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.absolute_middle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 9999999;
}

.popup > .main {
	padding: 1em;
	min-width: 30%;
	max-width: 90%;
	max-height: 90%;
	overflow: auto;
	border-radius: 0.5em;
}

.popup > .main > div {
	margin-bottom: 0.5em;
}

.popup > .main > .title {
	font-size: 1.5em;
	text-align: center;
	margin: 0.5em;
}

.popup > .main > .content {
	/*word-break: break-word;*/
	background-color: inherit;
	color: inherit;
	border: none;
	padding: 0em;
	margin: 0.5em;
}

.popup > .main > .options {
	display: flex;
	justify-content: space-around;
}

.popup > .main > .options > button {
	margin: 0.5em;
	flex: 1;
}

.popup button, .popup input, .popup select, .popup textarea {
	border: none;
	padding: 0.5em;
	border-radius: 0.3em;
	box-sizing: content-box;
}

.popup button, .popup input[type=reset], .popup input[type=submit], .popup .button {
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.3);
}

.popup button:active, input[type=reset]:active, input[type=submit]:active, .button:active {
	transition-delay: 0s;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.46);
}

.popup button {
	position: relative;
	overflow: hidden;
}

.popup button:before, .fab:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 0;
	padding: 0;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
}

.popup button:active:before, .fab:active:before {
	width: 120%;
	padding-top: 120%;
	transition: width .2s ease-out, padding-top .2s ease-out;
}

table.ctablesorter {
	background: #CDCDCD;
}

table.ctablesorter tr th, table.ctablesorter tr td {
	padding: 0.5em;
}

table.ctablesorter tr:nth-child(odd) {
	background: #E6EEEE;
	color: #212121;
}

table.ctablesorter tr:nth-child(even) {
	background: #FFF;
	color: #212121;
}

.loading {
	padding: 1em;
	position: absolute;
	/*max-width: 320px;*/
	width: 30%;
	/*background: rgba(200,200,200,1);*/
	background: rgba(255,255,255,1);
	z-index: 99999;
	left: 50%;
	top: 50%;
	transform: translate(calc(-50% - 1em),calc(-50% - 1em));
	/*border-radius: 0.3em;*/
	border: 3px solid rgba(170, 170, 170, 1);
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.3);
}

.loading > .bar {
	overflow: hidden;
}

.loading > .bar > .point {
	width: 0.3em;
	background: #4caf50;
	position: relative;
	padding: 0.3em;
	animation: loading 1s linear infinite;
}

@keyframes loading {
	0% {
		left: -100%;
	}
	25% {
		left: -50%;
	}
	50% {
		left: 0%;
	}
	75% {
		left: 50%;
	}
	100% {
		left: 100%;
	}
}

#cargado .card_file, .cargado .card_file {
	margin: 5px;
	padding: 5px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	border: solid 1px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.4);
}

#cargado .card_file *, .cargado .card_file * {
	display: block;
}

#cargado .card_file img.file_upload, .cargado .card_file img.file_upload {
	max-width: 150px;
	max-height: 150px;
}

.fab {
	box-sizing: border-box;
	position: absolute;
	width: 2em;
	height: 2em;
	padding: 0.5em;
	border-radius: 50%;
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.3);
}

.fab > img {
	width: 100%;
}

.fab > img.invert {
	filter: invert(1);
}

.fab:active {
	transition-delay: 0s;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.46);
}

.fab.relative {
	position: relative;
}

.fab.inline {
	position: relative;
	margin: 0.5em;
	display: inline-block;
}

.error {
	border: solid 0.1em red;
	background-color: red;
	font-weight: bolder;
	font-color: black;
}

.wk_fill_available {
	width: -webkit-fill-available;
}

img.miniatura {
	max-width: 200px;
	max-height: 200px;
}

.cleary td, .cleary th{
	padding: 0.5em;
}

.nowrap {
	white-space: nowrap;
}

.fillW {
	width: 100% !important;
}

.autoW {
	width: auto !important;
}

.trh {
	background-color: #EEE;
}

.hideVerifone {
	display:none;
}

.bolder {
	font-weight: bolder;
}

.calt {
	border-collapse: collapse;
	border: #CCC 1px;
	overflow: hidden;
	border-radius: 0.5em;
}

.calt th {
	background: #836493;
	color: #FFFFFF;
}

.calt tr:nth-child(even) {
	background: #aa82bf;
	color: #FFFFFF;
}

.sticky {
	position: fixed;
	z-index:1000;
	top:0px;
	left:0px;
}

.margin-top-9em {
	margin-top: 10.5em;
}

.capitalize {
	text-transform: capitalize;
}

.max30 {
	max-width: 30em;
}

.max50 {
	max-width: 50em;
}