<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes spin {
	from {
		-moz-transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(360deg);
	}
}
a.btn.purple-plum.btn-xs {
    background: #e91380;
    color: #fff;
}
@-ms-keyframes spin {
	from {
		-ms-transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
	}
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes shake {
	from,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shake {
	from,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

.sweet-overlay {
	background-color: rgba(0, 0, 0, 0.4);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	z-index: 1000;
}

.sweet-alert {
	background-color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	border-radius: 5px;
	box-sizing: border-box;
	text-align: center;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-top: -200px;
	max-height: 90%;
	overflow-x: hidden;
	overflow-y: auto;
	display: none;
	z-index: 2000;
}

.sweet-alert:focus {
	outline: 0;
}

.sweet-alert button {
	margin: 0 5px;
}

.sweet-alert .form-control {
	max-width: 300px;
	margin: 0 auto;
}

.sweet-alert h2 {
	color: #575757;
	text-align: center;
	text-transform: none;
	position: relative;
	padding: 0;
	display: block;
}

.sweet-alert p {
	text-align: center;
	position: relative;
	float: none;
	margin: 0;
	padding: 0;
}

.sweet-alert hr {
	height: 5px;
	color: transparent;
	border: 0;
}
section#invoice {
    background: #fff;
}
.sweet-alert button.styled {
	color: #fff;
	border: 0;
	box-shadow: none;
	font-size: 17px;
	font-weight: 500;
	border-radius: 5px;
	padding: 10px 32px;
	margin: 0 5px;
	cursor: pointer;
}

.sweet-alert button.styled:focus {
	outline: none;
}

.sweet-alert button.styled.sweet-cancel[disabled] {
	opacity: .4;
}

.sweet-alert button.styled.sweet-confirm[disabled] {
	border: 4px solid transparent;
	border-color: transparent;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0 30px;
	vertical-align: middle;
	background-color: transparent !important;
	color: transparent;
	cursor: default;
	border-radius: 100%;
	-webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
	animation: rotate-loading 1.5s linear 0s infinite normal;
}

.sweet-alert button.styled::-moz-focus-inner {
	border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
	box-shadow: none !important;
}

.sweet-alert .icon {
	width: 80px;
	height: 80px;
	border: 4px solid #808080;
	border-radius: 50%;
	margin: 20px auto;
	padding: 0;
	position: relative;
	box-sizing: content-box;
}

.sweet-alert .icon.error {
	border-color: #f27474;
}

.sweet-alert .icon.error .x-mark {
	position: relative;
	display: block;
}

.sweet-alert .icon.error .line {
	position: absolute;
	height: 5px;
	width: 47px;
	background-color: #FB404B;
	display: block;
	top: 37px;
	border-radius: 2px;
}

.sweet-alert .icon.error .line.left {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 17px;
}

.sweet-alert .icon.error .line.right {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 16px;
}

.sweet-alert .icon.warning {
	border-color: #f8bb86;
}

.sweet-alert .icon.warning .body {
	position: absolute;
	width: 5px;
	height: 47px;
	left: 50%;
	top: 10px;
	border-radius: 2px;
	margin-left: -2px;
	background-color: #f8bb86;
}

.sweet-alert .icon.warning .dot {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-left: -3px;
	left: 50%;
	bottom: 10px;
	background-color: #f8bb86;
}

.sweet-alert .icon.info {
	border-color: #c9dae1;
}

.sweet-alert .icon.info::before {
	content: '';
	position: absolute;
	width: 5px;
	height: 29px;
	left: 50%;
	bottom: 17px;
	border-radius: 2px;
	margin-left: -2px;
	background-color: #c9dae1;
}

.sweet-alert .icon.info::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-left: -3px;
	top: 19px;
	background-color: #c9dae1;
}

.sweet-alert .icon.success {
	border-color: #a5dc86;
}

.sweet-alert .icon.success::before,
.sweet-alert .icon.success::after {
	content: '';
	border-radius: 50%;
	position: absolute;
	width: 60px;
	height: 120px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sweet-alert .icon.success::before {
	border-radius: 120px 0 0 120px;
	top: -7px;
	left: -33px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 60px 60px;
	transform-origin: 60px 60px;
}

.sweet-alert .icon.success::after {
	border-radius: 0 120px 120px 0;
	top: -11px;
	left: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 0 60px;
	transform-origin: 0 60px;
}

.sweet-alert .icon.success .placeholder {
	width: 80px;
	height: 80px;
	border: 4px solid rgba(165, 220, 134, 0.2);
	border-radius: 50%;
	box-sizing: content-box;
	position: absolute;
	left: -4px;
	top: -4px;
	z-index: 2;
}

.sweet-alert .icon.success .fix {
	width: 5px;
	height: 90px;
	background-color: #fff;
	position: absolute;
	left: 28px;
	top: 8px;
	z-index: 1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sweet-alert .icon.success .line {
	height: 5px;
	background-color: #87CB16;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 2;
}

.sweet-alert .icon.success .line.tip {
	width: 25px;
	left: 14px;
	top: 46px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sweet-alert .icon.success .line.long {
	width: 47px;
	right: 8px;
	top: 38px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sweet-alert .sweet-image {
	margin: 20px auto;
}

@-webkit-keyframes showSweetAlert {
	0% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
	45% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	80% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes showSweetAlert {
	0% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
	45% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	80% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes hideSweetAlert {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}

@keyframes hideSweetAlert {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}

.show-sweet-alert {
	-webkit-animation: showSweetAlert 0.3s;
	animation: showSweetAlert 0.3s;
}

.show-sweet-alert.no-animation {
	-webkit-animation: none;
	animation: none;
}

.hide-sweet-alert {
	-webkit-animation: hideSweetAlert 0.2s;
	animation: hideSweetAlert 0.2s;
}

.hide-sweet-alert.no-animation {
	-webkit-animation: none;
	animation: none;
}

@-webkit-keyframes animate-success-tip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	54% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}
	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}
	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@keyframes animate-success-tip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	54% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}
	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}
	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@-webkit-keyframes animate-success-long {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	65% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	84% {
		width: 55px;
		right: 0;
		top: 35px;
	}
	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

@keyframes animate-success-long {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	65% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	84% {
		width: 55px;
		right: 0;
		top: 35px;
	}
	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

@-webkit-keyframes rotatePlaceholder {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
	100% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
}

@keyframes rotatePlaceholder {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
	100% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
}

.animate-success-tip {
	-webkit-animation: animate-success-tip 0.75s;
	animation: animate-success-tip 0.75s;
}

.animate-success-long {
	-webkit-animation: animate-success-long 0.75s;
	animation: animate-success-long 0.75s;
}

.icon.success.animate::after {
	-webkit-animation: rotatePlaceholder 4.25s ease-in;
	animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animate-error-icon {
	0% {
		-webkit-transform: rotateX(100deg);
		transform: rotateX(100deg);
		opacity: 0;
	}
	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes animate-error-icon {
	0% {
		-webkit-transform: rotateX(100deg);
		transform: rotateX(100deg);
		opacity: 0;
	}
	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		opacity: 1;
	}
}

.animate-error-icon {
	-webkit-animation: animate-error-icon 0.5s;
	animation: animate-error-icon 0.5s;
}

@-webkit-keyframes animate-x-mark {
	0% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}
	50% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}
	80% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
		margin-top: -6px;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		margin-top: 0;
		opacity: 1;
	}
}

@keyframes animate-x-mark {
	0% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}
	50% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}
	80% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
		margin-top: -6px;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		margin-top: 0;
		opacity: 1;
	}
}

.animate-x-mark {
	-webkit-animation: animate-x-mark 0.5s;
	animation: animate-x-mark 0.5s;
}

@-webkit-keyframes pulse-warning {
	0% {
		border-color: #f8d486;
	}
	100% {
		border-color: #f8bb86;
	}
}

@keyframes pulse-warning {
	0% {
		border-color: #f8d486;
	}
	100% {
		border-color: #f8bb86;
	}
}

.pulse-warning {
	-webkit-animation: pulse-warning 0.75s infinite alternate;
	animation: pulse-warning 0.75s infinite alternate;
}

@-webkit-keyframes pulse-warning-ins {
	0% {
		background-color: #f8d486;
	}
	100% {
		background-color: #f8bb86;
	}
}

@keyframes pulse-warning-ins {
	0% {
		background-color: #f8d486;
	}
	100% {
		background-color: #f8bb86;
	}
}

.pulse-warning-ins {
	-webkit-animation: pulse-warning-ins 0.75s infinite alternate;
	animation: pulse-warning-ins 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate-loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

svg {
	touch-action: none;
}

.jvectormap-container {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	touch-action: none;
}

.jvectormap-tip {
	position: absolute;
	display: none;
	border: solid 1px #CDCDCD;
	border-radius: 3px;
	background: #292929;
	color: white;
	font-family: sans-serif, Verdana;
	font-size: smaller;
	padding: 3px;
}

.jvectormap-zoomin,
.jvectormap-zoomout,
.jvectormap-goback {
	position: absolute;
	left: 10px;
	border-radius: 3px;
	background: #292929;
	padding: 3px;
	color: white;
	cursor: pointer;
	line-height: 10px;
	text-align: center;
	box-sizing: content-box;
}

.jvectormap-zoomin,
.jvectormap-zoomout {
	width: 10px;
	height: 10px;
}

.jvectormap-zoomin {
	top: 10px;
}

.jvectormap-zoomout {
	top: 30px;
}

.jvectormap-goback {
	bottom: 10px;
	z-index: 1000;
	padding: 6px;
}

.jvectormap-spinner {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
}

.jvectormap-legend-title {
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}

.jvectormap-legend-cnt {
	position: absolute;
}

.jvectormap-legend-cnt-h {
	bottom: 0;
	right: 0;
}

.jvectormap-legend-cnt-v {
	top: 0;
	right: 0;
}

.jvectormap-legend {
	background: black;
	color: white;
	border-radius: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend {
	float: left;
	margin: 0 10px 10px 0;
	padding: 3px 3px 1px 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
	float: left;
}

.jvectormap-legend-cnt-v .jvectormap-legend {
	margin: 10px 10px 0 0;
	padding: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick {
	width: 40px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
	height: 15px;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
	height: 20px;
	width: 20px;
	display: inline-block;
	vertical-align: middle;
}

.jvectormap-legend-tick-text {
	font-size: 12px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
	text-align: center;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
	display: inline-block;
	vertical-align: middle;
	line-height: 20px;
	padding-left: 3px;
}


/**
 * @author zhixin wen &lt;wenzhixin2010@gmail.com&gt;
 * version: 1.8.1
 * https://github.com/wenzhixin/bootstrap-table/
 */

.bootstrap-table .table {
	margin-bottom: 0 !important;
	border-bottom: 1px solid #dddddd;
	border-collapse: collapse !important;
	border-radius: 1px;
}

.bootstrap-table .table,
.bootstrap-table .table&gt;tbody&gt;tr&gt;th,
.bootstrap-table .table&gt;tfoot&gt;tr&gt;th,
.bootstrap-table .table&gt;thead&gt;tr&gt;td,
.bootstrap-table .table&gt;tbody&gt;tr&gt;td,
.bootstrap-table .table&gt;tfoot&gt;tr&gt;td {
	padding: 2px !important;
}

.bootstrap-table .table&gt;tbody&gt;.selected {
	background-color: rgba(68, 125, 247, 0.2);
}

.bootstrap-table .table.table-no-bordered&gt;thead&gt;tr&gt;th,
.bootstrap-table .table.table-no-bordered&gt;tbody&gt;tr&gt;td {
	border-right: 2px solid transparent;
}

.fixed-table-container {
	position: relative;
	clear: both;
}

.fixed-table-container.table-no-bordered {
	border: 1px solid transparent;
}



.fixed-table-footer {
	border-top: 1px solid #dddddd;
}

.fixed-table-body {
	height: 100%;
	overflow: auto;
}

.fixed-table-container table {
	width: 100%;
}

.fixed-table-container thead th {
	height: 0;
	padding: 0;
	margin: 0;
}

.fixed-table-container thead th:first-child {
	border-left: none;
}

.fixed-table-container thead th .th-inner {
	padding: 0 8px;
	line-height: 24px;
	vertical-align: top; 
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fixed-table-container thead th .sortable {
	cursor: pointer;
	background-repeat: no-repeat;
	padding-right: 15px;
}

.fixed-table-container thead th .both {
	background-image: url("../images/d1.jpg");
	background-position: right 2px;
}

.fixed-table-container thead th .asc {
	background-image: url("../images/d2.jpg");
	background-position: right 5px;
}

.fixed-table-container thead th .desc {
	background-image: url("../images/d3.jpg");
	background-position: right 0px;
}

.fixed-table-container th.detail {
	width: 30px;
}

.fixed-table-container tbody tr:first-child td {
	border-top: none;
}

.fixed-table-container tbody td:first-child {
	border-left: none;
}


/* the same color with .active */

.fixed-table-container tbody .selected td {
	background-color: rgba(245, 245, 245, 0.34);
}

.fixed-table-container .bs-checkbox {
	text-align: center;
}

.fixed-table-container .bs-checkbox .th-inner {
	padding: 8px 0;
}

.fixed-table-container input[type="radio"],
.fixed-table-container input[type="checkbox"] {
	margin: 0 auto !important;
	cursor: pointer;
}

.fixed-table-container .no-records-found {
	text-align: center;
	background-color: #FFFFFF !important;
	height: 340px;
	border-radius: 10px;
	width: 100%;
	vertical-align: middle;
}

.fixed-table-container .no-records-found td {
	font-weight: 300;
	font-size: 22px;
}

.fixed-table-pagination div.pagination,
.fixed-table-pagination .pagination-detail {
	margin-top: 10px;
	margin-bottom: 10px;
}

.fixed-table-pagination div.pagination .pagination {
	margin: 0;
}

.fixed-table-pagination .pagination a {
	padding: 6px 12px;
	line-height: 1.428571429;
}

.fixed-table-pagination .pagination-info {
	line-height: 34px;
	margin-right: 5px;
}

.fixed-table-pagination .btn-group {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.fixed-table-pagination .page-list {
	display: inline-block;
}

.fixed-table-toolbar .columns-left {
	margin-right: 5px;
}

.fixed-table-toolbar .columns-right {
	margin-left: 5px;
}

.fixed-table-toolbar .columns .btn {
	margin: 0 2px;
	border-radius: 30px;
}

.fixed-table-toolbar .columns label {
	display: block;
	padding: 10px 20px;
	border-bottom: 1px solid #eee;
	clear: both;
	margin-bottom: 0;
	font-weight: normal;
	line-height: 1.428571429;
}

.fixed-table-toolbar .columns li:last-child label {
	border-bottom: none;
}

.fixed-table-toolbar .bars,
.fixed-table-toolbar .search,
.fixed-table-toolbar .columns {
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
	line-height: 34px;
}

.fixed-table-pagination li.disabled a {
	pointer-events: none;
	cursor: default;
}

.fixed-table-loading {
	display: none;
	position: absolute;
	top: 42px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	background-color: #fff;
	text-align: center;
}

.fixed-table-body .card-view .title {
	font-weight: bold;
	display: inline-block;
	min-width: 30%;
	text-align: left !important;
}


/* support bootstrap 2 */

.fixed-table-body thead th .th-inner {
	box-sizing: border-box;
}

.table th,
.table td {
	vertical-align: middle;
	box-sizing: border-box;
}

.fixed-table-toolbar .btn-group&gt;.btn-group {
	display: inline-block;
	margin-left: -1px !important;
}

.fixed-table-toolbar .dropdown-menu label {
	cursor: pointer;
}

.fixed-table-toolbar .btn-group&gt;.btn-group&gt;.btn {
	border-radius: 0;
}

.fixed-table-toolbar .btn-group&gt;.btn-group:first-child&gt;.btn {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.fixed-table-toolbar .btn-group&gt;.btn-group:last-child&gt;.btn {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}


/* support bootstrap 3 */

.bootstrap-table .table thead&gt;tr&gt;th {
	padding: 0;
	margin: 0;
}

.pull-right .dropdown-menu {
	right: 0;
	left: auto;
}


/* calculate scrollbar width */

p.fixed-table-scroll-inner {
	width: 100%;
	height: 200px;
}

div.fixed-table-scroll-outer {
	top: 0;
	left: 0;
	visibility: hidden;
	width: 200px;
	height: 150px;
	
}

.bootstrap-table .fixed-table-pagination {
	margin: 0 10px;
}

.bootstrap-table .fixed-table-pagination:after {
	display: table;
	content: "";
	clear: both;
}

.bootstrap-table .fixed-table-pagination .page-list .btn {
	border-radius: 30px;
}

.bootstrap-table .fixed-table-pagination .page-list .btn-group {
	margin-right: 5px;
}

.bootstrap-table .fixed-table-pagination div.pagination,
.bootstrap-table .fixed-table-pagination .pagination-detail {
	margin-top: 15px;
	margin-bottom: 15px;
}

.bootstrap-table .table.table-striped&gt;thead&gt;tr&gt;td,
.bootstrap-table .table.table-striped&gt;tbody&gt;tr&gt;td,
.bootstrap-table .table.table-striped&gt;tfoot&gt;tr&gt;td {
	border: none;
	font-size: 12px;
}

table.dataTable {
	clear: both;
	margin-top: 6px !important;
	margin-bottom: 6px !important;
	max-width: none !important;
	border-collapse: separate !important;
}

table.dataTable td,
table.dataTable th {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
	text-align: center;
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
	white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length label {
	font-weight: normal;
	text-align: left;
	white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length select {
	width: 75px;
	display: inline-block;
	padding: 8px;
}

div.dataTables_wrapper div.dataTables_filter {
	text-align: right;
}

div.dataTables_wrapper div.dataTables_filter label {
	font-weight: normal;
	white-space: nowrap;
	text-align: left;
}

div.dataTables_wrapper div.dataTables_filter input {
	margin-left: 0.5em;
	display: inline-block;
	width: auto;
}

div.dataTables_wrapper div.dataTables_info {
	padding-top: 8px;
	white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_paginate {
	margin: 0;
	white-space: nowrap;
	text-align: right;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
	margin: 2px 0;
	white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	margin-left: -100px;
	margin-top: -26px;
	text-align: center;
	padding: 1em 0;
}

table.dataTable thead&gt;tr&gt;th.sorting_asc,
table.dataTable thead&gt;tr&gt;th.sorting_desc,
table.dataTable thead&gt;tr&gt;th.sorting,
table.dataTable thead&gt;tr&gt;td.sorting_asc,
table.dataTable thead&gt;tr&gt;td.sorting_desc,
table.dataTable thead&gt;tr&gt;td.sorting {
	padding-right: 30px;
}

table.dataTable thead&gt;tr&gt;th:active,
table.dataTable thead&gt;tr&gt;td:active {
	outline: none;
}

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 {
	cursor: pointer;
	position: relative;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
	position: absolute;
	bottom: 8px;
	right: 8px;
	display: block;
	font-family: 'Glyphicons Halflings';
	opacity: 0.5;
}

table.dataTable thead .sorting:after {
	opacity: 0.2;
	content: "\e150";
	/* sort */
}

table.dataTable thead .sorting_asc:after {
	content: "\e155";
	/* sort-by-attributes */
}

table.dataTable thead .sorting_desc:after {
	content: "\e156";
	/* sort-by-attributes-alt */
}

table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
	color: #eee;
}

div.dataTables_scrollHead table.dataTable {
	margin-bottom: 0 !important;
}

div.dataTables_scrollBody table {
	border-top: none;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

div.dataTables_scrollBody table thead .sorting:after,
div.dataTables_scrollBody table thead .sorting_asc:after,
div.dataTables_scrollBody table thead .sorting_desc:after {
	display: none;
}

div.dataTables_scrollBody table tbody tr:first-child th,
div.dataTables_scrollBody table tbody tr:first-child td {
	border-top: none;
}

div.dataTables_scrollFoot table {
	margin-top: 0 !important;
	border-top: none;
}

@media screen and (max-width: 767px) {
	div.dataTables_wrapper div.dataTables_length,
	div.dataTables_wrapper div.dataTables_filter,
	div.dataTables_wrapper div.dataTables_info,
	div.dataTables_wrapper div.dataTables_paginate {
		text-align: center;
	}
}

table.dataTable.table-condensed&gt;thead&gt;tr&gt;th {
	padding-right: 20px;
}

table.dataTable.table-condensed .sorting:after,
table.dataTable.table-condensed .sorting_asc:after,
table.dataTable.table-condensed .sorting_desc:after {
	top: 6px;
	right: 6px;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
	border-left-width: 0;
}

table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
	border-right-width: 0;
}

table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
	border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
	border-bottom-width: 0;
}

div.table-responsive&gt;div.dataTables_wrapper&gt;div.row {
	margin: 0;
}

div.table-responsive&gt;div.dataTables_wrapper&gt;div.row&gt;div[class^="col-"]:first-child {
	padding-left: 0;
}

div.table-responsive&gt;div.dataTables_wrapper&gt;div.row&gt;div[class^="col-"]:last-child {
	padding-right: 0;
}

table.dataTable .btn-simple.btn-icon {
	padding: 3px;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
	position: relative;
	display: inline-block;
	bottom: 0px;
	right: -7px;
	font-family: 'FontAwesome';
	opacity: 0.8;
}

table.dataTable thead .disabled-sorting.sorting:after,
table.dataTable thead .disabled-sorting.sorting_asc:after,
table.dataTable thead .disabled-sorting.sorting_desc:after,
table.dataTable thead .disabled-sorting.sorting_asc_disabled:after,
table.dataTable thead .disabled-sorting.sorting_desc_disabled:after {
	display: none;
}

table.dataTable thead .sorting:after {
	opacity: 0.4;
	content: "\f0dc";
}

table.dataTable thead .sorting_asc:after {
	content: "\f0de";
	top: 3px;
}

table.dataTable thead .sorting_desc:after {
	content: "\f0dd";
	top: -3px;
}

table.dataTable&gt;thead&gt;tr&gt;th,
table.dataTable&gt;tbody&gt;tr&gt;th,
table.dataTable&gt;tfoot&gt;tr&gt;th,
table.dataTable&gt;thead&gt;tr&gt;td,
table.dataTable&gt;tbody&gt;tr&gt;td,
table.dataTable&gt;tfoot&gt;tr&gt;td {
	padding: 8px !important;
	outline: 0;
}

table.dataTable&gt;thead&gt;tr&gt;th {
	border: none;
}

.fresh-datatables .pagination&gt;li&gt;a,
.fresh-datatables .pagination&gt;li:first-child&gt;a,
.fresh-datatables .pagination&gt;li:first-child&gt;span,
.fresh-datatables .pagination&gt;li:last-child&gt;a,
.fresh-datatables .pagination&gt;li:last-child&gt;span {
	border-radius: 25px;
}

.dataTables_paginate a {
	outline: 0;
}

table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;td.child,
table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;th.child,
table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;td.dataTables_empty {
	cursor: default !important;
}

table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;td.child:before,
table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;th.child:before,
table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;td.dataTables_empty:before {
	display: none !important;
}

table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;td:first-child,
table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;th:first-child {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}

table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;td:first-child:before,
table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr&gt;th:first-child:before {
	top: 50%;
	margin-top: -9px;
	left: 4px;
	height: 18px;
	width: 18px;
	display: block;
	position: absolute;
	color: #518607;
	border: 0px solid white;
	border-radius: 14px;
	box-shadow: 0 0 3px #444;
	box-sizing: content-box;
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	line-height: 18px;
	content: '+';
	background-color: #FFF;
}

table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr.parent&gt;td:first-child:before,
table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr.parent&gt;th:first-child:before {
	content: '-';
	color: #ED362C;
}

table.dataTable.dtr-inline.collapsed&gt;tbody&gt;tr.child td:before {
	display: none;
}

table.dataTable.dtr-inline.collapsed.compact&gt;tbody&gt;tr&gt;td:first-child,
table.dataTable.dtr-inline.collapsed.compact&gt;tbody&gt;tr&gt;th:first-child {
	padding-left: 27px;
}

table.dataTable.dtr-inline.collapsed.compact&gt;tbody&gt;tr&gt;td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact&gt;tbody&gt;tr&gt;th:first-child:before {
	top: 5px;
	left: 4px;
	height: 14px;
	width: 14px;
	border-radius: 14px;
	line-height: 14px;
	text-indent: 3px;
}

table.dataTable.dtr-column&gt;tbody&gt;tr&gt;td.control,
table.dataTable.dtr-column&gt;tbody&gt;tr&gt;th.control {
	position: relative;
	cursor: pointer;
}

table.dataTable.dtr-column&gt;tbody&gt;tr&gt;td.control:before,
table.dataTable.dtr-column&gt;tbody&gt;tr&gt;th.control:before {
	top: 50%;
	left: 50%;
	height: 16px;
	width: 16px;
	margin-top: -10px;
	margin-left: -10px;
	display: block;
	position: absolute;
	color: white;
	border: 2px solid white;
	border-radius: 14px;
	box-shadow: 0 0 3px #444;
	box-sizing: content-box;
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	line-height: 14px;
	content: '+';
	background-color: #31b131;
}

table.dataTable.dtr-column&gt;tbody&gt;tr.parent td.control:before,
table.dataTable.dtr-column&gt;tbody&gt;tr.parent th.control:before {
	content: '-';
	background-color: #d33333;
}

table.dataTable&gt;tbody&gt;tr.child {
	padding: 0.5em 1em;
}

table.dataTable&gt;tbody&gt;tr.child:hover {
	background: transparent !important;
}

table.dataTable&gt;tbody&gt;tr.child ul {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

table.dataTable&gt;tbody&gt;tr.child ul li {
	border-bottom: 1px solid #efefef;
	padding: 0.5em 0;
}

table.dataTable&gt;tbody&gt;tr.child ul li:first-child {
	padding-top: 0;
}

table.dataTable&gt;tbody&gt;tr.child ul li:last-child {
	border-bottom: none;
}

table.dataTable&gt;tbody&gt;tr.child span.dtr-title {
	display: inline-block;
	min-width: 75px;
	font-weight: bold;
}

div.dtr-modal {
	position: fixed;
	box-sizing: border-box;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
	padding: 10em 1em;
}

div.dtr-modal div.dtr-modal-display {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 50%;
	overflow: auto;
	margin: auto;
	z-index: 102;
	overflow: auto;
	background-color: #f5f5f7;
	border: 1px solid black;
	border-radius: 0.5em;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

div.dtr-modal div.dtr-modal-content {
	position: relative;
	padding: 1em;
}

div.dtr-modal div.dtr-modal-close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 22px;
	height: 22px;
	border: 1px solid #eaeaea;
	background-color: #f9f9f9;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	z-index: 12;
}

div.dtr-modal div.dtr-modal-close:hover {
	background-color: #eaeaea;
}

div.dtr-modal div.dtr-modal-background {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 101;
	background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
	div.dtr-modal div.dtr-modal-display {
		width: 95%;
	}
}


/*!
 * FullCalendar v2.4.0 Stylesheet
 * Docs &amp; License: http://fullcalendar.io/
 * (c) 2015 Adam Shaw
 */

.fc {
	direction: ltr;
	text-align: left;
}

.fc-rtl {
	text-align: right;
}

body .fc {
	/* extra precedence to overcome jqui */
	font-size: 1em;
}


/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-popover {
	border-color: #ddd;
}

.fc-unthemed .fc-popover {
	background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header {
	background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	color: #666;
}

.fc-unthemed .fc-today {
	background: #F5F5F5;
}

.fc-highlight {
	/* when user is selecting cells */
	background: #bce8f1;
	opacity: .3;
	filter: alpha(opacity=30);
	/* for IE */
}

.fc-bgevent {
	/* default look for background events */
	background: #8fdf82;
	opacity: .3;
	filter: alpha(opacity=30);
	/* for IE */
}

.fc-nonbusiness {
	/* default look for non-business-hours areas */
	/* will inherit .fc-bgevent's styles */
	background: #d7d7d7;
}


/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	line-height: 1em;
	font-size: 1em;
	text-align: center;
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;
	/* don't allow browser text-selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
	position: relative;
	margin: 0 -1em;
	/* ensures character will be centered, regardless of width */
}

.fc-icon-left-single-arrow:after {
	content: "\02039";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
	left: 3%;
}

.fc-icon-right-single-arrow:after {
	content: "\0203A";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
	left: -3%;
}

.fc-icon-left-double-arrow:after {
	content: "\000AB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-right-double-arrow:after {
	content: "\000BB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-left-triangle:after {
	content: "\25C4";
	font-size: 125%;
	top: 3%;
	left: -2%;
}

.fc-icon-right-triangle:after {
	content: "\25BA";
	font-size: 125%;
	top: 3%;
	left: 2%;
}

.fc-icon-down-triangle:after {
	content: "\25BC";
	font-size: 125%;
	top: 2%;
}

.fc-icon-x:after {
	content: "\000D7";
	font-size: 200%;
	top: 6%;
}


/* Buttons (styled &lt;button&gt; tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
	border-width: 1px;
	background-color: transparent;
	font-weight: 400;
	opacity: 0.8;
	filter: alpha(opacity=80);
	padding: 8px 16px;
	border-color: #888888;
	color: #888888;
}

.fc button:hover,
.fc button:focus {
	opacity: 1;
	filter: alpha(opacity=100);
	outline: 0 !important;
}

.fc button:active,
.fc button.active,
.open&gt;.fc button.dropdown-toggle {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0 !important;
}


/* Firefox has an annoying inner border */

.fc button::-moz-focus-inner {
	margin: 0;
	padding: 0;
}

.fc-state-default {
	/* non-theme */
	border: 1px solid;
}

.fc-state-default.fc-corner-left {
	/* non-theme */
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
	/* non-theme */
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}


/* icons in buttons */

.fc button .fc-icon {
	/* non-theme */
	position: relative;
	top: -0.05em;
	/* seems to be a good adjustment across browsers */
	margin: 0 .2em;
	vertical-align: middle;
}


/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-hover,
.fc-state-active,
.fc-state-disabled {
	color: #333333;
	background-color: #e6e6e6;
}

.fc button[disabled],
.fc button[disabled]:focus,
.fc button[disabled]:hover {
	background-color: #E3E3E3;
	border-color: #E3E3E3;
	cursor: default;
	opacity: 0.65;
	filter: alpha(opacity=65);
}

.fc-state-hover {
	background-color: #F5F5F5;
}

.fc .fc-state-active,
.fc .fc-state-active:focus,
.fc .fc-state-active:hover,
.fc .fc-state-active:active:focus,
.fc .fc-state-active:active:hover,
.fc .fc-state-active:active {
	background-color: #888888;
	color: #FFFFFF;
}


/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
	display: inline-block;
}


/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group&gt;* {
	/* extra precedence b/c buttons have margin set to zero */
	float: left;
	margin: 0 0 0 -1px;
}

.fc .fc-button-group&gt; :first-child {
	/* same */
	margin-left: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
	position: absolute;
	-webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
}

.fc-popover .fc-header {
	/* TODO: be more consistent with fc-head/fc-body */
	padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
	margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
	cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
	float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
	float: right;
}


/* unthemed */

.fc-unthemed .fc-popover {
	border-width: 1px;
	border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	font-size: .9em;
	margin-top: 2px;
}


/* jqui themed */

.fc-popover&gt;.ui-widget-header+.ui-widget-content {
	border-top: 0;
	/* where they meet, let the header have the border */
}


/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
	border-style: solid;
	border-width: 1px;
}

hr.fc-divider {
	height: 0;
	margin: 0;
	padding: 0 0 2px;
	/* height is unreliable across browsers, so use padding */
	border-width: 1px 0;
}

.fc-clear {
	clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
	/* these element should always cling to top-left/right corners */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc-bg {
	bottom: 0;
	/* strech bg to bottom edge */
}

.fc-bg table {
	height: 100%;
	/* strech bg to bottom edge */
}


/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em;
	/* normalize cross-browser */
}

.fc th {
	text-align: right;
	border-bottom-width: 1px;
	font-size: 14px;
	text-transform: uppercase;
	color: #9A9A9A;
	font-weight: 400;
	padding-bottom: 3px;
}

.fc td {
	border-style: solid;
	border-width: 1px;
	padding: 0;
	vertical-align: top;
}

.fc td.fc-today {
	border-style: double;
	/* overcome neighboring borders */
}

.fc .fc-widget-header {
	border: 0;
}

.fc .fc-head .fc-widget-header {
	margin-top: 15px;
}


/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row {
	/* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
	/* no visible border by default. but make available if need be (scrollbar width compensation) */
	border-style: solid;
	border-width: 0;
}

.fc-row table {
	/* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
	border-left: 0 hidden transparent;
	border-right: 0 hidden transparent;
	/* no bottom borders on rows */
	border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
	border-top: 0 hidden transparent;
	/* no top border on first row */
}


/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
	position: relative;
}

.fc-row .fc-bg {
	z-index: 1;
}


/* highlighting cells &amp; background event skeleton */

.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
	bottom: 0;
	/* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
	height: 100%;
	/* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
	border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
	z-index: 2;
}

.fc-row .fc-highlight-skeleton {
	z-index: 3;
}


/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

.fc-row .fc-content-skeleton {
	position: relative;
	z-index: 4;
	padding-bottom: 2px;
	/* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
	z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
	/* see-through to the background below */
	background: none;
	/* in case &lt;td&gt;s are globally styled */
	border-color: transparent;
	/* don't put a border between events and/or the day number */
	border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
	/* don't put a border between event cells */
	border-top: 0;
}


/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
	/* this class goes on elements for guaranteed vertical scrollbars */
	overflow-y: scroll;
	overflow-x: hidden;
}

.fc-scroller&gt;* {
	/* we expect an immediate inner element */
	position: relative;
	/* re-scope all positions */
	width: 100%;
	/* hack to force re-sizing this inner element when scrollbars appear/disappear */
	
	/* don't let negative margins or absolute positioning create further scroll */
}


/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
	position: relative;
	/* for resize handle and other inner positioning */
	display: block;
	/* make the &lt;a&gt; tag block */
	font-size: .85em;
	line-height: 1.3;
	border-radius: 2px;
	background-color: rgba(68, 125, 247, 0.2);
	/* default BACKGROUND color */
	font-weight: normal;
	/* undo jqui's ui-widget-header bold */
}

.fc-event.event-azure {
	background-color: rgba(35, 204, 239, 0.2);
}

.fc-event.event-green {
	background-color: rgba(135, 203, 22, 0.2);
}

.fc-event.event-orange {
	background-color: rgba(255, 165, 52, 0.2);
}

.fc-event.event-red {
	background-color: rgba(251, 64, 75, 0.2);
}


/* overpower some of bootstrap's and jqui's styles on &lt;a&gt; tags */

.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
	color: #333333;
	/* default TEXT color */
	text-decoration: none;
	/* if &lt;a&gt; has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
	cursor: pointer;
	/* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
	/* to override an event's custom cursor */
	cursor: not-allowed;
}

.fc-event .fc-bg {
	/* the generic .fc-bg already does position */
	z-index: 1;
	background: #fff;
	opacity: .25;
	filter: alpha(opacity=25);
	/* for IE */
}

.fc-event .fc-content {
	position: relative;
	z-index: 2;
}

.fc-event .fc-resizer {
	position: absolute;
	z-index: 3;
}


/* Horizontal Events
--------------------------------------------------------------------------------------------------*/


/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
	margin-left: 0;
	border-left-width: 0;
	padding-left: 1px;
	/* replace the border with padding */
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
	margin-right: 0;
	border-right-width: 0;
	padding-right: 1px;
	/* replace the border with padding */
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}


/* resizer */

.fc-h-event .fc-resizer {
	/* positioned it to overcome the event's borders */
	top: -1px;
	bottom: -1px;
	left: -1px;
	right: -1px;
	width: 5px;
}


/* left resizer  */

.fc-ltr .fc-h-event .fc-start-resizer,
.fc-ltr .fc-h-event .fc-start-resizer:before,
.fc-ltr .fc-h-event .fc-start-resizer:after,
.fc-rtl .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-end-resizer:before,
.fc-rtl .fc-h-event .fc-end-resizer:after {
	right: auto;
	/* ignore the right and only use the left */
	cursor: w-resize;
}


/* right resizer */

.fc-ltr .fc-h-event .fc-end-resizer,
.fc-ltr .fc-h-event .fc-end-resizer:before,
.fc-ltr .fc-h-event .fc-end-resizer:after,
.fc-rtl .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-start-resizer:before,
.fc-rtl .fc-h-event .fc-start-resizer:after {
	left: auto;
	/* ignore the left and only use the right */
	cursor: e-resize;
}


/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-day-grid-event {
	margin: 2px 5px 0;
	/* spacing between events and edges */
	padding: 1px 2px;
}

.fc-day-grid-event .fc-content {
	/* force events to be one-line tall */
	white-space: nowrap;
	
}

.fc-day-grid-event .fc-time {
	font-weight: bold;
}

.fc-day-grid-event .fc-resizer {
	/* enlarge the default hit area */
	left: -3px;
	right: -3px;
	width: 7px;
}


/* Event Limiting
--------------------------------------------------------------------------------------------------*/


/* "more" link that represents hidden events */

a.fc-more {
	margin: 1px 3px;
	font-size: .85em;
	cursor: pointer;
	text-decoration: none;
}

a.fc-more:hover {
	text-decoration: underline;
}

.fc-limited {
	/* rows and cells that are hidden because of a "more" link */
	display: none;
}


/* popover that appears when "more" link is clicked */

.fc-day-grid .fc-row {
	z-index: 1;
	/* make the "more" popover one higher than this */
}

.fc-more-popover {
	z-index: 2;
	width: 220px;
}

.fc-more-popover .fc-event-container {
	padding: 10px;
}


/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
	text-align: center;
	margin-bottom: 1em;
}

.fc-toolbar .fc-left {
	float: left;
	min-width: 260px;
}

.fc-toolbar .fc-right {
	float: right;
}

.fc-toolbar .fc-center {
	display: inline-block;
}


/* the things within each left/right/center section */

.fc .fc-toolbar&gt;*&gt;* {
	/* extra precedence to override button border margins */
	float: left;
	margin-left: .75em;
}


/* the first thing within each left/center/right section */

.fc .fc-toolbar&gt;*&gt; :first-child {
	/* extra precedence to override button border margins */
	margin-left: 0;
}


/* title text */

.fc-toolbar h2 {
	margin: 0;
}


/* button layering (for border precedence) */

.fc-toolbar button {
	position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
	z-index: 2;
}

.fc-toolbar .fc-state-down {
	z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
	z-index: 4;
}

.fc-toolbar button:focus {
	z-index: 5;
}


/* View Structure
--------------------------------------------------------------------------------------------------*/


/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */


/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */

.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.fc-view,
.fc-view&gt;table {
	/* so dragged elements can be above the view's main element */
	position: relative;
	z-index: 1;
}


/* BasicView
--------------------------------------------------------------------------------------------------*/


/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
	/* we are sure there are no day numbers in these views, so... */
	padding-top: 1px;
	/* add a pixel to make sure there are 2px padding above events */
	padding-bottom: 1em;
	/* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
	min-height: 4em;
	/* ensure that all rows are at least this tall */
}


/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
	overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}


/* week and day number styling */

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
	padding: 0 2px;
}

.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
	padding: 8px;
}

.fc-basic-view .fc-week-number {
	text-align: center;
}

.fc-basic-view .fc-week-number span {
	/* work around the way we do column resizing and ensure a minimum width */
	display: inline-block;
	min-width: 1.25em;
}

.fc-ltr .fc-basic-view .fc-day-number {
	text-align: right;
}

.fc-rtl .fc-basic-view .fc-day-number {
	text-align: left;
}

.fc-day-number.fc-other-month {
	opacity: 0.3;
	filter: alpha(opacity=30);
	/* for IE */
	/* opacity with small font can sometimes look too faded
     might want to set the 'color' property instead
     making day-numbers bold also fixes the problem */
}


/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
	position: relative;
	z-index: 2;
	/* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
	min-height: 3em;
	/* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
	padding-top: 1px;
	/* add a pixel to make sure there are 2px padding above events */
	padding-bottom: 1em;
	/* give space underneath events for clicking/selecting days */
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis {
	/* .fc to overcome default cell styles */
	vertical-align: middle;
	padding: 0 4px;
	white-space: nowrap;
}

.fc-ltr .fc-axis {
	text-align: right;
}

.fc-rtl .fc-axis {
	text-align: left;
}

.ui-widget td.fc-axis {
	font-weight: normal;
	/* overcome jqui theme making it bold */
}


/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container,
.fc-time-grid {
	/* so slats/bg/content/etc positions get scoped within here */
	position: relative;
	z-index: 1;
}

.fc-time-grid {
	min-height: 100%;
	/* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
	/* don't put outer borders on slats/bg/content/etc */
	border: 0 hidden transparent;
}

.fc-time-grid&gt;.fc-bg {
	z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid&gt;hr {
	/* the &lt;hr&gt; AgendaView injects when grid is shorter than scroller */
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-bgevent-skeleton,
.fc-time-grid .fc-content-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc-time-grid .fc-bgevent-skeleton {
	z-index: 3;
}

.fc-time-grid .fc-highlight-skeleton {
	z-index: 4;
}

.fc-time-grid .fc-content-skeleton {
	z-index: 5;
}

.fc-time-grid .fc-helper-skeleton {
	z-index: 6;
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
	height: 1.5em;
	border-bottom: 0;
	/* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
	border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content {
	/* for jqui theme */
	background: none;
	/* see through to fc-bg */
}


/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container {
	/* a div within a cell within the fc-highlight-skeleton */
	position: relative;
	/* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
	position: absolute;
	left: 0;
	right: 0;
	/* top and bottom will be in by JS */
}


/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-event-container,
.fc-time-grid .fc-bgevent-container {
	/* a div within a cell within the fc-bgevent-skeleton */
	position: relative;
}

.fc-ltr .fc-time-grid .fc-event-container {
	/* space on the sides of events for LTR (default) */
	margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
	/* space on the sides of events for RTL */
	margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
	position: absolute;
	z-index: 1;
	/* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
	/* background events always span full width */
	left: 0;
	right: 0;
}


/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start {
	/* events that are continuing from another day */
	/* replace space made by the top border with padding */
	border-top-width: 0;
	padding-top: 1px;
	/* remove top rounded corners */
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
	/* replace space made by the top border with padding */
	border-bottom-width: 0;
	padding-bottom: 1px;
	/* remove bottom rounded corners */
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}


/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
	overflow: hidden;
	/* don't let the bg flow over rounded corners */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
	padding: 0 1px;
}

.fc-time-grid-event .fc-time {
	font-size: .85em;
	white-space: nowrap;
}


/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
	/* don't wrap to second line (now that contents will be inline) */
	white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
	/* put the time and title on the same line */
	display: inline-block;
	vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
	display: none;
	/* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
	content: attr(data-start);
	/* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
	content: "\000A0-\000A0";
	/* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
	font-size: .85em;
	/* make the title text the same size as the time */
	padding: 0;
	/* undo padding from above */
}


/* resizer */

.fc-time-grid-event .fc-resizer {
	left: 0;
	right: 0;
	bottom: 0;
	height: 8px;
	overflow: hidden;
	line-height: 8px;
	font-size: 11px;
	font-family: monospace;
	text-align: center;
	cursor: s-resize;
}

.fc-time-grid-event .fc-resizer:after {
	content: "=";
}

.card-calendar .content {
	padding: 0 !important;
}

.card-calendar .fc-toolbar {
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

.card-calendar .fc td:first-child {
	border-left: 0;
}

.card-calendar .fc td:last-child {
	border-right: 0;
}

.card-calendar .fc-basic-view td:last-child.fc-week-number span,
.card-calendar .fc-basic-view td:last-child.fc-day-number {
	padding-right: 15px;
}

.card-calendar .fc .fc-day-header:last-child {
	padding-right: 15px;
}

.card-calendar .fc .fc-row:last-child td {
	border-bottom: 0;
}

.card-calendar .fc .fc-body .fc-widget-content {
	border-bottom: 0;
}

.ct-label {
	fill: rgba(0, 0, 0, 0.4);
	color: rgba(0, 0, 0, 0.4);
	font-size: 1.3rem;
	line-height: 1;
}

.ct-chart-line .ct-label,
.ct-chart-bar .ct-label {
	display: block;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.ct-label.ct-horizontal.ct-start {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	text-align: left;
	text-anchor: start;
}

.ct-label.ct-horizontal.ct-end {
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	text-align: left;
	text-anchor: start;
}

.ct-label.ct-vertical.ct-start {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
	text-align: right;
	text-anchor: end;
}

.ct-label.ct-vertical.ct-end {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	text-align: left;
	text-anchor: start;
}

.ct-chart-bar .ct-label.ct-horizontal.ct-start {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	text-anchor: start;
}

.ct-chart-bar .ct-label.ct-horizontal.ct-end {
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	text-align: left;
	text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	text-align: left;
	text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
	text-align: right;
	text-anchor: end;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	text-align: left;
	text-anchor: end;
}

.ct-grid {
	stroke: rgba(0, 0, 0, 0.2);
	stroke-width: 1px;
	stroke-dasharray: 2px;
}

.ct-point {
	stroke-width: 8px;
	stroke-linecap: round;
}

.ct-line {
	fill: none;
	stroke-width: 3px;
}

.ct-area {
	stroke: none;
	fill-opacity: 0.8;
}

.ct-bar {
	fill: none;
	stroke-width: 10px;
}

.ct-slice-donut {
	fill: none;
	stroke-width: 60px;
}

.ct-series-a .ct-point,
.ct-series-a .ct-line,
.ct-series-a .ct-bar,
.ct-series-a .ct-slice-donut {
	stroke: #23CCEF;
}

.ct-series-a .ct-slice-pie,
.ct-series-a .ct-area {
	fill: #23CCEF;
}

.ct-series-b .ct-point,
.ct-series-b .ct-line,
.ct-series-b .ct-bar,
.ct-series-b .ct-slice-donut {
	stroke: #FB404B;
}

.ct-series-b .ct-slice-pie,
.ct-series-b .ct-area {
	fill: #FB404B;
}

.ct-series-c .ct-point,
.ct-series-c .ct-line,
.ct-series-c .ct-bar,
.ct-series-c .ct-slice-donut {
	stroke: #FFA534;
}

.ct-series-c .ct-slice-pie,
.ct-series-c .ct-area {
	fill: #FFA534;
}

.ct-series-d .ct-point,
.ct-series-d .ct-line,
.ct-series-d .ct-bar,
.ct-series-d .ct-slice-donut {
	stroke: #9368E9;
}

.ct-series-d .ct-slice-pie,
.ct-series-d .ct-area {
	fill: #9368E9;
}

.ct-series-e .ct-point,
.ct-series-e .ct-line,
.ct-series-e .ct-bar,
.ct-series-e .ct-slice-donut {
	stroke: #87CB16;
}

.ct-series-e .ct-slice-pie,
.ct-series-e .ct-area {
	fill: #87CB16;
}

.ct-series-f .ct-point,
.ct-series-f .ct-line,
.ct-series-f .ct-bar,
.ct-series-f .ct-slice-donut {
	stroke: #447DF7;
}

.ct-series-f .ct-slice-pie,
.ct-series-f .ct-area {
	fill: #447DF7;
}

.ct-series-g .ct-point,
.ct-series-g .ct-line,
.ct-series-g .ct-bar,
.ct-series-g .ct-slice-donut {
	stroke: #5e5e5e;
}

.ct-series-g .ct-slice-pie,
.ct-series-g .ct-area {
	fill: #5e5e5e;
}

.ct-series-h .ct-point,
.ct-series-h .ct-line,
.ct-series-h .ct-bar,
.ct-series-h .ct-slice-donut {
	stroke: #dd4b39;
}

.ct-series-h .ct-slice-pie,
.ct-series-h .ct-area {
	fill: #dd4b39;
}

.ct-series-i .ct-point,
.ct-series-i .ct-line,
.ct-series-i .ct-bar,
.ct-series-i .ct-slice-donut {
	stroke: #35465c;
}

.ct-series-i .ct-slice-pie,
.ct-series-i .ct-area {
	fill: #35465c;
}

.ct-series-j .ct-point,
.ct-series-j .ct-line,
.ct-series-j .ct-bar,
.ct-series-j .ct-slice-donut {
	stroke: #e52d27;
}

.ct-series-j .ct-slice-pie,
.ct-series-j .ct-area {
	fill: #e52d27;
}

.ct-series-k .ct-point,
.ct-series-k .ct-line,
.ct-series-k .ct-bar,
.ct-series-k .ct-slice-donut {
	stroke: #55acee;
}

.ct-series-k .ct-slice-pie,
.ct-series-k .ct-area {
	fill: #55acee;
}

.ct-series-l .ct-point,
.ct-series-l .ct-line,
.ct-series-l .ct-bar,
.ct-series-l .ct-slice-donut {
	stroke: #cc2127;
}

.ct-series-l .ct-slice-pie,
.ct-series-l .ct-area {
	fill: #cc2127;
}

.ct-series-m .ct-point,
.ct-series-m .ct-line,
.ct-series-m .ct-bar,
.ct-series-m .ct-slice-donut {
	stroke: #1769ff;
}

.ct-series-m .ct-slice-pie,
.ct-series-m .ct-area {
	fill: #1769ff;
}

.ct-series-n .ct-point,
.ct-series-n .ct-line,
.ct-series-n .ct-bar,
.ct-series-n .ct-slice-donut {
	stroke: #6188e2;
}

.ct-series-n .ct-slice-pie,
.ct-series-n .ct-area {
	fill: #6188e2;
}

.ct-series-o .ct-point,
.ct-series-o .ct-line,
.ct-series-o .ct-bar,
.ct-series-o .ct-slice-donut {
	stroke: #a748ca;
}

.ct-series-o .ct-slice-pie,
.ct-series-o .ct-area {
	fill: #a748ca;
}

.ct-square {
	display: block;
	position: relative;
	width: 100%;
}

.ct-square:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 100%;
}

.ct-square:after {
	content: "";
	display: table;
	clear: both;
}

.ct-square&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-minor-second {
	display: block;
	position: relative;
	width: 100%;
}

.ct-minor-second:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 93.75%;
}

.ct-minor-second:after {
	content: "";
	display: table;
	clear: both;
}

.ct-minor-second&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-major-second {
	display: block;
	position: relative;
	width: 100%;
}

.ct-major-second:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 88.88889%;
}

.ct-major-second:after {
	content: "";
	display: table;
	clear: both;
}

.ct-major-second&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-minor-third {
	display: block;
	position: relative;
	width: 100%;
}

.ct-minor-third:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 83.33333%;
}

.ct-minor-third:after {
	content: "";
	display: table;
	clear: both;
}

.ct-minor-third&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-major-third {
	display: block;
	position: relative;
	width: 100%;
}

.ct-major-third:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 80%;
}

.ct-major-third:after {
	content: "";
	display: table;
	clear: both;
}

.ct-major-third&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-perfect-fifth {
	display: block;
	position: relative;
	width: 100%;
}

.ct-perfect-fifth:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 75%;
}

.ct-perfect-fifth:after {
	content: "";
	display: table;
	clear: both;
}

.ct-perfect-fifth&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-minor-sixth {
	display: block;
	position: relative;
	width: 100%;
}

.ct-minor-sixth:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 66.66667%;
}

.ct-minor-sixth:after {
	content: "";
	display: table;
	clear: both;
}

.ct-minor-sixth&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-golden-section {
	display: block;
	position: relative;
	width: 100%;
}

.ct-golden-section:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 62.5%;
}

.ct-golden-section:after {
	content: "";
	display: table;
	clear: both;
}

.ct-golden-section&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-major-sixth {
	display: block;
	position: relative;
	width: 100%;
}

.ct-major-sixth:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 61.8047%;
}

.ct-major-sixth:after {
	content: "";
	display: table;
	clear: both;
}

.ct-major-sixth&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-minor-seventh {
	display: block;
	position: relative;
	width: 100%;
}

.ct-minor-seventh:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 60%;
}

.ct-minor-seventh:after {
	content: "";
	display: table;
	clear: both;
}

.ct-minor-seventh&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-major-seventh {
	display: block;
	position: relative;
	width: 100%;
}

.ct-major-seventh:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 56.25%;
}

.ct-major-seventh:after {
	content: "";
	display: table;
	clear: both;
}

.ct-major-seventh&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-octave {
	display: block;
	position: relative;
	width: 100%;
}

.ct-octave:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 53.33333%;
}

.ct-octave:after {
	content: "";
	display: table;
	clear: both;
}

.ct-octave&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-major-tenth {
	display: block;
	position: relative;
	width: 100%;
}

.ct-major-tenth:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 50%;
}

.ct-major-tenth:after {
	content: "";
	display: table;
	clear: both;
}

.ct-major-tenth&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-major-eleventh {
	display: block;
	position: relative;
	width: 100%;
}

.ct-major-eleventh:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 40%;
}

.ct-major-eleventh:after {
	content: "";
	display: table;
	clear: both;
}

.ct-major-eleventh&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-major-twelfth {
	display: block;
	position: relative;
	width: 100%;
}

.ct-major-twelfth:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 37.5%;
}

.ct-major-twelfth:after {
	content: "";
	display: table;
	clear: both;
}

.ct-major-twelfth&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-double-octave {
	display: block;
	position: relative;
	width: 100%;
}

.ct-double-octave:before {
	display: block;
	float: left;
	content: "";
	width: 0;
	height: 0;
	padding-bottom: 33.33333%;
}

.ct-double-octave:after {
	content: "";
	display: table;
	clear: both;
}

.ct-double-octave&gt;svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.ct-blue {
	stroke: #447DF7 !important;
}

.ct-azure {
	stroke: #23CCEF !important;
}

.ct-green {
	stroke: #87CB16 !important;
}

.ct-orange {
	stroke: #FFA534 !important;
}

.ct-red {
	stroke: #FB404B !important;
}


/* perfect-scrollbar v0.6.10 */

 .collapse.in ul.nav li {
    margin: 5px 0px;
    width: 100%;
    list-style:none;
    text-align:left;
}
.collapse.in ul.nav{
   max-height: 300px;
    overflow-y: scroll;
   position: inherit;
       width:243px;
       color:#fff;
       background: transparent;
    /* color: #021038; */
    margin-top: 0px;
    padding: 0;
}
.collapse.in ul.nav li a{
    color: #fff!important;
}
.collapse.in ul.nav li:hover {
    background: #fb404b;
    
}
.collapse.in ul.nav li:hover&gt;a{
    color: #fff!important;
    
}
.collapse.in ul.nav a:hover {
    color: #fff;
}
@supports (-ms-overflow-style: none) {
	.ps-container {
		overflow: auto !important;
	}
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.ps-container {
		overflow: auto !important;
	}
}

/*.ps-container.ps-active-x&gt;.ps-scrollbar-x-rail,
.ps-container.ps-active-y&gt;.ps-scrollbar-y-rail {
	display: block;
	background-color: transparent;
}

.ps-container.ps-in-scrolling {
	pointer-events: none;
}

.ps-container.ps-in-scrolling.ps-x&gt;.ps-scrollbar-x-rail {
	background-color: #eee;
	opacity: 0.9;
}

.ps-container.ps-in-scrolling.ps-x&gt;.ps-scrollbar-x-rail&gt;.ps-scrollbar-x {
	background-color: #999;
}

.ps-container.ps-in-scrolling.ps-y&gt;.ps-scrollbar-y-rail {
	background-color: #eee;
	opacity: 0.9;
}

.ps-container.ps-in-scrolling.ps-y&gt;.ps-scrollbar-y-rail&gt;.ps-scrollbar-y {
	background-color: #999;
}

.ps-container&gt;.ps-scrollbar-x-rail {
	display: none;
	position: absolute;
	/* please don't change 'position' *
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	opacity: 0;
	-webkit-transition: background-color .2s linear, opacity .2s linear;
	-moz-transition: background-color .2s linear, opacity .2s linear;
	-o-transition: background-color .2s linear, opacity .2s linear;
	transition: background-color .2s linear, opacity .2s linear;
	bottom: 3px;
	/* there must be 'bottom' for ps-scrollbar-x-rail *
	height: 8px;
}

.ps-container&gt;.ps-scrollbar-x-rail&gt;.ps-scrollbar-x {
	position: absolute;
	/* please don't change 'position' *
	background-color: #aaa;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background-color .2s linear;
	-moz-transition: background-color .2s linear;
	-o-transition: background-color .2s linear;
	transition: background-color .2s linear;
	bottom: 0;
	/* there must be 'bottom' for ps-scrollbar-x *
	height: 8px;
}

.ps-container&gt;.ps-scrollbar-y-rail {
	display: none;
	position: absolute;
	/* please don't change 'position' *
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	opacity: 0;
	-webkit-transition: background-color .2s linear, opacity .2s linear;
	-moz-transition: background-color .2s linear, opacity .2s linear;
	-o-transition: background-color .2s linear, opacity .2s linear;
	transition: background-color .2s linear, opacity .2s linear;
	right: 3px;
	/* there must be 'right' for ps-scrollbar-y-rail *
	width: 8px;
}

.ps-container&gt;.ps-scrollbar-y-rail&gt;.ps-scrollbar-y {
	position: absolute;
	/* please don't change 'position' *
	background-color: #aaa;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background-color .2s linear;
	-moz-transition: background-color .2s linear;
	-o-transition: background-color .2s linear;
	transition: background-color .2s linear;
	right: 0;
	/* there must be 'right' for ps-scrollbar-y *
	width: 8px;
}

.ps-container:hover.ps-in-scrolling {
	pointer-events: none;
}

.ps-container:hover.ps-in-scrolling.ps-x&gt;.ps-scrollbar-x-rail {
	background-color: #eee;
	opacity: 0.9;
}

.ps-container:hover.ps-in-scrolling.ps-x&gt;.ps-scrollbar-x-rail&gt;.ps-scrollbar-x {
	background-color: #999;
}

.ps-container:hover.ps-in-scrolling.ps-y&gt;.ps-scrollbar-y-rail {
	background-color: #eee;
	opacity: 0.9;
}

.ps-container:hover.ps-in-scrolling.ps-y&gt;.ps-scrollbar-y-rail&gt;.ps-scrollbar-y {
	background-color: #999;
}

.ps-container:hover&gt;.ps-scrollbar-x-rail,
.ps-container:hover&gt;.ps-scrollbar-y-rail {
	opacity: 0.6;
}

.ps-container:hover&gt;.ps-scrollbar-x-rail:hover {
	background-color: #eee;
	opacity: 0.9;
}

.ps-container:hover&gt;.ps-scrollbar-x-rail:hover&gt;.ps-scrollbar-x {
	background-color: #999;
}

.ps-container:hover&gt;.ps-scrollbar-y-rail:hover {
	background-color: #eee;
	opacity: 0.9;
}

.ps-container:hover&gt;.ps-scrollbar-y-rail:hover&gt;.ps-scrollbar-y {
	background-color: #999;
}
*/

/*!
 * Bootstrap-select v1.8.1 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2015 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */

.bootstrap-select {
	width: 220px \0;
	/*IE9 and below*/
}

.bootstrap-select&gt;.dropdown-toggle {
	width: 100%;
	padding-right: 25px;
	z-index: 1;
}

.bootstrap-select&gt;select {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0.11px;
	height: 100%;
	opacity: 0;
	border: none;
}

.bootstrap-select&gt;select.mobile-device {
	position: absolute !important;
	top: 0;
	left: 0;
	display: block !important;
	width: 100%;
	height: 100% !important;
	opacity: 0;
	z-index: 2;
}

.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
	border-color: #b94a48;
}

.bootstrap-select.fit-width {
	width: auto !important;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: 100%;
}

.bootstrap-select.form-control {
	margin-bottom: 0;
	padding: 0;
	border: none;
}

.bootstrap-select.form-control:not([class*="col-"]) {
	width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
	z-index: auto;
}

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
	float: none;
	display: inline-block;
	margin-left: 0;
}

.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
	float: right;
}

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
	margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
	padding: 0;
}

.form-inline .bootstrap-select.btn-group .form-control {
	width: 100%;
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group&gt;.disabled {
	cursor: not-allowed;
}

.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group&gt;.disabled:focus {
	outline: none !important;
}

.bootstrap-select.btn-group.bs-container {
	position: absolute;
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
	z-index: 1060;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	display: inline-block;
	overflow: hidden;
	width: 100%;
	text-align: left;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -2px;
	vertical-align: middle;
}

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
	width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
	min-width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
	position: static;
	float: none;
	border: 0;
	padding: 0;
	margin: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-ms-overflow-style: scrollbar;
}

.bootstrap-select.btn-group .dropdown-menu li {
	position: relative;
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
	color: #fff;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
	cursor: not-allowed;
}

.bootstrap-select.btn-group .dropdown-menu li a {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
	position: relative;
	padding-left: 2.25em;
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
	display: none;
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
	display: inline-block;
}

.bootstrap-select.btn-group .dropdown-menu li small {
	padding-left: 0.5em;
}

.bootstrap-select.btn-group .dropdown-menu .notify {
	position: absolute;
	bottom: 5px;
	width: 96%;
	margin: 0 2%;
	min-height: 26px;
	padding: 3px 5px;
	background: #f5f5f5;
	border: 1px solid #e3e3e3;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	pointer-events: none;
	opacity: 0.9;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bootstrap-select.btn-group .no-results {
	padding: 3px;
	background: #f5f5f5;
	margin: 0 5px;
	white-space: nowrap;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
	position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
	position: static;
	top: auto;
	margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
	position: absolute;
	display: inline-block;
	right: 15px;
	margin-top: 2px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
	margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open&gt;.dropdown-toggle {
	z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
	content: '';
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid rgba(204, 204, 204, 0.2);
	position: absolute;
	bottom: -4px;
	left: 9px;
	display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid white;
	position: absolute;
	bottom: -4px;
	left: 10px;
	display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
	bottom: auto;
	top: -3px;
	border-top: 7px solid rgba(204, 204, 204, 0.2);
	border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
	bottom: auto;
	top: -3px;
	border-top: 6px solid white;
	border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
	right: 12px;
	left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
	right: 13px;
	left: auto;
}

.bootstrap-select.show-menu-arrow.open&gt;.dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open&gt;.dropdown-toggle:after {
	display: block;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
	padding: 8px 8px;
}

.bs-actionsbox {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bs-actionsbox .btn-group button {
	width: 50%;
}

.bs-donebutton {
	float: left;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bs-donebutton .btn-group button {
	width: 100%;
}

.bs-searchbox+.bs-actionsbox {
	padding: 0 8px 4px;
}

.bs-searchbox .form-control {
	margin-bottom: 0;
	width: 100%;
	float: none;
}

.bootstrap-select .dropdown-menu {
	border-radius: 0 0 10px 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transform-origin: 50% -40px;
	-moz-transform-origin: 50% -40px;
	-o-transform-origin: 50% -40px;
	-ms-transform-origin: 50% -40px;
	transform-origin: 50% -40px;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
	margin-top: -20px;
}

.bootstrap-select.open .dropdown-menu {
	margin-top: -1px;
}

.bootstrap-select.dropup .dropdown-menu {
	border-radius: 10px 10px 0 0;
	margin-bottom: -20px;
}

.bootstrap-select.dropup.open .dropdown-menu {
	margin-bottom: -1px;
}

.btn-group.bootstrap-select .dropdown-menu {
	min-width: 100%;
}

.bootstrap-select .dropdown-menu&gt;li:first-child&gt;a {
	border-radius: 0;
	border-bottom: 0 none;
}


/*           Font Smoothing      */

body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.navbar,
.brand,
.btn-simple,
.alert,
a,
.td-name,
td,
button.close {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
}

.nav&gt;li {
	position: relative;
	display: block;
	/*float: left;*/
	border-bottom: solid 1px #fff;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
	font-weight: 300;
	margin: 30px 0 15px;
}

h1,
.h1 {
	font-size: 52px;
}

h2,
.h2 {
	font-size: 36px;
}

h3,
.h3 {
	font-size: 28px;
	margin: 20px 0 10px;
}

h4,
.h4 {
	font-size: 22px;
	line-height: 30px;
}

h5,
.h5 {
	font-size: 18px;
	margin-bottom: 15px;
}

h6,
.h6 {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

p {
	font-size: 16px;
	line-height: 1.5;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
	color: #9A9A9A;
	font-weight: 300;
	line-height: 1.5;
}

h1 small,
h2 small,
h3 small,
h1 .small,
h2 .small,
h3 .small {
	font-size: 60%;
}

h1 .subtitle {
	display: block;
	margin: 0 0 30px;
}

.text-muted {
	color: #9A9A9A;
}

.text-primary,
.text-primary:hover {
	color: #1D62F0 !important;
}

.text-info,
.text-info:hover {
	color: #11bfe3 !important;
}

.text-success,
.text-success:hover {
	color: #87CB16 !important;
}

.text-warning,
.text-warning:hover {
	color: #FFA534 !important;
}

.text-danger,
.text-danger:hover {
	color: #FB404B !important;
}

.text-space {
	padding: 70px 0;
}

/*.sidebar {
	position: absolute;
	
	bottom: 0;
	left: 0;
	width: 100%;
	display: block;
	z-index: 1;
	color: #fff;
	font-weight: 200;
}*/
li.log {
    border: none;
    margin-top: -50px;
    padding: 20px;
}
.sidebar .sidebar-wrapper {
	position: relative;
	z-index: 4;
	width: 100%;
	height: calc(100px);
	background: #fff;
}

.sidebar .sidebar-wrapper&gt;.nav {
	margin: 33px;
}

.sidebar .sidebar-wrapper&gt;.user~.nav {
	margin-top: 0;
}

.sidebar .sidebar-wrapper .dropdown .dropdown-backdrop {
	display: none !important;
}

/*.sidebar .sidebar-background {
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	display: block;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center center;
}
*/
.sidebar .nav li&gt;a {
	border-radius: 4px;
	color: #fff;

}

.sidebar .nav li:hover&gt;a {}

.sidebar .nav li.active&gt;a {
	color: #FFFFFF;
	opacity: 1;
	background: rgba(255, 255, 255, 0.23);
}

.sidebar .nav [data-toggle="collapse"]~div&gt;ul&gt;li&gt;a {
	padding-left: 7px;
}

.sidebar .nav p {
	margin: 0;
	line-height: 23px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
}

.sidebar .nav p .caret {
	top: 12px;
	position: absolute;
	right: -12px;
	color: #fff;
}

.sidebar .nav i {
	font-size: 15px;
	float: left;
	margin-right: 5px;
	line-height: 25px;
	width: 30px;
	text-align: center;
	color: #16aad8;
	font-weight: bold;
}

.sidebar .logo-mini {
	display: none;
}

.sidebar .logo,
.bootstrap-navbar .logo {
	padding: 10px 15px;
	position: relative;
	z-index: 4;
}

.sidebar .logo p,
.bootstrap-navbar .logo p {
	float: left;
	font-size: 20px;
	margin: 10px 10px;
	color: #FFFFFF;
	line-height: 20px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.header ul li {
    list-style: none;
    float: right;
    margin: 6px;
    
}
.sidebar .logo .logo-text,
.bootstrap-navbar .logo .logo-text {
	text-transform: uppercase;
	padding: 7px 0px;
	display: block;
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
}

.sidebar .logo .logo-image,
.bootstrap-navbar .logo .logo-image {
	float: left;
	height: 40px;
	width: 40px;
	margin: 0 10px;
}

.sidebar .logo .logo-round,
.bootstrap-navbar .logo .logo-round {
	border-radius: 50%;
	display: block;
	overflow: hidden;
}

.sidebar .logo .logo-round img,
.bootstrap-navbar .logo .logo-round img {
	width: 100%;
}

.sidebar .logo:before,
.bootstrap-navbar .logo:before {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 10%;
	width: 80%;
	height: 20px;
	background-color: rgba(255, 255, 255, 0.3);
}

.sidebar .user,
.bootstrap-navbar .user {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 20px;
	margin-top: 14px;
}
.header {
    width: 100%;
    background-color: #021038;
    height: 20px;
    color: #fff;
    position: FIXED;
    z-index: 99999;
    list-style:none;
}

li.l-br{

width: 1%;
    border-left: solid 1px #fff;
    color: #fff;
    height: 17px;
}

.sidebar .user .photo,
.bootstrap-navbar .user .photo {
	overflow: hidden;
	/*border-radius: 50%;  
  height: 80px;*/
	margin: 0 auto;
	text-align: center;
}
ul.nav li{
    padding:0px 8px;
    bottom:0px;
}
.sidebar .user .photo img,
.bootstrap-navbar .user .photo img {
	max-height: 90px;
	/*filter:drop-shadow(0px 0 0 #333) drop-shadow(-3px -1px 0 #fff) drop-shadow(2px 8px 0 #fff) drop-shadow(0px 2px 0 white);*/
}

.sidebar .user a,
.bootstrap-navbar .user a {
	text-align: center;
	color: #FFFFFF;
	padding: 8px 14px;
	text-align: center;
	display: block;
}
::-webkit-scrollbar-track {
    background: #49a312;
}
::-webkit-scrollbar {
    width: 7px;
}
/*.sidebar:after,
.sidebar:before,
.bootstrap-navbar:after,
.bootstrap-navbar:before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
*/
.sidebar:before,
.sidebar:after,
/*.bootstrap-navbar:after {
	background: #fff;
	background: -moz-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #787878), color-stop(100%, rgba(52, 52, 52, 0.7)));
	background: -webkit-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.7) 100%);
	background: -o-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.7) 100%);
	background: -ms-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.7) 100%);
	background: #fff;
	background-size: 150% 150%;
	z-index: 3;
	opacity: 1;
	background: #1c2b36;
	background-size: cover;
	background-repeat: no-repeat;
	width: 230px;
}
*/
.sidebar[data-image]:after,
.sidebar.has-image:after,
.bootstrap-navbar[data-image]:after,
.bootstrap-navbar.has-image:after {
	opacity: .95;
}

.sidebar[data-color="blue"]:after,
.bootstrap-navbar[data-color="blue"]:after {
	background: #447DF7;
	background: -moz-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #447DF7), color-stop(100%, rgba(83, 60, 225, 0.7)));
	background: -webkit-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.7) 100%);
	background: -o-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.7) 100%);
	background: -ms-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.7) 100%);
	background: linear-gradient(to bottom, #447DF7 0%, rgba(83, 60, 225, 0.7) 100%);
	background-size: 150% 150%;
}

.sidebar[data-color="azure"]:after,
.bootstrap-navbar[data-color="azure"]:after {
	background: #23CCEF;
	background: -moz-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #23CCEF), color-stop(100%, rgba(64, 145, 255, 0.7)));
	background: -webkit-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.7) 100%);
	background: -o-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.7) 100%);
	background: -ms-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.7) 100%);
	background: linear-gradient(to bottom, #23CCEF 0%, rgba(64, 145, 255, 0.7) 100%);
	background-size: 150% 150%;
}

.sidebar[data-color="green"]:after,
.bootstrap-navbar[data-color="green"]:after {
	background: #87CB16;
	background: -moz-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #87CB16), color-stop(100%, rgba(109, 192, 48, 0.7)));
	background: -webkit-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.7) 100%);
	background: -o-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.7) 100%);
	background: -ms-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.7) 100%);
	background: linear-gradient(to bottom, #87CB16 0%, rgba(109, 192, 48, 0.7) 100%);
	background-size: 150% 150%;
}

.sidebar[data-color="orange"]:after,
.bootstrap-navbar[data-color="orange"]:after {
	/*background: #FFA534;
  background: -moz-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.7) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFA534), color-stop(100%, rgba(236, 22, 87, 0.7)));
  background: -webkit-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.7) 100%);
  background: -o-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.7) 100%);
  background: -ms-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.7) 100%);
  background: linear-gradient(to bottom, #FFA534 0%, rgba(236, 22, 87, 0.7) 100%);
  background-size: 150% 150%;*/
}

.sidebar[data-color="red"]:after,
.bootstrap-navbar[data-color="red"]:after {
	background: #FB404B;
	background: -moz-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FB404B), color-stop(100%, rgba(187, 5, 2, 0.7)));
	background: -webkit-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.7) 100%);
	background: -o-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.7) 100%);
	background: -ms-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.7) 100%);
	background: linear-gradient(to bottom, #FB404B 0%, rgba(187, 5, 2, 0.7) 100%);
	background-size: 150% 150%;
}
.sidebar-wrappe {
    background: #021038;
    width: 250px;
    height:100%;
}
ul.nav {
    margin-top: 15px;
    padding: 0px;
}
ul.pull-right a {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 11px;

}

.sidebar[data-color="purple"]:after,
.bootstrap-navbar[data-color="purple"]:after {
	background: #9368E9;
	background: -moz-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9368E9), color-stop(100%, rgba(148, 59, 234, 0.7)));
	background: -webkit-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.7) 100%);
	background: -o-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.7) 100%);
	background: -ms-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.7) 100%);
	background: linear-gradient(to bottom, #9368E9 0%, rgba(148, 59, 234, 0.7) 100%);
	background-size: 150% 150%;
}
.collapse.in ul.nav li{
    float:none;
}
.main-panel {
	background: #F5F5F5;
	position: relative;
	float: right;
	width: calc(100% - 250px);
/*	min-height: 100%;*/
	margin-top: 10px;
}

.main-panel&gt;.content {
	padding: 30px 15px;
	min-height: calc(100vh - 136px);
}

.main-panel&gt;.content-no-padding {
	padding: 0;
}

.main-panel&gt;.footer {
	border-top: 1px solid #e7e7e7;
}

.main-panel .navbar {
	margin-bottom: 0;
}

.sidebar,
.main-panel,
.sidebar-wrapper,
.navbar-fixed {
	-webkit-transition-property: top, bottom, width;
	transition-property: top, bottom, width;
	-webkit-transition-duration: .2s, .2s, .35s;
	transition-duration: .2s, .2s, .35s;
	-webkit-transition-timing-function: linear, linear, ease;
	transition-timing-function: linear, linear, ease;
	-webkit-overflow-scrolling: touch;
}

.sidebar,
.main-panel {
	max-height: 100%;
	height: 100%;
}

.perfect-scrollbar-on .sidebar .sidebar-wrapper,
.sidebar .sidebar-wrapper,
.perfect-scrollbar-on .main-panel,
.main-panel {
	overflow: hidden;
	background: #021038;
	background-repeat: no-repeat;
	background-size: cover;
}

.perfect-scrollbar-off .sidebar .sidebar-wrapper,
.perfect-scrollbar-off .main-panel {
	overflow: auto;
}

.visible-on-sidebar-regular {
	display: inline-block !important;
}

.visible-on-sidebar-mini {
	display: none !important;
}

@media (min-width: 992px) {
	.hover-collapse,
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav li:hover .collapse,
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav li:focus .collapse,
	.sidebar-mini .sidebar .user:hover .collapse {
		display: block;
		position: absolute;
		top: 0;
		left: 81px;
		background-color: #FFFFFF;
		border: 1px solid rgba(0, 0, 0, 0.15);
		border: 1px solid #ccc;
		border-radius: 10px;
		padding: 0px;
		-webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
		box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
	}
	.sidebar-mini .visible-on-sidebar-regular {
		display: none !important;
	}
	.sidebar-mini .visible-on-sidebar-mini {
		display: inline-block !important;
	}
	.sidebar-mini .sidebar {
		width: 80px;
		display: block;
		font-weight: 200;
		z-index: 3;
	}
	.sidebar-mini .sidebar .sidebar-wrapper {
		overflow: inherit;
		width: 80px;
		box-shadow: none;
	}
	.sidebar-mini .sidebar .logo {
		display: none;
	}
	.sidebar-mini .sidebar .logo-mini {
		padding: 10px 0px;
		display: block;
		margin: 0px;
		position: relative;
		z-index: 4;
	}
	.sidebar-mini .sidebar .logo-mini:before {
		content: "";
		position: absolute;
		bottom: -1px;
		right: 10%;
		width: 80%;
		height: 1px;
		background-color: rgba(255, 255, 255, 0.3);
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav {
		margin-top: 20px;
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav li&gt;a {
		margin: 5px 10px;
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav li&gt;a:before,
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav li&gt;a:after {
		display: none;
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav p {
		display: none;
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav i {
		float: none;
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav [data-toggle="collapse"]~div&gt;ul&gt;li&gt;a {
		color: #333333;
		padding: 8px 16px;
		margin: 0;
		border-radius: 0;
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav [data-toggle="collapse"]~div&gt;ul&gt;li:last-child&gt;a {
		margin-bottom: 5px;
		border-bottom-left-radius: 3px;
		border-bottom-right-radius: 3px;
	}
	.sidebar-mini .sidebar .sidebar-wrapper&gt;.nav [data-toggle="collapse"]~div&gt;ul&gt;li:first-child&gt;a {
		margin-top: 5px;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
	}
	.sidebar-mini .sidebar .info&gt;a {
		height: 0;
		padding: 0;
		opacity: 0;
	}
	.sidebar-mini .sidebar .info .collapse .nav li&gt;a {
		margin: 0;
		border-radius: 0;
	}
	.sidebar-mini .sidebar .info [data-toggle="collapse"]~div&gt;ul&gt;li:last-child&gt;a {
		margin-bottom: 5px;
		border-bottom-left-radius: 3px;
		border-bottom-right-radius: 3px;
	}
	.sidebar-mini .sidebar .info [data-toggle="collapse"]~div&gt;ul&gt;li:first-child&gt;a {
		margin-top: 5px;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
	}
	.sidebar-mini .sidebar .user {
		position: relative;
	}
	.sidebar-mini .sidebar .user .nav a {
		color: #333333;
	}
	.sidebar-mini .sidebar .user .photo {
		width: 50px;
		height: 50px;
		border-width: 2px;
	}
	.sidebar-mini .sidebar .collapse .nav {
		width: 160px;
		height: auto;
		position: relative;
	}
	.sidebar-mini .sidebar .collapse .nav li&gt;a:hover,
	.sidebar-mini .sidebar .collapse .nav li&gt;a:focus {
		background-color: #F5F5F5;
		opacity: 1;
		text-decoration: none;
	}
	.sidebar-mini .sidebar .collapse .nav:after {
		border-right: 11px solid #fff;
		border-top: 11px solid transparent;
		border-bottom: 11px solid transparent;
		position: absolute;
		content: "";
		display: inline-block;
		left: -10px;
		top: 8px;
	}
	.sidebar-mini .sidebar .collapse .nav li.active&gt;a {
		background-color: #F5F5F5;
		opacity: 1;
		text-decoration: none;
	}
	.sidebar-mini .sidebar .collapse .nav:before {
		border-right: 11px solid #ccc;
		border-top: 11px solid transparent;
		border-bottom: 11px solid transparent;
		position: absolute;
		content: "";
		display: inline-block;
		left: -11px;
		top: 8px;
	}
	.sidebar-mini .sidebar .collapse .nav:after {
		border-right: 11px solid #fff;
		border-top: 11px solid transparent;
		border-bottom: 11px solid transparent;
		position: absolute;
		content: "";
		display: inline-block;
		left: -10px;
		top: 8px;
	}
	.sidebar-mini .main-panel {
		width: calc(100% - 80px);
		margin-left: 80px;
	}
	.sidebar-mini .wrapper {
		height: auto;
	}
	.sidebar-mini .sidebar,
	.sidebar-mini .main-panel {
		overflow: visible;
		max-height: none;
		height: auto;
	}
	.sidebar-mini .navbar-fixed {
		width: calc(100% - 80px);
	}
}

@media print {
	.sidebar {
		display: none !important;
	}
	.main-panel {
		width: 100% !important;
		max-width: none !important;
		max-height: none !important;
	}
	.wrapper {
		height: auto !important;
	}
}

.btn {
	border-width: 1px;
	background-color: transparent;
	font-weight: 400;
	opacity: 0.8;
	filter: alpha(opacity=80);
	padding: 8px 16px;
	border-color: transparent;
	color: #888888;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus,
.btn:active:hover,
.btn.active:focus,
.btn.active:hover,
.open&gt;.btn.dropdown-toggle {
/*	background-color: transparent;
	color: #797979;*/
	border-color: transparent;
}

.btn.disabled,
.btn.disabled:hover,
.btn.disabled:focus,
.btn.disabled.focus,
.btn.disabled:active,
.btn.disabled.active,
.btn:disabled,
.btn:disabled:hover,
.btn:disabled:focus,
.btn:disabled.focus,
.btn:disabled:active,
.btn:disabled.active,
.btn[disabled],
.btn[disabled]:hover,
.btn[disabled]:focus,
.btn[disabled].focus,
.btn[disabled]:active,
.btn[disabled].active,
fieldset[disabled] .btn,
fieldset[disabled] .btn:hover,
fieldset[disabled] .btn:focus,
fieldset[disabled] .btn.focus,
fieldset[disabled] .btn:active,
fieldset[disabled] .btn.active {
	background-color: transparent;
	border-color: #888888;
}

.btn.btn-fill {
	color: #FFFFFF;
	background-color: #888888;
	opacity: 1;
	filter: alpha(opacity=100);
}

.btn.btn-fill:hover,
.btn.btn-fill:focus,
.btn.btn-fill:active,
.btn.btn-fill.active,
.open&gt;.btn.btn-fill.dropdown-toggle {
	background-color: #797979;
	color: #FFFFFF;
}

.btn.btn-fill .caret {
	border-top-color: #FFFFFF;
}

.btn .caret {
	border-top-color: #888888;
}

.btn:hover,
.btn:focus {
	opacity: 1;
	filter: alpha(opacity=100);
	outline: 0 !important;
}

.btn:active,
.btn.active,
.open&gt;.btn.dropdown-toggle {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0 !important;
}

.btn.btn-icon {
	padding: 8px;
}

.btn .btn-label .fa {
	width: 13px;
}

.btn .fa {
	width: 20px;
	color: #fff;
}

.btn-primary {
	border-color: #447DF7;
	color: #447DF7;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.btn-primary.active:focus,
.btn-primary.active:hover,
.open&gt;.btn-primary.dropdown-toggle {
	background-color: transparent;
	color: #2c6cf6;
	border-color: #2c6cf6;
}

.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active,
.btn-primary:disabled,
.btn-primary:disabled:hover,
.btn-primary:disabled:focus,
.btn-primary:disabled.focus,
.btn-primary:disabled:active,
.btn-primary:disabled.active,
.btn-primary[disabled],
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary.active {
	background-color: transparent;
	border-color: #447DF7;
}

.btn-primary.btn-fill {
	color: #FFFFFF;
	background-color: #447DF7;
	opacity: 1;
	filter: alpha(opacity=100);
}

.btn-primary.btn-fill:hover,
.btn-primary.btn-fill:focus,
.btn-primary.btn-fill:active,
.btn-primary.btn-fill.active,
.open&gt;.btn-primary.btn-fill.dropdown-toggle {
	background-color: #2c6cf6;
	color: #FFFFFF;
}

.btn-primary.btn-fill .caret {
	border-top-color: #FFFFFF;
}

.btn-primary .caret {
	border-top-color: #447DF7;
}

.btn-success {
	border-color: #87CB16;
	color: #87CB16;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success:active:focus,
.btn-success:active:hover,
.btn-success.active:focus,
.btn-success.active:hover,
.open&gt;.btn-success.dropdown-toggle {
	background-color: transparent;
	color: #78b414;
	border-color: #78b414;
}

.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled.focus,
.btn-success.disabled:active,
.btn-success.disabled.active,
.btn-success:disabled,
.btn-success:disabled:hover,
.btn-success:disabled:focus,
.btn-success:disabled.focus,
.btn-success:disabled:active,
.btn-success:disabled.active,
.btn-success[disabled],
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled].focus,
.btn-success[disabled]:active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success.active {
	background-color: transparent;
	border-color: #87CB16;
}

.btn-success.btn-fill {
	color: #FFFFFF;
	background-color: #87CB16;
	opacity: 1;
	filter: alpha(opacity=100);
}

.btn-success.btn-fill:hover,
.btn-success.btn-fill:focus,
.btn-success.btn-fill:active,
.btn-success.btn-fill.active,
.open&gt;.btn-success.btn-fill.dropdown-toggle {
	background-color: #78b414;
	color: #FFFFFF;
}

.btn-success.btn-fill .caret {
	border-top-color: #FFFFFF;
}

.btn-success .caret {
	border-top-color: #87CB16;
}

.btn-info {
	border-color: #23CCEF;
	color: #23CCEF;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info:active:focus,
.btn-info:active:hover,
.btn-info.active:focus,
.btn-info.active:hover,
.open&gt;.btn-info.dropdown-toggle {
border-color: #11bfe3;
}

.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled.focus,
.btn-info.disabled:active,
.btn-info.disabled.active,
.btn-info:disabled,
.btn-info:disabled:hover,
.btn-info:disabled:focus,
.btn-info:disabled.focus,
.btn-info:disabled:active,
.btn-info:disabled.active,
.btn-info[disabled],
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled].focus,
.btn-info[disabled]:active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info.active {
	background-color: transparent;
	border-color: #23CCEF;
}

.btn-info.btn-fill {
	color: #FFFFFF;
	background-color: #23CCEF;
	opacity: 1;
	filter: alpha(opacity=100);
}

.btn-info.btn-fill:hover,
.btn-info.btn-fill:focus,
.btn-info.btn-fill:active,
.btn-info.btn-fill.active,
.open&gt;.btn-info.btn-fill.dropdown-toggle {
	background-color: #11bfe3;
	color: #FFFFFF;
}

.btn-info.btn-fill .caret {
	border-top-color: #FFFFFF;
}

.btn-info .caret {
	border-top-color: #23CCEF;
}

.btn-warning {
	border-color: #FFA534;
	color: #FFA534;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning:active:focus,
.btn-warning:active:hover,
.btn-warning.active:focus,
.btn-warning.active:hover,
.open&gt;.btn-warning.dropdown-toggle {
	background-color: transparent;
	color: #ff9510;
	border-color: #ff9510;
}

.btn-warning.disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled.focus,
.btn-warning.disabled:active,
.btn-warning.disabled.active,
.btn-warning:disabled,
.btn-warning:disabled:hover,
.btn-warning:disabled:focus,
.btn-warning:disabled.focus,
.btn-warning:disabled:active,
.btn-warning:disabled.active,
.btn-warning[disabled],
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled].focus,
.btn-warning[disabled]:active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning.active {
	background-color: transparent;
	border-color: #FFA534;
}

.btn-warning.btn-fill {
	color: #FFFFFF;
	background-color: #FFA534;
	opacity: 1;
	filter: alpha(opacity=100);
}

.btn-warning.btn-fill:hover,
.btn-warning.btn-fill:focus,
.btn-warning.btn-fill:active,
.btn-warning.btn-fill.active,
.open&gt;.btn-warning.btn-fill.dropdown-toggle {
	background-color: #ff9510;
	color: #FFFFFF;
}

.btn-warning.btn-fill .caret {
	border-top-color: #FFFFFF;
}

.btn-warning .caret {
	border-top-color: #FFA534;
}

.btn-neutral {
	border-color: #FFFFFF;
	color: #FFFFFF;
}

.btn-neutral:hover,
.btn-neutral:focus,
.btn-neutral:active,
.btn-neutral.active,
.btn-neutral:active:focus,
.btn-neutral:active:hover,
.btn-neutral.active:focus,
.btn-neutral.active:hover,
.open&gt;.btn-neutral.dropdown-toggle {
	background-color: transparent;
	color: #FFFFFF;
	border-color: #FFFFFF;
}

.btn-neutral.disabled,
.btn-neutral.disabled:hover,
.btn-neutral.disabled:focus,
.btn-neutral.disabled.focus,
.btn-neutral.disabled:active,
.btn-neutral.disabled.active,
.btn-neutral:disabled,
.btn-neutral:disabled:hover,
.btn-neutral:disabled:focus,
.btn-neutral:disabled.focus,
.btn-neutral:disabled:active,
.btn-neutral:disabled.active,
.btn-neutral[disabled],
.btn-neutral[disabled]:hover,
.btn-neutral[disabled]:focus,
.btn-neutral[disabled].focus,
.btn-neutral[disabled]:active,
.btn-neutral[disabled].active,
fieldset[disabled] .btn-neutral,
fieldset[disabled] .btn-neutral:hover,
fieldset[disabled] .btn-neutral:focus,
fieldset[disabled] .btn-neutral.focus,
fieldset[disabled] .btn-neutral:active,
fieldset[disabled] .btn-neutral.active {
	background-color: transparent;
	border-color: #FFFFFF;
}

.btn-neutral.btn-fill {
	color: #FFFFFF;
	background-color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
}

.btn-neutral.btn-fill:hover,
.btn-neutral.btn-fill:focus,
.btn-neutral.btn-fill:active,
.btn-neutral.btn-fill.active,
.open&gt;.btn-neutral.btn-fill.dropdown-toggle {
	background-color: #FFFFFF;
	color: #FFFFFF;
}

.btn-neutral.btn-fill .caret {
	border-top-color: #FFFFFF;
}

.btn-neutral .caret {
	border-top-color: #FFFFFF;
}

.btn-neutral:active,
.btn-neutral.active,
.open&gt;.btn-neutral.dropdown-toggle {
	background-color: #FFFFFF;
	color: #888888;
}

.btn-neutral.btn-fill,
.btn-neutral.btn-fill:hover,
.btn-neutral.btn-fill:focus {
	color: #888888;
}

.btn-neutral.btn-fill:hover,
.btn-neutral.btn-fill:focus {
	opacity: 0.86;
	filter: alpha(opacity=86);
}

.btn-neutral.btn-simple:active,
.btn-neutral.btn-simple.active {
	background-color: transparent;
}

.btn:disabled,
.btn[disabled],
.btn.disabled {
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.btn-round {
	border-width: 1px;
	border-radius: 30px !important;
	padding: 8px 16px;
}

.btn-round.btn-icon {
	padding: 8px;
}

.btn-simple {
	border: 0;
	font-size: 16px;
	padding: 8px 16px;
}

.btn-simple.btn-icon {
	padding: 8px;
}

.btn-lg {
	font-size: 18px;
	border-radius: 6px;
	padding: 14px 30px;
	font-weight: 400;
}

.btn-lg.btn-round {
	padding: 15px 30px;
}

.btn-lg.btn-simple {
	padding: 16px 30px;
}

.btn-sm {
	font-size: 12px;
	border-radius: 3px;
	padding: 5px 10px;
}

.btn-sm.btn-round {
	padding: 6px 10px;
}

.btn-sm.btn-simple {
	padding: 7px 10px;
}

.btn-xs {
	font-size: 12px;
	border-radius: 3px;
	padding: 1px 5px;
}

.btn-xs.btn-round {
	padding: 2px 5px;
}

.btn-xs.btn-simple {
	padding: 3px 5px;
}

.btn-wd {
	min-width: 140px;
}

.btn-group.select {
	width: 100%;
}

.btn-group.select .btn {
	text-align: left;
}

.btn-group.select .caret {
	position: absolute;
	top: 50%;
	margin-top: -1px;
	right: 8px;
}


/*     General overwrite     */

body,
.wrapper {
	min-height: 100vh;
	position: relative;
}

a {
	color: #23CCEF;
}

a:hover,
a:focus {
	color: #11bfe3;
	text-decoration: none;
}

a:focus,
a:active,
button::-moz-focus-inner,
input::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"]&gt;input[type="button"]::-moz-focus-inner {
	outline: 0;
}

.ui-slider-handle:focus,
.navbar-toggle,
input:focus {
	outline: 0 !important;
}


/*           Animations              */

.animation-transition-general,
.sidebar .nav p,
.sidebar .user .photo,
.bootstrap-navbar .user .photo,
.sidebar .user a,
.bootstrap-navbar .user a,
.login-page .card {
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.animation-transition-fast,
.bootstrap-datetimepicker-widget table td&gt;div,
.bootstrap-datetimepicker-widget table th&gt;div,
.bootstrap-datetimepicker-widget table th,
.bootstrap-datetimepicker-widget table td span {
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
}

.animation-transition-ultra-fast,
.tagsinput .tag,
.tagsinput .tagsinput-remove-link {
	-webkit-transition: all 60ms ease-in;
	-moz-transition: all 60ms ease-in;
	-o-transition: all 60ms ease-in;
	-ms-transition: all 60ms ease-in;
	transition: all 60ms ease-in;
}

.form-control,
.input-group-addon,
.tagsinput,
.navbar .alert,
.panel-collapse.collapse-hover {
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.sidebar .nav a,
.table&gt;tbody&gt;tr .td-actions .btn,
.caret {
	-webkit-transition: all 150ms ease-in;
	-moz-transition: all 150ms ease-in;
	-o-transition: all 150ms ease-in;
	-ms-transition: all 150ms ease-in;
	transition: all 150ms ease-in;
}

.btn {
	-webkit-transition: all 60ms ease-in;
	-moz-transition: all 60ms ease-in;
	-o-transition: all 60ms ease-in;
	-ms-transition: all 60ms ease-in;
	transition: all 60ms ease-in;
}

.fa {
	width: 18px;
	text-align: center;
}

.margin-top {
	margin-top: 50px;
}

a[data-toggle="collapse"][aria-expanded="true"] .caret,
.btn[data-toggle="collapse"][aria-expanded="true"] .caret,
a.dropdown-toggle[aria-expanded="true"] .caret {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

legend {
	font-size: 22px;
	font-weight: 300;
}

.full-screen-map {
	position: relative;
	width: 100%;
	height: calc(100% - 60px);
}

.form-control::-moz-placeholder {
	color: #C3C3C3;
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control:-moz-placeholder {
	color: #C3C3C3;
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control::-webkit-input-placeholder {
	color: #C3C3C3;
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control:-ms-input-placeholder {
	color: #C3C3C3;
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control {
	background-color: #FFFFFF;
	border: 1px solid #E3E3E3;
	border-radius: 4px;
	color: #565656;
	padding: 8px 12px;
	height: 40px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control:focus {
	background-color: #FFFFFF;
	border: 1px solid #AAAAAA;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0 !important;
	color: #333333;
}

.has-error .form-control,
.has-error .form-control:focus,
.has-success .form-control,
.has-warning .form-control,
.has-success .form-control:focus,
.has-warning .form-control:focus {
	border-color: #E3E3E3;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.has-success .form-control:focus,
.form-control.valid:focus {
	border-color: #87CB16;
}

.has-error .form-control,
.form-control.error,
.has-error .form-control:focus {
	color: #FB404B;
	border-color: #FB404B;
}

.form-control+.form-control-feedback {
	border-radius: 6px;
	font-size: 14px;
	margin-top: -7px;
	position: absolute;
	right: 10px;
	top: 50%;
	vertical-align: middle;
}

.open .form-control {
	border-radius: 4px 4px 0 0;
	border-bottom-color: transparent;
}

.input-sm {
	height: 30px;
	padding: 5px 10px;
}

.input-lg {
	height: 55px;
	padding: 14px 30px;
}

.has-error .form-control-feedback {
	color: #FB404B;
}

.has-success .form-control-feedback {
	color: #87CB16;
}

.has-success .control-label {
	color: #87CB16;
}

.has-warning .control-label {
	color: #FFA534;
}

.has-error .control-label {
	color: #FB404B;
}

.input-group-addon {
	background-color: #FFFFFF;
	border: 1px solid #E3E3E3;
	border-radius: 4px;
}

.has-success .input-group-addon,
.has-error .input-group-addon {
	background-color: #FFFFFF;
	border: 1px solid #E3E3E3;
}

.has-error .input-group-addon,
.has-error.input-group-focus .input-group-addon {
	border-color: #FB404B;
	color: #FB404B;
}

.has-success.input-group-focus .input-group-addon {
	border-color: #87CB16;
}

.has-error .form-control:focus+.input-group-addon {
	border-color: #FB404B;
	color: #FB404B;
}

.has-success .form-control:focus+.input-group-addon {
	border-color: #87CB16;
	color: #87CB16;
}

.form-control:focus+.input-group-addon,
.form-control:focus~.input-group-addon {
	background-color: #FFFFFF;
	border-color: #9A9A9A;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child&gt;.dropdown-toggle,
.input-group-btn:last-child&gt;.btn:not(:last-child):not(.dropdown-toggle) {
	border-right: 0 none;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child&gt;.dropdown-toggle,
.input-group-btn:first-child&gt;.btn:not(:first-child) {
	border-left: 0 none;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #F5F5F5;
	color: #888888;
	cursor: not-allowed;
}

.input-group-btn .btn {
	border-width: 1px;
	padding: 8px 16px;
}

.input-group-btn .btn-default:not(.btn-fill) {
	border-color: #DDDDDD;
}

.input-group-btn:last-child&gt;.btn {
	margin-left: 0;
}

.input-group-focus .input-group-addon {
	border-color: #AAAAAA;
}

.progress {
	background-color: #E5E5E5;
	border-radius: 3px;
	box-shadow: none;
	height: 4px;
}

.progress-thin {
	height: 2px;
}

.progress-bar,
.progress-bar-primary {
	background-color: #447DF7;
}

.progress-bar-info {
	background-color: #23CCEF;
}

.progress-bar-success {
	background-color: #87CB16;
}

.progress-bar-warning {
	background-color: #FFA534;
}

.progress-bar-danger {
	background-color: #FB404B;
}


/*!
 * jQuery UI Slider 1.10.4
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/slider/#theming
 */

.ui-slider {
	position: relative;
	text-align: left;
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}


/* For IE8 - See #6727 */

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: 4px;
}

.ui-slider-horizontal .ui-slider-handle {
	margin-left: -10px;
	top: -7px;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}


/* Component containers
----------------------------------*/

.ui-widget {
	font-size: 1.1em;
}

.ui-widget .ui-widget {
	font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-size: 1em;
}

.ui-widget-content {
	background-color: #E5E5E5;
}

.ui-widget-content a {
	color: #222222;
}

.ui-widget-header {
	background: #999999;
	color: #222222;
	font-weight: bold;
}

.ui-widget-header a {
	color: #222222;
}

.slider-primary .ui-widget-header {
	background-color: #447DF7;
}

.slider-info .ui-widget-header {
	background-color: #23CCEF;
}

.slider-success .ui-widget-header {
	background-color: #87CB16;
}

.slider-warning .ui-widget-header {
	background-color: #FFA534;
}

.slider-danger .ui-widget-header {
	background-color: #FB404B;
}


/* Interaction states
----------------------------------*/

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	background: white;
	/* Old browsers */
	background: -moz-linear-gradient(top, white 0%, #f1f1f2 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f1f1f2));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, white 0%, #f1f1f2 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, white 0%, #f1f1f2 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, white 0%, #f1f1f2 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, white 0%, #f1f1f2 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1f1f2', GradientType=0);
	/* IE6-9 */
	border-radius: 50%;
	box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 2px rgba(0, 0, 0, 0.4);
	height: 15px;
	width: 15px;
	cursor: pointer;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #212121;
	text-decoration: none;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}


/* Interaction Cues
----------------------------------*/

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee;
	color: #363636;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #FB404B;
	background-color: #FB404B;
	color: #FB404B;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #FB404B;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #FB404B;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter: Alpha(Opacity=70);
	font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter: Alpha(Opacity=35);
	background-image: none;
}

.ui-state-disabled .ui-icon {
	filter: Alpha(Opacity=35);
	/* For IE8 - See #6059 */
}

form label.radio,
form label.checkbox {
	font-size: 14px;
	text-transform: none;
	cursor: pointer;
}

.form-horizontal .checkbox,
.form-horizontal .radio {
	padding-top: 0;
}

.form-horizontal .checkbox:first-child,
.form-horizontal .checkbox.checkbox-inline,
.form-horizontal .checkbox.radio-inline,
.form-horizontal .radio:first-child,
.form-horizontal .radio.checkbox-inline,
.form-horizontal .radio.radio-inline {
	margin-top: 10px;
}

star {
	color: #FB404B;
	padding-left: 3px;
}

@media (min-width: 992px) {
	.form-horizontal .control-label {
		padding-top: 12px !important;
	}
	.form-horizontal code {
		margin-top: 8px;
		display: inline-block;
	}
}

.alert {
	border: 0;
	border-radius: 0;
	color: #FFFFFF;
	padding: 10px 15px;
	font-size: 14px;
}

.container .alert {
	border-radius: 4px;
}

.navbar .alert {
	border-radius: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 85px;
	width: 100%;
	z-index: 3;
}

.navbar:not(.navbar-transparent) .alert {
	top: 70px;
}

.alert span[data-notify="icon"] {
	font-size: 30px;
	display: block;
	left: 15px;
	position: absolute;
	top: 50%;
	margin-top: -15px;
}

.alert button.close {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -13px;
	z-index: 1033;
	background-color: #FFFFFF;
	display: block;
	border-radius: 50%;
	opacity: .4;
	line-height: 11px;
	width: 25px;
	height: 25px;
	outline: 0 !important;
	text-align: center;
	padding: 3px;
	font-weight: 300;
}

.alert button.close:hover {
	opacity: .55;
}

.alert .close~span {
	display: block;
	max-width: 89%;
}

.alert[data-notify="container"] {
	padding: 10px 10px 10px 20px;
	border-radius: 4px;
}

.alert.alert-with-icon {
	padding-left: 65px;
}

.alert-info {
	background-color: #6addf4;
}

.alert-success {
	background-color: #a1e82c;
}

.alert-warning {
	background-color: #ffbc67;
}

.alert-danger {
	background-color: #fc727a;
}

.table .radio,
.table .checkbox {
	position: relative;
	height: 20px;
	display: block;
	width: 20px;
	padding: 0px 0px;
	margin: 0px 5px;
	text-align: center;
}

.table .radio .icons,
.table .checkbox .icons {
	left: 5px;
}

.table&gt;thead&gt;tr&gt;th,
.table&gt;tbody&gt;tr&gt;th,
.table&gt;tfoot&gt;tr&gt;th,
.table&gt;thead&gt;tr&gt;td,
.table&gt;tbody&gt;tr&gt;td,
.table&gt;tfoot&gt;tr&gt;td {
	padding: 12px 8px;
	vertical-align: middle;
	border-color: #E3E3E3;
}

.table&gt;thead&gt;tr&gt;th {
	border-bottom-width: 1px;
	font-size: 12px;
	text-transform: uppercase;
	color: #9A9A9A;
	font-weight: 400;
	padding-bottom: 5px;
}

.table .td-actions .btn {
	opacity: 0.36;
	filter: alpha(opacity=36);
}

.table .td-actions .btn.btn-xs {
	padding-left: 3px;
	padding-right: 3px;
}

.table .td-actions {
	min-width: 90px;
}

.table&gt;tbody&gt;tr {
	position: relative;
}

.table&gt;tbody&gt;tr:hover .td-actions .btn {
	opacity: 1;
	filter: alpha(opacity=100);
}

.table-bigboy&gt;thead&gt;tr&gt;th {
	font-size: 14px;
	text-transform: uppercase;
	color: #9A9A9A;
	font-weight: 400;
}

.table-bigboy&gt;tbody&gt;tr&gt;td {
	font-size: 14px;
}

.table-bigboy&gt;tbody&gt;tr&gt;td b {
	display: block;
	margin-bottom: 5px;
}

.table-bigboy .td-name {
	font-weight: 300;
	font-size: 18px;
}

.table-bigboy .td-name {
	min-width: 240px;
}

.table-bigboy .td-number {
	text-align: right;
	min-width: 110px;
}

.table-bigboy .td-number small {
	margin-right: 3px;
}

.table-bigboy .td-actions {
	width: 60px;
	min-width: auto;
}

.table-bigboy .td-actions .btn {
	float: right;
}

.table-bigboy .img-container {
	width: 180px;
	height: 120px;
	overflow: hidden;
	display: block;
	border-radius: 6px;
}

.table-bigboy .img-container img {
	width: 100%;
}

.table&gt;thead&gt;tr&gt;td.success,
.table&gt;thead&gt;tr&gt;th.success,
.table&gt;thead&gt;tr.success&gt;td,
.table&gt;thead&gt;tr.success&gt;th,
.table&gt;tbody&gt;tr&gt;td.success,
.table&gt;tbody&gt;tr&gt;th.success,
.table&gt;tbody&gt;tr.success&gt;td,
.table&gt;tbody&gt;tr.success&gt;th,
.table&gt;tfoot&gt;tr&gt;td.success,
.table&gt;tfoot&gt;tr&gt;th.success,
.table&gt;tfoot&gt;tr.success&gt;td,
.table&gt;tfoot&gt;tr.success&gt;th {
	background-color: rgba(135, 203, 22, 0.2);
}

.table-hover&gt;tbody&gt;tr&gt;td.success:hover,
.table-hover&gt;tbody&gt;tr&gt;th.success:hover,
.table-hover&gt;tbody&gt;tr.success:hover&gt;td,
.table-hover&gt;tbody&gt;tr:hover&gt;.success,
.table-hover&gt;tbody&gt;tr.success:hover&gt;th {
	background-color: rgba(144, 217, 23, 0.2);
}

.table&gt;thead&gt;tr&gt;td.info,
.table&gt;thead&gt;tr&gt;th.info,
.table&gt;thead&gt;tr.info&gt;td,
.table&gt;thead&gt;tr.info&gt;th,
.table&gt;tbody&gt;tr&gt;td.info,
.table&gt;tbody&gt;tr&gt;th.info,
.table&gt;tbody&gt;tr.info&gt;td,
.table&gt;tbody&gt;tr.info&gt;th,
.table&gt;tfoot&gt;tr&gt;td.info,
.table&gt;tfoot&gt;tr&gt;th.info,
.table&gt;tfoot&gt;tr.info&gt;td,
.table&gt;tfoot&gt;tr.info&gt;th {
	background-color: rgba(35, 204, 239, 0.2);
}

.table-hover&gt;tbody&gt;tr&gt;td.info:hover,
.table-hover&gt;tbody&gt;tr&gt;th.info:hover,
.table-hover&gt;tbody&gt;tr.info:hover&gt;td,
.table-hover&gt;tbody&gt;tr:hover&gt;.info,
.table-hover&gt;tbody&gt;tr.info:hover&gt;th {
	background-color: rgba(49, 207, 240, 0.2);
}

.table&gt;thead&gt;tr&gt;td.warning,
.table&gt;thead&gt;tr&gt;th.warning,
.table&gt;thead&gt;tr.warning&gt;td,
.table&gt;thead&gt;tr.warning&gt;th,
.table&gt;tbody&gt;tr&gt;td.warning,
.table&gt;tbody&gt;tr&gt;th.warning,
.table&gt;tbody&gt;tr.warning&gt;td,
.table&gt;tbody&gt;tr.warning&gt;th,
.table&gt;tfoot&gt;tr&gt;td.warning,
.table&gt;tfoot&gt;tr&gt;th.warning,
.table&gt;tfoot&gt;tr.warning&gt;td,
.table&gt;tfoot&gt;tr.warning&gt;th {
	background-color: rgba(255, 165, 52, 0.2);
}

.table-hover&gt;tbody&gt;tr&gt;td.warning:hover,
.table-hover&gt;tbody&gt;tr&gt;th.warning:hover,
.table-hover&gt;tbody&gt;tr.warning:hover&gt;td,
.table-hover&gt;tbody&gt;tr:hover&gt;.warning,
.table-hover&gt;tbody&gt;tr.warning:hover&gt;th {
	background-color: rgba(255, 172, 67, 0.2);
}

.table&gt;thead&gt;tr&gt;td.danger,
.table&gt;thead&gt;tr&gt;th.danger,
.table&gt;thead&gt;tr.danger&gt;td,
.table&gt;thead&gt;tr.danger&gt;th,
.table&gt;tbody&gt;tr&gt;td.danger,
.table&gt;tbody&gt;tr&gt;th.danger,
.table&gt;tbody&gt;tr.danger&gt;td,
.table&gt;tbody&gt;tr.danger&gt;th,
.table&gt;tfoot&gt;tr&gt;td.danger,
.table&gt;tfoot&gt;tr&gt;th.danger,
.table&gt;tfoot&gt;tr.danger&gt;td,
.table&gt;tfoot&gt;tr.danger&gt;th {
	background-color: rgba(251, 64, 75, 0.2);
}

.table-hover&gt;tbody&gt;tr&gt;td.danger:hover,
.table-hover&gt;tbody&gt;tr&gt;th.danger:hover,
.table-hover&gt;tbody&gt;tr.danger:hover&gt;td,
.table-hover&gt;tbody&gt;tr:hover&gt;.danger,
.table-hover&gt;tbody&gt;tr.danger:hover&gt;th {
	background-color: rgba(251, 79, 89, 0.2);
}

.tagsinput {
	height: 40px;
	overflow-y: auto;
	text-align: left;
}

.tagsinput .tag {
	cursor: pointer;
	overflow: hidden;
	position: relative;
	margin: 5px 3px 5px 0;
	padding: 2px 12px;
	border: 1px solid #888888;
	border-radius: 3px;
	color: #888888;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
}

.tagsinput .tag:hover {
	padding-left: 10px;
	padding-right: 14px;
}

.tagsinput .tagsinput-add {
	color: #333333;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	padding: 5px 6px;
	margin: 5px 0 0;
	vertical-align: top;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.tagsinput .tagsinput-add:hover,
.tagsinput .tagsinput-add:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}

.tagsinput .tagsinput-add:before {
	content: "\f067";
	font-family: "FontAwesome";
}

.tagsinput .tagsinput-remove-link {
	color: #888888;
	cursor: pointer;
	font-size: 12px;
	padding: 2px 0;
	position: absolute;
	right: 0;
	opacity: 0;
	text-align: right;
	text-decoration: none;
	top: 0;
	width: 100%;
	z-index: 2;
}

.tagsinput .tag:hover .tagsinput-remove-link {
	opacity: 1;
	padding-right: 6px;
}

.tagsinput .tagsinput-remove-link:before {
	content: "\f00d";
	font-family: "FontAwesome";
}

.tagsinput .tagsinput-add-container {
	display: inline-block;
	vertical-align: middle;
}

.tagsinput input {
	background: transparent;
	border: none;
	color: #333333;
	margin: 0;
	outline: medium none !important;
	padding: 0 0 0 5px;
	vertical-align: top;
	width: 30px;
	height: 40px;
}

.tagsinput.tag-blue .tag,
.tagsinput.tag-blue .tagsinput-remove-link {
	border-color: #447DF7;
	color: #447DF7;
}

.tagsinput.tag-azure .tag,
.tagsinput.tag-azure .tagsinput-remove-link {
	border-color: #23CCEF;
	color: #23CCEF;
}

.tagsinput.tag-green .tag,
.tagsinput.tag-green .tagsinput-remove-link {
	border-color: #87CB16;
	color: #87CB16;
}

.tagsinput.tag-orange .tag,
.tagsinput.tag-orange .tagsinput-remove-link {
	border-color: #FFA534;
	color: #FFA534;
}

.tagsinput.tag-red .tag,
.tagsinput.tag-red .tagsinput-remove-link {
	border-color: #FB404B;
	color: #FB404B;
}

.tagsinput.tag-fill.tag-blue .tag {
	border-color: #447DF7;
	color: #FFFFFF;
	background-color: #447DF7;
}

.tagsinput.tag-fill.tag-azure .tag {
	border-color: #23CCEF;
	color: #FFFFFF;
	background-color: #23CCEF;
}

.tagsinput.tag-fill.tag-green .tag {
	border-color: #87CB16;
	color: #FFFFFF;
	background-color: #87CB16;
}

.tagsinput.tag-fill.tag-orange .tag {
	border-color: #FFA534;
	color: #FFFFFF;
	background-color: #FFA534;
}

.tagsinput.tag-fill.tag-red .tag {
	border-color: #FB404B;
	color: #FFFFFF;
	background-color: #FB404B;
}

.tagsinput.tag-fill .tagsinput-remove-link {
	color: #FFFFFF;
}

.tooltip {
	font-size: 14px;
	font-weight: 600;
}

.tooltip.top {
	margin-top: -11px;
	padding: 0;
}

.tooltip.top .tooltip-inner:after {
	border-top: 11px solid #FAE6A4;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	bottom: -10px;
}

.tooltip.top .tooltip-inner:before {
	border-top: 11px solid rgba(0, 0, 0, 0.2);
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	bottom: -11px;
}

.tooltip.bottom {
	margin-top: 11px;
	padding: 0;
}

.tooltip.bottom .tooltip-inner:after {
	border-bottom: 11px solid #FAE6A4;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	top: -10px;
}

.tooltip.bottom .tooltip-inner:before {
	border-bottom: 11px solid rgba(0, 0, 0, 0.2);
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	top: -11px;
}

.tooltip.left {
	margin-left: -11px;
	padding: 0;
}

.tooltip.left .tooltip-inner:after {
	border-left: 11px solid #FAE6A4;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	right: -10px;
	left: auto;
	margin-left: 0;
}

.tooltip.left .tooltip-inner:before {
	border-left: 11px solid rgba(0, 0, 0, 0.2);
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	right: -11px;
	left: auto;
	margin-left: 0;
}

.tooltip.right {
	margin-left: 11px;
	padding: 0;
}

.tooltip.right .tooltip-inner:after {
	border-right: 11px solid #FAE6A4;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	left: -10px;
	top: 0;
	margin-left: 0;
}

.tooltip.right .tooltip-inner:before {
	border-right: 11px solid rgba(0, 0, 0, 0.2);
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	left: -11px;
	top: 0;
	margin-left: 0;
}

.tooltip-arrow {
	display: none;
	opacity: 0;
}

.tooltip-inner {
	background-color: #FAE6A4;
	border-radius: 4px;
	box-shadow: 0 1px 13px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(115, 71, 38, 0.23);
	color: #734726;
	max-width: 280px;
	min-width: 90px;
	padding: 6px 10px;
	text-align: center;
	text-decoration: none;
}

.tooltip-inner:after {
	content: "";
	display: inline-block;
	left: 100%;
	margin-left: -60%;
	position: absolute;
}

.tooltip-inner:before {
	content: "";
	display: inline-block;
	left: 100%;
	margin-left: -60%;
	position: absolute;
}

.popover {
	padding: 0;
	border-radius: 10px;
	z-index: 1031;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.popover-title {
	font-size: 16px;
	background-color: #6addf4;
	font-weight: normal;
	line-height: 22px;
	padding: 8px 15px;
	margin: 0;
	color: #FFFFFF;
	text-align: center;
	border-radius: 10px 10px 0 0;
}

.popover-content {
	padding: 9px 15px;
}

.popover .arrow {
	border: 0;
}

.popover.top .arrow {
	margin-left: 0;
}

.popover.bottom .arrow:after {
	border-bottom-color: #6addf4;
}

.popover-filter {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
	background-color: #000000;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: hidden;
	transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}

.popover-filter.in {
	visibility: visible;
	opacity: 0.2;
	filter: alpha(opacity=20);
	transition-delay: 0s;
}


/*      Checkbox and radio         */

.checkbox,
.radio {
	margin-bottom: 12px;
	padding-left: 24px;
	position: relative;
	-webkit-transition: color 0.25s linear;
	transition: color 0.25s linear;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.5;
	color: #333333;
}

.checkbox input,
.radio input {
	outline: none !important;
	opacity: 0;
	margin-left: -9999px;
	position: absolute;
}

.checkbox .icons,
.radio .icons {
	color: #DDDDDD;
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 0;
	width: 20px;
	text-align: center;
	line-height: 21px;
	font-size: 20px;
	cursor: pointer;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.checkbox .icons .first-icon,
.radio .icons .first-icon,
.checkbox .icons .second-icon,
.radio .icons .second-icon {
	display: inline-table;
	position: absolute;
	left: 0;
	top: 0;
	background-color: transparent;
	margin: 0;
	opacity: 1;
	filter: alpha(opacity=100);
}

.checkbox .icons .second-icon,
.radio .icons .second-icon {
	opacity: 0;
	filter: alpha(opacity=0);
}

.checkbox:hover,
.radio:hover {
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.checkbox:hover .first-icon,
.radio:hover .first-icon {
	opacity: 0;
	filter: alpha(opacity=0);
}

.checkbox:hover .second-icon,
.radio:hover .second-icon {
	opacity: 1;
	filter: alpha(opacity=100);
}

.checkbox.checked .icons,
.radio.checked .icons {
	color: #23CCEF;
}

.checkbox.checked .first-icon,
.radio.checked .first-icon {
	opacity: 0;
	filter: alpha(opacity=0);
}

.checkbox.checked .second-icon,
.radio.checked .second-icon {
	opacity: 1;
	filter: alpha(opacity=100);
	color: #23CCEF;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.checkbox.disabled,
.radio.disabled {
	cursor: default;
	color: #DDDDDD !important;
}

.checkbox.disabled .icons,
.radio.disabled .icons {
	color: #DDDDDD !important;
}

.checkbox.disabled .first-icon,
.radio.disabled .first-icon {
	opacity: 1;
	filter: alpha(opacity=100);
}

.checkbox.disabled .second-icon,
.radio.disabled .second-icon {
	opacity: 0;
	filter: alpha(opacity=0);
}

.checkbox.disabled.checked .icons,
.radio.disabled.checked .icons {
	color: #DDDDDD;
}

.checkbox.disabled.checked .first-icon,
.radio.disabled.checked .first-icon {
	opacity: 0;
	filter: alpha(opacity=0);
}

.checkbox.disabled.checked .second-icon,
.radio.disabled.checked .second-icon {
	opacity: 1;
	filter: alpha(opacity=100);
	color: #D9D9D9;
}

.checkbox label.error,
.radio label.error {
	position: absolute;
	top: 15px;
	left: 5px;
}


/* ============================================================
 * bootstrapSwitch v1.3 by Larentis Mattia @spiritualGuru
 * http://www.larentis.eu/switch/
 * ============================================================
 * Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 * ============================================================ */

.has-switch {
	border-radius: 30px;
	cursor: pointer;
	display: inline-block;
	line-height: 1.72222;
	overflow: hidden;
	position: relative;
	text-align: left;
	width: 60px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	/*   this code is for fixing safari bug with hidden overflow for border-radius   */
	-webkit-mask: url("../img/mask.png") 0 0 no-repeat;
	-webkit-mask-size: 60px 28px;
	mask: url("../img/mask.png") 0 0 no-repeat;
}

.has-switch.deactivate {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: default !important;
}

.has-switch.deactivate label,
.has-switch.deactivate span {
	cursor: default !important;
}

.has-switch&gt;div {
	position: relative;
	top: 0;
	width: 100px;
}

.has-switch&gt;div.switch-animate {
	-webkit-transition: left 0.25s ease-out;
	transition: left 0.25s ease-out;
}

.has-switch&gt;div.switch-off {
	left: -32px;
}

.has-switch&gt;div.switch-on {
	left: 0;
}

.has-switch&gt;div label {
	background-color: #FFFFFF;
	background: white;
	background: -moz-linear-gradient(top, white 0%, #f1f1f2 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f1f1f2));
	background: -webkit-linear-gradient(top, white 0%, #f1f1f2 100%);
	background: -o-linear-gradient(top, white 0%, #f1f1f2 100%);
	background: -ms-linear-gradient(top, white 0%, #f1f1f2 100%);
	background: linear-gradient(to bottom, white 0%, #f1f1f2 100%);
	background-size: 150% 150%;
	box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 1px rgba(0, 0, 0, 0.25);
	cursor: pointer;
}

.has-switch input[type=checkbox] {
	display: none;
}

.has-switch span {
	/*     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset; */
	cursor: pointer;
	float: left;
	font-size: 11px;
	font-weight: 400;
	height: 28px;
	line-height: 15px;
	margin: 0;
	padding-bottom: 6px;
	padding-top: 7px;
	position: relative;
	text-align: center;
	text-indent: -10px;
	width: 50%;
	z-index: 1;
	-webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}

.has-switch span.switch-left {
	background-color: #23CCEF;
	border-left: 1px solid transparent;
	border-radius: 30px 0 0 30px;
	color: #FFFFFF;
}

.has-switch .switch-off span.switch-left {
	background-color: #DDDDDD;
}

.has-switch span.switch-right {
	border-radius: 0 30px 30px 0;
	background-color: #23CCEF;
	color: #ffffff;
	text-indent: -3px;
}

.has-switch .switch-off span.switch-right {
	background-color: #DDDDDD;
}

.has-switch label {
	border-radius: 12px;
	float: left;
	height: 22px;
	margin: 3px -15px;
	padding: 0;
	position: relative;
	transition: all 0.25s ease-out 0s;
	vertical-align: middle;
	width: 22px;
	z-index: 100;
	-webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}

.has-switch .switch-on .fa-check:before {
	margin-left: 10px;
}

.has-switch:hover .switch-on label {
	margin: 3px -19px;
	width: 26px;
}

.has-switch:hover .switch-off label {
	margin: 3px -15px;
	width: 26px;
}

.nav&gt;li&gt;a:hover,
.nav&gt;li&gt;a:focus {
	background-color: transparent;
}

.navbar {
	border: 0;
	font-size: 16px;
	border-radius: 0;
}

.navbar .navbar-minimize {
	float: left;
	margin: 3px 15px;
}

.navbar .navbar-brand {
	font-weight: 400;
	margin: 7px 0px;
	padding: 15px 15px;
	font-size: 20px;
}

.navbar .navbar-nav&gt;li&gt;a {
	padding: 10px 15px;
	margin: 10px 3px;
	position: relative;
}

.navbar .navbar-nav&gt;li&gt;a.btn {
	margin: 15px 3px;
	padding: 8px 16px;
}

.navbar .navbar-nav&gt;li&gt;a.btn-round {
	margin: 16px 3px;
}

.navbar .navbar-nav&gt;li&gt;a [class^="fa"] {
	font-size: 19px;
	position: relative;
	line-height: 16px;
	top: 1px;
}

.navbar .navbar-nav p {
	display: inline-block;
	padding-left: 10px;
	margin-bottom: 0;
}

.navbar .navbar-nav .notification {
	position: absolute;
	background-color: #FB404B;
	text-align: center;
	border-radius: 10px;
	min-width: 18px;
	padding: 0 5px;
	height: 18px;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 18px;
	top: 2px;
	left: 7px;
}

.navbar .btn {
	margin: 10px 3px;
	font-size: 14px;
}

.navbar .btn-simple {
	font-size: 16px;
}

.navbar.fixed {
	width: calc(100% - $sidebar-width);
	right: 0;
	left: auto;
	border-radius: 0;
}

.navbar.navbar-absolute {
	position: absolute;
	width: 100%;
	z-index: 1030;
}

.navbar-fixed {
	position: fixed;
	width: 100%;
	right: 0;
	z-index: 1031;
}

.navbar-fixed~.main-panel&gt;.content {
	padding-top: 95px;
	min-height: calc(100% - 71px);
}

.navbar-nav&gt;li&gt;.dropdown-menu {
	border-radius: 10px;
	margin-top: -5px;
}

.navbar-transparent .navbar-brand,
[class*="navbar-ct"] .navbar-brand {
	color: #FFFFFF;
	opacity: 0.9;
	filter: alpha(opacity=90);
}

.navbar-transparent .navbar-brand:focus,
.navbar-transparent .navbar-brand:hover,
[class*="navbar-ct"] .navbar-brand:focus,
[class*="navbar-ct"] .navbar-brand:hover {
	background-color: transparent;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-transparent .navbar-nav&gt;li&gt;a:not(.btn),
[class*="navbar-ct"] .navbar-nav&gt;li&gt;a:not(.btn) {
	color: #FFFFFF;
	border-color: #FFFFFF;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.navbar-transparent .navbar-nav&gt;.active&gt;a:not(.btn),
.navbar-transparent .navbar-nav&gt;.active&gt;a:hover:not(.btn),
.navbar-transparent .navbar-nav&gt;.active&gt;a:focus:not(.btn),
.navbar-transparent .navbar-nav&gt;li&gt;a:hover:not(.btn),
.navbar-transparent .navbar-nav&gt;li&gt;a:focus:not(.btn),
[class*="navbar-ct"] .navbar-nav&gt;.active&gt;a:not(.btn),
[class*="navbar-ct"] .navbar-nav&gt;.active&gt;a:hover:not(.btn),
[class*="navbar-ct"] .navbar-nav&gt;.active&gt;a:focus:not(.btn),
[class*="navbar-ct"] .navbar-nav&gt;li&gt;a:hover:not(.btn),
[class*="navbar-ct"] .navbar-nav&gt;li&gt;a:focus:not(.btn) {
	background-color: transparent;
	border-radius: 3px;
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-transparent .navbar-nav .nav&gt;li&gt;a.btn:hover,
[class*="navbar-ct"] .navbar-nav .nav&gt;li&gt;a.btn:hover {
	background-color: transparent;
}

.navbar-transparent .navbar-nav&gt;.dropdown&gt;a .caret,
.navbar-transparent .navbar-nav&gt;.dropdown&gt;a:hover .caret,
.navbar-transparent .navbar-nav&gt;.dropdown&gt;a:focus .caret,
[class*="navbar-ct"] .navbar-nav&gt;.dropdown&gt;a .caret,
[class*="navbar-ct"] .navbar-nav&gt;.dropdown&gt;a:hover .caret,
[class*="navbar-ct"] .navbar-nav&gt;.dropdown&gt;a:focus .caret {
	border-bottom-color: #FFFFFF;
	border-top-color: #FFFFFF;
}

.navbar-transparent .navbar-nav&gt;.open&gt;a,
.navbar-transparent .navbar-nav&gt;.open&gt;a:hover,
.navbar-transparent .navbar-nav&gt;.open&gt;a:focus,
[class*="navbar-ct"] .navbar-nav&gt;.open&gt;a,
[class*="navbar-ct"] .navbar-nav&gt;.open&gt;a:hover,
[class*="navbar-ct"] .navbar-nav&gt;.open&gt;a:focus {
	background-color: transparent;
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-transparent .btn-default,
[class*="navbar-ct"] .btn-default {
	color: #FFFFFF;
	border-color: #FFFFFF;
}

.navbar-transparent .btn-default.btn-fill,
[class*="navbar-ct"] .btn-default.btn-fill {
	color: #9A9A9A;
	background-color: #FFFFFF;
	opacity: 0.9;
	filter: alpha(opacity=90);
}

.navbar-transparent .btn-default.btn-fill:hover,
.navbar-transparent .btn-default.btn-fill:focus,
.navbar-transparent .btn-default.btn-fill:active,
.navbar-transparent .btn-default.btn-fill.active,
.navbar-transparent .open .dropdown-toggle.btn-fill.btn-default,
[class*="navbar-ct"] .btn-default.btn-fill:hover,
[class*="navbar-ct"] .btn-default.btn-fill:focus,
[class*="navbar-ct"] .btn-default.btn-fill:active,
[class*="navbar-ct"] .btn-default.btn-fill.active,
[class*="navbar-ct"] .open .dropdown-toggle.btn-fill.btn-default {
	border-color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-transparent .dropdown-menu .divider {
	background-color: rgba(255, 255, 255, 0.2);
}

.nav-open .nav .caret {
	border-bottom-color: #FFFFFF;
	border-top-color: #FFFFFF;
}

.navbar-default {
	background-color: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-default .navbar-nav&gt;li&gt;a:not(.btn) {
	color: #9A9A9A;
}

.navbar-default .navbar-nav&gt;.active&gt;a,
.navbar-default .navbar-nav&gt;.active&gt;a:not(.btn):hover,
.navbar-default .navbar-nav&gt;.active&gt;a:not(.btn):focus,
.navbar-default .navbar-nav&gt;li&gt;a:not(.btn):hover,
.navbar-default .navbar-nav&gt;li&gt;a:not(.btn):focus {
	background-color: transparent;
	border-radius: 3px;
	color: #23CCEF;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-default .navbar-nav&gt;.dropdown&gt;a:hover .caret,
.navbar-default .navbar-nav&gt;.dropdown&gt;a:focus .caret {
	border-bottom-color: #23CCEF;
	border-top-color: #23CCEF;
}

.navbar-default .navbar-nav&gt;.open&gt;a,
.navbar-default .navbar-nav&gt;.open&gt;a:hover,
.navbar-default .navbar-nav&gt;.open&gt;a:focus {
	background-color: transparent;
	color: #23CCEF;
}

.navbar-default .navbar-nav .navbar-toggle:hover,
.navbar-default .navbar-nav .navbar-toggle:focus {
	background-color: transparent;
}

.navbar-default:not(.navbar-transparent) .btn-default:hover {
	color: #23CCEF;
	border-color: #23CCEF;
}

.navbar-default:not(.navbar-transparent) .btn-neutral,
.navbar-default:not(.navbar-transparent) .btn-neutral:hover,
.navbar-default:not(.navbar-transparent) .btn-neutral:active {
	color: #9A9A9A;
}


/*      Navbar with icons            */

.navbar-icons.navbar .navbar-brand {
	margin-top: 12px;
	margin-bottom: 12px;
}

.navbar-icons .navbar-nav&gt;li&gt;a {
	text-align: center;
	padding: 6px 15px;
	margin: 6px 3px;
}

.navbar-icons .navbar-nav [class^="pe"] {
	font-size: 30px;
	position: relative;
}

.navbar-icons .navbar-nav p {
	margin: 3px 0 0;
}

.navbar-form {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.navbar-form .form-control {
	padding: 8px 6px;
	height: 40px;
	border-radius: 0;
	border: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #E3E3E3;
}

.navbar-transparent .navbar-form .form-control,
[class*="navbar-ct"] .navbar-form .form-control,
.navbar-transparent .navbar-form .input-group-addon,
[class*="navbar-ct"] .navbar-form .input-group-addon {
	color: #FFFFFF;
	border: 0;
	background-color: rgba(255, 255, 255, 0.13);
}

[class*="navbar-ct"] .navbar-form .form-control:focus,
[class*="navbar-ct"] .navbar-form .input-group-focus .input-group-addon {
	background-color: rgba(255, 255, 255, 0.23);
	color: #FFFFFF;
}

[class*="navbar-ct"] .navbar-form .form-control:-moz-placeholder {
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
}

[class*="navbar-ct"] .navbar-form .form-control:-webkit-input-placeholder {
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
}

[class*="navbar-ct"] .navbar-form .form-control:-ms-input-placeholder {
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-form .input-group-addon {
	border-radius: 0;
	border: 0;
	padding: 0;
	background-color: transparent;
	color: #E3E3E3;
	font-size: 16px;
	padding: 0 7px;
	border-radius: 4px 0 0 4px;
}

.navbar-form .input-group-focus .input-group-addon,
.navbar-form .form-control:focus {
	color: #9A9A9A;
}

.navbar-ct-blue {
	background-color: #759ff9;
}

.navbar-ct-azure {
	background-color: #6addf4;
}

.navbar-ct-green {
	background-color: #a1e82c;
}

.navbar-ct-orange {
	background-color: #ffbc67;
}

.navbar-ct-red {
	background-color: #fc727a;
}

.navbar-transparent {
	padding-top: 15px;
	background-color: transparent;
	border-bottom: 1px solid transparent;
}

.navbar-toggle {
	margin-top: 19px;
	margin-bottom: 19px;
	border: 0;
}

.navbar-toggle .icon-bar {
	background-color: #FFFFFF;
}

.navbar-toggle .navbar-collapse,
.navbar-toggle .navbar-form {
	border-color: transparent;
}

.navbar-toggle.navbar-default .navbar-toggle:hover,
.navbar-toggle.navbar-default .navbar-toggle:focus {
	background-color: transparent;
}

.footer {
	background-color: #FFFFFF;
	line-height: 20px;
}

.footer nav&gt;ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: normal;
}

.footer nav&gt;ul a:not(.btn) {
	color: #9A9A9A;
	display: block;
	margin-bottom: 3px;
}

.footer nav&gt;ul a:not(.btn):hover,
.footer nav&gt;ul a:not(.btn):focus {
	color: #797979;
}

.footer .social-area {
	padding: 15px 0;
}

.footer .social-area h5 {
	padding-bottom: 15px;
}

.footer .social-area&gt;a:not(.btn) {
	color: #9A9A9A;
	display: inline-block;
	vertical-align: top;
	padding: 10px 5px;
	font-size: 20px;
	font-weight: normal;
	line-height: 20px;
	text-align: center;
}

.footer .social-area&gt;a:not(.btn):hover,
.footer .social-area&gt;a:not(.btn):focus {
	color: #797979;
}

.footer .copyright {
	color: #797979;
	padding: 10px 15px;
	margin: 10px 3px;
	line-height: 31px;
	font-size: 14px;
}

.footer hr {
	border-color: #DDDDDD;
}

.footer .title {
	color: #797979;
}

.footer-default {
	background-color: #F5F5F5;
}

.footer:not(.footer-big) nav&gt;ul {
	font-size: 16px;
}

.footer:not(.footer-big) nav&gt;ul li {
	margin-left: 20px;
	float: left;
}

.footer:not(.footer-big) nav&gt;ul a {
	padding: 10px 0px;
	margin: 15px 10px 15px 0px;
}

.footer-black,
.footer-transparent {
	background-color: rgba(30, 30, 30, 0.97);
	color: #DDDDDD;
}

.footer-black nav&gt;ul a,
.footer-transparent nav&gt;ul a {
	color: #FFFFFF;
}

.footer-black nav&gt;ul a:hover,
.footer-black nav&gt;ul a:focus,
.footer-transparent nav&gt;ul a:hover,
.footer-transparent nav&gt;ul a:focus {
	color: #9A9A9A;
}

.footer-black .social-area&gt;a:not(.btn),
.footer-transparent .social-area&gt;a:not(.btn) {
	color: #FFFFFF;
}

.footer-black .social-area&gt;a:not(.btn):hover,
.footer-black .social-area&gt;a:not(.btn):focus,
.footer-transparent .social-area&gt;a:not(.btn):hover,
.footer-transparent .social-area&gt;a:not(.btn):focus {
	color: #9A9A9A;
}

.footer-black .btn-social,
.footer-transparent .btn-social {
	color: #FFFFFF;
}

.footer-black hr,
.footer-transparent hr {
	border-color: #444444;
}

.footer-black .title,
.footer-transparent .title {
	color: #DDDDDD;
}

.footer-transparent {
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	background-color: transparent;
}

.footer-transparent .container {
	z-index: 2;
	position: relative;
}

.footer-big {
	padding-top: 30px;
}

.footer-big hr {
	margin-bottom: 0;
	margin-top: 50px;
}

.footer-big .copyright {
	margin: 10px 0px 20px;
}

.footer-big .social-area&gt;* {
	margin: 0 15px;
}

.footer-big nav&gt;ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: normal;
}

.footer-big nav&gt;ul li {
	float: none;
}

.footer-big nav&gt;ul .btn {
	margin-bottom: 5px;
}

.footer-big nav&gt;ul .btn-social.btn-simple {
	padding: 0 0 4px 0;
}

.footer-big .form-group {
	margin-top: 15px;
}

.footer-big .numbers h4 {
	margin: 0 0 10px 0;
}

.btn-social {
	opacity: 0.85;
	padding: 8px 9px;
}

.btn-social .fa {
	font-size: 18px;
	width: 20px;
	vertical-align: middle;
	display: inline-block;
}

.btn-social.btn-round {
	padding: 8px;
}

.btn-social.btn-simple {
	padding: 8px 5px;
	font-size: 16px;
}

.btn-social.btn-simple .fa {
	font-size: 20px;
	position: relative;
	top: -2px;
	width: 24px;
}

.btn-facebook {
	border-color: #3b5998;
	color: #3b5998;
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active,
.btn-facebook.active,
.open&gt;.btn-facebook.dropdown-toggle {
	background-color: transparent;
	color: #3b5998;
	border-color: #3b5998;
	opacity: 1;
}

.btn-facebook:disabled,
.btn-facebook[disabled],
.btn-facebook.disabled {
	background-color: transparent;
	border-color: #3b5998;
}

.btn-facebook.btn-fill {
	color: #FFFFFF;
	background-color: #3b5998;
	opacity: 0.9;
}

.btn-facebook.btn-fill:hover,
.btn-facebook.btn-fill:focus,
.btn-facebook.btn-fill:active,
.btn-facebook.btn-fill.active,
.open&gt;.btn-facebook.btn-fill.dropdown-toggle {
	background-color: #3b5998;
	color: #FFFFFF;
	opacity: 1;
}

.btn-twitter {
	border-color: #55acee;
	color: #55acee;
}

.btn-twitter:hover,
.btn-twitter:focus,
.btn-twitter:active,
.btn-twitter.active,
.open&gt;.btn-twitter.dropdown-toggle {
	background-color: transparent;
	color: #55acee;
	border-color: #55acee;
	opacity: 1;
}

.btn-twitter:disabled,
.btn-twitter[disabled],
.btn-twitter.disabled {
	background-color: transparent;
	border-color: #55acee;
}

.btn-twitter.btn-fill {
	color: #FFFFFF;
	background-color: #55acee;
	opacity: 0.9;
}

.btn-twitter.btn-fill:hover,
.btn-twitter.btn-fill:focus,
.btn-twitter.btn-fill:active,
.btn-twitter.btn-fill.active,
.open&gt;.btn-twitter.btn-fill.dropdown-toggle {
	background-color: #55acee;
	color: #FFFFFF;
	opacity: 1;
}

.btn-pinterest {
	border-color: #cc2127;
	color: #cc2127;
}

.btn-pinterest:hover,
.btn-pinterest:focus,
.btn-pinterest:active,
.btn-pinterest.active,
.open&gt;.btn-pinterest.dropdown-toggle {
	background-color: transparent;
	color: #cc2127;
	border-color: #cc2127;
	opacity: 1;
}

.btn-pinterest:disabled,
.btn-pinterest[disabled],
.btn-pinterest.disabled {
	background-color: transparent;
	border-color: #cc2127;
}

.btn-pinterest.btn-fill {
	color: #FFFFFF;
	background-color: #cc2127;
	opacity: 0.9;
}

.btn-pinterest.btn-fill:hover,
.btn-pinterest.btn-fill:focus,
.btn-pinterest.btn-fill:active,
.btn-pinterest.btn-fill.active,
.open&gt;.btn-pinterest.btn-fill.dropdown-toggle {
	background-color: #cc2127;
	color: #FFFFFF;
	opacity: 1;
}

.btn-google {
	border-color: #dd4b39;
	color: #dd4b39;
}

.btn-google:hover,
.btn-google:focus,
.btn-google:active,
.btn-google.active,
.open&gt;.btn-google.dropdown-toggle {
	background-color: transparent;
	color: #dd4b39;
	border-color: #dd4b39;
	opacity: 1;
}

.btn-google:disabled,
.btn-google[disabled],
.btn-google.disabled {
	background-color: transparent;
	border-color: #dd4b39;
}

.btn-google.btn-fill {
	color: #FFFFFF;
	background-color: #dd4b39;
	opacity: 0.9;
}

.btn-google.btn-fill:hover,
.btn-google.btn-fill:focus,
.btn-google.btn-fill:active,
.btn-google.btn-fill.active,
.open&gt;.btn-google.btn-fill.dropdown-toggle {
	background-color: #dd4b39;
	color: #FFFFFF;
	opacity: 1;
}

.btn-linkedin {
	border-color: #0976b4;
	color: #0976b4;
}

.btn-linkedin:hover,
.btn-linkedin:focus,
.btn-linkedin:active,
.btn-linkedin.active,
.open&gt;.btn-linkedin.dropdown-toggle {
	background-color: transparent;
	color: #0976b4;
	border-color: #0976b4;
	opacity: 1;
}

.btn-linkedin:disabled,
.btn-linkedin[disabled],
.btn-linkedin.disabled {
	background-color: transparent;
	border-color: #0976b4;
}

.btn-linkedin.btn-fill {
	color: #FFFFFF;
	background-color: #0976b4;
	opacity: 0.9;
}

.btn-linkedin.btn-fill:hover,
.btn-linkedin.btn-fill:focus,
.btn-linkedin.btn-fill:active,
.btn-linkedin.btn-fill.active,
.open&gt;.btn-linkedin.btn-fill.dropdown-toggle {
	background-color: #0976b4;
	color: #FFFFFF;
	opacity: 1;
}

.btn-dribbble {
	border-color: #ea4c89;
	color: #ea4c89;
}

.btn-dribbble:hover,
.btn-dribbble:focus,
.btn-dribbble:active,
.btn-dribbble.active,
.open&gt;.btn-dribbble.dropdown-toggle {
	background-color: transparent;
	color: #ea4c89;
	border-color: #ea4c89;
	opacity: 1;
}

.btn-dribbble:disabled,
.btn-dribbble[disabled],
.btn-dribbble.disabled {
	background-color: transparent;
	border-color: #ea4c89;
}

.btn-dribbble.btn-fill {
	color: #FFFFFF;
	background-color: #ea4c89;
	opacity: 0.9;
}

.btn-dribbble.btn-fill:hover,
.btn-dribbble.btn-fill:focus,
.btn-dribbble.btn-fill:active,
.btn-dribbble.btn-fill.active,
.open&gt;.btn-dribbble.btn-fill.dropdown-toggle {
	background-color: #ea4c89;
	color: #FFFFFF;
	opacity: 1;
}

.btn-github {
	border-color: #333333;
	color: #333333;
}

.btn-github:hover,
.btn-github:focus,
.btn-github:active,
.btn-github.active,
.open&gt;.btn-github.dropdown-toggle {
	background-color: transparent;
	color: #333333;
	border-color: #333333;
	opacity: 1;
}

.btn-github:disabled,
.btn-github[disabled],
.btn-github.disabled {
	background-color: transparent;
	border-color: #333333;
}

.btn-github.btn-fill {
	color: #FFFFFF;
	background-color: #333333;
	opacity: 0.9;
}

.btn-github.btn-fill:hover,
.btn-github.btn-fill:focus,
.btn-github.btn-fill:active,
.btn-github.btn-fill.active,
.open&gt;.btn-github.btn-fill.dropdown-toggle {
	background-color: #333333;
	color: #FFFFFF;
	opacity: 1;
}

.btn-youtube {
	border-color: #e52d27;
	color: #e52d27;
}

.btn-youtube:hover,
.btn-youtube:focus,
.btn-youtube:active,
.btn-youtube.active,
.open&gt;.btn-youtube.dropdown-toggle {
	background-color: transparent;
	color: #e52d27;
	border-color: #e52d27;
	opacity: 1;
}

.btn-youtube:disabled,
.btn-youtube[disabled],
.btn-youtube.disabled {
	background-color: transparent;
	border-color: #e52d27;
}

.btn-youtube.btn-fill {
	color: #FFFFFF;
	background-color: #e52d27;
	opacity: 0.9;
}

.btn-youtube.btn-fill:hover,
.btn-youtube.btn-fill:focus,
.btn-youtube.btn-fill:active,
.btn-youtube.btn-fill.active,
.open&gt;.btn-youtube.btn-fill.dropdown-toggle {
	background-color: #e52d27;
	color: #FFFFFF;
	opacity: 1;
}

.btn-stumbleupon {
	border-color: #eb4924;
	color: #eb4924;
}

.btn-stumbleupon:hover,
.btn-stumbleupon:focus,
.btn-stumbleupon:active,
.btn-stumbleupon.active,
.open&gt;.btn-stumbleupon.dropdown-toggle {
	background-color: transparent;
	color: #eb4924;
	border-color: #eb4924;
	opacity: 1;
}

.btn-stumbleupon:disabled,
.btn-stumbleupon[disabled],
.btn-stumbleupon.disabled {
	background-color: transparent;
	border-color: #eb4924;
}

.btn-stumbleupon.btn-fill {
	color: #FFFFFF;
	background-color: #eb4924;
	opacity: 0.9;
}

.btn-stumbleupon.btn-fill:hover,
.btn-stumbleupon.btn-fill:focus,
.btn-stumbleupon.btn-fill:active,
.btn-stumbleupon.btn-fill.active,
.open&gt;.btn-stumbleupon.btn-fill.dropdown-toggle {
	background-color: #eb4924;
	color: #FFFFFF;
	opacity: 1;
}

.btn-reddit {
	border-color: #ff4500;
	color: #ff4500;
}

.btn-reddit:hover,
.btn-reddit:focus,
.btn-reddit:active,
.btn-reddit.active,
.open&gt;.btn-reddit.dropdown-toggle {
	background-color: transparent;
	color: #ff4500;
	border-color: #ff4500;
	opacity: 1;
}

.btn-reddit:disabled,
.btn-reddit[disabled],
.btn-reddit.disabled {
	background-color: transparent;
	border-color: #ff4500;
}

.btn-reddit.btn-fill {
	color: #FFFFFF;
	background-color: #ff4500;
	opacity: 0.9;
}

.btn-reddit.btn-fill:hover,
.btn-reddit.btn-fill:focus,
.btn-reddit.btn-fill:active,
.btn-reddit.btn-fill.active,
.open&gt;.btn-reddit.btn-fill.dropdown-toggle {
	background-color: #ff4500;
	color: #FFFFFF;
	opacity: 1;
}

.btn-tumblr {
	border-color: #35465c;
	color: #35465c;
}

.btn-tumblr:hover,
.btn-tumblr:focus,
.btn-tumblr:active,
.btn-tumblr.active,
.open&gt;.btn-tumblr.dropdown-toggle {
	background-color: transparent;
	color: #35465c;
	border-color: #35465c;
	opacity: 1;
}

.btn-tumblr:disabled,
.btn-tumblr[disabled],
.btn-tumblr.disabled {
	background-color: transparent;
	border-color: #35465c;
}

.btn-tumblr.btn-fill {
	color: #FFFFFF;
	background-color: #35465c;
	opacity: 0.9;
}

.btn-tumblr.btn-fill:hover,
.btn-tumblr.btn-fill:focus,
.btn-tumblr.btn-fill:active,
.btn-tumblr.btn-fill.active,
.open&gt;.btn-tumblr.btn-fill.dropdown-toggle {
	background-color: #35465c;
	color: #FFFFFF;
	opacity: 1;
}

.btn-behance {
	border-color: #1769ff;
	color: #1769ff;
}

.btn-behance:hover,
.btn-behance:focus,
.btn-behance:active,
.btn-behance.active,
.open&gt;.btn-behance.dropdown-toggle {
	background-color: transparent;
	color: #1769ff;
	border-color: #1769ff;
	opacity: 1;
}

.btn-behance:disabled,
.btn-behance[disabled],
.btn-behance.disabled {
	background-color: transparent;
	border-color: #1769ff;
}

.btn-behance.btn-fill {
	color: #FFFFFF;
	background-color: #1769ff;
	opacity: 0.9;
}

.btn-behance.btn-fill:hover,
.btn-behance.btn-fill:focus,
.btn-behance.btn-fill:active,
.btn-behance.btn-fill.active,
.open&gt;.btn-behance.btn-fill.dropdown-toggle {
	background-color: #1769ff;
	color: #FFFFFF;
	opacity: 1;
}

.dropdown-menu {
	margin: 0;
	padding: 0;
	border-radius: 10px;
	z-index: 9000;
	-webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
}

.dropdown-menu&gt;li&gt;a {
	padding: 8px 16px;
	color: #333333;
}

.dropdown-menu&gt;li&gt;a img {
	margin-top: -3px;
}

.dropdown-menu&gt;li&gt;a:focus {
	outline: 0 !important;
}

.btn-group.select .dropdown-menu {
	min-width: 100%;
}

.dropdown-menu&gt;li:first-child&gt;a {
	margin-top: 5px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.dropdown-menu&gt;li:last-child&gt;a {
	margin-bottom: 5px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.select .dropdown-menu&gt;li:first-child&gt;a {
	border-radius: 0;
	border-bottom: 0 none;
}

.dropdown-menu&gt;li&gt;a:hover,
.dropdown-menu&gt;li&gt;a:focus,
.dropdown-menu&gt;li.selected&gt;a {
	background-color: #F5F5F5;
	color: #333333;
	opacity: 1;
	text-decoration: none;
}

.dropdown-menu&gt;.active&gt;a,
.dropdown-menu&gt;.active&gt;a:focus,
.dropdown-menu&gt;.active&gt;a:hover {
	background-color: rgba(68, 125, 247, 0.2);
	color: #333333;
}

.dropdown-menu:before {
	border-bottom: 11px solid rgba(0, 0, 0, 0.2);
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	top: -11px;
}

.dropdown-menu:after {
	border-bottom: 11px solid #FFFFFF;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	top: -10px;
}

.pull-right .dropdown-menu:before {
	left: auto;
	right: 12px;
}

.pull-right .dropdown-menu:after {
	left: auto;
	right: 12px;
}

.dropup .dropdown-menu:before {
	border-bottom: none;
	border-top: 11px solid rgba(0, 0, 0, 0.2);
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	top: auto;
	bottom: -11px;
}

.dropup .dropdown-menu:after {
	border-bottom: none;
	border-top: 11px solid #FFFFFF;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	top: auto;
	bottom: -10px;
}

.dropdown-menu.dropdown-blue&gt;li&gt;a:hover,
.dropdown-menu.dropdown-blue&gt;li&gt;a:focus,
.dropdown-menu.dropdown-blue&gt;li.selected&gt;a {
	background-color: rgba(68, 125, 247, 0.2);
}

.dropdown-menu.dropdown-azure&gt;li&gt;a:hover,
.dropdown-menu.dropdown-azure&gt;li&gt;a:focus,
.dropdown-menu.dropdown-azure&gt;li.selected&gt;a {
	background-color: rgba(35, 204, 239, 0.2);
}

.dropdown-menu.dropdown-green&gt;li&gt;a:hover,
.dropdown-menu.dropdown-green&gt;li&gt;a:focus,
.dropdown-menu.dropdown-green&gt;li.selected&gt;a {
	background-color: rgba(135, 203, 22, 0.2);
}

.dropdown-menu.dropdown-orange&gt;li&gt;a:hover,
.dropdown-menu.dropdown-orange&gt;li&gt;a:focus,
.dropdown-menu.dropdown-orange&gt;li.selected&gt;a {
	background-color: rgba(255, 165, 52, 0.2);
}

.dropdown-menu.dropdown-red&gt;li&gt;a:hover,
.dropdown-menu.dropdown-red&gt;li&gt;a:focus,
.dropdown-menu.dropdown-red&gt;li.selected&gt;a {
	background-color: rgba(251, 64, 75, 0.2);
}

.dropdown-menu&gt;li.disabled&gt;a {
	background-color: transparent !important;
	opacity: .5;
}

.dropdown-with-icons&gt;li&gt;a {
	padding-left: 0px;
	line-height: 28px;
}

.dropdown-with-icons .dropdown-menu {
	min-width: 180px;
}

.dropdown-with-icons .dropdown-menu i {
	text-align: center;
	line-height: 28px;
	float: left;
}

.dropdown-with-icons .dropdown-menu i[class^="pe-"] {
	font-size: 24px;
	width: 46px;
}

.dropdown-with-icons .dropdown-menu i[class^="fa"] {
	font-size: 14px;
	width: 38px;
}

.btn-group.select {
	overflow: hidden;
}

.btn-group.select.open {
	overflow: visible;
}

.card {
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(63, 63, 68, 0.1);
	background-color: #FFFFFF;
	margin-bottom: 30px;
	/*
      background-image: url('../../../../https@images.unsplash.com/photo-1438978280647-f359d95ebda4@q=80&amp;fm=jpg&amp;s=73cb1239b517411534379c92660b2660');
      background-size: cover;
      z-index: 1;

      &amp;:before{
          position: absolute;
          width: 94%;
          left: 3%;
          height: 95%;
          z-index: 0;
          background-color: red;
          display: block;
          border-radius: 6px;
          content: "";
          box-shadow: 0 3px 40px rgba(0, 0, 0, 0.2);
          top: 24px;
      }
  */
	/*
      .footer div{
          display: inline-block;
      }
  */
}

.card .image {
	width: 100%;
	overflow: hidden;
	height: 260px;
	border-radius: 4px 4px 0 0;
	position: relative;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.card .image img {
	width: 100%;
}

.card .filter {
	position: absolute;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.68);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0);
}

.card .filter .btn {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.card:hover .filter {
	opacity: 1;
	filter: alpha(opacity=100);
}

.card .btn-hover {
	opacity: 0;
	filter: alpha(opacity=0);
}

.card:hover .btn-hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.card .map {
	height: 280px;
	border-radius: 4px;
}

.card .map.map-big {
	height: 420px;
}

.card .content {
	padding: 15px;
}

.card .content-no-padding {
	padding: 0;
}

.card .content-no-padding .map {
	margin-top: 15px;
	border-radius: 0;
}

.card .content-full-width {
	padding: 15px 0;
}

.card .header {
	padding: 15px 15px 0px;
	color: #333333;
	font-weight: 300;
	font-size: 22px;
}

.card .category,
.card .form-group&gt;label {
	font-size: 14px;
	font-weight: 400;
	color: #888888;
	margin-bottom: 0px;
}

.card .category.error,
.card .form-group&gt;label.error {
	text-transform: none;
	color: #FB404B;
}

.card .category i,
.card .form-group&gt;label i {
	font-size: 16px;
}

.card .form-group&gt;label {
	font-size: 12px;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.card .title {
	margin: 0;
	color: #333333;
	font-weight: 300;
	text-align: center;
}

.card .avatar {
	width: 30px;
	height: 30px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 5px;
}

.card .description {
	font-size: 14px;
	color: #333;
}

.card .footer {
	padding: 0 15px 10px;
	background-color: transparent;
	line-height: 30px;
}

.card .footer .form-group label {
	margin-bottom: 0;
}

.card .footer .legend {
	padding: 5px 0;
}

.card .footer hr {
	margin-top: 5px;
	margin-bottom: 5px;
}

.card .stats {
	color: #a9a9a9;
}

.card .author {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.card .author i {
	font-size: 14px;
}

.card h6 {
	font-size: 12px;
	margin: 0;
}

.card.card-separator:after {
	height: 100%;
	right: -15px;
	top: 0;
	width: 1px;
	background-color: #DDDDDD;
	content: "";
	position: absolute;
}

.card .ct-chart {
	margin: 30px 0 30px;
	height: 245px;
}

.card .table {
	margin-bottom: 0;
}

.card .table tbody .bs-checkbox input,
.card .table thead .bs-checkbox .th-inner {
	padding-left: 15px;
}

.card .table tbody td:last-child,
.card .table thead th:last-child {
	padding-right: 15px;
}

.card .table tbody td.bs-checkbox:first-child {
	padding-left: 23px !important;
}

.card .alert {
	border-radius: 4px;
	position: relative;
}

.card .alert.alert-with-icon {
	padding-left: 65px;
}

.card.card-plain {
	background-color: transparent !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.card.card-plain .image {
	border-radius: 4px;
}

.card-user .image {
	height: 110px;
}

.card-user .image-plain {
	height: 0;
	margin-top: 110px;
}

.card-user .author {
	text-align: center;
	text-transform: none;
	margin-top: -70px;
}

.card-user .avatar {
	width: 124px;
	height: 124px;
	border: 5px solid #FFFFFF;
	position: relative;
	margin-bottom: 15px;
}

.card-user .avatar.border-gray {
	border-color: #EEEEEE;
}

.card-user .title {
	line-height: 24px;
}

.card-user .content {
	min-height: 240px;
}

.card-user .footer,
.card-price .footer {
	padding: 5px 15px 10px;
}

.card-user hr,
.card-price hr {
	margin: 5px 15px;
}

.card-wizard {
	border-radius: 10px;
}

.card-wizard .nav-pills {
	margin-left: -15px;
	margin-right: -15px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.card-wizard .nav-pills&gt;li&gt;a {
	text-align: center;
	border: none;
	background-color: #9A9A9A;
	color: #FFFFFF;
	text-transform: uppercase;
}

.card-wizard .nav-pills&gt;li&gt;a:hover,
.card-wizard .nav-pills&gt;li&gt;a:focus {
	background-color: #9A9A9A;
	outline: 0 !important;
}

.card-wizard .nav-pills&gt;li:first-child&gt;a,
.card-wizard .nav-pills&gt;li:last-child&gt;a {
	border-radius: 0;
}

.card-wizard .btn-finish {
	display: none;
}

.card-wizard .header {
	padding-top: 25px;
	padding-bottom: 10px;
}

.card-wizard .footer {
	padding-bottom: 15px;
}

.panel {
	border: 0;
	border-bottom: 1px solid #DDDDDD;
	box-shadow: none;
}

.panel-default&gt;.panel-heading {
	background-color: #FFFFFF;
	border-color: #FFFFFF;
}

.panel-group .panel {
	border-radius: 0;
}

.panel-title {
	font-size: 18px;
}

.panel-title a:hover,
.panel-title a:focus {
	text-decoration: none;
}

.collapse-hover {
	display: block;
	height: 0px;
	visibility: visible;
	overflow: hidden;
}

.panel-title a:hover,
.panel-title a:focus {
	color: #797979;
}

.panel-default&gt;.panel-heading+.panel-collapse&gt;.panel-body {
	box-shadow: inset 0 7px 10px -7px rgba(0, 0, 0, 0.14);
}

.panel-heading {
	padding: 0;
}

.panel-heading .caret {
	float: right;
	margin-top: 12px;
	margin-right: 15px;
}

.panel-heading a {
	padding: 10px 0;
	display: block;
	width: 100%;
}

.content-full-width .panel-heading a {
	padding: 10px 15px;
}

.carousel-control {
	width: 8%;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .fa,
.carousel-control .fa {
	display: inline-block;
	position: absolute;
	top: 50%;
	z-index: 5;
}

.carousel-control .fa {
	font-size: 35px;
}

.carousel-control.left,
.carousel-control.right {
	background-image: none;
}


/*!
 * Datetimepicker for Bootstrap 3
 * ! version : 4.7.14
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */

.sr-only,
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after,
.bootstrap-datetimepicker-widget .picker-switch::after,
.bootstrap-datetimepicker-widget table th.prev::after,
.bootstrap-datetimepicker-widget table th.next::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.bootstrap-datetimepicker-widget {
	list-style: none;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
	padding: 4px;
	width: 19em;
}

@media (min-width: 768px) {
	.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
		width: 38em;
	}
}

@media (min-width: 992px) {
	.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
		width: 38em;
	}
}

@media (min-width: 1200px) {
	.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
		width: 38em;
	}
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
	border-bottom: 11px solid rgba(0, 0, 0, 0.2);
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	top: -11px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
	border-bottom: 11px solid #FFFFFF;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	top: -10px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top {
	margin-top: auto;
	margin-bottom: -20px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top.open {
	margin-top: auto;
	margin-bottom: 5px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
	border-top: 11px solid rgba(0, 0, 0, 0.2);
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-bottom: none;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	bottom: -11px;
	top: auto;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
	border-top: 11px solid #FFFFFF;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-bottom: none;
	content: "";
	display: inline-block;
	position: absolute;
	left: 12px;
	bottom: -10px;
	top: auto;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
	left: auto;
	right: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
	left: auto;
	right: 7px;
}

.bootstrap-datetimepicker-widget .list-unstyled {
	margin: 0;
}

.bootstrap-datetimepicker-widget a[data-action] {
	padding: 6px 0;
	border-width: 0;
}

.bootstrap-datetimepicker-widget a[data-action]:active {
	box-shadow: none;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
	width: 56px;
	height: 56px;
	font-weight: 300;
	font-size: 22px;
	margin: 3px;
	border-radius: 50%;
}

.bootstrap-datetimepicker-widget button[data-action] {
	padding: 6px;
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
	content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
	content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
	content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
	content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
	content: "Show Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
	content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
	content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
	content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
	content: "Set the date to today";
}

.bootstrap-datetimepicker-widget .picker-switch {
	text-align: center;
	border-radius: 4px;
}

.bootstrap-datetimepicker-widget .picker-switch::after {
	content: "Toggle Date and Time Screens";
}

.bootstrap-datetimepicker-widget .picker-switch td {
	padding: 0;
	margin: 0;
	height: auto;
	width: auto;
	line-height: inherit;
}

.bootstrap-datetimepicker-widget .picker-switch td span {
	line-height: 2.5;
	height: 2.5em;
	width: 100%;
	border-radius: 4px;
	margin: 2px 0px !important;
}

.bootstrap-datetimepicker-widget table {
	width: 100%;
	margin: 0;
}

.bootstrap-datetimepicker-widget table td&gt;div,
.bootstrap-datetimepicker-widget table th&gt;div {
	text-align: center;
}

.bootstrap-datetimepicker-widget table th {
	height: 20px;
	line-height: 20px;
	width: 20px;
}

.bootstrap-datetimepicker-widget table th.picker-switch {
	width: 145px;
}

.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
	background: none;
	color: #DDDDDD;
	cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table th.prev span,
.bootstrap-datetimepicker-widget table th.next span {
	border-radius: 4px;
	height: 27px;
	width: 27px;
	line-height: 28px;
	font-size: 12px;
	border-radius: 50%;
	text-align: center;
}

.bootstrap-datetimepicker-widget table th.prev::after {
	content: "Previous Month";
}

.bootstrap-datetimepicker-widget table th.next::after {
	content: "Next Month";
}

.bootstrap-datetimepicker-widget table th.dow {
	text-align: center;
	border-bottom: 1px solid #E3E3E3;
	font-size: 12px;
	text-transform: uppercase;
	color: #9A9A9A;
	font-weight: 400;
	padding-bottom: 5px;
	padding-top: 10px;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
	cursor: pointer;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover span,
.bootstrap-datetimepicker-widget table thead tr:first-child th.picker-switch:hover {
	background: #E3E3E3;
}

.bootstrap-datetimepicker-widget table td&gt;div {
	border-radius: 4px;
	height: 54px;
	line-height: 54px;
	width: 54px;
	text-align: center;
}

.bootstrap-datetimepicker-widget table td.cw&gt;div {
	font-size: .8em;
	height: 20px;
	line-height: 20px;
	color: #DDDDDD;
}

.bootstrap-datetimepicker-widget table td.day&gt;div {
	height: 30px;
	line-height: 30px;
	width: 30px;
	text-align: center;
	padding: 0px;
	border-radius: 50%;
}

.bootstrap-datetimepicker-widget table td.minute&gt;div,
.bootstrap-datetimepicker-widget table td.hour&gt;div {
	border-radius: 50%;
}

.bootstrap-datetimepicker-widget table td.day:hover&gt;div,
.bootstrap-datetimepicker-widget table td.hour:hover&gt;div,
.bootstrap-datetimepicker-widget table td.minute:hover&gt;div,
.bootstrap-datetimepicker-widget table td.second:hover&gt;div {
	background: #E3E3E3;
	cursor: pointer;
}

.bootstrap-datetimepicker-widget table td.old&gt;div,
.bootstrap-datetimepicker-widget table td.new&gt;div {
	color: #DDDDDD;
}

.bootstrap-datetimepicker-widget table td.today&gt;div {
	position: relative;
}

.bootstrap-datetimepicker-widget table td.today&gt;div:before {
	content: '';
	display: inline-block;
	border: 0 0 7px 7px solid transparent;
	border-bottom-color: #23CCEF;
	border-top-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	bottom: 4px;
	right: 4px;
}

.bootstrap-datetimepicker-widget table td.active&gt;div,
.bootstrap-datetimepicker-widget table td.active:hover&gt;div {
	background-color: #23CCEF;
	color: #FFFFFF;
}

.bootstrap-datetimepicker-widget table td.active.today:before&gt;div {
	border-bottom-color: #fff;
}

.bootstrap-datetimepicker-widget table td.disabled&gt;div,
.bootstrap-datetimepicker-widget table td.disabled:hover&gt;div {
	background: none;
	color: #DDDDDD;
	cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table td span {
	display: inline-block;
	width: 56px;
	height: 56px;
	line-height: 56px;
	margin: 3px 3px;
	cursor: pointer;
	border-radius: 50%;
	text-align: center;
}

.bootstrap-datetimepicker-widget table td span:hover {
	background: #E3E3E3;
}

.bootstrap-datetimepicker-widget table td span.active {
	background-color: #23CCEF;
	color: #FFFFFF;
}

.bootstrap-datetimepicker-widget table td span.old {
	color: #DDDDDD;
}

.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
	background: none;
	color: #DDDDDD;
	cursor: not-allowed;
}

.bootstrap-datetimepicker-widget .timepicker-picker span,
.bootstrap-datetimepicker-widget .timepicker-hours span,
.bootstrap-datetimepicker-widget .timepicker-minutes span {
	border-radius: 50% !important;
}

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
	height: 27px;
	line-height: 27px;
}

.input-group.date .input-group-addon {
	cursor: pointer;
}

.table-condensed&gt;tbody&gt;tr&gt;td,
.table-condensed&gt;tbody&gt;tr&gt;th,
.table-condensed&gt;tfoot&gt;tr&gt;td,
.table-condensed&gt;tfoot&gt;tr&gt;th,
.table-condensed&gt;thead&gt;tr&gt;td,
.table-condensed&gt;thead&gt;tr&gt;th {
	padding: 1px;
}

.wrapper {
	position: relative;
	top: 0;
	
}

.wrapper:after {
	display: table;
	clear: both;
	content: " ";
}

.wrapper.wrapper-full-page {
	height: auto;

}

.full-page:after,
.full-page:before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.full-page:before {
	opacity: .33;
	background: #000000;
}

.full-page:after {
	background: #787878;
	background: -moz-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.4) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #787878), color-stop(100%, rgba(52, 52, 52, 0.4)));
	background: -webkit-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.4) 100%);
	background: -o-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.4) 100%);
	background: -ms-linear-gradient(top, #787878 0%, rgba(52, 52, 52, 0.4) 100%);
	background: linear-gradient(to bottom, #787878 0%, rgba(52, 52, 52, 0.4) 100%);
	background-size: 150% 150%;
	z-index: 3;
	opacity: 1;
}

.full-page&gt;.content,
.full-page&gt;.footer {
	position: relative;
	z-index: 4;
}

.full-page&gt;.content {
	min-height: calc(100vh - 70px);
}

.full-page .full-page-background {
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	display: block;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center center;
}

.full-page[data-image]:after,
.full-page.has-image:after {
	opacity: .9;
}

.full-page[data-color="blue"]:after {
	background: #447DF7;
	background: -moz-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.6) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #447DF7), color-stop(100%, rgba(83, 60, 225, 0.6)));
	background: -webkit-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.6) 100%);
	background: -o-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.6) 100%);
	background: -ms-linear-gradient(top, #447DF7 0%, rgba(83, 60, 225, 0.6) 100%);
	background: linear-gradient(to bottom, #447DF7 0%, rgba(83, 60, 225, 0.6) 100%);
	background-size: 150% 150%;
}

.full-page[data-color="azure"]:after {
	background: #23CCEF;
	background: -moz-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.6) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #23CCEF), color-stop(100%, rgba(64, 145, 255, 0.6)));
	background: -webkit-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.6) 100%);
	background: -o-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.6) 100%);
	background: -ms-linear-gradient(top, #23CCEF 0%, rgba(64, 145, 255, 0.6) 100%);
	background: linear-gradient(to bottom, #23CCEF 0%, rgba(64, 145, 255, 0.6) 100%);
	background-size: 150% 150%;
}

.full-page[data-color="green"]:after {
	background: #87CB16;
	background: -moz-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.6) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #87CB16), color-stop(100%, rgba(109, 192, 48, 0.6)));
	background: -webkit-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.6) 100%);
	background: -o-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.6) 100%);
	background: -ms-linear-gradient(top, #87CB16 0%, rgba(109, 192, 48, 0.6) 100%);
	background: linear-gradient(to bottom, #87CB16 0%, rgba(109, 192, 48, 0.6) 100%);
	background-size: 150% 150%;
}

.full-page[data-color="orange"]:after {
	background: #FFA534;
	background: -moz-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.6) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFA534), color-stop(100%, rgba(236, 22, 87, 0.6)));
	background: -webkit-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.6) 100%);
	background: -o-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.6) 100%);
	background: -ms-linear-gradient(top, #FFA534 0%, rgba(236, 22, 87, 0.6) 100%);
	background: linear-gradient(to bottom, #FFA534 0%, rgba(236, 22, 87, 0.6) 100%);
	background-size: 150% 150%;
}

.full-page[data-color="red"]:after {
	background: #FB404B;
	background: -moz-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.6) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FB404B), color-stop(100%, rgba(187, 5, 2, 0.6)));
	background: -webkit-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.6) 100%);
	background: -o-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.6) 100%);
	background: -ms-linear-gradient(top, #FB404B 0%, rgba(187, 5, 2, 0.6) 100%);
	background: linear-gradient(to bottom, #FB404B 0%, rgba(187, 5, 2, 0.6) 100%);
	background-size: 150% 150%;
}

.full-page[data-color="purple"]:after {
	background: #9368E9;
	background: -moz-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.6) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9368E9), color-stop(100%, rgba(148, 59, 234, 0.6)));
	background: -webkit-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.6) 100%);
	background: -o-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.6) 100%);
	background: -ms-linear-gradient(top, #9368E9 0%, rgba(148, 59, 234, 0.6) 100%);
	background: linear-gradient(to bottom, #9368E9 0%, rgba(148, 59, 234, 0.6) 100%);
	background-size: 150% 150%;
}

.full-page .footer nav&gt;ul a:not(.btn),
.full-page .footer,
.full-page .footer .copyright a {
	color: #FFFFFF;
	font-size: 14px;
}

.login-page&gt;.content,
.lock-page&gt;.content {
	padding-top: 15vh;
}

.login-page .card {
	box-shadow: 0 25px 30px -13px rgba(40, 40, 40, 0.4);
	border-radius: 10px;
	padding-top: 30px;
	padding-bottom: 30px;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	border: 3px solid #9c27b0;
}

.btn-primary,
.btn-primary.disabled {
	background: #ab8ce4 !important;
	border: 1px solid #ab8ce4 !important;
}

.login-page .card.card-hidden {
	opacity: 0;
	-webkit-transform: translate3d(0, -60px, 0);
	-moz-transform: translate3d(0, -60px, 0);
	-o-transform: translate3d(0, -60px, 0);
	-ms-transform: translate3d(0, -60px, 0);
	transform: translate3d(0, -60px, 0);
}

.login-page .card .header {
	padding-bottom: 30px;
}

.login-page .card .btn-wd {
	min-width: 180px;
}

.lock-page .user-profile {
	text-align: center;
	width: 240px;
	margin: 30px auto 0;
	color: #FFFFFF;
	position: absolute;
	left: 50%;
	margin-left: -120px;
	display: block;
}

.lock-page .user-profile.with-animation {
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}

.lock-page .user-profile .author {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	overflow: hidden;
	margin: 0 auto;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.lock-page .user-profile .author img {
	width: 100%;
}

.lock-page .user-profile h4 {
	margin-top: 15px;
	margin-bottom: 30px;
}

.register-page .header-text {
	color: #FFFFFF;
	text-align: center;
	padding: 45px 0 30px;
}

.register-page .header-text h4 {
	margin-top: 10px;
}

.register-page .header-text hr {
	opacity: .3;
	margin-top: 30px;
}

.register-page .media {
	color: #FFFFFF;
	margin-bottom: 45px;
}

.register-page .media .icon {
	float: left;
	margin-right: 5px;
}

.register-page .media i {
	font-size: 36px;
}

.register-page .media h4 {
	margin: 0 0 5px 0;
}

.register-page .form-group {
	margin-bottom: 25px;
}

.register-page .card .content {
	padding-top: 0;
	padding-bottom: 0;
}

@media (min-width: 992px) {
	.navbar-form {
		margin: 12px 0;
		padding-left: 10px;
		padding-right: 10px;
	}
	.navbar-nav&gt;li&gt;.dropdown-menu,
	.dropdown .dropdown-menu,
	.dropup .dropdown-menu,
	.dropdown-menu.bootstrap-datetimepicker-widget,
	.bootstrap-table .dropdown-menu {
		-webkit-transition: all 150ms linear;
		-moz-transition: all 150ms linear;
		-o-transition: all 150ms linear;
		-ms-transition: all 150ms linear;
		transition: all 150ms linear;
		margin-top: -20px;
		visibility: hidden;
		display: block;
		opacity: 0;
		filter: alpha(opacity=0);
	}
	.navbar-nav&gt;li.open&gt;.dropdown-menu,
	.dropdown.open .dropdown-menu,
	.dropup.open .dropdown-menu,
	.bootstrap-table .open .dropdown-menu {
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		margin-top: 0px;
		padding: 10px;
	}
	.dropdown-menu.bootstrap-datetimepicker-widget.open {
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		margin-top: 5px;
	}
	.dropup .dropdown-menu {
		margin-top: auto;
		margin-bottom: -20px;
	}
	.dropup.open .dropdown-menu {
		margin-top: auto;
		margin-bottom: 5px;
	}
	.navbar-nav&gt;li&gt;.dropdown-menu:before {
		border-bottom: 11px solid rgba(0, 0, 0, 0.2);
		border-left: 11px solid transparent;
		border-right: 11px solid transparent;
		content: "";
		display: inline-block;
		position: absolute;
		left: 12px;
		top: -11px;
	}
	.navbar-nav&gt;li&gt;.dropdown-menu:after {
		border-bottom: 11px solid #FFFFFF;
		border-left: 11px solid transparent;
		border-right: 11px solid transparent;
		content: "";
		display: inline-block;
		position: absolute;
		left: 12px;
		top: -10px;
	}
	.navbar-nav.navbar-right&gt;li&gt;.dropdown-menu:before {
		left: auto;
		right: 12px;
	}
	.navbar-nav.navbar-right&gt;li&gt;.dropdown-menu:after {
		left: auto;
		right: 12px;
	}
	.footer:not(.footer-big) nav&gt;ul li:first-child {
		margin-left: 0;
	}
	body&gt;.navbar-collapse.collapse {
		display: none !important;
	}
	.card form [class*="col-"] {
		padding: 0 6px;
	}
	.card form [class*="col-"]:first-child {
		padding-left: 15px;
	}
	.card form [class*="col-"]:last-child {
		padding-right: 15px;
	}
	.table-full-width {
		margin-left: -15px;
		margin-right: -15px;
	}
	.table-responsive {
		overflow: visible;
	}
	.sidebar .navbar-form {
		display: none !important;
	}
	.sidebar .nav-mobile-menu {
		display: none;
	}
	.navbar-fixed {
		width: calc(100% - 260px);
	}
}


/*          Changes for small display      */

@media (max-width: 992px) {
	.main-panel,
	.wrapper-full-page {
		-webkit-transform: translate3d(0px, 0, 0);
		-moz-transform: translate3d(0px, 0, 0);
		-o-transform: translate3d(0px, 0, 0);
		-ms-transform: translate3d(0px, 0, 0);
		transform: translate3d(0px, 0, 0);
		-webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		left: 0;
		width: 100%;
	}
	.main-panel&gt;.content,
	.wrapper-full-page&gt;.content {
		padding: 15px 0px;
	}
	.main-panel .card,
	.wrapper-full-page .card {
		margin-bottom: 15px;
	}
	.navbar-transparent {
		padding-top: 15px;
	}
	.wrapper {
		background-color: white;
	}
	.wrapper.wrapper-full-page {
		height: auto;
	}
	.navbar&gt;div {
		left: 0;
		width: 100%;
		-webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		position: relative;
	}
	/*.navbar .navbar-collapse.collapse,
	.navbar .navbar-collapse.collapse.in,
	.navbar .navbar-collapse.collapsing {
		display: none !important;
	}*/
	.collapsing{
	    position: absolute!important;
	    height:0px!important;
	}
	.navbar-nav&gt;li {
		float: none;
		position: relative;
		display: block;
	}
.mb-header.hidden-md.hidden-lg {
   height: 70px;
    margin-top: 0px;
    padding: 1px 10px;
    background: #021038;
}
#footer .footer-top .footer-contact h4{
    font-size:17px!important;
}
ul.nav li {
    width: 100%;
}
ul.nav{
    padding:0!important;
}
li.mb-nav {
    padding: 0px 2px!important;}
	.sidebar-wrappe{
	    position: relative!important;
    margin-top: 75px
	}
	.collapse.in ul.nav {
     width: 100%!important;
	    z-index: 9999;
	}
	.main-panel{
	    margin-top:0px!important;
	}
	.sidebar,
	.bootstrap-navbar {
		position: fixed;
		display: block;
		top: 44px;
		height: 100%;
		width: 100%;
		right: 0;
		left: auto;
		z-index: 1032;
		visibility: visible;
		overflow-y: visible;
		padding: 0;
	/*	-webkit-transform: translate3d(260px, 0, 0);
		-moz-transform: translate3d(260px, 0, 0);
		-o-transform: translate3d(260px, 0, 0);
		-ms-transform: translate3d(260px, 0, 0);
		/*transform: translate3d(260px, 0, 0);*
		-webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		-ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
		transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);*/
	}
	.sidebar .user .photo,
	.bootstrap-navbar .user .photo {
		width: 50px;
		height: 50px;
		border-width: 2px;
	}
	.sidebar .nav i,
	.bootstrap-navbar .nav i {
		font-size: 22px;
	}
	.sidebar .nav&gt;li&gt;a,
	.bootstrap-navbar .nav&gt;li&gt;a {
		padding-bottom: 5px;
		padding-top: 5px;
		color: #FFFFFF !important;
	}
	.sidebar .nav&gt;li&gt;a.dropdown-toggle,
	.bootstrap-navbar .nav&gt;li&gt;a.dropdown-toggle {
		background: transparent;
	}
	.sidebar .navbar-form,
	.bootstrap-navbar .navbar-form {
		float: none !important;
		margin: 15px 0 0 0;
	}
	.sidebar .navbar-form .input-group,
	.bootstrap-navbar .navbar-form .input-group {
		width: 100%;
	}
	.sidebar .navbar-form .input-group .form-control,
	.bootstrap-navbar .navbar-form .input-group .form-control {
		background: rgba(255, 255, 255, 0.13);
		border-radius: 0 4px 4px 0;
		padding-left: 0;
		padding-right: 0;
		color: #FFFFFF;
	}
	.sidebar .navbar-form .input-group .form-control:focus,
	.bootstrap-navbar .navbar-form .input-group .form-control:focus {
		background: rgba(255, 255, 255, 0.23);
	}
	.sidebar .navbar-form .input-group-addon,
	.sidebar .navbar-form .input-group-focus .input-group-addon,
	.bootstrap-navbar .navbar-form .input-group-addon,
	.bootstrap-navbar .navbar-form .input-group-focus .input-group-addon {
		color: #FFFFFF;
		padding: 0 20px;
		background: rgba(255, 255, 255, 0.13);
		border-radius: 4px 0 0 4px;
	}
	.sidebar .navbar-form .input-group-focus .input-group-addon,
	.bootstrap-navbar .navbar-form .input-group-focus .input-group-addon {
		background: rgba(255, 255, 255, 0.23);
	}
	.sidebar .nav-mobile-menu,
	.bootstrap-navbar .nav-mobile-menu {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		margin-bottom: 15px;
		padding-bottom: 15px;
		padding-top: 5px;
	}
	.sidebar .nav-mobile-menu i,
	.bootstrap-navbar .nav-mobile-menu i {
		font-size: 18px;
	}
	.sidebar .nav-mobile-menu .notification,
	.bootstrap-navbar .nav-mobile-menu .notification {
		float: left;
		line-height: 30px;
		margin-right: 8px;
		font-weight: 600;
	}
	.sidebar .nav-mobile-menu .open .dropdown-menu,
	.bootstrap-navbar .nav-mobile-menu .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.sidebar .nav-mobile-menu .dropdown-menu li a,
	.bootstrap-navbar .nav-mobile-menu .dropdown-menu li a {
		padding-left: 60px;
	}
	.sidebar .nav-mobile-menu .dropdown-with-icons li a,
	.bootstrap-navbar .nav-mobile-menu .dropdown-with-icons li a {
		padding-left: 15px;
	}
	.sidebar .dropdown-with-icons&gt;li&gt;a,
	.bootstrap-navbar .dropdown-with-icons&gt;li&gt;a {
		padding-left: 15px;
		padding-top: 2px;
		padding-bottom: 2px;
	}
	.sidebar .dropdown-with-icons .dropdown-menu i[class^="pe-"],
	.bootstrap-navbar .dropdown-with-icons .dropdown-menu i[class^="pe-"] {
		width: 30px;
	}
	.sidebar .dropdown-menu:after,
	.sidebar .dropdown-menu:before,
	.bootstrap-navbar .dropdown-menu:after,
	.bootstrap-navbar .dropdown-menu:before {
		display: none;
	}
	.bootstrap-navbar .nav {
		position: relative;
		z-index: 4;
		border-top: none;
	}
	.bootstrap-navbar .nav&gt;li&gt;a {
		color: #FFFFFF;
		margin: 5px 15px;
		opacity: .86;
		border-radius: 4px;
		line-height: 30px;
		font-size: 12px;
		font-weight: 600;
		text-transform: uppercase;
	}
	.bootstrap-navbar .nav&gt;li:hover&gt;a {
		background: rgba(255, 255, 255, 0.13);
		opacity: 1;
	}
	.bootstrap-navbar .nav&gt;li.active&gt;a {
		color: #FFFFFF;
		opacity: 1;
		background: rgba(255, 255, 255, 0.23);
	}
	.bootstrap-navbar .nav p {
		font-size: 12px;
		font-weight: 600;
		line-height: 30px;
		margin: 0;
		text-transform: uppercase;
		display: inline-block;
	}
	.bootstrap-navbar .nav i {
		float: left;
		font-size: 28px;
		line-height: 30px;
		margin-right: 15px;
		text-align: center;
		width: 30px;
	}
	.nav-open .main-panel,
	.nav-open .wrapper-full-page {
		left: 0;
		-webkit-transform: translate3d(-260px, 0, 0);
		-moz-transform: translate3d(-260px, 0, 0);
		-o-transform: translate3d(-260px, 0, 0);
		-ms-transform: translate3d(-260px, 0, 0);
		transform: translate3d(-260px, 0, 0);
	}
	.nav-open .navbar-fixed&gt;div {
		-webkit-transform: translate3d(-260px, 0, 0);
		-moz-transform: translate3d(-260px, 0, 0);
		-o-transform: translate3d(-260px, 0, 0);
		-ms-transform: translate3d(-260px, 0, 0);
		transform: translate3d(-260px, 0, 0);
	}
	.nav-open .sidebar,
	.nav-open .bootstrap-navbar {
		-webkit-transform: translate3d(0px, 0, 0);
		-moz-transform: translate3d(0px, 0, 0);
		-o-transform: translate3d(0px, 0, 0);
		-ms-transform: translate3d(0px, 0, 0);
		transform: translate3d(0px, 0, 0);
	}
	.nav-open .navbar-default .navbar-toggle .icon-bar {
		background-color: #222222;
	}
	.navbar-minimize {
		display: none;
	}
	.navbar-toggle .icon-bar {
		display: block;
		position: relative;
		background: #fff;
		width: 24px;
		height: 2px;
		border-radius: 1px;
		margin: 0 auto;
	}
	@keyframes topbar-x {
		0% {
			top: 0px;
			transform: rotate(0deg);
		}
		45% {
			top: 6px;
			transform: rotate(145deg);
		}
		75% {
			transform: rotate(130deg);
		}
		100% {
			transform: rotate(135deg);
		}
	}
	@-webkit-keyframes topbar-x {
		0% {
			top: 0px;
			-webkit-transform: rotate(0deg);
		}
		45% {
			top: 6px;
			-webkit-transform: rotate(145deg);
		}
		75% {
			-webkit-transform: rotate(130deg);
		}
		100% {
			-webkit-transform: rotate(135deg);
		}
	}
	@-moz-keyframes topbar-x {
		0% {
			top: 0px;
			-moz-transform: rotate(0deg);
		}
		45% {
			top: 6px;
			-moz-transform: rotate(145deg);
		}
		75% {
			-moz-transform: rotate(130deg);
		}
		100% {
			-moz-transform: rotate(135deg);
		}
	}
	@keyframes topbar-back {
		0% {
			top: 6px;
			transform: rotate(135deg);
		}
		45% {
			transform: rotate(-10deg);
		}
		75% {
			transform: rotate(5deg);
		}
		100% {
			top: 0px;
			transform: rotate(0);
		}
	}
	@-webkit-keyframes topbar-back {
		0% {
			top: 6px;
			-webkit-transform: rotate(135deg);
		}
		45% {
			-webkit-transform: rotate(-10deg);
		}
		75% {
			-webkit-transform: rotate(5deg);
		}
		100% {
			top: 0px;
			-webkit-transform: rotate(0);
		}
	}
	@-moz-keyframes topbar-back {
		0% {
			top: 6px;
			-moz-transform: rotate(135deg);
		}
		45% {
			-moz-transform: rotate(-10deg);
		}
		75% {
			-moz-transform: rotate(5deg);
		}
		100% {
			top: 0px;
			-moz-transform: rotate(0);
		}
	}
	@keyframes bottombar-x {
		0% {
			bottom: 0px;
			transform: rotate(0deg);
		}
		45% {
			bottom: 6px;
			transform: rotate(-145deg);
		}
		75% {
			transform: rotate(-130deg);
		}
		100% {
			transform: rotate(-135deg);
		}
	}
	@-webkit-keyframes bottombar-x {
		0% {
			bottom: 0px;
			-webkit-transform: rotate(0deg);
		}
		45% {
			bottom: 6px;
			-webkit-transform: rotate(-145deg);
		}
		75% {
			-webkit-transform: rotate(-130deg);
		}
		100% {
			-webkit-transform: rotate(-135deg);
		}
	}
	@-moz-keyframes bottombar-x {
		0% {
			bottom: 0px;
			-moz-transform: rotate(0deg);
		}
		45% {
			bottom: 6px;
			-moz-transform: rotate(-145deg);
		}
		75% {
			-moz-transform: rotate(-130deg);
		}
		100% {
			-moz-transform: rotate(-135deg);
		}
	}
	@keyframes bottombar-back {
		0% {
			bottom: 6px;
			transform: rotate(-135deg);
		}
		45% {
			transform: rotate(10deg);
		}
		75% {
			transform: rotate(-5deg);
		}
		100% {
			bottom: 0px;
			transform: rotate(0);
		}
	}
	@-webkit-keyframes bottombar-back {
		0% {
			bottom: 6px;
			-webkit-transform: rotate(-135deg);
		}
		45% {
			-webkit-transform: rotate(10deg);
		}
		75% {
			-webkit-transform: rotate(-5deg);
		}
		100% {
			bottom: 0px;
			-webkit-transform: rotate(0);
		}
	}
	@-moz-keyframes bottombar-back {
		0% {
			bottom: 6px;
			-moz-transform: rotate(-135deg);
		}
		45% {
			-moz-transform: rotate(10deg);
		}
		75% {
			-moz-transform: rotate(-5deg);
		}
		100% {
			bottom: 0px;
			-moz-transform: rotate(0);
		}
	}
	.navbar-header .navbar-toggle {
		margin: 10px 15px 10px 0;
		width: 40px;
		height: 40px;
	}
	.navbar-toggle .icon-bar {
		outline: 1px solid transparent;
	}
	.navbar-toggle .icon-bar:nth-child(2) {
		top: 0px;
		-webkit-animation: topbar-back 500ms linear 0s;
		-moz-animation: topbar-back 500ms linear 0s;
		animation: topbar-back 500ms 0s;
		-webkit-animation-fill-mode: forwards;
		-moz-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
	.navbar-toggle .icon-bar:nth-child(3) {
		opacity: 1;
	}
	.navbar-toggle .icon-bar:nth-child(4) {
		bottom: 0px;
		-webkit-animation: bottombar-back 500ms linear 0s;
		-moz-animation: bottombar-back 500ms linear 0s;
		animation: bottombar-back 500ms 0s;
		-webkit-animation-fill-mode: forwards;
		-moz-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
	.toggled .icon-bar:nth-child(2) {
		top: 6px;
		-webkit-animation: topbar-x 500ms linear 0s;
		-moz-animation: topbar-x 500ms linear 0s;
		animation: topbar-x 500ms 0s;
		-webkit-animation-fill-mode: forwards;
		-moz-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
	.toggled .icon-bar:nth-child(3) {
		opacity: 0;
	}
	.toggled .icon-bar:nth-child(4) {
		bottom: 6px;
		-webkit-animation: bottombar-x 500ms linear 0s;
		-moz-animation: bottombar-x 500ms linear 0s;
		animation: bottombar-x 500ms 0s;
		-webkit-animation-fill-mode: forwards;
		-moz-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@-moz-keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	.dropdown-menu .divider {
		background-color: rgba(229, 229, 229, 0.15);
	}
	.navbar-nav {
		margin: 1px 0;
	}
	.navbar-nav .open .dropdown-menu&gt;li&gt;a {
		padding: 15px 15px 5px 50px;
	}
	.navbar-nav .open .dropdown-menu&gt;li:first-child&gt;a {
		padding: 5px 15px 5px 50px;
	}
	.navbar-nav .open .dropdown-menu&gt;li:last-child&gt;a {
		padding: 15px 15px 25px 50px;
	}
	[class*="navbar-"] .navbar-nav&gt;li&gt;a,
	[class*="navbar-"] .navbar-nav&gt;li&gt;a:hover,
	[class*="navbar-"] .navbar-nav&gt;li&gt;a:focus,
	[class*="navbar-"] .navbar-nav .active&gt;a,
	[class*="navbar-"] .navbar-nav .active&gt;a:hover,
	[class*="navbar-"] .navbar-nav .active&gt;a:focus,
	[class*="navbar-"] .navbar-nav .open .dropdown-menu&gt;li&gt;a,
	[class*="navbar-"] .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover,
	[class*="navbar-"] .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,
	[class*="navbar-"] .navbar-nav .navbar-nav .open .dropdown-menu&gt;li&gt;a:active {
		color: white;
	}
	[class*="navbar-"] .navbar-nav&gt;li&gt;a,
	[class*="navbar-"] .navbar-nav&gt;li&gt;a:hover,
	[class*="navbar-"] .navbar-nav&gt;li&gt;a:focus,
	[class*="navbar-"] .navbar-nav .open .dropdown-menu&gt;li&gt;a,
	[class*="navbar-"] .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover,
	[class*="navbar-"] .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus {
		opacity: .7;
		background: transparent;
	}
	[class*="navbar-"] .navbar-nav.navbar-nav .open .dropdown-menu&gt;li&gt;a:active {
		opacity: 1;
	}
	[class*="navbar-"] .navbar-nav .dropdown&gt;a:hover .caret {
		border-bottom-color: #777;
		border-top-color: #777;
	}
	[class*="navbar-"] .navbar-nav .dropdown&gt;a:active .caret {
		border-bottom-color: white;
		border-top-color: white;
	}
	.dropdown-menu {
		display: none;
	}
	.navbar-fixed-top {
		-webkit-backface-visibility: hidden;
	}
	.close-layer {
		height: 100%;
		width: 100%;
		position: absolute;
		opacity: 0;
		top: 0;
		left: auto;
		content: "";
		z-index: 9999;
		overflow-x: hidden;
		background-color: rgba(0, 0, 0, 0.35);
		-webkit-transition: all 370ms ease-in;
		-moz-transition: all 370ms ease-in;
		-o-transition: all 370ms ease-in;
		-ms-transition: all 370ms ease-in;
		transition: all 370ms ease-in;
	}
	.close-layer.visible {
		opacity: 1;
	}
	.social-line .btn {
		margin: 0 0 10px 0;
	}
	.subscribe-line .form-control {
		margin: 0 0 10px 0;
	}
	.social-line.pull-right {
		float: none;
	}
	.footer nav.pull-left {
		float: none !important;
	}
	.footer:not(.footer-big) nav&gt;ul li {
		float: none;
	}
	.social-area.pull-right {
		float: none !important;
	}
	.form-control+.form-control-feedback {
		margin-top: -8px;
	}
	.navbar-toggle:hover,
	.navbar-toggle:focus {
		background-color: transparent !important;
	}
	.btn.dropdown-toggle {
		margin-bottom: 0;
	}
	.media-post .author {
		width: 20%;
		float: none !important;
		display: block;
		margin: 0 auto 10px;
	}
	.media-post .media-body {
		width: 100%;
	}
	.navbar-collapse.collapse {
		height: 100% !important;
	}
	.navbar-collapse.collapse.in {
		display: block;
	}
	.navbar-header .collapse,
	.navbar-toggle {
		display: block !important;
	}
	.navbar-header {
		float: none;
	}
	.navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-collapse .nav p {
		font-size: 14px;
		margin: 0;
	}
	.navbar-collapse [class^="pe-7s-"] {
		float: left;
		font-size: 20px;
		margin-right: 10px;
	}
	.table-responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-x: scroll;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		-webkit-overflow-scrolling: touch;
	}
	.sidebar .sidebar-wrapper {
		padding-bottom: 60px;
	}
	.navbar-minimize {
		display: none;
	}
}


/*            Navigation menu                */

.nav-pills&gt;li+li {
	margin-left: 0;
}

.nav-pills&gt;li&gt;a {
	border: 1px solid #23CCEF;
	border-radius: 0;
	color: #23CCEF;
	margin-left: -1px;
}

.nav-pills&gt;li&gt;a:hover,
.nav-pills&gt;li&gt;a:focus {
	background-color: #F5F5F5;
}

.nav-pills&gt;li.active&gt;a,
.nav-pills&gt;li.active&gt;a:hover,
.nav-pills&gt;li.active&gt;a:focus {
	background-color: #23CCEF;
	color: #FFFFFF;
}

.nav-pills&gt;li:first-child&gt;a {
	border-radius: 4px 0 0 4px;
	margin: 0;
}

.nav-pills&gt;li:last-child&gt;a {
	border-radius: 0 4px 4px 0;
}

.pagination&gt;li.disabled {
	opacity: .4;
}

.pagination.pagination-no-border&gt;li&gt;a,
.pagination.pagination-no-border&gt;li&gt;span {
	border: 0;
}

.pagination&gt;li&gt;a,
.pagination&gt;li&gt;span,
.pagination&gt;li:first-child&gt;a,
.pagination&gt;li:first-child&gt;span,
.pagination&gt;li:last-child&gt;a,
.pagination&gt;li:last-child&gt;span {
	margin: 0 2px;
	color: #797979;
}

.pagination&gt;li.active&gt;a,
.pagination&gt;li.active&gt;span,
.pagination&gt;li.active&gt;a:hover,
.pagination&gt;li.active&gt;span:hover,
.pagination&gt;li.active&gt;a:focus,
.pagination&gt;li.active&gt;span:focus {
	background-color: #23CCEF;
	border: 0;
	color: #FFFFFF;
	padding: 7px 13px;
}

.nav-pills-blue&gt;li.active&gt;a,
.nav-pills-blue&gt;li.active&gt;a:hover,
.nav-pills-blue&gt;li.active&gt;a:focus {
	background-color: #447DF7;
}

.pagination-blue&gt;li.active a,
.pagination-blue&gt;li.active a:hover,
.pagination-blue&gt;li.active a:focus,
.pagination-blue&gt;li.active span,
.pagination-blue&gt;li.active span:hover,
.pagination-blue&gt;li.active span:focus {
	background-color: #447DF7;
}

.nav-pills-azure&gt;li.active&gt;a,
.nav-pills-azure&gt;li.active&gt;a:hover,
.nav-pills-azure&gt;li.active&gt;a:focus {
	background-color: #23CCEF;
}

.pagination-azure&gt;li.active a,
.pagination-azure&gt;li.active a:hover,
.pagination-azure&gt;li.active a:focus,
.pagination-azure&gt;li.active span,
.pagination-azure&gt;li.active span:hover,
.pagination-azure&gt;li.active span:focus {
	background-color: #23CCEF;
}

.nav-pills-green&gt;li.active&gt;a,
.nav-pills-green&gt;li.active&gt;a:hover,
.nav-pills-green&gt;li.active&gt;a:focus {
	background-color: #87CB16;
}

.pagination-green&gt;li.active a,
.pagination-green&gt;li.active a:hover,
.pagination-green&gt;li.active a:focus,
.pagination-green&gt;li.active span,
.pagination-green&gt;li.active span:hover,
.pagination-green&gt;li.active span:focus {
	background-color: #87CB16;
}

.nav-pills-orange&gt;li.active&gt;a,
.nav-pills-orange&gt;li.active&gt;a:hover,
.nav-pills-orange&gt;li.active&gt;a:focus {
	background-color: #FFA534;
}

.pagination-orange&gt;li.active a,
.pagination-orange&gt;li.active a:hover,
.pagination-orange&gt;li.active a:focus,
.pagination-orange&gt;li.active span,
.pagination-orange&gt;li.active span:hover,
.pagination-orange&gt;li.active span:focus {
	background-color: #FFA534;
}

.nav-pills-red&gt;li.active&gt;a,
.nav-pills-red&gt;li.active&gt;a:hover,
.nav-pills-red&gt;li.active&gt;a:focus {
	background-color: #FB404B;
}

.pagination-red&gt;li.active a,
.pagination-red&gt;li.active a:hover,
.pagination-red&gt;li.active a:focus,
.pagination-red&gt;li.active span,
.pagination-red&gt;li.active span:hover,
.pagination-red&gt;li.active span:focus {
	background-color: #FB404B;
}

.nav-pills-blue&gt;li&gt;a {
	border: 1px solid #447DF7;
	color: #447DF7;
}

.nav-pills-azure&gt;li&gt;a {
	border: 1px solid #23CCEF;
	color: #23CCEF;
}

.nav-pills-green&gt;li&gt;a {
	border: 1px solid #87CB16;
	color: #87CB16;
}

.nav-pills-orange&gt;li&gt;a {
	border: 1px solid #FFA534;
	color: #FFA534;
}

.nav-pills-red&gt;li&gt;a {
	border: 1px solid #FB404B;
	color: #FB404B;
}

.nav-text,
.nav-icons {
	padding: 10px 0 0;
}

.nav-text&gt;li&gt;a,
.nav-icons&gt;li&gt;a {
	display: block;
	padding: 0px 16px;
	color: #9A9A9A;
	text-align: center;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.nav-text&gt;li&gt;a:hover,
.nav-text&gt;li&gt;a:focus,
.nav-icons&gt;li&gt;a:hover,
.nav-icons&gt;li&gt;a:focus {
	background-color: transparent;
	opacity: 1;
	filter: alpha(opacity=100);
}

.nav-text&gt;li:first-child a,
.nav-icons&gt;li:first-child a {
	padding-left: 0;
}

.nav-text&gt;li.active a,
.nav-icons&gt;li.active a {
	color: #23CCEF;
}

.nav-icons&gt;li {
	display: inline-block;
}

.nav-icons&gt;li&gt;a {
	padding: 0 10px;
	margin-bottom: 10px;
}

.nav-icons&gt;li&gt;a i {
	font-size: 22px;
	margin-bottom: 10px;
	width: 22px;
}

.nav-icons.nav-stacked&gt;li {
	display: block;
}

.nav-icons.nav-stacked&gt;li&gt;a {
	margin-bottom: 20px;
}

.nav-blue&gt;li.active a {
	color: #447DF7;
}

.nav-azure&gt;li.active a {
	color: #23CCEF;
}

.nav-green&gt;li.active a {
	color: #87CB16;
}

.nav-orange&gt;li.active a {
	color: #FFA534;
}

.nav-red&gt;li.active a {
	color: #FB404B;
}

.nav-text {
	margin: 0 0 10px 0;
}

.nav-text&gt;li&gt;a {
	font-size: 14px;
	text-transform: uppercase;
	padding: 3px 0;
	text-align: left;
	font-weight: 500;
}

.nav-text&gt;li:first-child&gt;a {
	padding-top: 0;
}

.nav-text h4 {
	margin-top: 0;
}

.nav-text:not(.nav-stacked)&gt;li {
	display: inline-block;
}

.nav-text:not(.nav-stacked)&gt;li&gt;a {
	margin-right: 15px;
}

.tab-pane {
	padding: 15px 0;
}

.nav-container {
	display: block;
	width: 100%;
	text-align: center;
}

.content-full-width .nav-tabs li:first-child {
	padding-left: 15px;
}

.content-full-width .tab-pane {
	padding: 15px;
}

.button_width {
	width: 100%;
}


/*jyoti style*/

.card {
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.card {
	border: 0;
	margin-bottom: 30px;
	margin-top: 30px;
	border-radius: 6px;
	color: #333333;
	background: #fff;
	width: 100%;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.card.card-stats{
  	min-height: 180px;  
}
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	background-clip: border-box;
	border: 1px solid #eeeeee;
	border-radius: 0.25rem;

}

.card-stats .card-header.card-header-icon,
.card-stats .card-header.card-header-text {
	text-align: right;
}

.card [class*="card-header-"] {
	margin: 0px 15px 0;
	position: relative;
}

.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:hover {
	box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2);
}

/*.card .card-header {
	z-index: 3 !important;
}*/

.card [class*="card-header-"],
.card[class*="bg-"] {
	color: #fff;
}

.card .card-header {
	border-bottom: none;
	background: transparent;
}

.card-header:first-child {
	border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.ripple-container {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	border-radius: inherit;
}

.btn-danger {
	color: #fff;
	background-color: #e71711;
	border-color: #761c19;
}

.btn.btn-outline:focus,
.btn.btn-outline.focus,
.btn.btn-outline:hover {
	color: #333333;
	background-color: rgba(153, 153, 153, 0.2);
	border-color: #333333;
}

.btn.btn-danger:focus,
.btn.btn-danger:active,
.btn.btn-danger:hover {
	box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2);
}
#footer .footer-top .footer-contact h4 {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}
#footer .footer-top {
    padding: 60px 0 30px 0;
}
#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #222!important;
    position: relative;
    padding-bottom: 12px;
    margin-top: 0px;
     font-family: "Raleway", sans-serif;
}
#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    /* font-family: "Raleway", sans-serif; */
    color: #222;
    font-weight: bolder;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: bolder;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #021038;
   font-size: 13px;
    line-height: 1;
    font-weight: bold;
}
#footer .footer-top .footer-links ul a {
    color: #222;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-weight: 700;
}
#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
#footer {
    color: #222;
    font-size: 14px;
    background: url(../../../assets/img/images22.jpeg);
    box-shadow: 7px 0px 23px 5px #021038;
    background-size: cover;
    background-position: center;
}

.btn.btn-round {
	border-radius: 30px;
}

.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:hover {
	box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2);
}

.btn.btn-success:focus,
.btn.btn-success:active,
.btn.btn-success:hover {
	box-shadow: 0 14px 26px -12px rgba(76, 175, 80, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2);
}

.btn.btn-info:focus,
.btn.btn-info:active,
.btn.btn-info:hover {
	box-shadow: 0 14px 26px -12px rgba(0, 188, 212, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 188, 212, 0.2);
		color: #fff;
		background: #11bfe3;
}

.btn.btn-outline {
	color: #333333;
	background-color: transparent;
	border-color: #333333;
}

.card [class*="card-header-"] .card-icon,
.card [class*="card-header-"] .card-text {
	border-radius: 3px;
	background-color: #999999;
	padding: 15px;
	margin-top: -20px;
	margin-right: 15px;
	float: left;
}

.card-stats .card-header.card-header-icon i {
	font-size: 35px;
	line-height: 50px;
	width: 50px;
	height: 50px;
	text-align: center;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
}

.card-stats .card-header.card-header-icon:hover i {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	color: #fff;
	opacity: 1;
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

.card-stats .card-header .card-category:not([class*="text-"]) {
margin-bottom: 0;
    color: #000000;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 15px;

}
span.box_red {
    color: #065b0a;
}

.card .card-header.card-header-icon .card-title,
.card .card-header.card-header-text .card-title {
	margin-top: 15px;
	color: #3C4858;
}

.card .card-body+.card-footer .stats,
.card .card-footer .stats {
	color: #999999;
	font-size: 12px;
	line-height: 22px;
}

.card .card-body+.card-footer .stats .material-icons,
.card .card-footer .stats .material-icons {
	position: relative;
	top: 4px;
	font-size: 16px;
}

.card .card-header-warning .card-icon,
.card .card-header-warning:not(.card-header-icon):not(.card-header-text),
.card .card-header-warning .card-text {
	box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(255, 152, 0, 0.4);
}

.card .card-header-warning .card-icon,
.card .card-header-warning .card-text,
.card .card-header-warning:not(.card-header-icon):not(.card-header-text),
.card.bg-warning,
.card.card-rotate.bg-warning .front,
.card.card-rotate.bg-warning .back {
	background: linear-gradient(60deg, #ffa726, #fb8c00);
}

.card [class*="card-header-"] .card-icon,
.card [class*="card-header-"] .card-text {
	border-radius: 3px;
	background-color: #999999;
	padding: 10px;
	margin-top: -35px;
	margin-right: 5px;
	float: left;
}

.card .card-header-success .card-icon,
.card .card-header-success:not(.card-header-icon):not(.card-header-text),
.card .card-header-success .card-text {
	box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(76, 175, 80, 0.4);
}

.card .card-header-success .card-icon,
.card .card-header-success .card-text,
.card .card-header-success:not(.card-header-icon):not(.card-header-text),
.card.bg-success,
.card.card-rotate.bg-success .front,
.card.card-rotate.bg-success .back {
	background: linear-gradient(60deg, #66bb6a, #43a047);
}

.card .card-header-danger .card-icon,
.card .card-header-danger:not(.card-header-icon):not(.card-header-text),
.card .card-header-danger .card-text {
	box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(244, 67, 54, 0.4);
}

.card .card-header-danger .card-icon,
.card .card-header-danger .card-text,
.card .card-header-danger:not(.card-header-icon):not(.card-header-text),
.card.bg-danger,
.card.card-rotate.bg-danger .front,
.card.card-rotate.bg-danger .back {
	background: linear-gradient(60deg, #ef5350, #e53935);
}

.card .card-header-info .card-icon,
.card .card-header-info:not(.card-header-icon):not(.card-header-text),
.card .card-header-info .card-text {
	box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(0, 188, 212, 0.4);
}

.card .card-header-info .card-icon,
.card .card-header-info .card-text,
.card .card-header-info:not(.card-header-icon):not(.card-header-text),
.card.bg-info,
.card.card-rotate.bg-info .front,
.card.card-rotate.bg-info .back {
	background: linear-gradient(60deg, #26c6da, #00acc1);
}

.card .card-body {
	padding: 0.9375rem 20px;
	position: relative;
}

.card .card-title {
	margin-top: 0;
	margin-bottom: 15px;
}

.card .card-category:not([class*="text-"]) {
	color: #999999;
}

.card.card-chart .card-category {
	margin: 0;
}

.text-success {
	color: #4caf50 !important;
}

.card [class*="card-header-"]:not(.card-header-icon):not(.card-header-text):not(.card-header-image) {
	border-radius: 3px;
	margin-top: -20px;
	padding: 15px;
}

.card .card-header-primary .card-icon,
.card .card-header-primary:not(.card-header-icon):not(.card-header-text),
.card .card-header-primary .card-text {
	box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(156, 39, 176, 0.4);
}

.card .card-header.card-header-tabs .nav-tabs-title {
	float: left;
	padding: 10px 10px 10px 0;
	line-height: 24px;
}

.nav-tabs .nav-item {
	margin-bottom: -1px;
}

.nav-tabs .nav-item .nav-link.active {
	background-color: rgba(255, 255, 255, 0.2);
	transition: 0.3s background-color 0.2s;
}

.nav-tabs .nav-item .material-icons {
	margin: -1px 5px 0 0;
}

a .material-icons {
	vertical-align: middle;
}

.card .card-header-primary .card-icon,
.card .card-header-primary .card-text,
.card .card-header-primary:not(.card-header-icon):not(.card-header-text),
.card.bg-primary,
.card.card-rotate.bg-primary .front,
.card.card-rotate.bg-primary .back {
	background: linear-gradient(60deg, #ab47bc, #8e24aa);
}

.nav-tabs .nav-item .nav-link.active {
	background-color: rgba(255, 255, 255, 0.2);
	transition: 0.3s background-color 0.2s;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-item .nav-link:hover,
.nav-tabs .nav-item .nav-link:focus {
	border: 0 !important;
	color: #fff !important;
	font-weight: 500;
}

.btn.btn-primary.btn-link {
	background-color: transparent;
	color: #9c27b0;
	box-shadow: none;
	border: none;
	font-size: 18px;
}

.btn.btn-danger.btn-link {
	background-color: transparent;
	color: #f44336;
	box-shadow: none;
	border: none;
	font-size: 18px;
}

.card [class*="card-header-"],
.card[class*="bg-"] {
	color: #fff;
}

.card [class*="card-header-"] .card-title+.card-category {
	color: rgba(255, 255, 255, 0.62);
}

.card [class*="card-header-"] .card-title a,
.card [class*="card-header-"] .card-title,
.card [class*="card-header-"] .icon i,
.card[class*="bg-"] .card-title a,
.card[class*="bg-"] .card-title,
.card[class*="bg-"] .icon i {
	color: #fff;
}

.text-warning {
	color: #ff9800 !important;
}

.mybtni li {
	list-style: none;
	float: left;
	border: 1px solid #fb8865;
}

.widget.wgreen .widget-head {
	background-color: #ab8ce4;
	border: 1px solid #ab8ce4;
	color: #fff;
	padding: 10px;
}

.card-footer {
	padding: .75rem 1.25rem;
	background-color: #f7f7f9;
	border-top: 1px solid rgba(0, 0, 0, .125);
}

.table&gt;tbody&gt;tr&gt;td,
.table&gt;tbody&gt;tr&gt;th,
.table&gt;tfoot&gt;tr&gt;td,
.table&gt;tfoot&gt;tr&gt;th,
.table&gt;thead&gt;tr&gt;td,
.table&gt;thead&gt;tr&gt;th {
	padding: 8px !important;
}

.promoBox {
	display: inline-block;
	position: relative;
	margin: 5px;
	padding: 10px;
	border: 2px solid #ddd;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	
	background: #ffffff;
	background: -moz-linear-gradient(-45deg, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ffffff), color-stop(50%, #f1f1f1), color-stop(51%, #e1e1e1), color-stop(100%, #f6f6f6));
	background: -webkit-linear-gradient(-45deg, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	background: -o-linear-gradient(-45deg, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	background: -ms-linear-gradient(-45deg, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6', GradientType=1);
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
}

.promoBox aside {
	position: absolute;
	width: 230px;
	right: 0;
	margin: 0 -65px 0 0;
	-webkit-transform: rotate(35deg);
	-khtml-transform: rotate(35deg);
	-moz-transform: rotate(35deg);
	-ms-transform: rotate(35deg);
	transform: rotate(35deg);
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
	text-align: center;
	text-transform: uppercase;
	font-size: 10px;
	color: #fff;
	background: #4f85bb;
	background: -moz-linear-gradient(-45deg, #4f85bb 0%, #4f85bb 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #4f85bb), color-stop(100%, #4f85bb));
	background: -webkit-linear-gradient(-45deg, #4f85bb 0%, #4f85bb 100%);
	background: -o-linear-gradient(-45deg, #4f85bb 0%, #4f85bb 100%);
	background: -ms-linear-gradient(-45deg, #4f85bb 0%, #4f85bb 100%);
	background: linear-gradient(135deg, #4f85bb 0%, #4f85bb 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f85bb', endColorstr='#4f85bb', GradientType=1);
}

.promoBox aside p {
	padding: 10px 80px 10px 80px;
	margin: 0;
}

.promoBox h4 {
	font-size: 25px;
	margin: 0;
	padding: 0 35% 10px 0;
	line-height: 25px;
	border-bottom: 1px solid #ddd;
}

.promoBox p {
	font-size: 12px;
}


/* COLOR: Box &amp; Text
\* --------------------------------- */

.promoBox.info-box {
	background: #e0f3fa;
	background: -moz-linear-gradient(-45deg, #e0f3fa 0%, #d8f0fc 50%, #b8e2f6 51%, #b6dffd 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #e0f3fa), color-stop(50%, #d8f0fc), color-stop(51%, #b8e2f6), color-stop(100%, #b6dffd));
	background: -webkit-linear-gradient(-45deg, #e0f3fa 0%, #d8f0fc 50%, #b8e2f6 51%, #b6dffd 100%);
	background: -o-linear-gradient(-45deg, #e0f3fa 0%, #d8f0fc 50%, #b8e2f6 51%, #b6dffd 100%);
	background: -ms-linear-gradient(-45deg, #e0f3fa 0%, #d8f0fc 50%, #b8e2f6 51%, #b6dffd 100%);
	background: linear-gradient(135deg, #e0f3fa 0%, #d8f0fc 50%, #b8e2f6 51%, #b6dffd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0f3fa', endColorstr='#b6dffd', GradientType=1);
	border-color: #b6e1f6;
}

.promoBox.info-box h4 {
	color: #225b9c;
	border-color: #8dc2dd;
}

.promoBox.warning-box {
	background: #fceabb;
	background: -moz-linear-gradient(-45deg, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #fceabb), color-stop(50%, #fccd4d), color-stop(51%, #f8b500), color-stop(100%, #fbdf93));
	background: -webkit-linear-gradient(-45deg, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
	background: -o-linear-gradient(-45deg, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
	background: -ms-linear-gradient(-45deg, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
	background: linear-gradient(135deg, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93', GradientType=1);
	border-color: #fccf5a;
}

.promoBox.warning-box h4 {
	color: #775600;
	border-color: #9e8135;
}

.promoBox.danger-box {
	background: #f85032;
	background: -moz-linear-gradient(-45deg, #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #f85032), color-stop(50%, #f16f5c), color-stop(51%, #f6290c), color-stop(71%, #f02f17), color-stop(100%, #e73827));
	background: -webkit-linear-gradient(-45deg, #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%);
	background: -o-linear-gradient(-45deg, #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%);
	background: -ms-linear-gradient(-45deg, #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%);
	background: linear-gradient(135deg, #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#e73827', GradientType=1);
	border-color: #ff433e;
	color: #fff;
}

.promoBox.danger-box h4 {
	color: #fff;
	border-color: #ff706d;
}

.promoBox.success-box {
	background: #9dd53a;
	background: -moz-linear-gradient(-45deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #9dd53a), color-stop(50%, #a1d54f), color-stop(51%, #80c217), color-stop(100%, #7cbc0a));
	background: -webkit-linear-gradient(-45deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	background: -o-linear-gradient(-45deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	background: -ms-linear-gradient(-45deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	background: linear-gradient(135deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dd53a', endColorstr='#7cbc0a', GradientType=1);
	border-color: #9dd53a;
	color: #fff;
}

.promoBox.success-box h4 {
	color: #4d690b;
	border-color: #ccfc5a;
}


/* COLOR: Ribbon
\* --------------------------------- */

.promoBox.info-ribbon aside {
	background: #1e5799;
	background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e5799), color-stop(50%, #2989d8), color-stop(51%, #207cca), color-stop(100%, #7db9e8));
	background: -webkit-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
	background: -o-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
	background: -ms-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
	background: linear-gradient(to bottom, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8', GradientType=0);
}

.promoBox.warning-ribbon aside {
	background: #f9c667;
	background: -moz-linear-gradient(-45deg, #f9c667 0%, #f79621 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #f9c667), color-stop(100%, #f79621));
	background: -webkit-linear-gradient(-45deg, #f9c667 0%, #f79621 100%);
	background: -o-linear-gradient(-45deg, #f9c667 0%, #f79621 100%);
	background: -ms-linear-gradient(-45deg, #f9c667 0%, #f79621 100%);
	background: linear-gradient(135deg, #f9c667 0%, #f79621 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9c667', endColorstr='#f79621', GradientType=1);
}

.promoBox.danger-ribbon aside {
	background: #ff3019;
	background: -moz-linear-gradient(45deg, #ff3019 0%, #cf0404 100%);
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #ff3019), color-stop(100%, #cf0404));
	background: -webkit-linear-gradient(45deg, #ff3019 0%, #cf0404 100%);
	background: -o-linear-gradient(45deg, #ff3019 0%, #cf0404 100%);
	background: -ms-linear-gradient(45deg, #ff3019 0%, #cf0404 100%);
	background: linear-gradient(45deg, #ff3019 0%, #cf0404 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404', GradientType=1);
}

.promoBox.success-ribbon aside {
	background: #a9db80;
	background: -moz-linear-gradient(-45deg, #a9db80 0%, #96c56f 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #a9db80), color-stop(100%, #96c56f));
	background: -webkit-linear-gradient(-45deg, #a9db80 0%, #96c56f 100%);
	background: -o-linear-gradient(-45deg, #a9db80 0%, #96c56f 100%);
	background: -ms-linear-gradient(-45deg, #a9db80 0%, #96c56f 100%);
	background: linear-gradient(135deg, #a9db80 0%, #96c56f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9db80', endColorstr='#96c56f', GradientType=1);
}

#benni_add {
	border: 1px solid #ccc;
}

.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	border-radius: 35px;
	font-size: 24px;
	line-height: 1.33;
}

.white-box {
	background: #fff;
	padding: 20px;
}

.padding20 {
	padding: 20px;
}

.widget.wlightblue .widget-head {
	background-color: #ab8ce4;
	border: 1px solid #ab8ce4;
	color: #fff;
	padding: 10px;
}

.widget.wblue .widget-head {
	background-color: #9c27b0;
	border: 1px solid #9c27b0;
	color: #fff;
	padding: 10px;
}

.widget.worange .widget-head {
	background-color: #ab8ce4;
	border: 1px solid #ab8ce4;
	color: #fff;
	padding: 10px;
}


/*dashboard style*/

.progress-outer {
	background: #fff;
	border-radius: 50px;
	margin: 10px 0;
	box-shadow: 0 0 10px rgba(209, 219, 231, 0.7);
}

.progress {
	height: 15px;
	margin: 0;
	overflow: visible;
	border-radius: 50px;
	background: #eaedf3;
	box-shadow: inset 0 10px 10px rgba(244, 245, 250, 0.9);
}

.progress .progress-bar {
	border-radius: 50px;
}

.progress .progress-value {
	left: 10%;
	position: absolute;
	border: 0px;
	font-size: 10px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 2px;
}

.progress-bar.active {
	animation: reverse progress-bar-stripes 0.40s linear infinite, animate-positive 2s;
}

@-webkit-keyframes animate-positive {
	0% {
		width: 0%;
	}
}

@keyframes animate-positive {
	0% {
		width: 0%;
	}
}

html,
body {
	max-height: 100%;
/*	overflow-x: hidden;
	overflow-y: auto; */
}

.wrapper {
	min-height: 100%;
	position: static;
	
}

.wrapper:before,
.wrapper:after {
	content: " ";
	display: table
}

.wrapper:after {
	clear: both
}

.layout-boxed .wrapper {
	max-width: 1250px;
	margin: 0 auto;
	min-height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	position: relative
}

.layout-boxed {
	background: url('../img/boxed-bg.jpg') repeat fixed
}

.content-wrapper,
.right-side,
.main-footer {
	-webkit-transition: -webkit-transform .3s ease-in-out, margin .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out, margin .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out, margin .3s ease-in-out;
	transition: transform .3s ease-in-out, margin .3s ease-in-out;
	margin-left: 230px;
	z-index: 820
}

.layout-top-nav .content-wrapper,
.layout-top-nav .right-side,
.layout-top-nav .main-footer {
	margin-left: 0
}

@media (max-width:767px) {
	.content-wrapper,
	.right-side,
	.main-footer {
		margin-left: 0
	}
}

@media (min-width:768px) {
	.sidebar-collapse .content-wrapper,
	.sidebar-collapse .right-side,
	.sidebar-collapse .main-footer {
		margin-left: 0
	}
}

@media (max-width:767px) {
	.sidebar-open .content-wrapper,
	.sidebar-open .right-side,
	.sidebar-open .main-footer {
		-webkit-transform: translate(230px, 0);
		-ms-transform: translate(230px, 0);
		-o-transform: translate(230px, 0);
		transform: translate(230px, 0)
	}
}

.content-wrapper,
.right-side {
	min-height: 100%;
	background-color: #ecf0f5;
	z-index: 800
}

.main-footer {
	background: #fff;
	padding: 15px;
	color: #444;
	border-top: 1px solid #d2d6de
}

.fixed .main-header,
.fixed .main-sidebar,
.fixed .left-side {
	position: fixed
}

.fixed .main-header {
	top: 0;
	right: 0;
	left: 0
}

.fixed .content-wrapper,
.fixed .right-side {
	padding-top: 50px
}

@media (max-width:767px) {
	.fixed .content-wrapper,
	.fixed .right-side {
		padding-top: 100px
	}
}

.fixed.layout-boxed .wrapper {
	max-width: 100%
}

.content {
    
	padding: 15px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: 'Source Sans Pro', sans-serif
}

a {
	color: #3c8dbc
}

a:hover,
a:active,
a:focus {
	outline: none;
	text-decoration: none;
	color: #72afd2
}

.page-header {
	margin: 10px 0 20px 0;
	font-size: 22px
}

.page-header&gt;small {
	color: #666;
	display: block;
	margin-top: 5px
}

.main-header {
	position: relative;
	max-height: 100px;
	z-index: 1030
}

.main-header&gt;.navbar {
	-webkit-transition: margin-left .3s ease-in-out;
	-o-transition: margin-left .3s ease-in-out;
	transition: margin-left .3s ease-in-out;
	margin-bottom: 0;
	margin-left: 230px;
	border: none;
	min-height: 50px;
	border-radius: 0
}

.layout-top-nav .main-header&gt;.navbar {
	margin-left: 0!important
}

.main-header #navbar-search-input {
	background: rgba(255, 255, 255, 0.2);
	border-color: transparent
}

.main-header #navbar-search-input:focus,
.main-header #navbar-search-input:active {
	border-color: rgba(0, 0, 0, 0.1) !important;
	background: rgba(255, 255, 255, 0.9)
}

.main-header #navbar-search-input::-moz-placeholder {
	color: #ccc;
	opacity: 1
}

.main-header #navbar-search-input:-ms-input-placeholder {
	color: #ccc
}

.main-header #navbar-search-input::-webkit-input-placeholder {
	color: #ccc
}

.main-header .navbar-custom-menu,
.main-header .navbar-right {
	float: right
}

@media (max-width:991px) {
	.main-header .navbar-custom-menu a,
	.main-header .navbar-right a {
		color: inherit;
		background: transparent
	}
}

@media (max-width:767px) {
	.main-header .navbar-right {
		float: none
	}
	.navbar-collapse .main-header .navbar-right {
		margin: 7.5px -15px
	}
	.main-header .navbar-right&gt;li {
		color: inherit;
		border: 0
	}
}

.main-header .sidebar-toggle {
	float: left;
	background-color: transparent;
	background-image: none;
	padding: 15px 15px;
	font-family: fontAwesome
}

.main-header .sidebar-toggle:before {
	content: "\f0c9"
}

.main-header .sidebar-toggle:hover {
	color: #fff
}

.main-header .sidebar-toggle:focus,
.main-header .sidebar-toggle:active {
	background: transparent
}

.main-header .sidebar-toggle .icon-bar {
	display: none
}

.main-header .navbar .nav&gt;li.user&gt;a&gt;.fa,
.main-header .navbar .nav&gt;li.user&gt;a&gt;.glyphicon,
.main-header .navbar .nav&gt;li.user&gt;a&gt;.ion {
	margin-right: 5px
}

.main-header .navbar .nav&gt;li&gt;a&gt;.label {
	position: absolute;
	top: 9px;
	right: 7px;
	text-align: center;
	font-size: 9px;
	padding: 2px 3px;
	line-height: .9
}

.main-header .logo {
	-webkit-transition: width .3s ease-in-out;
	-o-transition: width .3s ease-in-out;
	transition: width .3s ease-in-out;
	display: block;
	float: left;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	width: 230px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding: 0 15px;
	font-weight: 300
}

.main-header .logo .logo-lg {
	display: block
}

.main-header .logo .logo-mini {
	display: none
}

.main-header .navbar-brand {
	color: #fff
}

.content-header {
	position: relative;
	padding: 15px 15px 0 15px
}

.content-header&gt;h1 {
	margin: 0;
	font-size: 24px
}

.content-header&gt;h1&gt;small {
	font-size: 15px;
	display: inline-block;
	padding-left: 4px;
	font-weight: 300
}

.content-header&gt;.breadcrumb {
	float: right;
	background: transparent;
	margin-top: 0px;
	margin-bottom: 0;
	font-size: 12px;
	padding: 7px 5px;
	position: absolute;
	top: 15px;
	right: 10px;
	border-radius: 2px
}

.content-header&gt;.breadcrumb&gt;li&gt;a {
	color: #444;
	text-decoration: none;
	display: inline-block
}

.content-header&gt;.breadcrumb&gt;li&gt;a&gt;.fa,
.content-header&gt;.breadcrumb&gt;li&gt;a&gt;.glyphicon,
.content-header&gt;.breadcrumb&gt;li&gt;a&gt;.ion {
	margin-right: 5px
}

.content-header&gt;.breadcrumb&gt;li+li:before {
	content: '&gt;\00a0'
}

@media (max-width:991px) {
	.content-header&gt;.breadcrumb {
		position: relative;
		margin-top: 5px;
		top: 0;
		right: 0;
		float: none;
		background: #d2d6de;
		padding-left: 10px
	}
	.content-header&gt;.breadcrumb li:before {
		color: #97a0b3
	}
}

.navbar-toggle {
	color: #fff;
	border: 0;
	margin: 0;
	padding: 15px 15px
}

@media (max-width:991px) {
	.navbar-custom-menu .navbar-nav&gt;li {
		float: left
	}
	. navbar-custom-menu .navbar-nav {
		margin: 0;
		float: left
	}
	.navbar-custom-menu .navbar-nav&gt;li&gt;a {
		padding-top: 15px;
		padding-bottom: 15px;
		line-height: 20px
	}
}

@media (max-width:767px) {
	.main-header {
		position: relative
	}
	.main-header .logo,
	.main-header .navbar {
		width: 100%;
		float: none;
		position: relative!important
	}
	.main-header .navbar {
		margin: 0
	}
	.main-header .navbar-custom-menu {
		float: right
	}
	.main-sidebar,
	.left-side {
		padding-top: 100px!important
	}
}

@media (max-width:991px) {
	.navbar-collapse.pull-left {
		float: none!important
	}
	.navbar-collapse.pull-left+.navbar-custom-menu {
		display: block;
		position: absolute;
		top: 0;
		right: 40px
	}
}

.main-sidebar,
.left-side {
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 50px;
	min-height: 100%;
	width: 230px;
	z-index: 810;
	-webkit-transition: -webkit-transform .3s ease-in-out, width .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out, width .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out, width .3s ease-in-out;
	transition: transform .3s ease-in-out, width .3s ease-in-out
}

@media (max-width:767px) {
	.main-sidebar,
	.left-side {
		-webkit-transform: translate(-230px, 0);
		-ms-transform: translate(-230px, 0);
		-o-transform: translate(-230px, 0);
		transform: translate(-230px, 0)
	}
}

@media (min-width:768px) {
	.sidebar-collapse .main-sidebar,
	.sidebar-collapse .left-side {
		-webkit-transform: translate(-230px, 0);
		-ms-transform: translate(-230px, 0);
		-o-transform: translate(-230px, 0);
		transform: translate(-230px, 0)
	}
}

@media (max-width:767px) {
	.sidebar-open .main-sidebar,
	.sidebar-open .left-side {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0)
	}
}

.sidebar-form input:focus {
	border-color: transparent!important
}

.user-panel {
	padding: 10px
}

.user-panel:before,
.user-panel:after {
	content: " ";
	display: table
}

.user-panel:after {
	clear: both
}

.user-panel&gt;.image&gt;img {
	width: 100%;
	max-width: 45px;
	height: auto
}

.user-panel&gt;.info {
	font-weight: 600;
	padding: 5px 5px 5px 15px;
	font-size: 14px;
	line-height: 1
}

.user-panel&gt;.info&gt;p {
	margin-bottom: 9px
}

.user-panel&gt;.info&gt;a {
	text-decoration: none;
	padding-right: 5px;
	margin-top: 3px;
	font-size: 11px;
	font-weight: normal
}

.user-panel&gt;.info&gt;a&gt;.fa,
.user-panel&gt;.info&gt;a&gt;.ion,
.user-panel&gt;.info&gt;a&gt;.glyphicon {
	margin-right: 3px
}

.sidebar-menu {
	list-style: none;
	margin: 0;
	padding: 0
}

.sidebar-menu&gt;li {
	position: relative;
	margin: 0;
	padding: 0
}

.sidebar-menu&gt;li&gt;a {
	padding: 12px 5px 12px 15px;
	display: block
}

.sidebar-menu&gt;li&gt;a&gt;.fa,
.sidebar-menu&gt;li&gt;a&gt;.glyphicon,
.sidebar-menu&gt;li&gt;a&gt;.ion {
	width: 20px
}

.sidebar-menu&gt;li .label,
.sidebar-menu&gt;li .badge {
	margin-top: 3px;
	margin-right: 5px
}

.sidebar-menu li.header {
	padding: 10px 25px 10px 15px;
	font-size: 12px
}

.sidebar-menu li&gt;a&gt;.fa-angle-left {
	width: auto;
	height: auto;
	padding: 0;
	margin-right: 10px;
	margin-top: 3px
}

.sidebar-menu li.active&gt;a&gt;.fa-angle-left {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg)
}

.sidebar-menu li.active&gt;.treeview-menu {
	display: block
}

.sidebar-menu .treeview-menu {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: 5px
}

.sidebar-menu .treeview-menu .treeview-menu {
	padding-left: 20px
}

.sidebar-menu .treeview-menu&gt;li {
	margin: 0
}

.sidebar-menu .treeview-menu&gt;li&gt;a {
	padding: 5px 5px 5px 15px;
	display: block;
	font-size: 14px
}

.sidebar-menu .treeview-menu&gt;li&gt;a&gt;.fa,
.sidebar-menu .treeview-menu&gt;li&gt;a&gt;.glyphicon,
.sidebar-menu .treeview-menu&gt;li&gt;a&gt;.ion {
	width: 20px
}

.sidebar-menu .treeview-menu&gt;li&gt;a&gt;.fa-angle-left,
.sidebar-menu .treeview-menu&gt;li&gt;a&gt;.fa-angle-down {
	width: auto
}

@media (min-width:768px) {
	.sidebar-mini.sidebar-collapse .content-wrapper,
	.sidebar-mini.sidebar-collapse .right-side,
	.sidebar-mini.sidebar-collapse .main-footer {
		margin-left: 50px!important;
		z-index: 840
	}
	.sidebar-mini.sidebar-collapse .main-sidebar {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
		width: 50px!important;
		z-index: 850
	}
	.sidebar-mini.sidebar-collapse .main-sidebar .user-panel&gt;.info {
		display: none
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li {
		position: relative
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li&gt;a {
		margin-right: 0
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li&gt;a&gt;span,
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li&gt;.treeview-menu,
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li&gt;a&gt;.pull-right,
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li.header {
		display: none!important
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li&gt;a&gt;span {
		border-top-right-radius: 4px
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li:not(.treeview)&gt;a&gt;span {
		border-bottom-right-radius: 4px
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li&gt;.treeview-menu {
		padding-top: 5px;
		padding-bottom: 5px;
		border-bottom-right-radius: 4px
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li:hover&gt;a&gt;span:not(.pull-right),
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li:hover&gt;.treeview-menu {
		display: block!important;
		position: absolute;
		width: 180px;
		left: 50px
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li:hover&gt;a&gt;span {
		top: 0;
		padding: 12px 5px 12px 20px;
		background-color: inherit
	}
	.sidebar-mini.sidebar-collapse .sidebar-menu&gt;li:hover&gt;.treeview-menu {
		top: 44px;
		margin-left: 0
	}
	.sidebar-mini.sidebar-collapse .sidebar-form {
		display: none
	}
	.sidebar-mini.sidebar-collapse .main-header .logo {
		width: 50px
	}
	.sidebar-mini.sidebar-collapse .main-header .logo&gt;.logo-mini {
		display: block;
		margin-left: -15px;
		margin-right: -15px;
		font-size: 18px
	}
	.sidebar-mini.sidebar-collapse .main-header .logo&gt;.logo-lg {
		display: none
	}
	.sidebar-mini.sidebar-collapse .main-header .navbar {
		margin-left: 50px
	}
}

.control-sidebar-bg {
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	bottom: 0;
	width: 230px;
	background: #222d32
}

.control-sidebar-bg,
.control-sidebar {
	-webkit-transform: translate(230px, 0);
	-ms-transform: translate(230px, 0);
	-o-transform: translate(230px, 0);
	transform: translate(230px, 0);
	-webkit-transition: -webkit-transform .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out;
	transition: transform .3s ease-in-out
}

.control-sidebar {
	position: absolute;
	top: 50px;
	right: 0;
	width: 230px;
	z-index: 1010;
	color: #b8c7ce
}

@media (max-width:768px) {
	.control-sidebar {
		top: 100px
	}
}

.control-sidebar&gt;.tab-content {
	padding: 10px 15px
}

.control-sidebar.control-sidebar-open,
.control-sidebar.control-sidebar-open+.control-sidebar-bg {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.control-sidebar-open .control-sidebar-bg,
.control-sidebar-open .control-sidebar {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

@media (min-width:768px) {
	.control-sidebar-open .content-wrapper,
	.control-sidebar-open .right-side,
	.control-sidebar-open .main-footer {
		margin-right: 230px
	}
}

.control-sidebar-tabs {
	border-bottom: #1c2529
}

.control-sidebar-tabs&gt;li&gt;a {
	border-radius: 0 !important;
	background: #181f23;
	color: #b8c7ce
}

.control-sidebar-tabs&gt;li&gt;a,
.control-sidebar-tabs&gt;li&gt;a:hover {
	border-top: none;
	border-right: none;
	border-left: 1px solid #141a1d !important;
	border-bottom: 1px solid #141a1d !important
}

.control-sidebar-tabs&gt;li&gt;a:hover,
.control-sidebar-tabs&gt;li&gt;a:focus,
.control-sidebar-tabs&gt;li&gt;a:active {
	background: #1c2529
}

.control-sidebar-tabs&gt;li&gt;a .icon {
	font-size: 16px
}

.control-sidebar-tabs&gt;li.active&gt;a,
.control-sidebar-tabs&gt;li.active&gt;a:hover,
.control-sidebar-tabs&gt;li.active&gt;a:focus,
.control-sidebar-tabs&gt;li.active&gt;a:active {
	border-top: none!important;
	border-right: none!important;
	border-bottom: none!important;
	background: #222d32;
	color: #fff
}

@media (max-width:768px) {
	.control-sidebar-tabs {
		display: table
	}
	.control-sidebar-tabs&gt;li {
		display: table-cell !important
	}
}

.control-sidebar-heading {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	padding: 10px 0;
	margin-bottom: 10px
}

.control-sidebar-subheading {
	display: block;
	color: #fff;
	font-weight: 400;
	font-size: 14px
}

.control-sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 0 -15px
}

.control-sidebar-menu&gt;li&gt;a {
	display: block;
	padding: 10px 15px
}

.control-sidebar-menu&gt;li&gt;a:before,
.control-sidebar-menu&gt;li&gt;a:after {
	content: " ";
	display: table
}

.control-sidebar-menu&gt;li&gt;a:after {
	clear: both
}

.control-sidebar-menu&gt;li&gt;a:hover {
	background: #1e282c
}

.control-sidebar-menu&gt;li&gt;a&gt;.control-sidebar-subheading {
	margin-top: 0
}

.control-sidebar-menu .menu-icon {
	float: left;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	text-align: center;
	line-height: 35px
}

.control-sidebar-menu .menu-info {
	margin-left: 45px;
	margin-top: 3px
}

.control-sidebar-menu .menu-info&gt;.control-sidebar-subheading {
	margin: 0
}

.control-sidebar-menu .menu-info&gt;p {
	margin: 0;
	color: #b8c7ce;
	font-size: 11px
}

.control-sidebar-menu .progress {
	margin: 0
}

.dropdown-menu {
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	border-color: #eee
}

.dropdown-menu&gt;li&gt;a {
	color: #777
}

.dropdown-menu&gt;li&gt;a&gt;.glyphicon,
.dropdown-menu&gt;li&gt;a&gt;.fa,
.dropdown-menu&gt;li&gt;a&gt;.ion {
	margin-right: 10px
}

.dropdown-menu&gt;li&gt;a:hover {
	background-color: #e1e3e9;
	color: #333
}

.dropdown-menu&gt;.divider {
	background-color: #eee
}

.navbar-nav&gt;.notifications-menu,
.navbar-nav&gt;.messages-menu,
.navbar-nav&gt;.tasks-menu {
	position: relative
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu {
	width: 280px;
	padding: 0 0 0 0!important;
	margin: 0!important;
	top: 100%
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li {
	position: relative
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li.header,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li.header,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li.header {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background-color: #ffffff;
	padding: 7px 10px;
	border-bottom: 1px solid #f4f4f4;
	color: #444444;
	font-size: 14px
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li.footer&gt;a,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li.footer&gt;a,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li.footer&gt;a {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	font-size: 12px;
	background-color: #fff;
	padding: 7px 10px;
	border-bottom: 1px solid #eeeeee;
	color: #444!important;
	text-align: center
}

@media (max-width:991px) {
	.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li.footer&gt;a,
	.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li.footer&gt;a,
	.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li.footer&gt;a {
		background: #fff!important;
		color: #444!important
	}
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li.footer&gt;a:hover,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li.footer&gt;a:hover,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li.footer&gt;a:hover {
	text-decoration: none;
	font-weight: normal
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li .menu,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li .menu {
	max-height: 200px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: hidden
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a {
	display: block;
	white-space: nowrap;
	border-bottom: 1px solid #f4f4f4
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a:hover,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a:hover,
.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a:hover {
	background: #f4f4f4;
	text-decoration: none
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a {
	color: #444444;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 10px
}

.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;.glyphicon,
.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;.fa,
.navbar-nav&gt;.notifications-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;.ion {
	width: 20px
}

.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a {
	margin: 0px;
	padding: 10px 10px
}

.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;div&gt;img {
	margin: auto 10px auto auto;
	width: 40px;
	height: 40px
}

.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;h4 {
	padding: 0;
	margin: 0 0 0 45px;
	color: #444444;
	font-size: 15px;
	position: relative
}

.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;h4&gt;small {
	color: #999999;
	font-size: 10px;
	position: absolute;
	top: 0px;
	right: 0px
}

.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;p {
	margin: 0 0 0 45px;
	font-size: 12px;
	color: #888888
}

.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a:before,
.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a:after {
	content: " ";
	display: table
}

.navbar-nav&gt;.messages-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a:after {
	clear: both
}

.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a {
	padding: 10px
}

.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;h3 {
	font-size: 14px;
	padding: 0;
	margin: 0 0 10px 0;
	color: #666666
}

.navbar-nav&gt;.tasks-menu&gt;.dropdown-menu&gt;li .menu&gt;li&gt;a&gt;.progress {
	padding: 0;
	margin: 0
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	padding: 1px 0 0 0;
	border-top-width: 0;
	width: 280px
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu,
.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-body {
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;li.user-header {
	height: 175px;
	padding: 10px;
	text-align: center
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;li.user-header&gt;img {
	z-index: 5;
	height: 90px;
	width: 90px;
	border: 3px solid;
	border-color: transparent;
	border-color: rgba(255, 255, 255, 0.2)
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;li.user-header&gt;p {
	z-index: 5;
	color: #fff;
	color: rgba(255, 255, 255, 0.8);
	font-size: 17px;
	margin-top: 10px
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;li.user-header&gt;p&gt;small {
	display: block;
	font-size: 12px
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-body {
	padding: 15px;
	border-bottom: 1px solid #f4f4f4;
	border-top: 1px solid #dddddd
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-body:before,
.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-body:after {
	content: " ";
	display: table
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-body:after {
	clear: both
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-body a {
	color: #444 !important
}

@media (max-width:991px) {
	.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-body a {
		background: #fff !important;
		color: #444 !important
	}
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-footer {
	background-color: #f9f9f9;
	padding: 10px
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-footer:before,
.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-footer:after {
	content: " ";
	display: table
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-footer:after {
	clear: both
}

.navbar-nav&gt;.user-menu&gt;.dropdown-menu&gt;.user-footer .btn-default {
	color: #666666
}

.navbar-nav&gt;.user-menu .user-image {
	float: left;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin-right: 10px;
	margin-top: -2px
}

@media (max-width:767px) {
	.navbar-nav&gt;.user-menu .user-image {
		float: none;
		margin-right: 0;
		margin-top: -8px;
		line-height: 10px
	}
}

.open:not(.dropup)&gt;.animated-dropdown-menu {
	backface-visibility: visible !important;
	-webkit-animation: flipInX .7s both;
	-o-animation: flipInX .7s both;
	animation: flipInX .7s both
}

@keyframes flipInX {
	0% {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transition-timing-function: ease-in
	}
	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	100% {
		transform: perspective(400px)
	}
}

@-webkit-keyframes flipInX {
	0% {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transition-timing-function: ease-in
	}
	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	100% {
		transform: perspective(400px)
	}
}

.navbar-custom-menu&gt;.navbar-nav&gt;li {
	position: relative
}

.navbar-custom-menu&gt;.navbar-nav&gt;li&gt;.dropdown-menu {
	position: absolute;
	right: 0;
	left: auto
}

@media (max-width:991px) {
	.navbar-custom-menu&gt;.navbar-nav {
		float: right
	}
	.navbar-custom-menu&gt;.navbar-nav&gt;li {
		position: static
	}
	.navbar-custom-menu&gt;.navbar-nav&gt;li&gt;.dropdown-menu {
		position: absolute;
		right: 5%;
		left: auto;
		border: 1px solid #ddd;
		background: #fff
	}
}

.form-control {
	border-radius: 0 !important;
	box-shadow: none;
	border-color: #d2d6de
}

.form-control:focus {
	border-color: #3c8dbc !important;
	box-shadow: none
}

.form-control::-moz-placeholder {
	color: #bbb;
	opacity: 1
}

.form-control:-ms-input-placeholder {
	color: #bbb
}

.form-control::-webkit-input-placeholder {
	color: #bbb
}

.form-control:not(select) {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.form-group.has-success label {
	color: #00a65a
}

.form-group.has-success .form-control {
	border-color: #00a65a !important;
	box-shadow: none
}

.form-group.has-warning label {
	color: #f39c12
}

.form-group.has-warning .form-control {
	border-color: #f39c12 !important;
	box-shadow: none
}

.form-group.has-error label {
	color: #dd4b39
}

.form-group.has-error .form-control {
	border-color: #dd4b39 !important;
	box-shadow: none
}

.input-group .input-group-addon {
	border-radius: 0;
	border-color: #d2d6de;
	background-color: #fff
}

.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
	border-radius: 0
}

.icheck&gt;label {
	padding-left: 0
}

.progress,
.progress&gt;.progress-bar {
	-webkit-box-shadow: none;
	box-shadow: none
}

.progress,
.progress&gt;.progress-bar,
.progress .progress-bar,
.progress&gt;.progress-bar .progress-bar {
	border-radius: 1px
}

.progress.sm,
.progress-sm {
	height: 10px
}

.progress.sm,
.progress-sm,
.progress.sm .progress-bar,
.progress-sm .progress-bar {
	border-radius: 1px
}

.progress.xs,
.progress-xs {
	height: 7px
}

.progress.xs,
.progress-xs,
.progress.xs .progress-bar,
.progress-xs .progress-bar {
	border-radius: 1px
}

.progress.xxs,
.progress-xxs {
	height: 3px
}

.progress.xxs,
.progress-xxs,
.progress.xxs .progress-bar,
.progress-xxs .progress-bar {
	border-radius: 1px
}

.progress.vertical {
	position: relative;
	width: 30px;
	height: 200px;
	display: inline-block;
	margin-right: 10px
}

.progress.vertical&gt;.progress-bar {
	width: 100%!important;
	position: absolute;
	bottom: 0
}

.progress.vertical.sm,
.progress.vertical.progress-sm {
	width: 20px
}

.progress.vertical.xs,
.progress.vertical.progress-xs {
	width: 10px
}

.progress.vertical.xxs,
.progress.vertical.progress-xxs {
	width: 3px
}

.progress-group .progress-text {
	font-weight: 600
}

.progress-group .progress-number {
	float: right
}

.table tr&gt;td .progress {
	margin: 0
}

.progress-bar-light-blue,
.progress-bar-primary {
	background-color: #3c8dbc
}

.progress-striped .progress-bar-light-blue,
.progress-striped .progress-bar-primary {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-green,
.progress-bar-success {
	background-color: #00a65a
}

.progress-striped .progress-bar-green,
.progress-striped .progress-bar-success {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-aqua,
.progress-bar-info {
	background-color: #00c0ef
}

.progress-striped .progress-bar-aqua,
.progress-striped .progress-bar-info {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-yellow,
.progress-bar-warning {
	background-color: #f39c12
}

.progress-striped .progress-bar-yellow,
.progress-striped .progress-bar-warning {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-red,
.progress-bar-danger {
	background-color: #dd4b39
}

.progress-striped .progress-bar-red,
.progress-striped .progress-bar-danger {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.small-box {
	border-radius: 2px;
	position: relative;
	display: block;
	margin-bottom: 20px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1)
}

.small-box&gt;.inner {
	padding: 10px
}

.small-box&gt;.small-box-footer {
	position: relative;
	text-align: center;
	padding: 3px 0;
	color: #fff;
	color: rgba(255, 255, 255, 0.8);
	display: block;
	z-index: 10;
	background: rgba(0, 0, 0, 0.1);
	text-decoration: none
}

.small-box&gt;.small-box-footer:hover {
	color: #fff;
	background: rgba(0, 0, 0, 0.15)
}

.small-box h3 {
	font-size: 38px;
	font-weight: bold;
	margin: 0 0 10px 0;
	white-space: nowrap;
	padding: 0
}

.small-box p {
	font-size: 15px
}

.small-box p&gt;small {
	display: block;
	color: #f9f9f9;
	font-size: 13px;
	margin-top: 5px
}

.small-box h3,
.small-box p {
	z-index: 5px
}

.small-box .icon {
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	position: absolute;
	top: -10px;
	right: 10px;
	z-index: 0;
	font-size: 90px;
	color: rgba(0, 0, 0, 0.15)
}

.small-box:hover {
	text-decoration: none;
	color: #f9f9f9
}

.small-box:hover .icon {
	font-size: 95px
}

@media (max-width:767px) {
	.small-box {
		text-align: center
	}
	.small-box .icon {
		display: none
	}
	.small-box p {
		font-size: 12px
	}
}

.box {
	background: #fff;
	position: relative;
	border-radius: 3px;
	margin-bottom: 20px;
	width: 100%;
}

.box.box-primary {
	border-top-color: #3c8dbc
}

.box.box-info {
	border-top-color: #00c0ef
}

.box.collapsed-box .box-body,
.box.collapsed-box .box-footer {
	display: none
}

.box .nav-stacked&gt;li {
	border-bottom: 1px solid #f4f4f4;
	margin: 0
}

.box .nav-stacked&gt;li:last-of-type {
	border-bottom: none
}

.box.height-control .box-body {
	max-height: 300px;
	overflow: auto
}

.box .border-right {
	border-right: 1px solid #f4f4f4
}

.box .border-left {
	border-left: 1px solid #f4f4f4
}

.box.box-solid {
	border-top: 0px
}

.box.box-solid&gt;.box-header .btn.btn-default {
	background: transparent
}

.box.box-solid&gt;.box-header .btn:hover,
.box.box-solid&gt;.box-header a:hover {
	background: rgba(0, 0, 0, 0.1) !important
}

.box.box-solid.box-default {
	border: 1px solid #d2d6de
}

.box.box-solid.box-default&gt;.box-header {
	color: #444;
	background: #d2d6de;
	background-color: #d2d6de
}

.box.box-solid.box-default&gt;.box-header a,
.box.box-solid.box-default&gt;.box-header .btn {
	color: #444
}

.box.box-solid.box-primary {
	border: 1px solid #3c8dbc
}

.box.box-solid.box-primary&gt;.box-header {
	color: #fff;
	background: #3c8dbc;
	background-color: #3c8dbc
}

.box.box-solid.box-primary&gt;.box-header a,
.box.box-solid.box-primary&gt;.box-header .btn {
	color: #fff
}

.box.box-solid.box-info {
	border: 1px solid #00c0ef
}

.box.box-solid.box-info&gt;.box-header {
	color: #fff;
	background: #00c0ef;
	background-color: #00c0ef
}

.box.box-solid.box-info&gt;.box-header a,
.box.box-solid.box-info&gt;.box-header .btn {
	color: #fff
}

.box.box-solid.box-danger {
	border: 1px solid #dd4b39
}

.box.box-solid.box-danger&gt;.box-header {
	color: #fff;
	background: #dd4b39;
	background-color: #dd4b39
}

.box.box-solid.box-danger&gt;.box-header a,
.box.box-solid.box-danger&gt;.box-header .btn {
	color: #fff
}

.box.box-solid.box-warning {
	border: 1px solid #f39c12
}

.box.box-solid.box-warning&gt;.box-header {
	color: #fff;
	background: #f39c12;
	background-color: #f39c12
}

.box.box-solid.box-warning&gt;.box-header a,
.box.box-solid.box-warning&gt;.box-header .btn {
	color: #fff
}

.box.box-solid.box-success {
	border: 1px solid #00a65a
}

.box.box-solid.box-success&gt;.box-header {
	color: #fff;
	background: #00a65a;
	background-color: #00a65a
}

.box.box-solid.box-success&gt;.box-header a,
.box.box-solid.box-success&gt;.box-header .btn {
	color: #fff
}

.box.box-solid&gt;.box-header&gt;.box-tools .btn {
	border: 0;
	box-shadow: none
}

.box.box-solid[class*='bg']&gt;.box-header {
	color: #fff
}

.box .box-group&gt;.box {
	margin-bottom: 5px
}

.box .knob-label {
	text-align: center;
	color: #333;
	font-weight: 100;
	font-size: 12px;
	margin-bottom: 0.3em
}

.box&gt;.overlay,
.box&gt;.loading-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.box .overlay {
	z-index: 1010;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 3px
}

.box .overlay&gt;.fa {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: -15px;
	color: #000;
	font-size: 30px
}

.box .overlay.dark {
	background: rgba(0, 0, 0, 0.5)
}

.box-header:before,
.box-body:before,
.box-footer:before,
.box-header:after,
.box-body:after,
.box-footer:after {
	content: " ";
	display: table
}

.box-header:after,
.box-body:after,
.box-footer:after {
	clear: both
}

.box-header {
	color: #444;
	display: block;
	padding: 10px;
	position: relative
}

.box-header.with-border {
	border-bottom: 1px solid #f4f4f4
}

.collapsed-box .box-header.with-border {
	border-bottom: none
}

.box-header&gt;.fa,
.box-header&gt;.glyphicon,
.box-header&gt;.ion,
.box-header .box-title {
	display: inline-block;
	font-size: 18px;
	margin: 0;
	line-height: 1
}

.box-header&gt;.fa,
.box-header&gt;.glyphicon,
.box-header&gt;.ion {
	margin-right: 5px
}

.box-header&gt;.box-tools {
	position: absolute;
	right: 10px;
	top: 5px
}

.box-header&gt;.box-tools [data-toggle="tooltip"] {
	position: relative
}

.box-header&gt;.box-tools.pull-right .dropdown-menu {
	right: 0;
	left: auto
}

.btn-box-tool {
	padding: 5px;
	font-size: 12px;
	background: transparent;
	box-shadow: none!important;
	color: #97a0b3
}

.open .btn-box-tool,
.btn-box-tool:hover {
	color: #606c84
}

.btn-box-tool:active {
	outline: none!important
}

.box-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	padding: 10px
}

.no-header .box-body {
	border-top-right-radius: 3px;
	border-top-left-radius: 3px
}

.box-body&gt;.table {
	margin-bottom: 0
}

.box-body .fc {
	margin-top: 5px
}

.box-body .full-width-chart {
	margin: -19px
}

.box-body.no-padding .full-width-chart {
	margin: -9px
}

.box-body .box-pane {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 3px
}

.box-body .box-pane-right {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 0
}

.box-footer {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-top: 1px solid #f4f4f4;
	padding: 10px;
	background-color: #fff
}

.chart-legend {
	margin: 10px 0
}

@media (max-width:991px) {
	.chart-legend&gt;li {
		float: left;
		margin-right: 10px
	}
}

.todo-list {
	margin: 0;
	padding: 0px 0px;
	list-style: none;
	overflow: auto
}

.todo-list&gt;li {
	border-radius: 2px;
	padding: 10px;
	background: #f4f4f4;
	margin-bottom: 2px;
	border-left: 2px solid #e6e7e8;
	color: #444
}

.todo-list&gt;li:last-of-type {
	margin-bottom: 0
}

.todo-list&gt;li.danger {
	border-left-color: #dd4b39
}

.todo-list&gt;li.warning {
	border-left-color: #f39c12
}

.todo-list&gt;li.info {
	border-left-color: #00c0ef
}

.todo-list&gt;li.success {
	border-left-color: #00a65a
}

.todo-list&gt;li.primary {
	border-left-color: #3c8dbc
}

.todo-list&gt;li&gt;input[type='checkbox'] {
	margin: 0 10px 0 5px
}

.todo-list&gt;li .text {
	display: inline-block;
	margin-left: 5px;
	font-weight: 600
}

.todo-list&gt;li .label {
	margin-left: 10px;
	font-size: 9px
}

.todo-list&gt;li .tools {
	display: none;
	float: right;
	color: #dd4b39
}

.todo-list&gt;li .tools&gt;.fa,
.todo-list&gt;li .tools&gt;.glyphicon,
.todo-list&gt;li .tools&gt;.ion {
	margin-right: 5px;
	cursor: pointer
}

.todo-list&gt;li:hover .tools {
	display: inline-block
}

.todo-list&gt;li.done {
	color: #999
}

.todo-list&gt;li.done .text {
	text-decoration: line-through;
	font-weight: 500
}

.todo-list&gt;li.done .label {
	background: #d2d6de !important
}

.todo-list .handle {
	display: inline-block;
	cursor: move;
	margin: 0 5px
}

.chat {
	padding: 5px 20px 5px 10px
}

.chat .item {
	margin-bottom: 10px
}

.chat .item:before,
.chat .item:after {
	content: " ";
	display: table
}

.chat .item:after {
	clear: both
}

.chat .item&gt;img {
	width: 40px;
	height: 40px;
	border: 2px solid transparent;
	border-radius: 50% !important
}

.chat .item&gt;img.online {
	border: 2px solid #00a65a
}

.chat .item&gt;img.offline {
	border: 2px solid #dd4b39
}

.chat .item&gt;.message {
	margin-left: 55px;
	margin-top: -40px
}

.chat .item&gt;.message&gt;.name {
	display: block;
	font-weight: 600
}

.chat .item&gt;.attachment {
	border-radius: 3px;
	background: #f4f4f4;
	margin-left: 65px;
	margin-right: 15px;
	padding: 10px
}

.chat .item&gt;.attachment&gt;h4 {
	margin: 0 0 5px 0;
	font-weight: 600;
	font-size: 14px
}

.chat .item&gt;.attachment&gt;p,
.chat .item&gt;.attachment&gt;.filename {
	font-weight: 600;
	font-size: 13px;
	font-style: italic;
	margin: 0
}

.chat .item&gt;.attachment:before,
.chat .item&gt;.attachment:after {
	content: " ";
	display: table
}

.chat .item&gt;.attachment:after {
	clear: both
}

.box-input {
	max-width: 200px
}

.info-box {
	display: block;
	min-height: 90px;
	background: #fff;
	width: 100%;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	margin-bottom: 15px
}

.info-box small {
	font-size: 14px
}

.info-box .progress {
	background: rgba(0, 0, 0, 0.2);
	margin: 5px -10px 5px -10px;
	height: 2px
}

.info-box .progress,
.info-box .progress .progress-bar {
	border-radius: 0
}

.info-box .progress .progress-bar {
	background: #fff
}

.info-box-icon {
	border-top-left-radius: 2px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 2px;
	display: block;
	float: left;
	height: 90px;
	width: 90px;
	text-align: center;
	font-size: 45px;
	line-height: 90px;
	background: rgba(0, 0, 0, 0.2)
}

.info-box-content {
	padding: 5px 10px;
	margin-left: 90px
}

.info-box-number {
	display: block;
	font-weight: bold;
	font-size: 18px
}

.progress-description,
.info-box-text {
	display: block;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.info-box-text {
	text-transform: uppercase
}

.info-box-more {
	display: block
}

.progress-description {
	margin: 0
}

.timeline {
	position: relative;
	margin: 0 0 30px 0;
	padding: 0;
	list-style: none
}

.timeline:before {
	content: '';
	position: absolute;
	top: 0px;
	bottom: 0;
	width: 4px;
	background: #ddd;
	left: 31px;
	margin: 0;
	border-radius: 2px
}

.timeline&gt;li {
	position: relative;
	margin-right: 10px;
	margin-bottom: 15px
}

.timeline&gt;li:before,
.timeline&gt;li:after {
	content: " ";
	display: table
}

.timeline&gt;li:after {
	clear: both
}

.timeline&gt;li&gt;.timeline-item {
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	margin-top: 0px;
	background: #fff;
	color: #444;
	margin-left: 60px;
	margin-right: 15px;
	padding: 0;
	position: relative
}

.timeline&gt;li&gt;.timeline-item&gt;.time {
	color: #999;
	float: right;
	padding: 10px;
	font-size: 12px
}

.timeline&gt;li&gt;.timeline-item&gt;.timeline-header {
	margin: 0;
	color: #555;
	border-bottom: 1px solid #f4f4f4;
	padding: 10px;
	font-size: 16px;
	line-height: 1.1
}

.timeline&gt;li&gt;.timeline-item&gt;.timeline-header&gt;a {
	font-weight: 600
}

.timeline&gt;li&gt;.timeline-item&gt;.timeline-body,
.timeline&gt;li&gt;.timeline-item&gt;.timeline-footer {
	padding: 10px
}

.timeline&gt;li.time-label&gt;span {
	font-weight: 600;
	padding: 5px;
	display: inline-block;
	background-color: #fff;
	border-radius: 4px
}

.timeline&gt;li&gt;.fa,
.timeline&gt;li&gt;.glyphicon,
.timeline&gt;li&gt;.ion {
	width: 30px;
	height: 30px;
	font-size: 15px;
	line-height: 30px;
	position: absolute;
	color: #666;
	background: #d2d6de;
	border-radius: 50%;
	text-align: center;
	left: 18px;
	top: 0
}

.btn {
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid transparent
}

.btn.uppercase {
	text-transform: uppercase
}

.btn.btn-flat {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-width: 1px
}

.btn:active {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn:focus {
	outline: none
}

.btn.btn-file {
	position: relative;
	overflow: hidden
}

.btn.btn-file&gt;input[type='file'] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	opacity: 0;
	filter: alpha(opacity=0);
	outline: none;
	background: white;
	cursor: inherit;
	display: block
}

.btn-default {
	background-color: #f4f4f4;
	color: #444;
	border-color: #ddd
}

.btn-default:hover,
.btn-default:active,
.btn-default.hover {
	background-color: #e7e7e7 !important
}

.btn-primary {
	background-color: #3c8dbc;
	border-color: #367fa9
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.hover {
	background-color: #367fa9
}

.btn-success {
	background-color: #00a65a;
	border-color: #008d4c;
	color: #fff;
}
.small, small {
    font-size: 100%;
}
.btn-success:hover,
.btn-success:active,
.btn-success.hover {
	background-color: #008d4c
}

.btn-info {
	background-color: #00c0ef;
	border-color: #00acd6;
	color: #fff;
}

.btn-info:hover,
.btn-info:active,
.btn-info.hover {
	background-color: #00acd6
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger.hover {
	background-color: #d73925;
	color: #fff;
}

.btn-warning {
	background-color: #f39c12;
	border-color: #e08e0b;
	color: #fff;
}
.purple{
    color: #fff;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.hover {
	background-color: #e08e0b
}

.btn-outline {
	border: 1px solid #fff;
	background: transparent;
	color: #fff
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
	color: rgba(255, 255, 255, 0.7);
	border-color: rgba(255, 255, 255, 0.7)
}

.btn-link {
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn[class*='bg-']:hover {
	-webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2)
}

.btn-app {
	border-radius: 3px;
	position: relative;
	padding: 15px 5px;
	margin: 0 0 10px 10px;
	min-width: 80px;
	height: 60px;
	text-align: center;
	color: #666;
	border: 1px solid #ddd;
	background-color: #f4f4f4;
	font-size: 12px
}

.btn-app&gt;.fa,
.btn-app&gt;.glyphicon,
.btn-app&gt;.ion {
	font-size: 20px;
	display: block
}

.btn-app:hover {
	background: #f4f4f4;
	color: #444;
	border-color: #aaa
}

.btn-app:active,
.btn-app:focus {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn-app&gt;.badge {
	position: absolute;
	top: -3px;
	right: -10px;
	font-size: 10px;
	font-weight: 400
}

.callout {
	border-radius: 3px;
	margin: 0 0 20px 0;
	padding: 15px 30px 15px 15px;
	border-left: 5px solid #eee
}

.callout a {
	color: #fff;
	text-decoration: underline
}

.callout a:hover {
	color: #eee
}

.callout h4 {
	margin-top: 0;
	font-weight: 600
}

.callout p:last-child {
	margin-bottom: 0
}

.callout code,
.callout .highlight {
	background-color: #fff
}

.callout.callout-danger {
	border-color: #c23321
}

.callout.callout-warning {
	border-color: #c87f0a
}

.callout.callout-info {
	border-color: #0097bc
}

.callout.callout-success {
	border-color: #00733e
}

.alert {
	border-radius: 3px
}

.alert h4 {
	font-weight: 600
}

.alert .icon {
	margin-right: 10px
}

.alert .close {
	color: #000;
	opacity: .2;
	filter: alpha(opacity=20)
}

.alert .close:hover {
	opacity: .5;
	filter: alpha(opacity=50)
}

.alert a {
	color: #fff;
	text-decoration: underline
}

.alert-success {
	border-color: #008d4c
}

.alert-danger,
.alert-error {
	border-color: #d73925
}

.alert-warning {
	border-color: #e08e0b
}

.alert-info {
	border-color: #00acd6
}

.nav-pills&gt;li&gt;a {
	border-radius: 0;
	border-top: 3px solid transparent;
	color: #444
}

.nav-pills&gt;li&gt;a&gt;.fa,
.nav-pills&gt;li&gt;a&gt;.glyphicon,
.nav-pills&gt;li&gt;a&gt;.ion {
	margin-right: 5px
}

.nav-pills&gt;li.active&gt;a,
.nav-pills&gt;li.active&gt;a:hover,
.nav-pills&gt;li.active&gt;a:focus {
	background-color: #f4f4f4;
	border-top-color: #3c8dbc;
	color: #444
}

.nav-pills&gt;li.active&gt;a {
	font-weight: 600
}

.nav-pills&gt;li&gt;a:hover {
	background-color: #f6f6f6
}

.nav-stacked&gt;li&gt;a {
	border-radius: 0;
	border-top: 0;
	border-left: 3px solid transparent;
	color: #444
}

.nav-stacked&gt;li.active&gt;a,
.nav-stacked&gt;li.active&gt;a:hover {
	background-color: #f4f4f4;
	border-top: 0;
	border-left-color: #3c8dbc;
	color: #444
}

.nav-stacked&gt;li.header {
	border-bottom: 1px solid #ddd;
	color: #777;
	margin-bottom: 10px;
	padding: 5px 10px;
	text-transform: uppercase
}

.nav-tabs-custom {
	margin-bottom: 20px;
	background: #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	border-radius: 3px
}

.nav-tabs-custom&gt;.nav-tabs {
	margin: 0;
	border-bottom-color: #f4f4f4;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px
}

.nav-tabs-custom&gt;.nav-tabs&gt;li {
	border-top: 3px solid transparent;
	margin-bottom: -2px;
	margin-right: 5px
}

.nav-tabs-custom&gt;.nav-tabs&gt;li&gt;a {
	border-radius: 0 !important
}

.nav-tabs-custom&gt;.nav-tabs&gt;li&gt;a,
.nav-tabs-custom&gt;.nav-tabs&gt;li&gt;a:hover {
	background: transparent;
	margin: 0
}

.nav-tabs-custom&gt;.nav-tabs&gt;li:not(.active)&gt;a:hover,
.nav-tabs-custom&gt;.nav-tabs&gt;li:not(.active)&gt;a:focus,
.nav-tabs-custom&gt;.nav-tabs&gt;li:not(.active)&gt;a:active {
	border-color: transparent
}

.nav-tabs-custom&gt;.nav-tabs&gt;li.active {
	border-top-color: #3c8dbc
}

.nav-tabs-custom&gt;.nav-tabs&gt;li.active&gt;a,
.nav-tabs-custom&gt;.nav-tabs&gt;li.active:hover&gt;a {
	background-color: #fff
}

.nav-tabs-custom&gt;.nav-tabs&gt;li.active&gt;a {
	border-top: 0;
	border-left-color: #f4f4f4;
	border-right-color: #f4f4f4
}

.nav-tabs-custom&gt;.nav-tabs&gt;li:first-of-type {
	margin-left: 0
}

.nav-tabs-custom&gt;.nav-tabs&gt;li:first-of-type.active&gt;a {
	border-left-width: 0
}

.nav-tabs-custom&gt;.nav-tabs.pull-right {
	float: none!important
}

.nav-tabs-custom&gt;.nav-tabs.pull-right&gt;li {
	float: right
}

.nav-tabs-custom&gt;.nav-tabs.pull-right&gt;li:first-of-type {
	margin-right: 0
}

.nav-tabs-custom&gt;.nav-tabs.pull-right&gt;li:first-of-type.active&gt;a {
	border-left-width: 1px;
	border-right-width: 0
}

.nav-tabs-custom&gt;.nav-tabs&gt;li.header {
	line-height: 35px;
	padding: 0 10px;
	font-size: 20px;
	color: #444
}

.nav-tabs-custom&gt;.nav-tabs&gt;li.header&gt;.fa,
.nav-tabs-custom&gt;.nav-tabs&gt;li.header&gt;.glyphicon,
.nav-tabs-custom&gt;.nav-tabs&gt;li.header&gt;.ion {
	margin-right: 5px
}

.nav-tabs-custom&gt;.tab-content {
	background: #fff;
	padding: 10px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px
}

.tabs-bottom.nav-3 li a {
	width: 3333.33333333% !important
}

.tabs-bottom li a {
	border: 0
}

.pagination&gt;li&gt;a {
	background: #fafafa;
	color: #666
}

.pagination&gt;li:first-of-type a,
.pagination&gt;li:last-of-type a {
	border-radius: 0
}

.products-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.products-list&gt;.item {
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	background: #fff
}

.products-list&gt;.item:before,
.products-list&gt;.item:after {
	content: " ";
	display: table
}

.products-list&gt;.item:after {
	clear: both
}

.products-list .product-img {
	float: left
}

.products-list .product-img img {
	width: 50px;
	height: 50px
}

.products-list .product-info {
	margin-left: 60px
}

.products-list .product-title {
	font-weight: 600
}

.products-list .product-description {
	display: block;
	color: #999; 
	white-space: nowrap;
	text-overflow: ellipsis
}

.product-list-in-box&gt;.item {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	border-bottom: 1px solid #f4f4f4
}

.product-list-in-box&gt;.item:last-of-type {
	border-bottom-width: 0
}

.table&gt;thead&gt;tr&gt;th,
.table&gt;tbody&gt;tr&gt;th,
.table&gt;tfoot&gt;tr&gt;th,
.table&gt;thead&gt;tr&gt;td,
.table&gt;tbody&gt;tr&gt;td,
.table&gt;tfoot&gt;tr&gt;td {
	border-top: 1px solid #f4f4f4
}

.table&gt;thead&gt;tr&gt;th {
	border-bottom: 2px solid #f4f4f4
}

.table tr td .progress {
	margin-top: 5px
}

.table-bordered {
	border: 1px solid #f4f4f4
}

.table-bordered&gt;thead&gt;tr&gt;th,
.table-bordered&gt;tbody&gt;tr&gt;th,
.table-bordered&gt;tfoot&gt;tr&gt;th,
.table-bordered&gt;thead&gt;tr&gt;td,
.table-bordered&gt;tbody&gt;tr&gt;td,
.table-bordered&gt;tfoot&gt;tr&gt;td {
	border: 1px solid #f4f4f4
}

.table-bordered&gt;thead&gt;tr&gt;th,
.table-bordered&gt;thead&gt;tr&gt;td {
	border-bottom-width: 2px
}

.table.no-border,
.table.no-border td,
.table.no-border th {
	border: 0
}

table.text-center,
table.text-center td,
table.text-center th {
	text-align: center
}

.table.align th {
	text-align: left
}

.table.align td {
	text-align: right
}

.label-default {
	background-color: #d2d6de;
	color: #444
}

.direct-chat .box-body {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	position: relative;
	overflow-x: hidden;
	padding: 0
}

.direct-chat.chat-pane-open .direct-chat-contacts {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.direct-chat-messages {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	padding: 10px;
	height: 250px;
	overflow: auto
}

.direct-chat-msg,
.direct-chat-text {
	display: block
}

.direct-chat-msg {
	margin-bottom: 10px
}

.direct-chat-msg:before,
.direct-chat-msg:after {
	content: " ";
	display: table
}

.direct-chat-msg:after {
	clear: both
}

.direct-chat-messages,
.direct-chat-contacts {
	-webkit-transition: -webkit-transform .5s ease-in-out;
	-moz-transition: -moz-transform .5s ease-in-out;
	-o-transition: -o-transform .5s ease-in-out;
	transition: transform .5s ease-in-out
}

.direct-chat-text {
	border-radius: 5px;
	position: relative;
	padding: 5px 10px;
	background: #d2d6de;
	border: 1px solid #d2d6de;
	margin: 5px 0 0 50px;
	color: #444
}

.direct-chat-text:after,
.direct-chat-text:before {
	position: absolute;
	right: 100%;
	top: 15px;
	border: solid transparent;
	border-right-color: #d2d6de;
	content: ' ';
	height: 0;
	width: 0;
	pointer-events: none
}

.direct-chat-text:after {
	border-width: 5px;
	margin-top: -5px
}

.direct-chat-text:before {
	border-width: 6px;
	margin-top: -6px
}

.right .direct-chat-text {
	margin-right: 50px;
	margin-left: 0
}

.right .direct-chat-text:after,
.right .direct-chat-text:before {
	right: auto;
	left: 100%;
	border-right-color: transparent;
	border-left-color: #d2d6de
}

.direct-chat-img {
	border-radius: 50%;
	float: left;
	width: 40px;
	height: 40px
}

.right .direct-chat-img {
	float: right
}

.direct-chat-info {
	display: block;
	margin-bottom: 2px;
	font-size: 12px
}

.direct-chat-name {
	font-weight: 600
}

.direct-chat-timestamp {
	color: #999
}

.direct-chat-contacts-open .direct-chat-contacts {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.direct-chat-contacts {
	-webkit-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	-o-transform: translate(100%, 0);
	transform: translate(100%, 0);
	position: absolute;
	top: 0;
	bottom: 0;
	height: 250px;
	width: 100%;
	background: #222d32;
	color: #fff;
	overflow: auto
}

.contacts-list&gt;li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	padding: 10px;
	margin: 0
}

.contacts-list&gt;li:before,
.contacts-list&gt;li:after {
	content: " ";
	display: table
}

.contacts-list&gt;li:after {
	clear: both
}

.contacts-list&gt;li:last-of-type {
	border-bottom: none
}

.contacts-list-img {
	border-radius: 50%;
	width: 40px;
	float: left
}

.contacts-list-info {
	margin-left: 45px;
	color: #fff
}

.contacts-list-name,
.contacts-list-status {
	display: block
}

.contacts-list-name {
	font-weight: 600
}

.contacts-list-status {
	font-size: 12px
}

.contacts-list-date {
	color: #aaa;
	font-weight: normal
}

.contacts-list-msg {
	color: #999
}

.direct-chat-danger .right&gt;.direct-chat-text {
	background: #dd4b39;
	border-color: #dd4b39;
	color: #fff
}

.direct-chat-danger .right&gt;.direct-chat-text:after,
.direct-chat-danger .right&gt;.direct-chat-text:before {
	border-left-color: #dd4b39
}

.direct-chat-primary .right&gt;.direct-chat-text {
	background: #3c8dbc;
	border-color: #3c8dbc;
	color: #fff
}

.direct-chat-primary .right&gt;.direct-chat-text:after,
.direct-chat-primary .right&gt;.direct-chat-text:before {
	border-left-color: #3c8dbc
}

.direct-chat-warning .right&gt;.direct-chat-text {
	background: #f39c12;
	border-color: #f39c12;
	color: #fff
}

.direct-chat-warning .right&gt;.direct-chat-text:after,
.direct-chat-warning .right&gt;.direct-chat-text:before {
	border-left-color: #f39c12
}

.direct-chat-info .right&gt;.direct-chat-text {
	background: #00c0ef;
	border-color: #00c0ef;
	color: #fff
}

.direct-chat-info .right&gt;.direct-chat-text:after,
.direct-chat-info .right&gt;.direct-chat-text:before {
	border-left-color: #00c0ef
}

.direct-chat-success .right&gt;.direct-chat-text {
	background: #00a65a;
	border-color: #00a65a;
	color: #fff
}

.direct-chat-success .right&gt;.direct-chat-text:after,
.direct-chat-success .right&gt;.direct-chat-text:before {
	border-left-color: #00a65a
}

.users-list&gt;li {
	width: 25%;
	float: left;
	padding: 10px;
	text-align: center
}

.users-list&gt;li&gt;img {
	border-radius: 50%;
	max-width: 100%;
	height: auto
}

.users-list-name,
.users-list-date {
	display: block
}

.users-list-name {
	font-weight: 600;
	color: #444;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.users-list-name:hover {
	color: #999
}

.users-list-date {
	color: #999;
	font-size: 12px
}

.carousel-control {
	background-image: none!important
}

.carousel-control&gt;.fa {
	font-size: 40px;
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
	margin-top: -20px
}

.modal {
	background: rgba(0, 0, 0, 0.3)
}

.modal-content {
	border-radius: 0;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
	border: 0
}

@media only screen and (min-width:768px) {
	.modal-content {
		-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
		box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important
		margin-top: 190px;
	}
}

@media only screen and (min-width:600px) {
	.modal-content {
		-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
		box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important
		margin-top: 190px;
	}
}

@media (min-width: @screen-sm-min) {
    .modal-content {
		-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
		box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important
		margin-top: 190px;
    
  }
}


.modal-backdrop {
    position: unset;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-header {
	border-bottom-color: #f4f4f4
}

.modal-footer {
	border-top-color: #f4f4f4
}

.modal-primary .modal-header,
.modal-primary .modal-footer {
	border-color: #307095
}

.modal-warning .modal-header,
.modal-warning .modal-footer {
	border-color: #c87f0a
}

.modal-info .modal-header,
.modal-info .modal-footer {
	border-color: #0097bc
}

.modal-success .modal-header,
.modal-success .modal-footer {
	border-color: #00733e
}

.modal-danger .modal-header,
.modal-danger .modal-footer {
	border-color: #c23321
}

.mailbox-messages&gt;.table {
	margin: 0
}

.mailbox-controls {
	padding: 5px
}

.mailbox-controls.with-border {
	border-bottom: 1px solid #f4f4f4
}

.mailbox-read-info {
	border-bottom: 1px solid #f4f4f4;
	padding: 10px
}

.mailbox-read-info h3 {
	font-size: 20px;
	margin: 0
}

.mailbox-read-info h5 {
	margin: 0;
	padding: 5px 0 0 0
}

.mailbox-read-time {
	color: #999;
	font-size: 13px
}

.mailbox-read-message {
	padding: 10px
}

.mailbox-attachments li {
	float: left;
	width: 200px;
	border: 1px solid #eee;
	margin-bottom: 10px;
	margin-right: 10px
}

.mailbox-attachment-name {
	font-weight: bold;
	color: #666
}

.mailbox-attachment-icon,
.mailbox-attachment-info,
.mailbox-attachment-size {
	display: block
}

.mailbox-attachment-info {
	padding: 10px;
	background: #f4f4f4
}

.mailbox-attachment-size {
	color: #999;
	font-size: 12px
}

.mailbox-attachment-icon {
	text-align: center;
	font-size: 65px;
	color: #666;
	padding: 20px 10px
}

.mailbox-attachment-icon.has-img {
	padding: 0
}

.mailbox-attachment-icon.has-img&gt;img {
	max-width: 100%;
	height: auto
}

.lockscreen {
	background: #d2d6de
}

.lockscreen-logo {
	font-size: 35px;
	text-align: center;
	margin-bottom: 25px;
	font-weight: 300
}

.lockscreen-logo a {
	color: #444
}

.lockscreen-wrapper {
	max-width: 400px;
	margin: 0 auto;
	margin-top: 10%
}

.lockscreen .lockscreen-name {
	text-align: center;
	font-weight: 600
}

.lockscreen-item {
	border-radius: 4px;
	padding: 0;
	background: #fff;
	position: relative;
	margin: 10px auto 30px auto;
	width: 290px
}

.lockscreen-image {
	border-radius: 50%;
	position: absolute;
	left: -10px;
	top: -25px;
	background: #fff;
	padding: 5px;
	z-index: 10
}

.lockscreen-image&gt;img {
	border-radius: 50%;
	width: 70px;
	height: 70px
}

.lockscreen-credentials {
	margin-left: 70px
}

.lockscreen-credentials .form-control {
	border: 0 !important
}

.lockscreen-credentials .btn {
	background-color: #fff;
	border: 0;
	padding: 0 10px
}

.lockscreen-footer {
	margin-top: 10px
}

.login-logo,
.register-logo {
	font-size: 35px;
	text-align: center;
	margin-bottom: 25px;
	font-weight: 300
}

.login-logo a,
.register-logo a {
	color: #444
}

.login-page,
.register-page {
	background: #d2d6de
}

.login-box,
.register-box {
	width: 360px;
	margin: 7% auto
}

@media (max-width:768px) {
	.login-box,
	.register-box {
		width: 90%;
		margin-top: 20px
	}
}

.login-box-body,
.register-box-body {
	background: #fff;
	padding: 20px;
	color: #444;
	border-top: 0;
	color: #666
}

.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
	color: #777
}

.login-box-msg,
.register-box-msg {
	margin: 0;
	text-align: center;
	padding: 0 20px 20px 20px
}

.social-auth-links {
	margin: 10px 0
}

.error-page {
	width: 600px;
	margin: 20px auto 0 auto
}

@media (max-width:991px) {
	.error-page {
		width: 100%
	}
}

.error-page&gt;.headline {
	float: left;
	font-size: 100px;
	font-weight: 300
}

@media (max-width:991px) {
	.error-page&gt;.headline {
		float: none;
		text-align: center
	}
}

.error-page&gt;.error-content {
	margin-left: 190px;
	display: block
}

@media (max-width:991px) {
	.error-page&gt;.error-content {
		margin-left: 0
	}
}

.error-page&gt;.error-content&gt;h3 {
	font-weight: 300;
	font-size: 25px
}

@media (max-width:991px) {
	.error-page&gt;.error-content&gt;h3 {
		text-align: center
	}
}

.invoice {
	position: relative;
	background: #fff;
	border: 1px solid #f4f4f4;
	padding: 20px;
	margin: 10px 25px
}

.invoice-title {
	margin-top: 0
}

.btn-social {
	position: relative;
	padding-left: 44px !important;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.btn-social :first-child {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 32px !important;
	line-height: 34px !important;
	font-size: 1.6em!important;
	text-align: center;
	border-right: 1px solid rgba(0, 0, 0, 0.2)
}

.btn-social.btn-lg {
	padding-left: 61px !important
}

.btn-social.btn-lg :first-child {
	line-height: 45px;
	width: 45px;
	font-size: 1.8em
}

.btn-social.btn-sm {
	padding-left: 38px !important
}

.btn-social.btn-sm :first-child {
	line-height: 28px;
	width: 28px;
	font-size: 1.4em
}

.btn-social.btn-xs {
	padding-left: 30px !important
}

.btn-social.btn-xs :first-child {
	line-height: 20px;
	width: 20px;
	font-size: 1.2em
}

.btn-social-icon {
	position: relative;
	padding-left: 44px !important;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 34px;
	width: 34px;
	padding: 0
}

.btn-social-icon :first-child {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 32px !important;
	line-height: 34px !important;
	font-size: 1.6em!important;
	text-align: center;
	border-right: 1px solid rgba(0, 0, 0, 0.2)
}

.btn-social-icon.btn-lg {
	padding-left: 61px !important
}

.btn-social-icon.btn-lg :first-child {
	line-height: 45px;
	width: 45px;
	font-size: 1.8em
}

.btn-social-icon.btn-sm {
	padding-left: 38px !important
}

.btn-social-icon.btn-sm :first-child {
	line-height: 28px;
	width: 28px;
	font-size: 1.4em
}

.btn-social-icon.btn-xs {
	padding-left: 30px !important
}

.btn-social-icon.btn-xs :first-child {
	line-height: 20px;
	width: 20px;
	font-size: 1.2em
}

.btn-social-icon :first-child {
	border: none;
	text-align: center;
	width: 100%!important
}

.btn-social-icon.btn-lg {
	height: 45px;
	width: 45px;
	padding-left: 0;
	padding-right: 0
}

.btn-social-icon.btn-sm {
	height: 30px;
	width: 30px;
	padding-left: 0;
	padding-right: 0
}

.btn-social-icon.btn-xs {
	height: 22px;
	width: 22px;
	padding-left: 0;
	padding-right: 0
}

.btn-bitbucket {
	color: #fff;
	background-color: #205081;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-bitbucket:hover,
.btn-bitbucket:focus,
.btn-bitbucket.focus,
.btn-bitbucket:active,
.btn-bitbucket.active,
.open&gt;.dropdown-toggle.btn-bitbucket {
	color: #fff;
	background-color: #163758;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-bitbucket:active,
.btn-bitbucket.active,
.open&gt;.dropdown-toggle.btn-bitbucket {
	background-image: none
}

.btn-bitbucket.disabled,
.btn-bitbucket[disabled],
fieldset[disabled] .btn-bitbucket,
.btn-bitbucket.disabled:hover,
.btn-bitbucket[disabled]:hover,
fieldset[disabled] .btn-bitbucket:hover,
.btn-bitbucket.disabled:focus,
.btn-bitbucket[disabled]:focus,
fieldset[disabled] .btn-bitbucket:focus,
.btn-bitbucket.disabled.focus,
.btn-bitbucket[disabled].focus,
fieldset[disabled] .btn-bitbucket.focus,
.btn-bitbucket.disabled:active,
.btn-bitbucket[disabled]:active,
fieldset[disabled] .btn-bitbucket:active,
.btn-bitbucket.disabled.active,
.btn-bitbucket[disabled].active,
fieldset[disabled] .btn-bitbucket.active {
	background-color: #205081;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-bitbucket .badge {
	color: #205081;
	background-color: #fff
}

.btn-dropbox {
	color: #fff;
	background-color: #1087dd;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-dropbox:hover,
.btn-dropbox:focus,
.btn-dropbox.focus,
.btn-dropbox:active,
.btn-dropbox.active,
.open&gt;.dropdown-toggle.btn-dropbox {
	color: #fff;
	background-color: #0d6aad;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-dropbox:active,
.btn-dropbox.active,
.open&gt;.dropdown-toggle.btn-dropbox {
	background-image: none
}

.btn-dropbox.disabled,
.btn-dropbox[disabled],
fieldset[disabled] .btn-dropbox,
.btn-dropbox.disabled:hover,
.btn-dropbox[disabled]:hover,
fieldset[disabled] .btn-dropbox:hover,
.btn-dropbox.disabled:focus,
.btn-dropbox[disabled]:focus,
fieldset[disabled] .btn-dropbox:focus,
.btn-dropbox.disabled.focus,
.btn-dropbox[disabled].focus,
fieldset[disabled] .btn-dropbox.focus,
.btn-dropbox.disabled:active,
.btn-dropbox[disabled]:active,
fieldset[disabled] .btn-dropbox:active,
.btn-dropbox.disabled.active,
.btn-dropbox[disabled].active,
fieldset[disabled] .btn-dropbox.active {
	background-color: #1087dd;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-dropbox .badge {
	color: #1087dd;
	background-color: #fff
}

.btn-facebook {
	color: #fff;
	background-color: #3b5998;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook.focus,
.btn-facebook:active,
.btn-facebook.active,
.open&gt;.dropdown-toggle.btn-facebook {
	color: #fff;
	background-color: #2d4373;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-facebook:active,
.btn-facebook.active,
.open&gt;.dropdown-toggle.btn-facebook {
	background-image: none
}

.btn-facebook.disabled,
.btn-facebook[disabled],
fieldset[disabled] .btn-facebook,
.btn-facebook.disabled:hover,
.btn-facebook[disabled]:hover,
fieldset[disabled] .btn-facebook:hover,
.btn-facebook.disabled:focus,
.btn-facebook[disabled]:focus,
fieldset[disabled] .btn-facebook:focus,
.btn-facebook.disabled.focus,
.btn-facebook[disabled].focus,
fieldset[disabled] .btn-facebook.focus,
.btn-facebook.disabled:active,
.btn-facebook[disabled]:active,
fieldset[disabled] .btn-facebook:active,
.btn-facebook.disabled.active,
.btn-facebook[disabled].active,
fieldset[disabled] .btn-facebook.active {
	background-color: #3b5998;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-facebook .badge {
	color: #3b5998;
	background-color: #fff
}

.btn-flickr {
	color: #fff;
	background-color: #ff0084;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-flickr:hover,
.btn-flickr:focus,
.btn-flickr.focus,
.btn-flickr:active,
.btn-flickr.active,
.open&gt;.dropdown-toggle.btn-flickr {
	color: #fff;
	background-color: #cc006a;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-flickr:active,
.btn-flickr.active,
.open&gt;.dropdown-toggle.btn-flickr {
	background-image: none
}

.btn-flickr.disabled,
.btn-flickr[disabled],
fieldset[disabled] .btn-flickr,
.btn-flickr.disabled:hover,
.btn-flickr[disabled]:hover,
fieldset[disabled] .btn-flickr:hover,
.btn-flickr.disabled:focus,
.btn-flickr[disabled]:focus,
fieldset[disabled] .btn-flickr:focus,
.btn-flickr.disabled.focus,
.btn-flickr[disabled].focus,
fieldset[disabled] .btn-flickr.focus,
.btn-flickr.disabled:active,
.btn-flickr[disabled]:active,
fieldset[disabled] .btn-flickr:active,
.btn-flickr.disabled.active,
.btn-flickr[disabled].active,
fieldset[disabled] .btn-flickr.active {
	background-color: #ff0084;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-flickr .badge {
	color: #ff0084;
	background-color: #fff
}

.btn-foursquare {
	color: #fff;
	background-color: #0072b1;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-foursquare:hover,
.btn-foursquare:focus,
.btn-foursquare.focus,
.btn-foursquare:active,
.btn-foursquare.active,
.open&gt;.dropdown-toggle.btn-foursquare {
	color: #fff;
	background-color: #00517e;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-foursquare:active,
.btn-foursquare.active,
.open&gt;.dropdown-toggle.btn-foursquare {
	background-image: none
}

.btn-foursquare.disabled,
.btn-foursquare[disabled],
fieldset[disabled] .btn-foursquare,
.btn-foursquare.disabled:hover,
.btn-foursquare[disabled]:hover,
fieldset[disabled] .btn-foursquare:hover,
.btn-foursquare.disabled:focus,
.btn-foursquare[disabled]:focus,
fieldset[disabled] .btn-foursquare:focus,
.btn-foursquare.disabled.focus,
.btn-foursquare[disabled].focus,
fieldset[disabled] .btn-foursquare.focus,
.btn-foursquare.disabled:active,
.btn-foursquare[disabled]:active,
fieldset[disabled] .btn-foursquare:active,
.btn-foursquare.disabled.active,
.btn-foursquare[disabled].active,
fieldset[disabled] .btn-foursquare.active {
	background-color: #0072b1;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-foursquare .badge {
	color: #0072b1;
	background-color: #fff
}

.btn-github {
	color: #fff;
	background-color: #444;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-github:hover,
.btn-github:focus,
.btn-github.focus,
.btn-github:active,
.btn-github.active,
.open&gt;.dropdown-toggle.btn-github {
	color: #fff;
	background-color: #2b2b2b;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-github:active,
.btn-github.active,
.open&gt;.dropdown-toggle.btn-github {
	background-image: none
}

.btn-github.disabled,
.btn-github[disabled],
fieldset[disabled] .btn-github,
.btn-github.disabled:hover,
.btn-github[disabled]:hover,
fieldset[disabled] .btn-github:hover,
.btn-github.disabled:focus,
.btn-github[disabled]:focus,
fieldset[disabled] .btn-github:focus,
.btn-github.disabled.focus,
.btn-github[disabled].focus,
fieldset[disabled] .btn-github.focus,
.btn-github.disabled:active,
.btn-github[disabled]:active,
fieldset[disabled] .btn-github:active,
.btn-github.disabled.active,
.btn-github[disabled].active,
fieldset[disabled] .btn-github.active {
	background-color: #444;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-github .badge {
	color: #444;
	background-color: #fff
}

.btn-google-plus {
	color: #fff;
	background-color: #dd4b39;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-google-plus:hover,
.btn-google-plus:focus,
.btn-google-plus.focus,
.btn-google-plus:active,
.btn-google-plus.active,
.open&gt;.dropdown-toggle.btn-google-plus {
	color: #fff;
	background-color: #c23321;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-google-plus:active,
.btn-google-plus.active,
.open&gt;.dropdown-toggle.btn-google-plus {
	background-image: none
}

.btn-google-plus.disabled,
.btn-google-plus[disabled],
fieldset[disabled] .btn-google-plus,
.btn-google-plus.disabled:hover,
.btn-google-plus[disabled]:hover,
fieldset[disabled] .btn-google-plus:hover,
.btn-google-plus.disabled:focus,
.btn-google-plus[disabled]:focus,
fieldset[disabled] .btn-google-plus:focus,
.btn-google-plus.disabled.focus,
.btn-google-plus[disabled].focus,
fieldset[disabled] .btn-google-plus.focus,
.btn-google-plus.disabled:active,
.btn-google-plus[disabled]:active,
fieldset[disabled] .btn-google-plus:active,
.btn-google-plus.disabled.active,
.btn-google-plus[disabled].active,
fieldset[disabled] .btn-google-plus.active {
	background-color: #dd4b39;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-google-plus .badge {
	color: #dd4b39;
	background-color: #fff
}

.btn-instagram {
	color: #fff;
	background-color: #3f729b;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-instagram:hover,
.btn-instagram:focus,
.btn-instagram.focus,
.btn-instagram:active,
.btn-instagram.active,
.open&gt;.dropdown-toggle.btn-instagram {
	color: #fff;
	background-color: #305777;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-instagram:active,
.btn-instagram.active,
.open&gt;.dropdown-toggle.btn-instagram {
	background-image: none
}

.btn-instagram.disabled,
.btn-instagram[disabled],
fieldset[disabled] .btn-instagram,
.btn-instagram.disabled:hover,
.btn-instagram[disabled]:hover,
fieldset[disabled] .btn-instagram:hover,
.btn-instagram.disabled:focus,
.btn-instagram[disabled]:focus,
fieldset[disabled] .btn-instagram:focus,
.btn-instagram.disabled.focus,
.btn-instagram[disabled].focus,
fieldset[disabled] .btn-instagram.focus,
.btn-instagram.disabled:active,
.btn-instagram[disabled]:active,
fieldset[disabled] .btn-instagram:active,
.btn-instagram.disabled.active,
.btn-instagram[disabled].active,
fieldset[disabled] .btn-instagram.active {
	background-color: #3f729b;
	border-color: rgba(0, 0, 0, 0.2)
}
.collapsing{
    height: 0!important;
    position: absolute!important;
}
.btn-instagram .badge {
	color: #3f729b;
	background-color: #fff
}

.btn-linkedin {
	color: #fff;
	background-color: #007bb6;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-linkedin:hover,
.btn-linkedin:focus,
.btn-linkedin.focus,
.btn-linkedin:active,
.btn-linkedin.active,
.open&gt;.dropdown-toggle.btn-linkedin {
	color: #fff;
	background-color: #005983;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-linkedin:active,
.btn-linkedin.active,
.open&gt;.dropdown-toggle.btn-linkedin {
	background-image: none
}

.btn-linkedin.disabled,
.btn-linkedin[disabled],
fieldset[disabled] .btn-linkedin,
.btn-linkedin.disabled:hover,
.btn-linkedin[disabled]:hover,
fieldset[disabled] .btn-linkedin:hover,
.btn-linkedin.disabled:focus,
.btn-linkedin[disabled]:focus,
fieldset[disabled] .btn-linkedin:focus,
.btn-linkedin.disabled.focus,
.btn-linkedin[disabled].focus,
fieldset[disabled] .btn-linkedin.focus,
.btn-linkedin.disabled:active,
.btn-linkedin[disabled]:active,
fieldset[disabled] .btn-linkedin:active,
.btn-linkedin.disabled.active,
.btn-linkedin[disabled].active,
fieldset[disabled] .btn-linkedin.active {
	background-color: #007bb6;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-linkedin .badge {
	color: #007bb6;
	background-color: #fff
}

.btn-tumblr {
	color: #fff;
	background-color: #2c4762;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-tumblr:hover,
.btn-tumblr:focus,
.btn-tumblr.focus,
.btn-tumblr:active,
.btn-tumblr.active,
.open&gt;.dropdown-toggle.btn-tumblr {
	color: #fff;
	background-color: #1c2d3f;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-tumblr:active,
.btn-tumblr.active,
.open&gt;.dropdown-toggle.btn-tumblr {
	background-image: none
}

.btn-tumblr.disabled,
.btn-tumblr[disabled],
fieldset[disabled] .btn-tumblr,
.btn-tumblr.disabled:hover,
.btn-tumblr[disabled]:hover,
fieldset[disabled] .btn-tumblr:hover,
.btn-tumblr.disabled:focus,
.btn-tumblr[disabled]:focus,
fieldset[disabled] .btn-tumblr:focus,
.btn-tumblr.disabled.focus,
.btn-tumblr[disabled].focus,
fieldset[disabled] .btn-tumblr.focus,
.btn-tumblr.disabled:active,
.btn-tumblr[disabled]:active,
fieldset[disabled] .btn-tumblr:active,
.btn-tumblr.disabled.active,
.btn-tumblr[disabled].active,
fieldset[disabled] .btn-tumblr.active {
	background-color: #2c4762;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-tumblr .badge {
	color: #2c4762;
	background-color: #fff
}

.btn-twitter {
	color: #fff;
	background-color: #55acee;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-twitter:hover,
.btn-twitter:focus,
.btn-twitter.focus,
.btn-twitter:active,
.btn-twitter.active,
.open&gt;.dropdown-toggle.btn-twitter {
	color: #fff;
	background-color: #2795e9;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-twitter:active,
.btn-twitter.active,
.open&gt;.dropdown-toggle.btn-twitter {
	background-image: none
}

.btn-twitter.disabled,
.btn-twitter[disabled],
fieldset[disabled] .btn-twitter,
.btn-twitter.disabled:hover,
.btn-twitter[disabled]:hover,
fieldset[disabled] .btn-twitter:hover,
.btn-twitter.disabled:focus,
.btn-twitter[disabled]:focus,
fieldset[disabled] .btn-twitter:focus,
.btn-twitter.disabled.focus,
.btn-twitter[disabled].focus,
fieldset[disabled] .btn-twitter.focus,
.btn-twitter.disabled:active,
.btn-twitter[disabled]:active,
fieldset[disabled] .btn-twitter:active,
.btn-twitter.disabled.active,
.btn-twitter[disabled].active,
fieldset[disabled] .btn-twitter.active {
	background-color: #55acee;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-twitter .badge {
	color: #55acee;
	background-color: #fff
}

.btn-vk {
	color: #fff;
	background-color: #587ea3;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-vk:hover,
.btn-vk:focus,
.btn-vk.focus,
.btn-vk:active,
.btn-vk.active,
.open&gt;.dropdown-toggle.btn-vk {
	color: #fff;
	background-color: #466482;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-vk:active,
.btn-vk.active,
.open&gt;.dropdown-toggle.btn-vk {
	background-image: none
}

.btn-vk.disabled,
.btn-vk[disabled],
fieldset[disabled] .btn-vk,
.btn-vk.disabled:hover,
.btn-vk[disabled]:hover,
fieldset[disabled] .btn-vk:hover,
.btn-vk.disabled:focus,
.btn-vk[disabled]:focus,
fieldset[disabled] .btn-vk:focus,
.btn-vk.disabled.focus,
.btn-vk[disabled].focus,
fieldset[disabled] .btn-vk.focus,
.btn-vk.disabled:active,
.btn-vk[disabled]:active,
fieldset[disabled] .btn-vk:active,
.btn-vk.disabled.active,
.btn-vk[disabled].active,
fieldset[disabled] .btn-vk.active {
	background-color: #587ea3;
	border-color: rgba(0, 0, 0, 0.2)
}

.btn-vk .badge {
	color: #587ea3;
	background-color: #fff
}

.fc-button {
	background: #f4f4f4;
	background-image: none;
	color: #444;
	border-color: #ddd;
	border-bottom-color: #ddd
}

.fc-button:hover,
.fc-button:active,
.fc-button.hover {
	background-color: #e9e9e9
}

.fc-header-title h2 {
	font-size: 15px;
	line-height: 1.6em;
	color: #666;
	margin-left: 10px
}

.fc-header-right {
	padding-right: 10px
}

.fc-header-left {
	padding-left: 10px
}

.fc-widget-header {
	background: #fafafa
}

.fc-grid {
	width: 100%;
	border: 0
}

.fc-widget-header:first-of-type,
.fc-widget-content:first-of-type {
	border-left: 0;
	border-right: 0
}

.fc-widget-header:last-of-type,
.fc-widget-content:last-of-type {
	border-right: 0
}

.fc-toolbar {
	padding: 10px;
	margin: 0
}

.fc-day-number {
	font-size: 20px;
	font-weight: 300;
	padding-right: 10px
}

.fc-color-picker {
	list-style: none;
	margin: 0;
	padding: 0
}

.fc-color-picker&gt;li {
	float: left;
	font-size: 30px;
	margin-right: 5px;
	line-height: 30px
}

.fc-color-picker&gt;li .fa {
	-webkit-transition: -webkit-transform linear .3s;
	-moz-transition: -moz-transform linear .3s;
	-o-transition: -o-transform linear .3s;
	transition: transform linear .3s
}

.fc-color-picker&gt;li .fa:hover {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg)
}

#add-new-event {
	-webkit-transition: all linear .3s;
	-o-transition: all linear .3s;
	transition: all linear .3s
}

.external-event {
	padding: 5px 10px;
	font-weight: bold;
	margin-bottom: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	cursor: move
}

.external-event:hover {
	box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2)
}

.pad {
	padding: 10px
}

.margin {
	margin: 10px
}

.margin-bottom {
	margin-bottom: 20px
}

.inline {
	display: inline;
	width: auto
}

.description-block {
	display: block;
	margin: 10px 0;
	text-align: center
}

.description-block.margin-bottom {
	margin-bottom: 25px
}

.description-block&gt;.description-header {
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 16px
}

.description-block&gt;.description-text {
	text-transform: uppercase
}

.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black,
.bg-red-active,
.bg-yellow-active,
.bg-aqua-active,
.bg-blue-active,
.bg-light-blue-active,
.bg-green-active,
.bg-navy-active,
.bg-teal-active,
.bg-olive-active,
.bg-lime-active,
.bg-orange-active,
.bg-fuchsia-active,
.bg-purple-active,
.bg-maroon-active,
.bg-black-active,
.callout.callout-danger,
.callout.callout-warning,
.callout.callout-info,
.callout.callout-success,
.alert-success,
.alert-danger,
.alert-error,
.alert-warning,
.alert-info,
.label-danger,
.label-info,
.label-waring,
.label-primary,
.label-success,
.modal-primary .modal-body,
.modal-primary .modal-header,
.modal-primary .modal-footer,
.modal-warning .modal-body,
.modal-warning .modal-header,
.modal-warning .modal-footer,
.modal-info .modal-body,
.modal-info .modal-header,
.modal-info .modal-footer,
.modal-success .modal-body,
.modal-success .modal-header,
.modal-success .modal-footer,
.modal-danger .modal-body,
.modal-danger .modal-header,
.modal-danger .modal-footer {
	color: #fff !important
}

.bg-gray {
	color: #000;
	background-color: #d2d6de !important
}

.bg-black {
	background-color: #111 !important
}

.bg-red,
.callout.callout-danger,
.alert-danger,
.alert-error,
.label-danger,
.modal-danger .modal-body {
	background-color: #dd4b39 !important
}

.bg-yellow,
.callout.callout-warning,
.alert-warning,
.label-waring,
.modal-warning .modal-body {
	background-color: #f39c12 !important
}

.bg-aqua,
.callout.callout-info,
.alert-info,
.label-info,
.modal-info .modal-body {
	background-color: #00c0ef !important
}

.bg-blue {
	background-color: #0073b7 !important
}

.bg-light-blue,
.label-primary,
.modal-primary .modal-body {
	background-color: #3c8dbc !important
}

.bg-green,
.callout.callout-success,
.alert-success,
.label-success,
.modal-success .modal-body {
	background-color: #00a65a !important
}

.bg-navy {
	background-color: #001f3f !important
}

.bg-teal {
	background-color: #39cccc !important
}

.bg-olive {
	background-color: #3d9970 !important
}

.bg-lime {
	background-color: #01ff70 !important
}

.bg-orange {
	background-color: #ff851b !important
}

.bg-fuchsia {
	background-color: #f012be !important
}

.bg-purple {
	background-color: #605ca8 !important
}

.bg-maroon {
	background-color: #d81b60 !important
}

.bg-gray-active {
	color: #000;
	background-color: #b5bbc8 !important
}

.bg-black-active {
	background-color: #000 !important
}

.bg-red-active,
.modal-danger .modal-header,
.modal-danger .modal-footer {
	background-color: #d33724 !important
}

.bg-yellow-active,
.modal-warning .modal-header,
.modal-warning .modal-footer {
	background-color: #db8b0b !important
}

.bg-aqua-active,
.modal-info .modal-header,
.modal-info .modal-footer {
	background-color: #00a7d0 !important
}

.bg-blue-active {
	background-color: #005384 !important
}

.bg-light-blue-active,
.modal-primary .modal-header,
.modal-primary .modal-footer {
	background-color: #357ca5 !important
}

.bg-green-active,
.modal-success .modal-header,
.modal-success .modal-footer {
	background-color: #008d4c !important
}

.bg-navy-active {
	background-color: #001a35 !important
}

.bg-teal-active {
	background-color: #30bbbb !important
}

.bg-olive-active {
	background-color: #368763 !important
}

.bg-lime-active {
	background-color: #00e765 !important
}

.bg-orange-active {
	background-color: #ff7701 !important
}

.bg-fuchsia-active {
	background-color: #db0ead !important
}

.bg-purple-active {
	background-color: #555299 !important
}

.bg-maroon-active {
	background-color: #ca195a !important
}

[class^="bg-"].disabled {
	opacity: .65;
	filter: alpha(opacity=65)
}

.text-red {
	color: #dd4b39 !important
}

.text-yellow {
	color: #f39c12 !important
}

.text-aqua {
	color: #00c0ef !important
}

.text-blue {
	color: #0073b7 !important
}

.text-black {
	color: #111 !important
}

.text-light-blue {
	color: #3c8dbc !important
}

.text-green {
	color: #00a65a !important
}

.text-gray {
	color: #d2d6de !important
}

.text-navy {
	color: #001f3f !important
}

.text-teal {
	color: #39cccc !important
}

.text-olive {
	color: #3d9970 !important
}

.text-lime {
	color: #01ff70 !important
}

.text-orange {
	color: #ff851b !important
}

.text-fuchsia {
	color: #f012be !important
}

.text-purple {
	color: #605ca8 !important
}

.text-maroon {
	color: #d81b60 !important
}

.hide {
	display: none !important
}

.no-border {
	border: 0px !important
}

.no-padding {
	padding: 0px !important
}

.no-margin {
	margin: 0px !important
}

.no-shadow {
	box-shadow: none!important
}

.list-unstyled,
.chart-legend,
.contacts-list,
.users-list,
.mailbox-attachments {
	list-style: none;
	margin: 0;
	padding: 0
}

.flat {
	border-radius: 0 !important
}

.text-bold,
.text-bold.table td,
.text-bold.table th {
	font-weight: 700
}

.jqstooltip {
	padding: 5px!important;
	width: auto!important;
	height: auto!important
}

.bg-teal-gradient {
	background: #39cccc !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important;
	background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
	background: -moz-linear-gradient(center bottom, #39cccc 0, #7adddd 100%) !important;
	background: -o-linear-gradient(#7adddd, #39cccc) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important;
	color: #fff
}

.bg-light-blue-gradient {
	background: #3c8dbc !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
	background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
	background: -moz-linear-gradient(center bottom, #3c8dbc 0, #67a8ce 100%) !important;
	background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
	color: #fff
}

.bg-blue-gradient {
	background: #0073b7 !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
	background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
	background: -moz-linear-gradient(center bottom, #0073b7 0, #0089db 100%) !important;
	background: -o-linear-gradient(#0089db, #0073b7) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
	color: #fff
}

.bg-aqua-gradient {
	background: #00c0ef !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
	background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
	background: -moz-linear-gradient(center bottom, #00c0ef 0, #14d1ff 100%) !important;
	background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
	color: #fff
}

.bg-yellow-gradient {
	background: #f39c12 !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
	background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
	background: -moz-linear-gradient(center bottom, #f39c12 0, #f7bc60 100%) !important;
	background: -o-linear-gradient(#f7bc60, #f39c12) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
	color: #fff
}

.bg-purple-gradient {
	background: #605ca8 !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
	background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
	background: -moz-linear-gradient(center bottom, #605ca8 0, #9491c4 100%) !important;
	background: -o-linear-gradient(#9491c4, #605ca8) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
	color: #fff
}

.bg-green-gradient {
	background: #00a65a !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
	background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
	background: -moz-linear-gradient(center bottom, #00a65a 0, #00ca6d 100%) !important;
	background: -o-linear-gradient(#00ca6d, #00a65a) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
	color: #fff
}

.bg-red-gradient {
	background: #dd4b39 !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important;
	background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important;
	background: -moz-linear-gradient(center bottom, #dd4b39 0, #e47365 100%) !important;
	background: -o-linear-gradient(#e47365, #dd4b39) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
	color: #fff
}

.bg-black-gradient {
	background: #111 !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111), color-stop(1, #2b2b2b)) !important;
	background: -ms-linear-gradient(bottom, #111, #2b2b2b) !important;
	background: -moz-linear-gradient(center bottom, #111 0, #2b2b2b 100%) !important;
	background: -o-linear-gradient(#2b2b2b, #111) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111111', GradientType=0) !important;
	color: #fff
}

.bg-maroon-gradient {
	background: #d81b60 !important;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d81b60), color-stop(1, #e73f7c)) !important;
	background: -ms-linear-gradient(bottom, #d81b60, #e73f7c) !important;
	background: -moz-linear-gradient(center bottom, #d81b60 0, #e73f7c 100%) !important;
	background: -o-linear-gradient(#e73f7c, #d81b60) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#d81b60', GradientType=0) !important;
	color: #fff
}

.connectedSortable {
	min-height: 100px
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.sort-highlight {
	background: #f4f4f4;
	border: 1px dashed #ddd;
	margin-bottom: 10px
}

.full-opacity-hover {
	opacity: .65;
	filter: alpha(opacity=65)
}

.full-opacity-hover:hover {
	opacity: 1;
	filter: alpha(opacity=100)
}

.chart {
	position: relative;
	overflow: hidden;
	width: 100%
}

.chart svg,
.chart canvas {
	width: 100%!important
}

@media print {
	.no-print,
	.main-sidebar,
	.left-side,
	.main-header,
	.content-header {
		display: none!important
	}
	.content-wrapper,
	.right-side,
	.main-footer {
		margin-left: 0!important;
		min-height: 0!important;
		-webkit-transform: translate(0, 0) !important;
		-ms-transform: translate(0, 0) !important;
		-o-transform: translate(0, 0) !important;
		transform: translate(0, 0) !important
	}
	.fixed .content-wrapper,
	.fixed .right-side {
		padding-top: 0!important
	}
	.invoice {
		width: 100%;
		border: 0;
		margin: 0;
		padding: 0
	}
	.invoice-col {
		float: left;
		width: 33.3333333%
	}
	.table-responsive {
		overflow: auto
	}
	.table-responsive&gt;.table tr th,
	.table-responsive&gt;.table tr td {
		white-space: normal!important
	}
}

.dt-button {
	margin-right: 0.333em;
}

#clock {
	display: inline-block;
	font-size: 16px;
	font-weight: 100;
	color: #3f4454;
	line-height: 16px;
}

.date timestamp {
	font-size: 14px;
	font-weight: 100;
	color: #3f4454;
	line-height: 16px;
	margin-right: 20px;
}

#server_clock {
	color: #3f4454;
	display: inline-block;
	font-size: 16px;
	font-weight: 100;
	line-height: 16px;
}

.right-content {
	width: 220px;
	float: left;
}

div#left_layout {
	background: url(https://localhost/final-admin-demo/apps/admincp/img/bg.jpg);
}

.row-in-br {
	border-right: 8px solid rgba(120, 130, 140, .13);
}

.col-in {
	padding: 20px 0;
}

.row-in i {
	font-size: 24px;
}

[class*=" ti-"],
[class^=ti-] {
	font-family: themify;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.vb {
	vertical-align: bottom;
}

.col-in h3 {
	font-size: 48px;
	font-weight: 100;
}

.text-danger {
	color: #fb9678!important;
}

.m-t-15 {
	margin-top: 15px!important;
}

.comment-center {
	margin: 0 -25px;
}

.comment-center .comment-body {
	border-bottom: 1px solid rgba(120, 130, 140, .13);
	display: table;
	padding: 20px 25px;
}

.comment-center .user-img {
	width: 40px;
	display: table-cell;
	position: relative;
	margin: 0 10px 0 0;
}

.comment-center .user-img img {
	width: 100%;
}

.img-circle {
	border-radius: 50%;
}

.comment-center .mail-contnet {
	display: table-cell;
	padding-left: 15px;
	vertical-align: top;
}

.comment-center .mail-contnet h5 {
	margin: 0;
	font-weight: 400;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.comment-center .mail-contnet .mail-desc {
	font-size: 14px;
	display: block;
	margin: 8px 0;
	line-height: 25px;
	color: #848a96;
	height: 50px;
	overflow: hidden;
}

.label-info {
	background-color: #03a9f3;
}

.label-rouded,
.label-rounded {
	border-radius: 60px;
	padding: 4px 12px 3px;
	font-weight: 500;
}

.mail-contnet a.action {
	margin-left: 10px;
	font-size: 12px;
	visibility: hidden;
}

.comment-center .mail-contnet .time {
	display: block;
	font-size: 10px;
	color: #2b2b2b;
}

.b-none {
	border: 0!important;
}

.sales-report {
	background: #f7fafc;
}

.txt-oflo {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.white-box .box-title {
	margin: 0 0 12px;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
}

.marginbootom {
	margin-bottom: 20px;
}

sup {
	top: -.5em;
	font-size: 35px;
	line-height: 36px;
	float: left;
}


/*side popup styling*/

.overlay {
	position: relative;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	z-index: 9999;
	opacity: 0;
}

.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	margin: 30px auto;
	padding: 15px;
	border-radius: 5px;
	width: 49%;
	left: 15%;
	z-index: 999999;
	position: absolute;
}

.popup h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
	position: absolute;
	top: 35px;
	left: 25px;
	background: #00495d;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	padding: 0px 5px;
}

.search {
	position: absolute;
	top: 19px;
	left: 45%;
	/* background: #ce00ff; */
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
	padding: 0px 5px;
}

.popup .close:hover {
	color: #ffffff;
}

.popup .content {
	/*	max-height: 30%;
*/
	overflow: auto;
	border-top: 2px dashed #d1d6d8;
	margin-top: 16px;
}

.div1 {
	padding: 20px;
	/* float: left; */
	height: auto;
	background: #fff;
	border-radius: 25px;
}

.content h3 {
	text-align: center;
	margin: 15px 0 -1px 0;
	text-transform: uppercase;
	color: #00495d;
}

@media screen and (max-width: 1024px) {
	.box {
		width: 100%;
	}
	.popup {
		width: 90% !important;
	}
	.popup {
		left: 0% !important;
	}
	.div1 {
		width: 100%;
		padding: 10px;
		float: left;
	}
}


/* sticky button */

#feedback1 {
	height: 0px;
	width: 85px;
	position: fixed;
	right: 0;
	top: 30%;
	z-index: 1000;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

#feedback1 a {
	display: block;
	background: url(pc.png) no-repeat;
	height: 52px;
	width: 155px;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 17px;
	font-weight: bold;
	text-decoration: none;
}

#feedback1 a:hover {
	background: url(pc-over.png) no-repeat;
}

#feedback {
	height: 0px;
	position: fixed;
	right: 0;
	top: 40%;
	z-index: 1000;
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

#feedback img {
	height: 80px;
}

#feedback a {
	display: block;
	height: 52px;
	padding-top: 10px;
	text-align: center;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 17px;
	font-weight: bold;
	text-decoration: none;
}


/* enquiry form */

#quickenquire input[type=text],
input[type=email],
textarea,
select {
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

#quickenquire label {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0px!important;
	margin: 0px!important;
}

#quickenquire input[type=submit] {
	width: 100%;
	background-color: #00495d;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	padding: 7px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

#quickenquire input[type=submit]:hover {
	background-color: #000000;
}


}
.checkbox input[type=checkbox] {
	cursor: pointer;
	opacity: 0;
	z-index: 1;
	outline: 0!important;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
	position: absolute;
	margin-left: -20px;
	margin-top: 4px \9;
}
input[type="radio"],
input[type="checkbox"] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	line-height: normal;
}
.radio,
.checkbox {
	padding-right: 0;
}

/*slider style*/
.post-slide {
	overflow: hidden;
	margin-right: 15px;
	background-color: #fff !important;
}
.post-slide .post-img {
	float: left;
	width: 50%;
	position: relative;
	margin-right: 30px;
}
.post-slide .post-img img {
	width: 100%;
	height: auto;
}
.post-slide .post-date {
	background: #ec3c6a;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	padding: 2% 3%;
	width: 60px;
	height: 60px;
	text-align: center;
	transition: all 0.50s ease;
}
.post-slide .date {
	display: block;
	font-size: 20px;
	font-weight: 700;
}
.post-slide .month {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
}
.post-slide .post-review {
	padding: 5% 3% 1% 0;
	border-top: 3px solid #38cfd8;
}
.post-slide:hover .post-review {
	border-top-color: #ec3c6a;
}
.post-slide .post-title {
	margin: 0 0 10px 0;
}
.post-slide .post-title a {
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
}
.post-slide .post-title a:hover {
	text-decoration: none;
	font-weight: bold;
}
.post-slide .post-bar {
	padding: 0;
	list-style: none;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 20px;
}
.post-slide .post-bar:after,
.post-slide .post-bar:before {
	border: 1px solid #38cfd8;
	bottom: -10px;
	content: "";
	display: block;
	position: absolute;
	right: 36%;
	width: 25px;
}
.post-slide .post-bar:before {
	border: 1px solid #ec3c6a;
	right: 32%;
}
.post-slide .post-bar li {
	color: #555;
	font-size: 10px;
	margin-right: 10px;
	display: inline-block;
}
.post-slide .post-bar li a {
	font-size: 13px;
	text-decoration: none;
	text-transform: uppercase;
	color: #ec3c6a;
}
.post-slide .post-bar li a:hover {
	color: #ec3c6a;
}
.post-slide .post-bar li i {
	color: #777;
	margin-right: 5px;
}
.post-slide .post-description {
	font-size: 12px;
	line-height: 21px;
	color: #444454;
}
.owl-theme .owl-controls {
	margin-top: 30px;
}
.owl-theme .owl-controls .owl-page span {
	background: #fff;
	border: 2px solid #37a6a4;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	background: #37a6a4;
}
@media only screen and (max-width: 990px) {
	.post-slide .post-img {
		width: 100%;
	}
	
	.post-slide .post-review {
		width: 100%;
		border-bottom: 4px solid #ec3c6a;
	}
	
	.post-slide .post-bar:before {
		left: 0;
	}
	
	.post-slide .post-bar:after {
		left: 25px;
	}
}

/******************  News Slider Demo-2 *******************/
.demo {
	background: linear-gradient(to right, #ffcccc, #d3d3d3);
}
.post-slide2 {
	margin: 0 15px;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide2 .post-img {
	overflow: hidden;
}
.post-slide2 .post-img img {
	width: 100%;
	height: auto;
	transform: scale(1);
	transition: all 1s ease-in-out 0s;
}
.post-slide2:hover .post-img img {
	transform: scale(1.08);
}
.post-slide2 .post-content {
	background: #fff;
	padding: 20px;
}
.post-slide2 .post-title {
	font-size: 17px;
	font-weight: 600;
	margin-top: 0;
	text-transform: capitalize;
}
.post-slide2 .post-title a {
	display: inline-block;
	color: #808080;
	transition: all 0.3s ease 0s;
}
.post-slide2 .post-title a:hover {
	color: #3d3030;
	text-decoration: none;
}
.post-slide2 .post-description {
	font-size: 15px;
	color: #676767;
	line-height: 24px;
	margin-bottom: 14px;
}
.post-slide2 .post-bar {
	padding: 0;
	margin-bottom: 15px;
	list-style: none;
}
.post-slide2 .post-bar li {
	color: #676767;
	padding: 2px 0;
}
.post-slide2 .post-bar li i {
	margin-right: 5px;
}
.post-slide2 .post-bar li a {
	display: inline-block;
	font-size: 12px;
	color: #808080;
	transition: all 0.3s ease 0s;
}
.post-slide2 .post-bar li a:after {
	content: ",";
}
.post-slide2 .post-bar li a:last-child:after {
	content: "";
}
.post-slide2 .post-bar li a:hover {
	color: #3d3030;
	text-decoration: none;
}
.post-slide2 .read-more {
	display: inline-block;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: #e7989a;
	border-bottom-right-radius: 10px;
	text-transform: capitalize;
	transition: all 0.30s linear;
}
.post-slide2 .read-more:hover {
	background: #333;
	text-decoration: none;
}

/******************  News Slider Demo-3 *******************/
.post-slide3 {
	margin: 0 15px;
	padding: 0 25px 20px 25px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide3 .post-img {
	position: relative;
	margin-bottom: 20px;
}
.post-slide3 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide3 .post-icon {
	width: 60px;
	height: 60px;
	display: block;
	position: absolute;
	bottom: 25px;
	left: 25px;
	text-align: center;
	background: #333;
	opacity: 0;
	border-radius: 3px;
	transition: all 300ms ease-in-out 0s;
}
.post-slide3:hover .post-icon {
	opacity: 1;
}
.post-slide3 .post-icon i {
	font-size: 20px;
	color: #fff;
	line-height: 60px;
}
.post-slide3 .post-bar {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
.post-slide3 .post-bar li {
	display: inline-block;
	font-size: 15px;
	color: #676767;
	margin-right: 5px;
}
.post-slide3 .post-bar li:after {
	content: "/";
	margin-left: 5px;
}
.post-slide3 .post-bar li:last-child:after {
	content: "";
}
.post-slide3 .post-bar li a {
	color: #8e44ad;
	transition: all 0.3s ease 0s;
}
.post-slide3 .post-bar li a:hover {
	color: #333;
	text-decoration: none;
}
.post-slide3 .post-bar li a:after {
	content: ",";
	margin: 0 5px;
}
.post-slide3 .post-bar li a:last-child:after {
	content: "";
}
.post-slide3 .post-title {
	margin: 15px 0;
	text-transform: capitalize;
}
.post-slide3 .post-title a {
	font-size: 22px;
	font-weight: 600;
	color: #3c3c3c;
	transition: all 300ms linear 0ms;
}
.post-slide3 .post-title a:hover {
	color: #8e44ad;
	text-decoration: none;
}
.post-slide3 .post-description {
	font-size: 16px;
	color: #676767;
	line-height: 24px;
	padding-bottom: 15px;
}
.post-slide3 .read-more {
	display: inline-block;
}
.post-slide3 .read-more:hover {
	text-decoration: none;
}
.post-slide3 .read-more i {
	font-size: 19px;
	color: #333;
	margin-right: 5px;
	transition: all 0.40s linear 0s;
}
.post-slide3 .read-more span {
	font-size: 16px;
	color: #333;
	opacity: 0;
	text-transform: uppercase;
	transition: all 0.40s linear 0s;
}
.post-slide3 .read-more:after {
	content: "";
	display: block;
	width: 40%;
	position: relative;
	bottom: -20px;
	border-bottom: 3px solid #333;
	opacity: 0;
	transition: all 0.40s linear 0s;
}
.post-slide3:hover .read-more span,
.post-slide3:hover .read-more:after {
	opacity: 1;
}
.post-slide3 .read-more:hover span,
.post-slide3 .read-more:hover i,
.post-slide3 .read-more:hover:after {
	color: #8e44ad;
	border-bottom-color: #8e44ad;
}

/******************  News Slider Demo-4 *******************/
.post-slide4 {
	margin: 0 10px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide4 .post-info {
	padding: 5px 10px;
	margin: 0;
	list-style: none;
}
.post-slide4 .post-info li {
	display: inline-block;
	margin: 0 5px;
}
.post-slide4 .post-info li i {
	margin-right: 8px;
}
.post-slide4 .post-info li a {
	font-size: 11px;
	font-weight: bold;
	color: #7e828a;
	text-transform: uppercase;
}
.post-slide4 .post-info li a:hover {
	color: #1dcfd1;
	text-decoration: none;
}
.post-slide4 .post-img {
	position: relative;
}
.post-slide4 .post-img:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: opacity 0.40s linear 0s;
}
.post-slide4:hover .post-img:before {
	opacity: 1;
}
.post-slide4 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide4 .read {
	position: absolute;
	bottom: 30px;
	left: 50px;
	font-size: 14px;
	color: #fff;
	text-transform: capitalize;
	opacity: 0;
	transition: all 0.40s linear 0s;
}
.post-slide4:hover .read {
	opacity: 1;
}
.post-slide4 .read:hover {
	text-decoration: none;
	color: #1dcfd1;
}
.post-slide4 .post-content {
	padding: 40px 15px;
	position: relative;
}
.post-slide4 .post-author {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	position: absolute;
	top: -45px;
	right: 10px;
	overflow: hidden;
	border: 4px solid #fff;
}
.post-slide4 .post-author img {
	width: 100%;
	height: auto;
}
.post-slide4 .post-title {
	font-size: 14px;
	font-weight: bold;
	color: #1dcfd1;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	transition: all 0.30s linear 0s;
}
.post-slide4 .post-title:after {
	content: "";
	width: 25px;
	display: block;
	margin-top: 10px;
	border-bottom: 4px solid #333;
}
.post-slide4 .post-description {
	font-size: 13px;
	color: #555;
	margin-bottom: 20px;
}

/******************  News Slider Demo-5 *******************/
.post-slide5 {
	margin: 0 15px;
	transition: all 0.4s ease-in-out 0s;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide5 .post-img {
	position: relative;
	overflow: hidden;
}
.post-slide5 .post-img:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	transition: all 0.4s linear 0s;
}
.post-slide5:hover .post-img:before {
	background: rgba(0, 0, 0, 0.6);
}
.post-slide5 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide5 .category {
	width: 20%;
	font-size: 16px;
	color: #fff;
	line-height: 11px;
	text-align: center;
	text-transform: capitalize;
	padding: 11px 0;
	background: #ff9412;
	position: absolute;
	bottom: 0;
	left: -50%;
	transition: all 0.5s ease-in-out 0s;
}
.post-slide5:hover .category {
	left: 0;
}
.post-slide5 .post-review {
	padding: 25px 20px;
	background: #fff;
	position: relative;
}
.post-slide5 .post-title {
	margin: 0;
}
.post-slide5 .post-title a {
	display: inline-block;
	font-size: 16px;
	color: #ff9412;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 25px;
	transition: all 0.30s linear 0s;
}
.post-slide5 .post-title a:hover {
	text-decoration: none;
	color: #555;
}
.post-slide5 .post-description {
	font-size: 15px;
	color: #555;
	line-height: 26px;
}
.post-review .post-bar {
	margin-top: 20px;
}
.post-bar span {
	display: inline-block;
	font-size: 14px;
}
.post-bar span i {
	margin-right: 5px;
	color: #999;
}
.post-bar span a {
	color: #999;
	text-transform: uppercase;
}
.post-bar span a:hover {
	text-decoration: none;
	color: #ff9412;
}
.post-bar span.comments {
	float: right;
}
@media only screen and (max-width: 359px) {
	.post-slide5 .category {
		font-size: 13px;
	}
}

/******************  News Slider Demo-6 *******************/
.post-slide6 {
	margin: 0 10px;
	border-left: 8px solid #1dcfd1;
	border-bottom: 8px solid #1dcfd1;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide6 .post-img {
	position: relative;
	overflow: hidden;
}
.post-slide6 .post-img:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.0);
	transition: all 0.40s linear 0s;
}
.post-slide6:hover .post-img:before {
	background: rgba(0, 0, 0, 0.6);
}
.post-slide6 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide6 .post-info {
	width: 75%;
	position: absolute;
	bottom: -100%;
	left: 12.5%;
	background: #1dcfd1;
	text-align: center;
	line-height: 26px;
	padding: 15px;
	transition: bottom 0.40s ease-in-out 0s;
}
.post-slide6:hover .post-info {
	bottom: 0;
}
.post-slide6 .category {
	padding: 0;
	margin: 0;
	list-style: none;
}
.post-slide6 .category li,
.post-slide6 .post-date {
	display: inline-block;
	font-size: 16px;
	color: #fff;
	text-transform: capitalize;
}
.post-slide6 .category li:after {
	content: " /";
}
.post-slide6 .category li:last-child:after {
	content: "";
}
.post-slide6 .category li a {
	color: #fff;
	transition: all 0.40s linear;
}
.post-slide6 .category li a:hover {
	color: #555;
	text-decoration: none;
}
.post-slide6 .post-review {
	padding: 35px 20px 25px;
	background: #fff;
	position: relative;
}
.post-slide6 .icons {
	width: 90px;
	height: 90px;
	border: 4px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: -45px;
	right: 10px;
	overflow: hidden;
}
.post-slide6 .icons img {
	width: 100%;
	height: auto;
}
.post-slide6 .post-title {
	margin: 0 0 25px 0;
}
.post-slide6 .post-title a {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #1dcfd1;
	display: inline-block;
	text-transform: uppercase;
	transition: all 0.30s linear 0s;
}
.post-slide6 .post-title a:hover {
	text-decoration: none;
	color: #555;
}
.post-slide6 .post-description {
	color: #555;
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 20px;
}
.post-slide6 .read {
	font-size: 13px;
	color: #555;
	display: block;
	text-align: right;
	text-transform: uppercase;
}
.post-slide6 .read:hover {
	text-decoration: none;
	color: #1dcfd1;
}

/******************  News Slider Demo-7 *******************/
.post-slide7 {
	padding: 0 10px;
	transform: translateY(0);
	transition: all 0.30s ease 0s;
}
.post-slide7:hover {
	transform: translateY(-10px);
}
.post-slide7 .post-img {
	position: relative;
}
.post-slide7 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide7 .post-img:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(to left, rgba(210, 130, 19, 0.7), rgba(170, 55, 114, 0.7));
	transform: translateY(-100%);
	transition: all 0.30s ease 0s;
}
.post-slide7:hover .post-img:after {
	transform: translateY(0);
}
.post-slide7 .post-img:before {
	content: "\f002";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 100%;
	height: 100%;
	text-align: center;
	position: absolute;
	top: -50%;
	font-size: 30px;
	color: #fff;
	transition: all 0.50s ease 0s;
	z-index: 1;
}
.post-slide7:hover .post-img:before {
	top: 40%;
}
.post-slide7 .icons {
	position: absolute;
	bottom: -16px;
	left: 30px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}
.post-slide7 .icons img {
	width: 100%;
	height: auto;
}
.post-slide7 .post-review {
	border: 1px solid #9c4a6c;
	border-top: none;
	padding: 35px 20px 25px;
	background: #fff;
	position: relative;
}
.post-slide7 .post-review:after {
	content: "";
	width: 90%;
	height: 10px;
	position: absolute;
	top: 100%;
	left: 5%;
	opacity: 0;
	background: rgba(0, 0, 0, 0) radial-gradient(ellipse at center center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	transform: translateY(0);
	transition: all 0.30s ease 0s;
}
.post-slide7:hover .post-review:after {
	opacity: 1;
	transform: translateY(5px);
}
.post-slide7 .post-bar {
	padding: 0;
	list-style: none;
}
.post-slide7 .post-bar li {
	display: inline-block;
	font-size: 16px;
	font-family: serif, Arial;
	color: #555;
	margin-right: 10px;
	text-transform: capitalize;
}
.post-slide7 .post-bar li i {
	color: #9c4a6c;
	margin-right: 8px;
}
.post-slide7 .post-title {
	margin: 0 0 20px 0;
	color: #555;
	font-weight: bold;
	font-size: 18px;
}
.post-slide7 .post-description {
	font-size: 15px;
	line-height: 21px;
	color: #808080;
}
.post-slide7 .read {
	text-transform: capitalize;
	font-size: 15px;
	color: #9c4a6c;
}
.post-slide7 .read i {
	margin-left: 10px;
}
.post-slide7 .read:hover {
	text-decoration: none;
	color: #333;
}

/******************  News Slider Demo-8 *******************/
.post-slide8 {
	margin: 0 15px;
	position: relative;
	background: #fff;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide8 .post-img {
	position: relative;
	overflow: hidden;
}
.post-slide8 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide8 .over-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: all 0.30s ease;
}
.post-slide8:hover .over-layer {
	opacity: 1;
}
.post-slide8 .post-link {
	margin: 0;
	padding: 0;
	position: relative;
	top: 45%;
	text-align: center;
}
.post-slide8 .post-link li {
	display: inline-block;
	list-style: none;
	margin-right: 20px;
}
.post-slide8 .post-link li a {
	color: #fff;
	font-size: 20px;
}
.post-slide8 .post-link li a:hover {
	color: #ff8b3d;
	text-decoration: none;
}
.post-slide8 .post-date {
	position: absolute;
	top: 10%;
	left: 4%;
}
.post-slide8 .date {
	display: inline-block;
	border-radius: 3px 0 0 3px;
	padding: 5px 10px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	background: #333;
	float: left;
}
.post-slide8 .month {
	display: inline-block;
	border-radius: 0 3px 3px 0;
	padding: 5px 13px;
	color: #111;
	font-size: 20px;
	font-weight: bold;
	background: #ff8b3d;
}
.post-slide8 .post-content {
	padding: 30px;
}
.post-slide8 .post-title {
	margin: 0 0 15px 0;
}
.post-slide8 .post-title a {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	display: inline-block;
	text-transform: capitalize;
	transition: all 0.3s ease 0s;
}
.post-slide8 .post-title a:hover {
	text-decoration: none;
	color: #ff8b3d;
}
.post-slide8 .post-description {
	font-size: 14px;
	line-height: 24px;
	color: #808080;
}
.post-slide8 .read-more {
	color: #333;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	transition: color 0.20s linear;
}
.post-slide8 .read-more:hover {
	text-decoration: none;
	color: #ff8b3d;
}
.post-slide8 .read-more:after {
	content: "";
	position: absolute;
	width: 30%;
	display: block;
	border: 1px solid #ff8b3d;
	transition: all 0.30s ease;
}
.post-slide8 .read-more:hover:after {
	width: 100%;
}
@media only screen and (max-width: 479px) {
	.post-slide8 .month {
		font-size: 14px;
	}
	
	.post-slide8 .date {
		font-size: 14px;
	}
	.header {
   height: 32px!important;
   
}
	#quickenquire input[type=text],
	input[type=email],
	textarea,
	select {
		width: 100%;
	}
}

/******************  News Slider Demo-9 *******************/
.post-slide9 {
	margin: 0 10px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide9 .post-img {
	overflow: hidden;
	position: relative;
}
.post-slide9 .post-img img {
	width: 100%;
	height: auto;
	transform: scale(1, 1);
	transition: all 0.30s ease 0s;
}
.post-slide9:hover .post-img img {
	transform: scale(1.2, 1.2);
}
.post-slide9 .over-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	text-align: center;
	background: rgba(68, 67, 64, 0.9);
	transition: all 0.50s linear;
}
.post-slide9:hover .over-layer {
	opacity: 1;
}
.post-slide9 .post-link {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	top: 45%;
}
.post-slide9 .post-link li {
	display: inline-block;
	margin-right: 10px;
}
.post-slide9 .post-link li a {
	width: 60px;
	height: 60px;
	line-height: 59px;
	border-radius: 50%;
	color: #fff;
	background: #333;
	font-size: 20px;
	transform: scale(1, 1);
	transition: all 0.20s linear;
}
.post-slide9 .post-link li a:hover {
	text-decoration: none;
	transform: scale(1.1, 1.1);
}
.post-slide9 .post-review {
	padding: 15px 0;
	overflow: hidden;
}
.post-slide9 .post-title {
	margin-top: 0;
}
.post-slide9 .post-title a {
	display: block;
	color: #333;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.50s ease 0s;
}
.post-slide9 .post-title a:hover {
	text-decoration: none;
	color: #1f80bb;
}
.post-slide9 .post-info {
	list-style: none;
	padding: 10px 0 0 0;
	margin: 0 0 7px 0;
	text-align: center;
	border-top: 1px solid #d3d3d3;
}
.post-slide9 .post-info li {
	display: inline-block;
	margin-right: 13px;
}
.post-slide9 .tag-info {
	margin: 0;
	padding: 0 0 10px 0;
	text-align: center;
	border-bottom: 1px solid #d3d3d3;
}
.post-slide9 .tag-info li {
	list-style: none;
	display: inline-block;
}
.post-slide9 .tag-info li a {
	color: #808080;
	text-transform: capitalize;
}
.post-slide9 .tag-info li a:hover {
	color: #1f80bb;
	text-decoration: none;
}
.post-slide9 .post-description {
	color: #828282;
	font-size: 14px;
	padding: 5px 25px;
	line-height: 25px;
}
.post-slide9 .read-more {
	color: #333;
	float: right;
	font-weight: bold;
	margin-right: 25px;
	text-transform: capitalize;
}
.post-slide9 .read-more:hover {
	color: #1f80bb;
	text-decoration: none;
}
.owl-theme .owl-buttons div {
	position: relative;
	border-radius: 0;
	background: #807b87;
	padding: 7px 15px;
	transition: all 0.5s ease 0s;
}
.owl-theme .owl-buttons .owl-prev {
	position: absolute;
	left: 0;
	top: 50%;
	opacity: 0;
	transition: all 0.50s linear;
}
.owl-carousel:hover .owl-buttons .owl-prev {
	opacity: 1;
	left: -30px;
}
.owl-theme .owl-buttons .owl-next {
	position: absolute;
	right: 0;
	top: 50%;
	opacity: 0;
	transition: all 0.50s linear;
}
.owl-carousel:hover .owl-buttons .owl-next {
	opacity: 1;
	right: -30px;
}
.owl-prev:before,
.owl-next:before {
	content: "\f053";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #fff;
}
.owl-next:before {
	content: "\f054";
}
@media only screen and (max-width: 990px) {
	.post-slide9 .post-info li {
		margin-right: 5px;
	}
	
	.owl-theme .owl-buttons div {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.post-slide9 .post-link li a {
		width: 40px;
		height: 40px;
		line-height: 39px;
		font-size: 13px;
	}
	
	.post-slide9 .post-title a {
		font-size: 14px;
	}
}

/******************  News Slider Demo-10 *******************/
.post-slide10 {
	padding-bottom: 10px;
	margin: 0 15px;
	position: relative;
	background: #fff !important;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide10 img {
	width: 100%;
	height: auto;
}
.post-slide10 .post-date {
	position: absolute;
	top: 2%;
	left: 8%;
	padding: 3% 5%;
	background: #e74c3c;
}
.post-slide10 .month {
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}
.post-slide10 .month:after {
	content: "";
	display: block;
	border: 1px solid #fff;
}
.post-slide10 .date {
	font-size: 14px;
	color: #fff;
	display: block;
	text-align: center;
	font-weight: bold;
}
.post-slide10 .post-title {
	margin: 25px 0 15px 0;
}
.post-slide10 .post-title a {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	padding: 0px 15px;
	display: inline-block;
	text-transform: uppercase;
	transition: all 0.3s ease 0s;
}
.post-slide10 .post-title a:hover {
	text-decoration: none;
	color: #e74c3c;
}
.post-slide10 .post-description {
	font-size: 14px;
	line-height: 24px;
	color: #808080;
	padding: 0px 15px;
}
.post-slide10 .read-more {
	color: #333;
	padding: 0px 15px;
	text-transform: capitalize;
	transition: color 0.20s linear;
}
.post-slide10 .read-more i {
	margin-left: 10px;
	font-size: 10px;
}
.post-slide10 .read-more:hover {
	text-decoration: none;
	color: #e74c3c;
}
.owl-controls .owl-buttons {
	margin-top: 20px;
	position: relative;
}
.owl-controls .owl-prev {
	position: absolute;
	left: -40px;
	bottom: 230px;
	padding: 8px 17px;
	background: #333;
	transition: background 0.50s ease;
}
.owl-controls .owl-next {
	position: absolute;
	right: -40px;
	bottom: 230px;
	padding: 8px 17px;
	background: #333;
	transition: background 0.50s ease;
}
.owl-controls .owl-prev:after,
.owl-controls .owl-next:after {
	content: "\f104";
	font-family: FontAwesome;
	color: #d3d3d3;
	font-size: 16px;
}
.owl-controls .owl-next:after {
	content: "\f105";
}
.owl-controls .owl-prev:hover,
.owl-controls .owl-next:hover {
	background: #e74c3c;
}
@media only screen and (max-width: 990px) {
	.post-slide10 {
		margin: 0 20px;
	}
	
	.owl-controls .owl-buttons .owl-prev {
		left: -20px;
		padding: 5px 14px;
	}
	
	.owl-controls .owl-buttons .owl-next {
		right: -20px;
		padding: 5px 14px;
	}
}
@media only screen and (max-width: 767px) {
	.owl-controls .owl-buttons .owl-prev {
		left: 0px;
		bottom: 260px;
	}
	
	.owl-controls .owl-buttons .owl-next {
		right: 0px;
		bottom: 260px;
	}
}

/******************  News Slider Demo-11 *******************/
.post-slide11 {
	background: #fff;
	margin: 0 15px;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide11 .post-img {
	position: relative;
}
.post-slide11 .over-layer {
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	cursor: pointer;
	transition: all 0.30s ease 0s;
}
.post-slide11:hover .over-layer {
	opacity: 1;
}
.post-slide11 .over-layer:after {
	content: "+";
	font-size: 52px;
	color: #fff;
	position: absolute;
	top: 31%;
	left: 42%;
}
.post-slide11 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide11 .post-title {
	margin: 25px 0 15px 0;
	padding: 0 15px;
}
.post-slide11 .post-title:before {
	content: "";
	border: 2px solid #e67e22;
	width: 18%;
	display: block;
	margin-bottom: 15px;
}
.post-slide11 .post-title a {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	display: inline-block;
	text-transform: capitalize;
	transition: all 0.3s ease 0s;
}
.post-slide11 .post-title a:hover {
	text-decoration: none;
	color: #e67e22;
}
.post-slide11 .post-date {
	text-transform: capitalize;
	padding: 0 15px;
	color: #E67E22;
	font-size: 13px;
}
.post-slide11 .post-date:before {
	margin-right: 7px;
	color: #e67e22;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	background: #e67e22;
}

/******************  News Slider Demo-12 *******************/
.post-slide12 {
	background: #fff;
	margin: 0 15px;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.30);
	margin-bottom: 2em;
}
.post-slide12 .post-img {
	position: relative;
	float: left;
	width: 50%;
	height: auto;
}
.post-slide12 .over-layer {
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	cursor: pointer;
	transition: opacity 0.30s ease 0s;
}
.post-slide12 .over-layer:after {
	color: #fff;
	content: "+";
	font-size: 52px;
	position: absolute;
	top: 31%;
	left: 42%;
}
.post-slide12 .post-img:hover .over-layer {
	opacity: 1;
}
.post-slide12 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide12 .post-review {
	float: left;
	padding: 1px 20px;
	width: 50%;
}
.post-slide12 .post-title {
	margin: 0 0 5px 0;
}
.post-slide12 .post-title a {
	color: #3498db;
	font-size: 20px;
	font-weight: 700;
	display: block;
	text-transform: capitalize;
	transition: color 0.30s ease;
}
.post-title&gt;a:hover {
	text-decoration: none;
	color: #333;
}
.post-slide12 .post-date {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 17px;
}
.post-description {
	color: #333;
	font-size: 15px;
	font-weight: 400;
	text-align: left;
}
.owl-pagination {
	margin-top: 40px;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	background: #3498db;
}
@media only screen and (max-width: 990px) {
	.post-slide12 .over-layer:after {
		top: 39%;
		left: 45%;
	}
}
@media only screen and (max-width: 640px) {
	.post-slide12 .post-img {
		width: 100%;
	}
	
	.post-slide12 .post-review {
		width: 100%;
		padding: 10px;
	}
}

/******************  News Slider Demo-13 *******************/
.post-slide13 {
	padding: 0 15px;
}
.post-slide13 .post-img {
	position: relative;
}
.post-slide13 .post-img&gt;a {
	display: block;
}
.post-slide13 .post-img img {
	width: 100%;
	height: auto;
}
.post-slide13 .post-img:hover:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(220, 0, 90, 0.6);
}
.post-slide13 .post-img:after {
	content: "\f065";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 17px;
	right: 20px;
	color: #fff;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s linear 0s;
}
.post-slide13 .post-img:hover:after {
	opacity: 1;
	transform: scale(1);
}
.post-slide13 .post-title {
	margin-top: 20px;
}
.post-slide13 .post-title&gt;a {
	color: #222;
	display: block;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
}
.post-slide13 .post-title&gt;a:hover {
	text-decoration: none;
	color: #dc005a;
}
.post-slide13 .post-bar {
	padding: 0;
	list-style: none;
}
.post-slide13 .post-bar&gt;li {
	display: inline-block;
}
.post-slide13 .post-date,
.post-slide13 .author,
.post-slide13 .author&gt;a {
	color: #8f8f8f;
	font-size: 12px;
	margin-right: 16px;
	text-transform: uppercase;
	font-style: italic;
}
.post-slide13 .post-date&gt;i,
.post-slide13 .author&gt;i {
	margin-right: 5px;
}
.post-slide13 .author&gt;a:hover {
	color: #dc005a;
}
.post-slide13 .post-description {
	color: #8f8f8f;
	font-size: 14px;
	line-height: 24px;
	padding-top: 5px;
}
.post-slide13 .post-description:before {
	content: "";
	display: block;
	border-top: 4px solid #dc005a;
	padding-bottom: 12px;
	width: 50px;
}
.owl-theme .owl-controls .owl-page span {
	width: 52px;
	height: 5px;
	border-radius: 0;
	opacity: 0.5;
	margin-bottom: 0;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	background: #dc005a;
	opacity: 1;
}

/******************  News Slider Demo-14 *******************/
.post-slide14 {
	border-width: 1px 1px 5px;
	border-style: solid;
	border-color: #e67e22 #f0f0f0 #f0f0f0;
	border-radius: 5px;
	margin: 0 10px;
}
.post-slide14 .post-category {
	border-bottom: 1px solid whitesmoke;
	margin: 0;
	text-align: center;
	padding: 10px;
	font-size: 15px;
	letter-spacing: 2px;
	text-transform: capitalize;
}
.post-slide14 .post-category&gt;a {
	text-transform: uppercase;
	color: #e67e22;
	transition: all 0.2s ease 0s;
}
.post-slide14 .post-category&gt;a:hover {
	color: #373a3f;
}
.post-slide14 .post-review {
	overflow: hidden;
	padding: 10px;
}
.post-slide14 .post-bar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #e67e22;
	float: left;
	line-height: 34px;
	text-align: center;
	margin-right: 10px;
}
.post-slide14 .post-bar&gt;.month {
	display: block;
	color: #fff;
	font-size: 10px;
	text-transform: capitalize;
}
.post-slide14 .post-bar&gt;.date {
	color: #fff;
	display: block;
	font-size: 28px;
	font-weight: bold;
	line-height: 12px;
}
.post-slide14 .post-title {
	line-height: 20px;
	margin: 10px 0 0 0;
}
.post-slide14 .post-title&gt;a {
	font-size: 17px;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 10px;
	color: #333;
	transition: all 0.2s ease 0s;
}
.post-slide14 .post-title&gt;a:hover {
	color: #e67e22;
}
.post-slide14 .post-img {
	filter: grayscale(0);
	transition: all 0.3s ease 0s;
}
.post-slide14 .post-img&gt;img {
	width: 100%;
	height: auto;
}
.post-slide14:hover .post-img {
	filter: grayscale(1);
}
.post-slide14 .post-description {
	color: #555;
	font-size: 14px;
	line-height: 22px;
	padding: 20px 35px
	
}
.checkbox-info i {
	font-size: 15px;
	margin: 5px;
}
.dt-buttons {
	margin-right: 0.333em;
}
.ft {
	font-size: 18px !important;
	margin: 0 5px !important;
}
select#bgs option {
	padding: 10px !important;
}
ul.menulist li {
	color: #444 !important;
	font-size: 18px;
	font-weight: bold;
}
ul.menulist li i {
	margin: 0 10px;
	color: #11bfe3;
}
span.btn.marksuccess {
	margin: 2px !important;
	padding: 2px !important;
}
span.btn.markfaile {
	margin: 2px !important;
	padding: 2px !important;
}
.col-in.row.white-box {
    max-height: 135px;
}
.mpb {
    min-height: 224px !important;
}</pre></body></html>