#loader {
	transition: all .3s ease-in-out;
	opacity: 1;
	visibility: visible;
	position: fixed;
	height: 100vh;
	width: 100%;
	background: #fff;
	z-index: 90000
}

#loader.fadeOut {
	opacity: 0;
	visibility: hidden
}

.spinner {
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	background-color: #333;
	border-radius: 100%;
	-webkit-animation: sk-scaleout 1s infinite ease-in-out;
	animation: sk-scaleout 1s infinite ease-in-out
}

.icon.badge {
	position: relative;
}

.icon.badge span {
	position: absolute;
	top: 0;
	right: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #cf1a1a;
	color: #fff;
	text-align: center;
	font-size: 11px;
	line-height: 20px;
	font-weight: 400;
	border: 2px solid white;
}

@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0)
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0
	}
}

@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}
}

table.table {
	border-top: none;
	border-bottom: none;
	margin-bottom: 0;
}

table.table th {
	border-top: none;
}

table.table td {
	line-height: 28px;
}

.is-collapsed .logo-text {
	opacity: 0;
}

main.main-content {
	min-height: 100vh;
}

.header.navbar {
	background-color: #4CAF50;
	border: none;
}

#sidebar-toggle i, .sidebar-toggle i {
	color: white;
}

.sidebar-menu .sidebar-link.active:before {
	background-color: #4CAF50 ! important; 
}

span.report {
	margin-right: 5px;
	padding: 2px 2px 2px 2px;
	text-align: center;
	border: 1px solid gray;
	font-size: 10px;
}

span.report.filled, .btn-primary {
	background-color: #4caf50df ! important;
	color: white ! important;;
}




@media print {
	.sidebar, .sidebar-toggle, .no-print {
		display: none ! important;
	}

	.header {
		left: 0;
		right: 0;
		width: 100% ! important;
	}

	.page-container {
		padding-left: 0 ! important;
	}

	.table th, .table td {
		padding: 5px ! important;
	}

	.page-break {
		page-break-after: always;
	}
}