@media only screen and (max-width: 768px) {
	.container {
		padding-left: 5px;
		padding-right: 5px;
	}

	/* Force table to not be like tables anymore */
	#no-more-tables table,
	#no-more-tables thead,
	#no-more-tables tbody,
	#no-more-tables th,
	#no-more-tables td,
	#no-more-tables tr {
		display: block;
	}

	#no-more-tables .table-bordered {
		border: 0px;
		padding: 0px;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	#no-more-tables thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	#no-more-tables tr {
		border: 1px solid #ccc;
	}

	#no-more-tables td {
		/* Behave like a "row" */
		border: none;
		position: relative;
		/* padding-left: 50%; */
		white-space: normal;
		text-align: left;
	}

	#no-more-tables .nodatatitle {
		padding-left: 6px;
	}

	#no-more-tables .nodatatitle:before {
		padding-right: 0px;
	}

	#no-more-tables td:before {
		/* Now like a table header */
		position: initial;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 35%;
		padding-right: 10px;
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
	}

	/*
	Label the data
	*/
	#no-more-tables td:before {
		content: attr(data-title);
	}
}

@media (min-width: 200px) {
	.container {
		/*margin: 80px 0px 80px 0px;*/
		margin: 70px 0px 80px 0px;
		width: 100%;
		height: 100%;
		/*height: 75vh;*/
		padding-top: 50px;
	}
}

.cursordefault {
	cursor: default;
}

.cursorpointer {
	cursor: pointer;
}

#navbar {
	display: none;
}

.header {
	height: 50px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #4C9ED9;
	color: #FFFFFF;
}

.header-img {
	height: 50px;
}

.menu {
	/*margin: 0px 15px 0px 15px;*/
}

.menu div ul li:hover {
	background: #bfbfbf;
}

.dropdown-submenu > a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #cccccc;
	margin-top: 5px;
	margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
	border-left-color: #ffffff;
}

#loader {
	display: none;
}

#loader-wrapper {
	display: none;
	position: fixed;
	right: 0;
	top: 20px;
	/*left: 50%;*/
	/*top: 50%;*/
	width: 150px;
	height: 150px;
	/*border: 1px solid;*/
	z-index: 10000;
	transform: translate(-50%, -50%);
	background-image: url("../img/load.gif");
	/*background-size: 100% 100%;*/
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: left top;
}

#div-alert {
	position: fixed;
	top: 10px;
	right: 10px;
	/*width: 100%;*/
	/*height: 100%;*/
	z-index: 9999;
	overflow: hidden;
	display: none;
	box-shadow: 5px 5px 5px #888888;
}

#div-success {
	position: fixed;
	top: 10px;
	right: 10px;
	/*width: 100%;*/
	/*height: 100%;*/
	z-index: 9999;
	overflow: hidden;
	/*display: none;*/
	box-shadow: 5px 5px 5px #888888;
	width: 350px;
}

.title {
	font-weight: 700;
	font-size: 20px;
}

label {
	font-weight: normal;
	margin-top: 15px;
}

.form-group {
	margin-bottom: 0;
}

.fade-scale {
	transform: scale(0);
	opacity: 0;
	-webkit-transition: all .25s linear;
	-o-transition: all .25s linear;
	transition: all .25s linear;
}

.fade-scale.in {
	opacity: 1;
	transform: scale(1);
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
	background-color: #E0FFFF;
	color: #000000;
}


label.error {
	font-size: 8pt;
	margin-top: 0;
}

.error {
	color: red;
}

