/*
|---------------------------------------------------------------
| phpComasy - web content management system
|
| copyright by indual GmbH, Brig (https://www.indual.ch)
| phpComasy is released under his own licence (https://www.phpcomasy.com)
|---------------------------------------------------------------
*/

.data_table {
	overflow: hidden;
}
.data_table td {
	position: relative;
	z-index: 10;
}
.data_table td ~ td {
	pointer-events: none;
}
.data_table td > .popup {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 2000px;
	z-index: -1;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}
.data_table td > .popup:hover {
	background: #bbb;
}

.data_overview_wrap {
	padding: 30px;
}
.data_overview_wrap > p {
	white-space: nowrap;
	padding: 0;
	margin: 0 0 4px;
}
.data_overview_wrap .data_label,
.data_overview_wrap .data_field {
	display: inline-block;
	vertical-align: top;
	white-space: normal;
}
.data_overview_wrap .data_label {
	width: 160px;
	opacity: 0.5;
}
.data_overview_wrap .data_field {
	min-width: 200px;
}
th.th-sort {
	text-align: left;
}
th.th-sort a {
	text-decoration: none;
}
th.th-sort-asc a:after,
th.th-sort-desc a:after {
	font-size: 12px;
	-webkit-transition: all 0.15s ease-out;
	   -moz-transition: all 0.15s ease-out;
	     -o-transition: all 0.15s ease-out;
	        transition: all 0.15s ease-out;
}
th.th-sort-asc a:after {
	content: '\25b2';
}
th.th-sort-desc a:after {
	content: '\25bc';
}

/* ---------- Import ---------- */
fieldset {
	position: relative;
}
.import_sending {
	position: absolute;
	z-index: 30;
	top: -10px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	padding: 40px;
	font-size: 16px;
	line-height: 24px;
	background: rgba(255,255,255,0.85);
	color: #444;
	text-align: center;
}
.import_sending .progress {
	margin: 10px 0;
	font-weight: bold;
	font-style: italic;
}

/* ---------- Filter ---------- */
.search_filter {
	overflow: hidden;
	padding: 0 0 20px;
	margin: 0 0 20px;
	border-bottom: 1px solid #fff;
	position: relative;
	z-index: 5;
}
.found_rows {
	font-style: italic;
	margin: 0;
	position: relative;
	top: -69px;
	text-align: right;
	font-size: 90%;
	z-index: 2;
	padding: 0 1px 0 0;
}
.search_filter > form > div {
	float: left;
	margin: 0 20px 20px 0;
}
.search_filter > form > div:first-of-type + div {
	clear: left;
}
.search_filter > form > div > span {
	display: none;
}
.search_filter > form > div > span.select2 {
	display: block;
	width: auto !important;
}
.search_filter select {
	margin: 0;
	height: 42px;
}
.search_filter > form > .button {
	float: left;
	clear: left;
	margin-top: 0;
}
.search_filter > form > .filter_reset {
	float: left;
	line-height: 36px;
	font-size: 14px;
	margin-left: 10px;
}
.search_filter > div {
	float: left;
}

/* ---------- Map ---------- */
.xls_import_map {
	padding-bottom: 57%;
}

@media screen and (max-width: 600px) {
	.xls_import_map {
		padding-bottom: 120%;
	}
}

/* ---------- Loader ---------- */
.loader:before,
.loader:after,
.loader {
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out;
}
.loader {
	margin: 30px auto 0;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	-webkit-animation-delay: 0.16s;
	animation-delay: 0.16s;
}
.loader:before {
	left: -3.5em;
}
.loader:after {
	left: 3.5em;
	-webkit-animation-delay: 0.32s;
	animation-delay: 0.32s;
}
.loader:before,
.loader:after {
	content: '';
	position: absolute;
	top: 0;
}
@-webkit-keyframes load7 {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em #444;
	}
	40% {
		box-shadow: 0 2.5em 0 0 #444;
	}
}
@keyframes load7 {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em #444;
	}
	40% {
		box-shadow: 0 2.5em 0 0 #444;
	}
}


