/*
 *  Document   : application.css
 *  Author     : Dr. Gero
 */
@charset "utf-8";
/* CSS Document */
html {
	position: relative;
	min-height: 100%;
}
/* CSS Layout */
.wrapper {
  	overflow-x: hidden;
  	overflow-y: hidden;
}
.dropdown-menu-lg {
    max-width: none;
    min-width: 350px;
}
/* CSS IFrame */
iframe {
	width:100%;
	height:1000px;
}
/* CSS Data Table */
table.dataTable thead tr td,
table.dataTable tbody tr td,
table.dataTable tfoot tr td {
	vertical-align:middle;
}
/* CSS Data Table Sorting */
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  	background: transparent;
}
/*table.dataTable thead .sorting_asc:after {
  	content: "\f0de";
  	float: right;
  	font-family: fontawesome;
}
table.dataTable thead .sorting_desc:after {
  	content: "\f0dd";
  	float: right;
  	font-family: fontawesome;
}
table.dataTable thead .sorting:after {
  	content: "\f0dc";
  	float: right;
  	font-family: fontawesome;
  	color: rgba(50, 50, 50, 0.5);
}*/
/* CSS Circle Buttons */
.btn-circle {
	width: 30px;
	height: 30px;
	padding: 6px 0;
	border-radius: 15px;
	text-align: center;
	font-size: 12px;
	line-height: 1.428571429;
}
.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 18px;
	line-height: 1.33;
}
.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	border-radius: 35px;
	font-size: 24px;
	line-height: 1.33;
}
/* CSS Loading Page */
.loadingpage {
	position:fixed;
	display:none;
	z-index:9999;
}
/* CSS Overlay Page */
.overlaypage {
	position:fixed;
	background:#000000;
	width:100%;
	height:100%;
	top:0%;
	left:0%;
	display:none;
	opacity:0.8;
	z-index:9999;
}