html,
body {
	background: var(--custom-background-color);
	width: 100%;
}

/* html {
	font-size: 10px;
} */

body {
	color: var(--custom-on-background-color);
	font-family: "DM Sans", "Open Sans", Arial, sans-serif;
	line-height: 22px;
	margin: 0;
	font-size: 13px;
	overflow-x: hidden;
	overflow-y: scroll;
}

a {
	color: #cccccc;
}

a:hover,
a:focus {
	color: #d9d9d9;
}

a:active {
	color: #bfbfbf;
}

/* Layout Base - Main Wrapper	*/
.body {
	min-height: 100vh;
	width: 100%;
}

/* Layout Base - Header */
.header {
	height: 60px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

/* Layout Base - Inner Wrapper */
.inner-wrapper {
	display: table;
	min-height: 100vh;
	padding-top: 60px;
	table-layout: fixed;
	overflow: hidden;
	width: 100%;
}

/* Layout Base - Content Body */
.content-body {
	display: table-cell;
	padding: 20px;
	position: relative;
	vertical-align: top;
}

.content-body > .row + .row {
	padding-top: 10px;
}

/* Layout Base - Page Header */
.page-header {
	background: var(--custom-secondary-color);
	border-bottom: none;
	border-left: 1px solid #3a3a3a;
	box-shadow: 1px 3px 0 1px #cccccc;
	height: 50px;
	margin: -40px -40px 40px -40px;
	padding: 0;
}

/* Layout Base - Sidebar Left */
.sidebar-left {
	background: var(--custom-secondary-color);
	box-shadow: -5px 0 0 #2f3139 inset;
	color: var(--custom-on-secondary-color);
	display: table-cell;
	position: relative;
	vertical-align: top;
	width: 300px;
	z-index: 1010;
}

/* Layout Base - Sidebar Left Opened ( Larger than mobile ) */
@media only screen and (min-width: 768px) {
	html.sidebar-left-collapsed .sidebar-left {
		width: 73px;
	}
}
/* Layout Base - Sidebar Right */
.sidebar-right {
	background: #171717;
	bottom: 0;
	margin-right: -300px;
	min-height: 100vh;
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
}

/* Layout Base - Sidebar Right Opened ( Larger than mobile ) */
@media only screen and (min-width: 768px) {
	html.sidebar-right-opened .header {
		margin-left: -300px;
		margin-right: 300px;
	}

	html.sidebar-right-opened .inner-wrapper {
		margin-left: -300px;
	}

	html.sidebar-right-opened .sidebar-right {
		margin-right: 0;
	}
}
/* Layout Base - Flexbox supported */
@media only screen and (min-width: 768px) {
	html.flexbox .inner-wrapper,
	html.flexboxlegacy .inner-wrapper {
		display: -webkit-box;
		display: -moz-box;
		display: box;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flexbox;
		display: flex;
	}

	html.flexbox .sidebar-left,
	html.flexbox .content-body,
	html.flexboxlegacy .sidebar-left,
	html.flexboxlegacy .content-body {
		display: block;
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		flex-shrink: 0;
		-ms-flex-negative: 0;
	}

	html.flexbox .content-body,
	html.flexboxlegacy .content-body {
		-webkit-box-flex: 2;
		-moz-box-flex: 2;
		box-flex: 2;
		-webkit-flex: 2;
		-moz-flex: 2;
		-ms-flex: 2;
		flex: 2;
	}
}
/* Layout Fixed */
@media only screen and (min-width: 768px) {
	/* Layout Fixed - Reseting Styles */
	html.fixed .inner-wrapper,
	html.fixed .sidebar-left,
	html.fixed .content-body {
		display: block;
	}

	/* Layout Fixed - Header */
	html.fixed .header {
		position: fixed;
		z-index: 1020;
	}

	/* Layout Fixed - Inner Wrapper */
	html.fixed .inner-wrapper {
		padding-top: 110px;
	}

	/* Layout Fixed - Content Body */
	html.fixed .content-body {
		margin-left: 300px;
	}

	html.fixed .content-body.has-toolbar {
		padding-top: 92px;
	}

	/* Layout Fixed - Page header */
	html.fixed .page-header {
		left: 300px;
		margin: 0;
		position: fixed;
		right: 0;
		top: 60px;
	}

	/* Layout Fixed - Sidebar Left */
	html.fixed .sidebar-left {
		bottom: 0;
		left: 0;
		padding-bottom: 50px;
		position: fixed;
		top: 60px;
	}

	/* Layout Fixed - Sidebar Left Collapsed */
	html.fixed.sidebar-left-collapsed .page-header {
		left: 73px;
	}

	html.fixed.sidebar-left-collapsed .content-body {
		margin-left: 73px;
	}

	/* Layout Fixed - Sidebar Right Opened */
	html.fixed.sidebar-right-opened .page-header {
		left: 0;
		margin-right: 300px;
	}

	html.fixed.sidebar-right-opened .sidebar-left {
		left: -300px;
	}

	/* Layout Fixed - Sidebar Left Collapsed & Sidebar Right Opened */
	html.fixed.sidebar-left-collapsed.sidebar-right-opened .page-header {
		left: -300px;
	}
}
/* Layout Boxed - small than min-width */
@media only screen and (max-width: 1199px) {
	html.boxed .header {
		border-color: #cccccc;
	}
}
/* Layout Boxed - larger or equal min width */
@media only screen and (min-width: 1200px) {
	/* Layout Boxed - Body Tag */
	html.boxed body {
		background: url(../images/patterns/denim.png) repeat;
	}

	/* Layout Boxed - Main Wrapper */
	html.boxed .body {
		position: relative;
		max-width: 1200px;
		margin: 0 auto;
		background-color: transparent;
	}

	/* Layout Boxed - Header */
	html.boxed .header {
		/* border-top: 3px solid #cccccc; */
		height: 63px;
		position: absolute;
		top: 25px;
	}

	/* Layout Boxed - Inner Wrapper */
	html.boxed .inner-wrapper {
		padding-top: 88px;
		padding-bottom: 25px;
	}

	/* Layout Boxed - Content Body */
	html.boxed .content-body {
		background-color: var(--custom-background-color);
	}

	/* Layout Boxed - Border Radius */
	html.boxed .header {
		border-radius: 5px 5px 0 0;
	}

	html.boxed .sidebar-left {
		border-radius: 0 0 0 5px;
	}

	html.boxed .content-body {
		border-radius: 0 0 5px 0;
	}

	html.boxed .sidebar-right {
		border-radius: 0 5px 5px 0;
	}

	/* Layout Boxed - Sidebar Right */
	html.boxed .sidebar-right {
		border-top: 3px solid #cccccc;
		min-height: 0;
	}

	/* Layout Boxed - Sidebar Right Opened */
	html.boxed.sidebar-right-opened .body {
		overflow: hidden;
	}

	html.boxed.sidebar-right-opened .header {
		border-radius: 5px 0 0 0;
	}

	html.boxed.sidebar-right-opened .content-body {
		border-radius: 0 0 0 5px;
	}

	html.boxed.sidebar-right-opened .sidebar-right {
		bottom: 25px;
		position: absolute;
		top: 25px;
	}
}

@media only screen and (max-width: 767px) {
	html,
	body {
		background: var(--custom-background-color);
	}

	html.mobile-device .sidebar-left,
	html.mobile-device .sidebar-right {
		overflow-y: scroll;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
	}

	body {
		min-height: 100vh;
	}

	.inner-wrapper,
	.sidebar-left,
	.content-body {
		display: block;
	}

	.body {
		min-height: 0;
		overflow: visible;
	}

	.header {
		background: none;
		border: none;
		height: auto;
		position: static;
	}

	.header .logo-container {
		height: 60px;
		left: 0;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 99;
	}

	.header .header-right {
		background: #fff;
		float: none !important;
		height: 60px;
		margin-top: 60px;
		width: 100%;
	}

	.inner-wrapper {
		min-height: 0;
		padding-top: 0;
	}

	.content-body {
		padding: 0 15px 15px;
	}

	.page-header {
		margin: 0 -15px 20px;
	}

	.sidebar-left {
		bottom: 0;
		left: -100%;
		min-height: 0;
		min-width: 100%;
		min-width: 100vw;
		padding-top: 60px;
		padding-bottom: 50px;
		position: fixed;
		overflow: hidden;
		top: 0;
		z-index: 98 !important;
	}

	.sidebar-right {
		bottom: 0;
		left: auto;
		right: -100%;
		min-height: 0;
		margin-right: 0;
		min-width: 100%;
		min-width: 100vw;
		top: 0;
		z-index: 100;
	}

	html.csstransforms .sidebar-left,
	html.csstransforms .sidebar-right {
		/* performs better but native android browser
		has problems with translate and percentage
		@include transition-property(transform);
		*/
		-webkit-transition-property: margin;
		-moz-transition-property: margin;
		transition-property: margin;
		-webkit-transition-duration: 0.25s;
		-moz-transition-duration: 0.25s;
		transition-duration: 0.25s;
		-webkit-transition-timing-function: ease-out;
		-moz-transition-timing-function: ease-out;
		transition-timing-function: ease-out;
		-webkit-transition-delay: 0;
		-moz-transition-delay: 0;
		transition-delay: 0;
	}

	html.csstransforms .sidebar-left {
		/* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(0) );
		*/
		margin-left: -25px;
	}

	html.csstransforms .sidebar-right {
		/* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(0) );
		*/
		margin-right: -25px;
	}

	/* If desktop is seeing mobile res, fix scrollbars */
	html.no-mobile-device body {
		min-height: 0;
	}

	html.no-mobile-device .body {
		min-height: 100vh;
		overflow: hidden;
	}

	html.no-mobile-device .inner-wrapper {
		overflow-y: auto;
	}

	html.no-mobile-device.sidebar-left-opened,
	html.no-mobile-device.sidebar-left-opened body,
	html.no-mobile-device.sidebar-right-opened,
	html.no-mobile-device.sidebar-right-opened body {
		overflow: hidden;
	}

	/* Layout Mobile - Sidebar Left Opened */
	html.sidebar-left-opened.no-csstransforms .sidebar-left {
		left: 0;
	}

	html.sidebar-left-opened.csstransforms .sidebar-left {
		/* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(100%) );
		*/
		margin-left: 100%;
	}

	/* Layout Mobile - Sidebar Right Opened */
	html.sidebar-right-opened.no-csstransforms .sidebar-right {
		right: 0;
	}

	html.sidebar-right-opened.csstransforms .sidebar-right {
		/* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(-100%) );
		*/
		margin-right: 100%;
	}

	/* Layout Mobile - Sidebar Left Collapsed & Sidebar Right Opened */
	html.sidebar-left-collapsed.sidebar-right-opened .sidebar-left {
		margin-left: -300px;
	}
}
/* Content With Menu - Boxed Layout Fixing Spacement on Bottom */
@media only screen and (min-width: 1200px) {
	html.boxed .content-with-menu {
		margin-bottom: -40px;
	}
}
/* Content With Menu - Container */
@media only screen and (min-width: 768px) {
	.content-with-menu-container {
		display: table;
		table-layout: fixed;
		width: 100%;
	}
}
/* Content With Menu - Menu Faux Column for Scroll and Boxed Layouts */
@media only screen and (min-width: 768px) {
	html.scroll .content-with-menu:before,
	html.boxed .content-with-menu:before {
		bottom: -47px;
		content: "";
		display: block;
		left: 0;
		position: absolute;
		top: 54px;
		width: 300px;
	}

	html.scroll .content-with-menu:after,
	html.boxed .content-with-menu:after {
		bottom: -46px;
		content: "";
		display: block;
		left: -1px;
		position: absolute;
		top: 54px;
		width: 1px;
		z-index: 3;
	}

	html.boxed .content-with-menu:before {
		bottom: 0;
	}

	html.boxed .content-with-menu:after {
		bottom: 2px;
	}
}

.content-with-menu {
	margin: -20px -15px 0;
}

/* Content With Menu - Responsive */
@media only screen and (max-width: 767px) {
	.content-with-menu {
		clear: both;
	}

	.inner-body {
		padding: 40px 15px 0;
	}
}
/* Content With Menu - Menu and Body */
@media only screen and (min-width: 768px) {
	.content-with-menu {
		border-top: 110px solid transparent;
		margin: -150px -40px -53px -40px;
		min-height: 100vh;
	}

	.inner-menu {
		display: table-cell;
		vertical-align: top;
	}

	.inner-body {
		display: table-cell;
		vertical-align: top;
		padding: 40px;
	}

	.inner-toolbar {
		height: 52px;
		overflow: hidden;
	}

	.content-with-menu-has-toolbar .inner-menu-toggle {
		border-radius: 0;
	}

	.content-with-menu-has-toolbar .inner-toolbar {
		padding-left: 140px;
	}
}
/* Content With Menu - Flexbox supported */
@media only screen and (min-width: 768px) {
	html.flexbox .content-with-menu-container,
	html.flexboxlegacy .content-with-menu-container {
		display: -webkit-box;
		display: -moz-box;
		display: box;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flexbox;
		display: flex;
	}

	html.flexbox .inner-menu,
	html.flexbox .inner-body,
	html.flexboxlegacy .inner-menu,
	html.flexboxlegacy .inner-body {
		display: block;
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		flex-shrink: 0;
		-ms-flex-negative: 0;
	}

	html.flexbox .inner-body,
	html.flexboxlegacy .inner-body {
		-webkit-box-flex: 2;
		-moz-box-flex: 2;
		box-flex: 2;
		-webkit-flex: 2;
		-moz-flex: 2;
		-ms-flex: 2;
		flex: 2;
	}
}
/* Content With Menu + Layout Fixed */
@media only screen and (min-width: 768px) {
	html.fixed .content-with-menu-container,
	html.fixed .inner-menu,
	html.fixed .inner-body {
		display: block;
	}

	html.fixed .content-with-menu-container {
		position: relative;
	}

	html.fixed .inner-menu-toggle {
		position: absolute;
		top: 114px;
		border-radius: 0 0 5px 0;
		width: 140px;
		z-index: 1002;
	}

	html.fixed .inner-menu {
		bottom: 0;
		display: block;
		left: 300px;
		position: fixed;
		margin: 0;
		top: 114px;
		width: 300px;
		padding: 35px;
		z-index: 1002;
	}

	html.fixed .inner-menu-content {
		display: block;
	}

	html.fixed .inner-body {
		margin-left: 300px;
		border-top: 113px solid transparent;
		margin-top: -110px;
		min-height: 100vh;
		position: relative;
	}

	html.fixed .content-with-menu-has-toolbar .inner-body {
		border-top-width: 165px;
	}
}
/* Content With Menu + Layout Scroll & Boxed */
@media only screen and (min-width: 768px) {
	html.scroll .inner-menu,
	html.scroll .inner-body,
	html.boxed .inner-menu,
	html.boxed .inner-body {
		display: block;
	}

	html.scroll .content-with-menu-container,
	html.boxed .content-with-menu-container {
		position: relative;
	}

	html.scroll .inner-menu-toggle,
	html.boxed .inner-menu-toggle {
		position: absolute;
		top: 0;
		border-radius: 0 0 5px 0;
		width: 140px;
		z-index: 3;
	}

	html.scroll .inner-menu,
	html.boxed .inner-menu {
		display: block;
		position: relative;
		margin: 0;
		width: 300px;
		padding: 35px;
	}

	html.scroll .inner-menu-content,
	html.boxed .inner-menu-content {
		display: block;
	}

	html.scroll .inner-body,
	html.boxed .inner-body {
		margin-left: 0;
		min-height: 100vh;
		position: relative;
	}

	html.scroll.flexbox .content-with-menu-container,
	html.scroll.flexboxlegacy .content-with-menu-container,
	html.boxed.flexbox .content-with-menu-container,
	html.boxed.flexboxlegacy .content-with-menu-container {
		display: -webkit-box;
		display: -moz-box;
		display: box;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
/* Content With Menu + Layout Fixed + Sidebar Left Collapsed */
@media only screen and (min-width: 768px) {
	html.fixed.sidebar-left-collapsed .inner-menu,
	html.fixed.sidebar-left-collapsed .inner-menu-toggle,
	html.fixed.sidebar-left-collapsed .inner-toolbar {
		left: 73px;
	}

	html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-toolbar {
		left: 373px;
	}
}
/* Content With Menu + Layout Fixed + Sidebar Right Opened */
@media only screen and (min-width: 768px) {
	html.fixed.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-right-opened .inner-menu-toggle,
	html.fixed.sidebar-right-opened .inner-toolbar {
		left: 0px;
	}

	html.fixed.sidebar-right-opened .inner-toolbar {
		margin-right: 300px;
	}

	html.fixed.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-right-opened.inner-menu-opened .inner-toolbar {
		left: -300px;
	}
}
/* Content With Menu + Layout Fixed + Sidebar Left Collapsed + Sidebar Right Opened */
@media only screen and (min-width: 768px) {
	html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu-toggle,
	html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-toolbar {
		left: -227px;
	}

	html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-toolbar {
		left: -527px;
	}
}
/* Resolution gt 767 and lt 1366 - Hide Inner Menu */
@media only screen and (min-width: 768px) and (max-width: 1365px) {
	html.fixed .inner-menu,
	html.scroll .inner-menu,
	html.boxed .inner-menu {
		display: none;
	}

	html.fixed .inner-menu-toggle,
	html.scroll .inner-menu-toggle,
	html.boxed .inner-menu-toggle {
		display: block;
	}

	html.fixed .inner-body,
	html.scroll .inner-body,
	html.boxed .inner-body {
		margin-left: 0;
	}

	html.fixed .content-with-menu-has-toolbar .inner-toolbar,
	html.scroll .content-with-menu-has-toolbar .inner-toolbar,
	html.boxed .content-with-menu-has-toolbar .inner-toolbar {
		padding-left: 140px;
	}

	html.fixed.inner-menu-opened .inner-menu,
	html.scroll.inner-menu-opened .inner-menu,
	html.boxed.inner-menu-opened .inner-menu {
		display: block;
	}

	html.fixed.inner-menu-opened .inner-menu-toggle,
	html.scroll.inner-menu-opened .inner-menu-toggle,
	html.boxed.inner-menu-opened .inner-menu-toggle {
		display: none;
	}

	html.fixed.inner-menu-opened .inner-body,
	html.scroll.inner-menu-opened .inner-body,
	html.boxed.inner-menu-opened .inner-body {
		margin-right: -300px;
	}

	html.fixed.inner-menu-opened .content-with-menu-has-toolbar .inner-toolbar,
	html.scroll.inner-menu-opened .content-with-menu-has-toolbar .inner-toolbar,
	html.boxed.inner-menu-opened .content-with-menu-has-toolbar .inner-toolbar {
		padding-left: 0;
	}

	html.fixed.inner-menu-opened .inner-body {
		margin-left: 300px;
	}

	html.scroll .content-with-menu:before,
	html.boxed .content-with-menu:before {
		display: none;
	}

	html.scroll.inner-menu-opened:before,
	html.boxed.inner-menu-opened:before {
		display: block;
	}
}
/* Resolution gt 1366 - Show Inner Menu */
@media only screen and (min-width: 1366px) {
	html.fixed .inner-menu,
	html.scroll .inner-menu,
	html.boxed .inner-menu {
		display: block;
	}

	html.fixed .inner-menu-toggle,
	html.fixed .inner-menu-toggle-inside,
	html.scroll .inner-menu-toggle,
	html.scroll .inner-menu-toggle-inside,
	html.boxed .inner-menu-toggle,
	html.boxed .inner-menu-toggle-inside {
		display: none;
	}

	html.fixed .inner-body,
	html.scroll .inner-body,
	html.boxed .inner-body {
		margin-right: 0;
	}

	html.fixed .content-with-menu-has-toolbar .inner-toolbar,
	html.scroll .content-with-menu-has-toolbar .inner-toolbar,
	html.boxed .content-with-menu-has-toolbar .inner-toolbar {
		padding-left: 0;
	}

	html.fixed.inner-menu-opened .inner-body {
		margin-left: 300px;
	}

	html.fixed .content-with-menu .inner-toolbar,
	html.fixed.inner-menu-opened .content-with-menu .inner-toolbar {
		left: 600px;
	}

	html.fixed .inner-menu-toggle,
	html.fixed .inner-menu,
	html.fixed.inner-menu-opened .inner-menu-toggle,
	html.fixed.inner-menu-opened .inner-menu {
		left: 300px;
	}

	html.fixed.sidebar-right-opened .content-with-menu .inner-toolbar {
		left: 300px;
	}

	html.fixed.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-right-opened .inner-menu-toggle {
		left: 0px;
	}

	html.fixed.sidebar-left-collapsed .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-collapsed.inner-menu-opened .content-with-menu .inner-toolbar {
		left: 373px;
	}

	html.fixed.sidebar-left-collapsed .inner-menu-toggle,
	html.fixed.sidebar-left-collapsed .inner-menu,
	html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-menu,
	html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-menu {
		left: 73px;
	}

	html.fixed.sidebar-left-collapsed.sidebar-right-opened .content-with-menu .inner-toolbar {
		left: 73px;
	}

	html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu-toggle {
		left: -227px;
	}
}
/* Fix IE Scrollbar Overlaying content */
@-ms-viewport {
	width: auto !important;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------
BOOTSTRAP EXTEND
------------------------------------------------------------------------------------------------------------------------------------------ */
/* Add New Grid Tier FOR NON BOXED LAYOUT */
@media (min-width: 1600px) {
	html.scroll .container,
	html.fixed .container {
		width: 1570px;
	}
}

@media screen and (max-width: 991px) {
	.table-responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #ddd;
	}

	.table-responsive > .table {
		margin-bottom: 0;
	}

	.table-responsive > .table > thead > tr > th,
	.table-responsive > .table > tbody > tr > th,
	.table-responsive > .table > tfoot > tr > th,
	.table-responsive > .table > thead > tr > td,
	.table-responsive > .table > tbody > tr > td,
	.table-responsive > .table > tfoot > tr > td {
		white-space: nowrap;
	}

	.table-responsive > .table-bordered {
		border: 0;
	}

	.table-responsive > .table-bordered > thead > tr > th:first-child,
	.table-responsive > .table-bordered > tbody > tr > th:first-child,
	.table-responsive > .table-bordered > tfoot > tr > th:first-child,
	.table-responsive > .table-bordered > thead > tr > td:first-child,
	.table-responsive > .table-bordered > tbody > tr > td:first-child,
	.table-responsive > .table-bordered > tfoot > tr > td:first-child {
		border-left: 0;
	}

	.table-responsive > .table-bordered > thead > tr > th:last-child,
	.table-responsive > .table-bordered > tbody > tr > th:last-child,
	.table-responsive > .table-bordered > tfoot > tr > th:last-child,
	.table-responsive > .table-bordered > thead > tr > td:last-child,
	.table-responsive > .table-bordered > tbody > tr > td:last-child,
	.table-responsive > .table-bordered > tfoot > tr > td:last-child {
		border-right: 0;
	}

	.table-responsive > .table-bordered > tbody > tr:last-child > th,
	.table-responsive > .table-bordered > tfoot > tr:last-child > th,
	.table-responsive > .table-bordered > tbody > tr:last-child > td,
	.table-responsive > .table-bordered > tfoot > tr:last-child > td {
		border-bottom: 0;
	}
}
/* Fix img-thumbnail - IE10 and below */
.img-thumbnail {
	width: auto \9;
}

/* Header */
.header {
	/* background-color: #f6f6f6;
	background-image: -webkit-linear-gradient(#f6f6f6 0%, white 45%);
	background-image: linear-gradient(#f6f6f6 0%, white 45%);
	border-bottom: 1px solid #e9e9e6;
	border-top: 3px solid #ededed; */
	background-color: var(--custom-surface-color);
	color:var(--custom-on-surface-color);
	z-index: 1000;
}

.header .logo {
	float: left;
	margin: 5px 0 0 5px;
}

.header .logo img {
	color: transparent;
}

.header .separator {
	background-color: #f6f6f6;
	background-image: -webkit-linear-gradient(#f6f6f6 60%, #ededed);
	background-image: linear-gradient(#f6f6f6 60%, #ededed);
	display: inline-block;
	height: 100%;
	margin: 0 5px 0;
	width: 2px;
	vertical-align: middle;
}

.header .search {
	width: 170px;
	display: inline-block;
	vertical-align: middle;
}

.header .toggle-sidebar-left {
	background: #cccccc;
	border-radius: 100px;
	color: white;
	height: 30px;
	line-height: 30px;
	position: absolute;
	right: 15px;
	text-align: center;
	top: 14px;
	width: 30px;
}

.header-right {
	float: right;
	height: 56px;
}

/* Header Mobile */
@media only screen and (max-width: 767px) {
	.header .logo-container {
		background-color: #f6f6f6;
		background-image: -webkit-linear-gradient(#f6f6f6 0%, white 45%);
		background-image: linear-gradient(#f6f6f6 0%, white 45%);
		border-bottom: 1px solid #e9e9e6;
		border-top: 3px solid #ededed;
	}

	.header .logo-container .logo {
		float: none;
		display: inline-block;
		line-height: 57px;
		margin-top: 0;
	}

	.header .search,
	.header .separator {
		display: none;
	}
}
/* Header Dark */
html.header-dark .header {
	background: var(--custom-secondary-color);
	border-bottom-color: #161a1e;
	border-top-color: var(--custom-secondary-color);
}

@media only screen and (max-width: 767px) {
	html.header-dark .header .logo-container {
		background: var(--custom-secondary-color);
		border-bottom-color: #161a1e;
		border-top-color: var(--custom-secondary-color);
	}

	html.header-dark .header .header-right {
		background: var(--custom-secondary-color);
	}
}

html.header-dark .header .separator {
	background-color: var(--custom-secondary-color);
	background-image: -webkit-linear-gradient(var(--custom-secondary-color) 10%, #121518);
	background-image: linear-gradient(var(--custom-secondary-color) 10%, #121518);
}

html.header-dark .header .input-search input,
html.header-dark .header .input-search input:focus {
	background: #282d36;
	border-color: #161a1e;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset;
	color: #fff;
}

html.header-dark .header .input-search .input-group-btn .btn-secondary {
	background: transparent;
	color: #c3c3c3;
}

.sidebar-left {
	z-index: 1010;
}

.sidebar-left .sidebar-header {
	position: relative;
	color: var(--custom-on-secondary-color);
	height: 50px;
}

.sidebar-left .sidebar-header .sidebar-title {
	color: #465162;
	padding: 15px;
	font-size: 15px;
	font-size: 1.5rem;
}

.sidebar-left .sidebar-header .sidebar-toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 73px;
	height: 50px;
	background-color: #171717;
	border-radius: 0 0 0 5px;
	text-align: center;
	cursor: pointer;
}

.sidebar-left .sidebar-header .sidebar-toggle i {
	color: #c3c3c3;
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 50px;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.sidebar-left .sidebar-header .sidebar-toggle:hover i {
	color: #cccccc;
}

.sidebar-left hr.separator {
	background: none;
	margin: 20px 10px 20px;
}

.sidebar-left .sidebar-menu {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}

@media only screen and (min-width: 768px) {
	html.sidebar-left-collapsed .sidebar-left .sidebar-title {
		margin-left: -300px;
		opacity: 0;
	}

	html.sidebar-left-collapsed .sidebar-left .sidebar-toggle {
		border-radius: 0;
	}

	html.sidebar-left-collapsed .sidebar-left .nav-main > li > a {
		overflow: hidden;
		text-overflow: clip;
	}

	html.sidebar-left-collapsed .sidebar-left .nav-main li.nav-parent a:after {
		display: none;
	}

	html.sidebar-left-collapsed .sidebar-left .nav-main li.nav-parent ul.nav-children {
		display: none;
	}

	html.sidebar-left-collapsed .sidebar-left .nav-main a span {
		visibility: hidden;
	}

	html.sidebar-left-collapsed .sidebar-left .sidebar-widget,
	html.sidebar-left-collapsed .sidebar-left .separator {
		display: none;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left,
	html.sidebar-left-collapsed.boxed .sidebar-left {
		overflow: visible;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main li.nav-active a:hover,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main li.nav-active a:hover {
		color: #cccccc;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main li.nav-expanded,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main li.nav-expanded {
		background: transparent;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main li.nav-expanded ul.nav-children,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main li.nav-expanded ul.nav-children {
		display: none;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main li ul.nav-children,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main li ul.nav-children {
		position: absolute;
		left: 67px;
		width: 233px;
		background: var(--custom-secondary-color);
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main > li:hover,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main > li:hover {
		width: 300px;
		background: var(--custom-secondary-color);
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main > li:hover > a,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main > li:hover > a {
		background: transparent;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main > li:hover > a i,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main > li:hover > a i {
		margin-right: 22px;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main > li:hover > a span,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main > li:hover > a span {
		display: inline;
		visibility: visible;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main > li:hover > a span.label,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main > li:hover > a span.label {
		background-color: #cccccc;
		color: white;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main > li:hover > ul.nav-children,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main > li:hover > ul.nav-children {
		display: block;
	}

	html.sidebar-left-collapsed.scroll .sidebar-left .nav-main > li:hover > ul.nav-children li a,
	html.sidebar-left-collapsed.boxed .sidebar-left .nav-main > li:hover > ul.nav-children li a {
		padding-left: 15px;
	}

	html.sidebar-left-collapsed.fixed .sidebar-left .sidebar-menu {
		background: var(--custom-secondary-color);
		box-shadow: -5px 0 0 #2f3139 inset;
	}

	html.sidebar-left-collapsed.fixed .sidebar-left .sidebar-menu:hover {
		width: 300px;
	}

	html.sidebar-left-collapsed.fixed .sidebar-left .sidebar-menu:hover .nav-main .nav-expanded ul.nav-children {
		display: block;
	}

	html.sidebar-left-collapsed.fixed .sidebar-left .sidebar-menu:hover .nav-main li.nav-parent a:after {
		display: inline-block;
	}

	html.sidebar-left-collapsed.fixed .sidebar-left .sidebar-menu:hover .nav-main li a span {
		visibility: visible;
	}

	html.sidebar-left-collapsed.fixed .sidebar-left .sidebar-menu:hover .sidebar-widget,
	html.sidebar-left-collapsed.fixed .sidebar-left .sidebar-menu:hover .separator {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	/* Layout Mobile - Sidebar Left Collapsed & Sidebar Right Opened */
	html.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened .sidebar-left {
		margin-left: -250px;
	}
}

@media only screen and (min-width: 768px) {
	/* Layout Base - Sidebar Left */
	html.sidebar-left-sm .sidebar-left {
		width: 250px;
		font-size: 12px;
		font-size: 1.2rem;
	}

	html.sidebar-left-sm .sidebar-left ul.nav-main li i {
		font-size: 16px;
		font-size: 1.6rem;
	}

	html.sidebar-left-sm .sidebar-left ul.nav-main li a {
		font-size: 12px;
		font-size: 1.2rem;
	}

	html.sidebar-left-sm .sidebar-left .sidebar-widget .widget-header h6 {
		font-size: 12px;
		font-size: 1.2rem;
	}

	html.sidebar-left-sm.sidebar-left-collapsed .sidebar-left .sidebar-title {
		margin-left: -250px;
	}

	/* Layout Base - Sidebar Left Opened ( Larger than mobile ) */
	html.sidebar-left-sm.sidebar-left-collapsed .sidebar-left {
		width: 73px;
	}

	/* Layout Fixed - Content Body */
	html.fixed.sidebar-left-sm .content-body {
		margin-left: 250px;
	}

	/* Layout Fixed - Page header */
	html.fixed.sidebar-left-sm .page-header {
		left: 250px;
	}

	/* Layout Fixed - Sidebar Right Opened */
	html.fixed.sidebar-left-sm.sidebar-right-opened .page-header {
		left: 0;
	}

	html.fixed.sidebar-left-sm.sidebar-right-opened .sidebar-left {
		left: -250px;
	}

	/* Layout Fixed - Sidebar Left Collapsed */
	html.fixed.sidebar-left-collapsed .page-header {
		left: 73px;
	}

	html.fixed.sidebar-left-collapsed .content-body {
		margin-left: 73px;
	}

	/* Layout Fixed - Sidebar Left Collapsed & Sidebar Right Opened */
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened .page-header {
		left: -250px;
	}

	/* Content With Menu + Layout Fixed */
	html.fixed.sidebar-left-sm .inner-menu {
		left: 250px;
	}

	/* Content With Menu + Layout Fixed + Sidebar Left Collapsed */
	html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu-toggle,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-toolbar {
		left: 73px;
	}

	html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened .inner-toolbar {
		left: 373px;
	}

	/* Content With Menu + Layout Fixed + Sidebar Right Opened */
	html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu-toggle,
	html.fixed.sidebar-left-sm.sidebar-right-opened .inner-toolbar {
		left: -50px;
	}

	html.fixed.sidebar-left-sm.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-sm.sidebar-right-opened.inner-menu-opened .inner-toolbar {
		left: -350px;
	}

	/* Content With Menu - Toolbar + Layout Fixed */
	html.fixed.sidebar-left-sm.inner-menu-opened {
		left: 550px;
	}

	html.fixed.sidebar-left-sm .inner-menu-toggle {
		left: 250px;
	}
}
/* Resolution gt 1366 - Show Inner Menu */
@media only screen and (min-width: 1366px) {
	html.fixed.sidebar-left-sm .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-sm.inner-menu-opened .content-with-menu .inner-toolbar {
		left: 550px;
	}

	html.fixed.sidebar-left-sm .inner-menu-toggle,
	html.fixed.sidebar-left-sm .inner-menu,
	html.fixed.sidebar-left-sm.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-sm.inner-menu-opened .inner-menu {
		left: 250px;
	}

	html.fixed.sidebar-left-sm.sidebar-right-opened .content-with-menu .inner-toolbar {
		left: 250px;
	}

	html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu-toggle {
		left: -50px;
	}

	html.fixed.sidebar-left-sm.sidebar-left-collapsed .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened .content-with-menu .inner-toolbar {
		left: 373px;
	}

	html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu-toggle,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-menu,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened .inner-menu {
		left: 73px;
	}

	html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened .content-with-menu .inner-toolbar {
		left: 73px;
	}

	html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened .inner-menu-toggle {
		left: -227px;
	}
}

@media only screen and (max-width: 767px) {
	/* Layout Mobile - Sidebar Left Collapsed & Sidebar Right Opened */
	html.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened .sidebar-left {
		margin-left: -200px;
	}
}

@media only screen and (min-width: 768px) {
	/* Layout Base - Sidebar Left */
	html.sidebar-left-xs .sidebar-left {
		width: 200px;
		font-size: 11px;
		font-size: 1.1rem;
	}

	html.sidebar-left-xs .sidebar-left ul.nav-main li i {
		font-size: 14px;
		font-size: 1.4rem;
	}

	html.sidebar-left-xs .sidebar-left ul.nav-main li a {
		font-size: 11px;
		font-size: 1.1rem;
	}

	html.sidebar-left-xs .sidebar-left ul.nav-main li .nav-children li a {
		padding-left: 52px;
	}

	html.sidebar-left-xs .sidebar-left .sidebar-widget .widget-header h6 {
		font-size: 11px;
		font-size: 1.1rem;
	}

	html.sidebar-left-xs.sidebar-left-collapsed .sidebar-left .sidebar-title {
		margin-left: -200px;
	}

	/* Layout Base - Sidebar Left Opened ( Larger than mobile ) */
	html.sidebar-left-xs.sidebar-left-collapsed .sidebar-left {
		width: 73px;
	}

	/* Layout Fixed - Content Body */
	html.fixed.sidebar-left-xs .content-body {
		margin-left: 200px;
	}

	/* Layout Fixed - Page header */
	html.fixed.sidebar-left-xs .page-header {
		left: 200px;
	}

	/* Layout Fixed - Sidebar Right Opened */
	html.fixed.sidebar-left-xs.sidebar-right-opened .page-header {
		left: 0;
	}

	html.fixed.sidebar-left-xs.sidebar-right-opened .sidebar-left {
		left: -200px;
	}

	/* Layout Fixed - Sidebar Left Collapsed */
	html.fixed.sidebar-left-collapsed .page-header {
		left: 73px;
	}

	html.fixed.sidebar-left-collapsed .content-body {
		margin-left: 73px;
	}

	/* Layout Fixed - Sidebar Left Collapsed & Sidebar Right Opened */
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened .page-header {
		left: -200px;
	}

	/* Content With Menu + Layout Fixed */
	html.fixed.sidebar-left-xs .inner-menu {
		left: 200px;
	}

	/* Content With Menu + Layout Fixed + Sidebar Left Collapsed */
	html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu-toggle,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-toolbar {
		left: 73px;
	}

	html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened .inner-toolbar {
		left: 373px;
	}

	/* Content With Menu + Layout Fixed + Sidebar Right Opened */
	html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu-toggle,
	html.fixed.sidebar-left-xs.sidebar-right-opened .inner-toolbar {
		left: -100px;
	}

	html.fixed.sidebar-left-xs.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-xs.sidebar-right-opened.inner-menu-opened .inner-toolbar {
		left: -400px;
	}

	/* Content With Menu - Toolbar + Layout Fixed */
	html.fixed.sidebar-left-xs.inner-menu-opened {
		left: 500px;
	}

	html.fixed.sidebar-left-xs .inner-menu-toggle {
		left: 200px;
	}
}
/* Resolution gt 1366 - Show Inner Menu */
@media only screen and (min-width: 1366px) {
	html.fixed.sidebar-left-xs .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-xs.inner-menu-opened .content-with-menu .inner-toolbar {
		left: 500px;
	}

	html.fixed.sidebar-left-xs .inner-menu-toggle,
	html.fixed.sidebar-left-xs .inner-menu,
	html.fixed.sidebar-left-xs.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-xs.inner-menu-opened .inner-menu {
		left: 200px;
	}

	html.fixed.sidebar-left-xs.sidebar-right-opened .content-with-menu .inner-toolbar {
		left: 200px;
	}

	html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu-toggle {
		left: -100px;
	}

	html.fixed.sidebar-left-xs.sidebar-left-collapsed .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .content-with-menu .inner-toolbar,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened .content-with-menu .inner-toolbar {
		left: 373px;
	}

	html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu-toggle,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened .inner-menu,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened .inner-menu {
		left: 73px;
	}

	html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened .content-with-menu .inner-toolbar {
		left: 73px;
	}

	html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened .inner-menu,
	html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened .inner-menu-toggle {
		left: -227px;
	}
}
/* Sidebar Right */
.sidebar-right {
	z-index: 1010;
}

.sidebar-right .sidebar-right-wrapper {
	padding: 20px;
}

.sidebar-right h6 {
	margin: 0;
	color: var(--custom-on-secondary-color);
	text-transform: uppercase;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 600;
}

/* Content With Menu - Menu Faux Column for Scroll and Boxed Layouts Colors */
@media only screen and (min-width: 768px) {
	html.scroll .content-with-menu:before,
	html.boxed .content-with-menu:before {
		background: var(--custom-secondary-color);
	}

	html.scroll .content-with-menu:after,
	html.boxed .content-with-menu:after {
		background: #000;
		box-shadow: 0px 0 4px 2px rgba(0, 0, 0, 0.5);
	}
}
/* Fix padding when fixed */
@media only screen and (min-width: 768px) {
	html.fixed .inner-menu {
		padding: 0;
	}
}
/* Content With Menu - Inner Menu Style */
.inner-menu {
	background: var(--custom-secondary-color);
	border-right: 1px solid #242830;
	color: var(--custom-on-secondary-color);
	padding: 0;
	margin: 0;
}

.inner-menu .title {
	color: #465162;
	font-weight: 600;
	margin: 10px 0;
	padding: 0;
	text-transform: uppercase;
}

.inner-menu hr.separator {
	background-image: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, 0.4), transparent);
	background-image: -moz-linear-gradient(left, transparent, rgba(0, 0, 0, 0.4), transparent);
	background-image: -ms-linear-gradient(left, transparent, rgba(0, 0, 0, 0.4), transparent);
	background-image: -o-linear-gradient(left, transparent, rgba(0, 0, 0, 0.4), transparent);
	margin: 20px -35px 20px;
}

.inner-menu a,
.inner-menu a:hover {
	color: var(--custom-on-secondary-color);
}

.inner-menu a.menu-item {
	color: var(--custom-on-secondary-color);
	display: block;
	margin: 0 -35px 0 -35px;
	padding: 10px 50px 10px 50px;
	text-decoration: none;
}

.inner-menu a.menu-item:hover {
	background: #2c2c2c;
	color: var(--custom-on-secondary-color);
	text-decoration: none;
}

.inner-menu a.menu-item.active {
	background: #282d36;
}

.inner-menu a.menu-item .label {
	font-weight: normal;
	font-size: 10px;
	font-size: 1rem;
	padding: 0.3em 0.7em 0.4em;
	margin: 0.2em -1em 0 0;
}

/* Content With Menu - Toggle */
.inner-menu-toggle,
.inner-menu .inner-menu-toggle-inside {
	background: #000;
	color: #999;
	left: 0;
	line-height: 52px;
	position: relative;
	overflow: hidden;
	text-align: left;
	text-decoration: none;
}

.inner-menu-toggle:after,
.inner-menu .inner-menu-toggle-inside:after {
	box-shadow: 0 0px 3px 0 rgba(255, 255, 255, 0.7);
	bottom: -1px;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
}

.inner-menu-toggle a,
.inner-menu .inner-menu-toggle-inside a {
	display: block;
	padding-left: 20px;
	text-decoration: none;
}

.inner-menu-toggle a i,
.inner-menu .inner-menu-toggle-inside a i {
	vertical-align: middle;
}

.inner-menu-toggle .inner-menu-collapse,
.inner-menu .inner-menu-toggle-inside .inner-menu-collapse {
	display: none;
}

.inner-menu-toggle a i {
	margin-left: 5px;
}

.inner-menu-toggle-inside {
	margin: -35px -35px 15px -35px;
}

.inner-menu-toggle-inside .inner-menu-collapse i {
	margin-right: 5px;
}

.inner-menu-toggle-inside .inner-menu-expand i {
	margin-left: 5px;
}

/* Content With Menu - Toggle - Outside */
.inner-menu-toggle {
	display: none;
}

/* Content With Menu - Inner Menu Content */
.inner-menu-content {
	display: none;
}

html.inner-menu-opened .inner-menu .inner-menu-toggle-inside .inner-menu-collapse {
	display: block;
}

html.inner-menu-opened .inner-menu-expand {
	display: none;
}

html.inner-menu-opened .inner-menu-content {
	display: block;
}

/* Content With Menu - Responsive */
@media only screen and (max-width: 767px) {
	.inner-menu .inner-menu-content {
		padding: 20px;
	}

	.inner-menu-toggle-inside {
		margin: 0;
	}
}
/* Content With Menu - Toolbar + Layout Fixed */
@media only screen and (min-width: 768px) {
	html.fixed.inner-menu-opened {
		left: 600px;
	}

	html.fixed .inner-menu-toggle {
		position: fixed;
		left: 300px;
	}
}

ul.nav-main {
	margin-right: 5px;
}

ul.nav-main > li > a {
	padding: 12px 25px;
}

ul.nav-main > li > a:hover,
ul.nav-main > li > a:focus {
	background-color: #2c2c2c;
}

ul.nav-main > li.nav-active > a {
	box-shadow: 2px 0 0 #cccccc inset;
}

ul.nav-main > li.nav-active > a:hover {
	color: var(--custom-on-secondary-color);
}

ul.nav-main > li.nav-active > i {
	color: #cccccc;
}

ul.nav-main > li.nav-expanded > a {
	background: #2c2c2c;
}

ul.nav-main li a {
	font-size: 13px;
	/* font-size: 1.3rem; */
	color: var(--custom-on-secondary-color);
	white-space: nowrap;
	text-overflow: ellipsis;
}

ul.nav-main li a span.label {
	font-weight: normal;
	font-size: 10px;
	/* font-size: 1rem; */
	padding: 0.5em 1em 0.5em;
	/* margin: 0.4em -1em 0 0; */
}

ul.nav-main li a .not-included {
	font-style: normal;
	color: #505b67;
	display: inline-block;
	padding: 0 0 0 6px;
}

ul.nav-main li span {
	vertical-align: middle;
}

ul.nav-main li i {
	font-size: 18px;
	/* font-size: 1.8rem; */
	width: 1.1em;
	margin-right: 0.5em;
	text-align: center;
	vertical-align: middle;
}

ul.nav-main li.nav-parent {
	position: relative;
}

ul.nav-main li.nav-parent > a {
	cursor: pointer;
}

ul.nav-main li.nav-parent > a:after {
	font-family: "FontAwesome";
	content: "\f107";
	font-size: 16px;
	/* font-size: 1.6rem; */
	color: var(--custom-on-secondary-color);
	position: absolute;
	right: 0;
	top: 0;
	padding: 14px 25px;
}

ul.nav-main li.nav-parent.nav-expanded > a:after {
	content: "\f106";
}

ul.nav-main li.nav-parent.nav-expanded > ul.nav-children {
	display: block;
}

ul.nav-main li .nav-children {
	background: var(--custom-secondary-color);
	box-shadow: 0px -3px 3px -3px rgba(0, 0, 0, 0.7) inset;
	display: none;
	padding: 10px 0;
}

ul.nav-main li .nav-children li a {
	padding: 6px 15px 6px 57px;
	overflow: hidden;
}

ul.nav-main li .nav-children li a:hover,
ul.nav-main li .nav-children li a:focus {
	background: var(--custom-secondary-color);
}

ul.nav-main li .nav-children li a:after {
	padding: 6px 25px;
}

ul.nav-main li .nav-children li.nav-active > a {
	color: #cccccc;
}

ul.nav-main li .nav-children .nav-children {
	box-shadow: none;
	padding: 0;
}

ul.nav-main li .nav-children .nav-children li a {
	padding: 6px 15px 6px 82px;
}

ul.nav-main li .nav-children .nav-children .nav-children li a {
	padding: 6px 15px 6px 97px;
}

/* Page Header */
.page-header {
	z-index: 1001;
}

.page-header h2 {
	color: #fff;
	border-bottom: 4px solid #cccccc;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	display: block;
	float: left;
	height: 50px;
	font-size: 20px;
	/* font-size: 2rem; */
	letter-spacing: normal;
	line-height: 50px;
	margin: 0 0 0 -1px;
	padding: 0 22px 0 20px;
}

.page-header .right-wrapper {
	float: right;
}

.page-header .breadcrumbs {
	display: inline-block;
	font-size: 0;
	line-height: 50px;
	margin: 0;
	padding: 0;
}

.page-header .breadcrumbs li {
	color: #c3c3c3;
	display: inline-block;
	font-weight: 300;
}

.page-header .breadcrumbs li:after {
	content: "/";
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
	margin: 0 10px;
	vertical-align: middle;
}

.page-header .breadcrumbs li:last-child:after {
	display: none;
}

.page-header .breadcrumbs .fa-home {
	font-size: 20px;
	font-size: 2rem;
}

.page-header .breadcrumbs i {
	vertical-align: middle;
}

.page-header .breadcrumbs a,
.page-header .breadcrumbs span {
	color: #c3c3c3;
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 20px;
	vertical-align: middle;
}

.page-header .sidebar-right-toggle {
	cursor: pointer;
	color: #c3c3c3;
	display: inline-block;
	font-size: 17px;
	margin: 0 0 0 10px;
	height: 50px;
	width: 50px;
	vertical-align: top;
	text-align: center;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.page-header .sidebar-right-toggle i {
	line-height: 53px;
	vertical-align: middle;
}

.page-header .sidebar-right-toggle:hover {
	color: #cccccc;
}

/* Header Dark - Page Header */
html.header-dark .page-header {
	border-left-color: #171717;
	box-shadow: 1px 3px 0 1px #2f3139;
}

html.sidebar-right-opened .page-header .sidebar-right-toggle i:before {
	content: "\f054";
}

/* Page Header - Mobile */
@media only screen and (max-width: 767px) {
	/* .page-header {
		padding-right: 80px;
	} */

	.page-header .breadcrumbs {
		display: none;
	}

	.page-header h2 {
		font-size: 16px;
		padding: 0 15px 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 100%;
	}

	.page-header .sidebar-right-toggle {
		position: absolute;
		right: 0;
		top: 0;
	}
}
/* Headings */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
	letter-spacing: -1px;
}

h1,
.h1 {
	font-size: 36px;
	/* font-size: 3.6rem; */
}

h2,
.h2 {
	font-size: 30px;
	/* font-size: 3rem; */
}

h3,
.h3 {
	font-size: 24px;
	/* font-size: 2.4rem; */
}

h4,
.h4 {
	font-size: 18px;
	/* font-size: 1.8rem; */
}

h5,
.h5 {
	font-size: 14px;
	/* font-size: 1.4rem; */
}

h6,
.h6 {
	font-size: 12px;
	/* font-size: 1.2rem; */
	letter-spacing: 0;
}

/* Alternative Font Style */
.alternative-font {
	color: #cccccc;
	font-family: "Shadows Into Light", cursive;
	font-size: 1.6em;
}

/* Drop Caps */
p.drop-caps:first-child:first-letter {
	float: left;
	font-size: 75px;
	line-height: 60px;
	padding: 4px;
	margin-right: 5px;
	margin-top: 5px;
	font-family: Georgia;
	color: #171717;
}

p.drop-caps.secundary:first-child:first-letter {
	background-color: #171717;
	color: #fff;
	padding: 6px;
	margin-right: 5px;
	border-radius: 4px;
}

p.drop-caps.colored:first-child:first-letter {
	color: #cccccc;
}

p.drop-caps.colored.secundary:first-child:first-letter {
	background-color: #cccccc;
	color: #fff;
}

/* Blockquote */
blockquote {
	font-size: 1em;
}

/* Hightlight */
.highlight {
	background-color: #cccccc;
	color: #fff;
	padding: 3px 6px;
}

/* Divider Line */
hr {
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, 0.2), transparent);
	background-image: -moz-linear-gradient(left, transparent, rgba(0, 0, 0, 0.2), transparent);
	background-image: -ms-linear-gradient(left, transparent, rgba(0, 0, 0, 0.2), transparent);
	background-image: -o-linear-gradient(left, transparent, rgba(0, 0, 0, 0.2), transparent);
	margin: 22px 0 22px 0;
}

hr.short {
	margin: 11px 0 11px 0;
}

hr.tall {
	margin: 44px 0 44px 0;
}

hr.taller {
	margin: 66px 0 66px 0;
}

hr.light {
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
	background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
	background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

hr.dotted {
	height: 0;
	border-bottom: 1px dotted #ddd;
}

hr.solid {
	height: 0;
	border-bottom: 1px solid #ddd;
}

/* Buttons Icon */
.btn-icon i {
	margin-right: 10px;
}

.btn-icon-right i {
	margin-right: 0;
	margin-left: 10px;
}

/* Form Elements */
input {
	outline: none;
}

label {
	font-weight: normal;
}

textarea {
	resize: vertical;
}

/* Forms Validations */
label.valid {
	display: inline-block;
	text-indent: -9999px;
}

label.error {
	color: #c10000;
	font-size: 0.9em;
	margin-top: -5px;
	padding: 0;
}

/* Miscellaneous */
body a,
body a:focus,
body a:hover,
body a:active,
body a:visited {
	outline: none !important;
}

.center {
	text-align: center;
}

ul,
ol {
	margin-bottom: 0;
	padding-left: 27px;
}

blockquote.primary {
	border-color: #cccccc;
}

blockquote.success {
	border-color: #47a447;
}

blockquote.warning {
	border-color: #ed9c28;
}

blockquote.danger {
	border-color: #d2322d;
}

blockquote.info {
	border-color: #5bc0de;
}

blockquote.dark {
	border-color: #171717;
}

/* Arrows */
.arrow {
	background: transparent url(../images/arrows.png) no-repeat 0 0;
	width: 47px;
	height: 120px;
	display: inline-block;
	position: relative;
}

.arrow.vtl {
	background-position: 0 0;
	width: 47px;
	height: 96px;
}

.arrow.vtr {
	background-position: -101px 0;
	width: 47px;
	height: 96px;
}

.arrow.vbl {
	background-position: 0 -144px;
	width: 47px;
	height: 96px;
}

.arrow.vbr {
	background-position: -101px -144px;
	width: 47px;
	height: 96px;
}

.arrow.hlt {
	background-position: -209px 0;
	width: 120px;
	height: 47px;
}

.arrow.hlb {
	background-position: -209px -101px;
	width: 120px;
	height: 47px;
}

.arrow.hrt {
	background-position: -353px 0;
	width: 120px;
	height: 47px;
}

.arrow.hrb {
	background-position: -353px -101px;
	width: 120px;
	height: 47px;
}

.img-thumbnail {
	border-radius: 8px;
	position: relative;
}

.img-thumbnail .zoom {
	display: block;
	position: absolute;
	right: 8px;
	bottom: 8px;
	height: 30px;
	width: 30px;
	padding: 6px;
	font-size: 14px;
	line-height: 18px;
	background: #ccc;
	border-radius: 100%;
	color: #fff;
	text-align: center;
}

.img-thumbnail .zoom i {
	position: relative;
	top: -1px;
	left: -1px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
	list-style: none;
	margin: 10px 0;
	padding: 0;
}

.thumbnail-gallery .img-thumbnail,
.thumbnail-gallery .thumbnail {
	margin: 10px 10px 0 0;
}

/* Navs */
ul.nav-list.primary > li {
	margin: 0;
	padding: 0;
}

ul.nav-list.primary > li:last-child a {
	border-bottom: transparent !important;
}

ul.nav-list.primary > li a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background-position: 9px 16px;
	background-repeat: no-repeat;
	border-bottom: 1px solid #ededde;
	padding: 8px 20px;
}

.text-xs {
	font-size: 10px;
	font-size: 1rem;
}

.text-sm {
	font-size: 13px;
	font-size: 1.3rem;
}

.text-md {
	font-size: 16px;
	font-size: 1.6rem;
}

.text-lg {
	font-size: 19px;
	font-size: 1.9rem;
}

.text-xl {
	font-size: 22px;
	font-size: 2.2rem;
}

.text-muted {
	color: #999999 !important;
}

/* .text-primary {
	color: #cccccc !important;
}

.text-secondary {
	color: #e36159 !important;
}

.text-tertiary {
	color: #2baab1 !important;
}

.text-quartenary {
	color: #734ba9 !important;
}

.text-success {
	color: #47a447 !important;
}

.text-warning {
	color: #ed9c28 !important;
}

.text-danger {
	color: #d2322d !important;
}

.text-info {
	color: #5bc0de !important;
}

.text-dark {
	color: #171717 !important;
} */

.text-primary-inverse {
	color: white !important;
}

.text-secondary-inverse {
	color: white !important;
}

.text-tertiary-inverse {
	color: white !important;
}

.text-quartenary-inverse {
	color: white !important;
}

.text-success-inverse {
	color: white !important;
}

.text-warning-inverse {
	color: white !important;
}

.text-danger-inverse {
	color: white !important;
}

.text-info-inverse {
	color: white !important;
}

.text-dark-inverse {
	color: white !important;
}

/* weights */
.text-light {
	font-weight: 300;
}

.text-normal {
	font-weight: 400;
}

.text-semibold {
	font-weight: 600;
}

.text-bold {
	font-weight: 700;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-lowercase {
	text-transform: lowercase;
}

.text-capitalize {
	text-transform: capitalize;
}

.rounded {
	border-radius: 5px;
}

.b-thin {
	border-width: 3px;
}

.b-normal {
	border-width: 5px;
}

.b-thick {
	border-width: 7px;
}

.ib {
	display: inline-block;
	vertical-align: top;
}

.va-middle {
	vertical-align: middle;
}

.ws-nowrap {
	white-space: nowrap;
}

.ws-normal {
	white-space: normal;
}

.bg-default {
	background: #ebebeb;
	color: var(--custom-on-secondary-color);
}

.bg-primary {
	background: #cccccc;
	color: white;
}

.bg-secondary {
	background: #e36159;
	color: white;
}

.bg-tertiary {
	background: #2baab1;
	color: white;
}

.bg-quartenary {
	background: #734ba9;
	color: white;
}

.bg-success {
	background: #47a447;
	color: white;
}

.bg-warning {
	background: #ed9c28;
	color: white;
}

.bg-danger {
	background: var(--custom-error-color) !important;
	color: var(--custom-on-error-color) !important;
}

.bg-info {
	background: #5bc0de;
	color: white;
}

.bg-dark {
	background: #171717;
	color: white;
}

/* Toolbar */
.inner-toolbar {
	background: var(--custom-secondary-color);
	margin: -40px -40px 30px;
	padding: 0;
	border-left: 1px solid #121418;
}

.inner-toolbar > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.inner-toolbar > ul > li {
	display: inline-block;
	padding: 15px;
	font-size: 13px;
	border-right: 1px solid #121418;
}

.inner-toolbar > ul > li > a {
	display: inline-block;
	padding: 0;
	color: var(--custom-on-secondary-color);
}

.inner-toolbar > ul > li > a:hover,
.inner-toolbar > ul > li > a:focus {
	color: #fff;
	text-decoration: none;
}

.inner-toolbar > ul > li.right {
	float: right;
	padding-right: 10px;
}

.inner-toolbar > ul > li i.fa {
	font-size: 14px;
}

.inner-toolbar > ul > li > .btn {
	margin-top: -6px;
}

.inner-toolbar .nav-pills {
	margin-top: -8px;
}

.inner-toolbar .nav-pills > li > label {
	margin-bottom: 0;
	margin-right: 12px;
	margin-top: 8px;
}

.inner-toolbar .nav-pills a {
	color: var(--custom-on-secondary-color);
	padding-top: 8px;
	padding-bottom: 8px;
}

.inner-toolbar .nav-pills a:hover {
	background: #171717;
	color: #fff;
}

.inner-toolbar .nav-pills .active a {
	color: #fff;
}

/* Toolbar - Responsive */
@media only screen and (max-width: 767px) {
	.inner-toolbar {
		padding: 0 15px;
		margin: -40px -15px 30px;
	}

	.inner-toolbar ul > li {
		border-right: 0;
	}

	.inner-toolbar ul > li:first-child {
		padding-left: 0;
	}

	.inner-toolbar ul > li.right {
		float: none;
		padding-left: 0;
		padding-right: 0;
	}
}

@media only screen and (max-width: 480px) {
	.inner-toolbar .nav-pills a {
		padding-left: 10px;
		padding-right: 10px;
	}
}
/* Toolbar + Layout Fixed */
@media only screen and (min-width: 768px) {
	html.fixed .inner-toolbar {
		left: 300px;
		right: 0;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 114px;
		z-index: 1001;
	}
}
/* dark */
.img-rounded {
	border-radius: 6px;
}

.img-circle {
	border-radius: 50%;
}

.img-thumbnail {
	border-radius: 8px;
	position: relative;
}

body .btn:focus,
body .btn:active:focus,
body .btn.active:focus {
	outline: none;
}

body .btn {
	white-space: normal;
	border-radius: 100px;
}

/* Notifications */
.notifications {
	display: inline-block;
	list-style: none;
	margin: 4px -10px 0 0;
	padding: 0;
	vertical-align: middle;
}

.notifications > li {
	float: left;
	margin: 0 10px 0 0;
	position: relative;
}

.notifications > li .notification-icon {
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
	display: inline-block;
	height: 30px;
	position: relative;
	width: 30px;
	text-align: center;
}

.notifications > li .notification-icon i {
	color: var(--custom-on-background-color);
	line-height: 30px;
	vertical-align: middle;
}

.notifications > li .notification-icon i.fa-tasks {
	line-height: 32px;
}

.notifications > li .notification-icon .badge {
	background: #d2312d;
	color: #fff;
	font-size: 10px;
	font-weight: normal;
	height: 16px;
	padding: 3px 5px 3px 5px;
	position: absolute;
	right: -8px;
	top: -3px;
}

.notifications > li > a {
	border: none;
	display: inline-block;
}

.notifications .notification-menu {
	border: none;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
	left: auto;
	margin: 10px 0 0 0;
	padding: 0;
	right: -5px;
	width: 245px;
}

.notifications .notification-menu.large {
	width: 325px;
}

.notifications .notification-menu .notification-title {
	background: #cccccc;
	border-radius: 3px 3px 0 0;
	color: white;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 15px;
	line-height: 1.5rem;
	padding: 8px 6px 8px 12px;
	text-transform: uppercase;
}

.notifications .notification-menu .notification-title .label {
	font-size: 10px;
	font-size: 1rem;
	font-weight: 200;
	line-height: 14px;
	margin-left: 10px;
	margin-top: -2px;
	min-width: 35px;
}

.notifications .notification-menu .notification-title .label-default {
	background: #006697;
	color: #fff;
}

.notifications .notification-menu .content {
	padding: 12px;
}

.notifications .notification-menu hr {
	background: #e6e6e6;
	height: 1px;
	margin: 12px 0;
}

.notifications .notification-menu .view-more {
	color: #acacac;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 11px;
	line-height: 1.1rem;
	text-transform: uppercase;
}

/* notification menu - pin */
.notifications .notification-menu:before,
.notifications .notification-icon:before {
	border-bottom: 6px solid #cccccc;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	content: "";
	height: 0;
	margin-right: -3px;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.notifications .notification-menu:before {
	bottom: 100%;
	right: 16px;
}

.notifications .notification-icon:before {
	display: none;
	right: 11px;
	top: 35px;
	z-index: 9999;
}

/* notification menu - emails */
.notification-menu {
	color: #acacac;
}

.notification-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.notification-menu li {
	margin: 0 0 12px;
}

.notification-menu li:last-child {
	margin-bottom: 0;
}

.notification-menu a {
	display: block;
	text-decoration: none;
}

.notification-menu .image {
	float: left;
	margin: 0 10px 0 0;
}

.notification-menu .image i {
	border-radius: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	width: 35px;
}

.notification-menu .truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.notification-menu .title {
	color: #000011;
	display: block;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 17px;
	line-height: 1.7rem;
	padding: 2px 0 0;
}

.notification-menu .message {
	color: #acacac;
	display: block;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 15px;
	line-height: 1.5rem;
	padding: 0;
}
html.header-dark .notifications > li .notification-icon {
	background: #282d36;
}

html.header-dark .notifications > li .notification-icon i {
	color: #c3c3c3;
}

/* Notifications Mobile */
@media only screen and (max-width: 767px) {
	.notifications {
		float: right;
		margin: 16px 8px 0 0;
	}

	.notifications > li {
		position: static;
	}

	.notifications > li.open .notification-icon:before {
		display: block;
	}

	.notifications > li .notification-menu {
		left: 15px;
		right: 15px;
		top: auto;
		width: auto !important;
	}

	.notifications > li .notification-menu:before {
		display: none;
	}
}
/* Userbox */
.userbox {
	display: inline-block;
	margin: 3px 3px 0 0;
	position: relative;
	vertical-align: middle;
}

.userbox > a.dropdown-toggle::after {
	display: none;
}

.userbox > a {
	display: inline-block;
	text-decoration: none;
}

.userbox a:hover {
	text-decoration: none;
}

.userbox .profile-info,
.userbox .profile-picture {
	display: inline-block;
	vertical-align: middle;
}

.userbox .profile-picture img {
	width: 35px;
	color: transparent;
}

.userbox .profile-info {
	margin: 0 25px 0 10px;
	min-width: 100px;
}

.userbox .name,
.userbox .role {
	display: block;
}

.userbox .name {
	color: #000011;
	font-size: 13px;
	/* font-size: 1.3rem; */
	line-height: 1.2em;
}

.userbox .role {
	color: #acacac;
	font-size: 11px;
	/* font-size: 1.1rem; */
	line-height: 1.2em;
}

.userbox .custom-caret {
	color: #000011;
	font-size: 16px;
	font-weight: bold;
}

.userbox .custom-caret:before {
	content: "\f107";
}

/* Userbox - Open */
.userbox > a.show {
	position: relative;
	z-index: 993;
}

.userbox > a.show .custom-caret:before {
	content: "\f106";
}

.userbox .dropdown-menu.show {
	border: none;
	box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	left: -11px !important;
	padding: 45px 10px 0;
	top: -10px !important;
	width: 100%;
	z-index: 992;
	transform: none !important;
}

.userbox .dropdown-menu.show li {
	margin-bottom: 5px;
}

.userbox .dropdown-menu.show a {
	border-radius: 2px;
	color: #7d7d7d;
	display: block;
	font-size: 12px;
	/* font-size: 1.2rem; */
	line-height: 15px;
	line-height: 1.5rem;
	padding: 5px 10px;
}

.userbox .dropdown-menu.show a:hover {
	background: #cccccc;
	color: white;
}

.userbox .dropdown-menu.show i {
	font-size: 17px;
	/* font-size: 1.7rem; */
	margin-right: 3px;
	vertical-align: middle;
}

/* Userbox - Mobile */
@media only screen and (max-width: 767px) {
	.userbox {
		float: left;
		margin: 16px 0 0 12px;
		position: relative;
	}

	.userbox:after {
		background: #e9e9e6;
		content: "";
		height: 63px;
		margin: 0;
		position: absolute;
		right: -21px;
		top: -18px;
		width: 1px;
	}

	.userbox .profile-picture {
		display: none;
	}

	.userbox .dropdown-menu.show {
		left: -5px;
		padding: 43px 0 0 0;
	}
}
/* Header Dark - Userbox */
html.header-dark .userbox:after {
	background: #121518;
}

html.header-dark .userbox .name,
html.header-dark .userbox .custom-caret {
	color: #c3c3c3;
}

html.header-dark .userbox .dropdown-menu.show .name,
html.header-dark .userbox .dropdown-menu.show .custom-caret {
	color: #c3c3c3;
}

html.header-dark .userbox .dropdown-menu.show a {
	color: #c3c3c3;
}

html.header-dark .userbox .dropdown-menu.show a:hover {
	color: #fff;
}

html.header-dark .userbox .dropdown-menu {
	background: #282d36;
}

html.header-dark .userbox .dropdown-menu .divider {
	background: var(--custom-secondary-color);
}

html.header-dark .userbox .dropdown-menu a {
	color: #c3c3c3;
}

.nav-pills > .active a,
.nav-pills > .active a:hover,
.nav-pills > .active a:focus {
	background-color: #cccccc;
}

.pagination > li a {
	color: #cccccc;
}

.pagination > li a:hover,
.pagination > li a:focus {
	color: #d9d9d9;
}

.pagination > li.active a,
.pagination > li.active a:hover,
.pagination > li.active a:focus,
.pagination > li.active span,
.pagination > li.active span:hover,
.pagination > li.active span:focus {
	background-color: #cccccc;
	border-color: #cccccc;
}

.pagination > li.active a {
	background-color: #cccccc;
}

.progress-bar-primary {
	background-color: #cccccc;
}

.progress-bar.progress-without-number[aria-valuenow="1"],
.progress-bar.progress-without-number[aria-valuenow="2"] {
	min-width: 0;
}

.progress-bar.progress-bar-primary[aria-valuenow="0"] {
	background: transparent;
}

.sidebar-right .sidebar-widget {
	margin: 0;
}

.sidebar-widget {
	margin: 0 30px 0 25px;
}

.sidebar-widget .widget-header {
	position: relative;
	margin: 0;
}

.sidebar-widget .widget-header h6 {
	font-size: 13px;
	/* font-size: 1.3rem; */
	color: #465162;
	font-weight: 600;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.sidebar-widget .widget-header .btn-widget-act {
	position: relative;
	top: -2px;
	border-color: #0a0a0a;
	background-color: #0a0a0a;
	border-color: #0a0a0a black black;
}

.sidebar-widget .widget-header .btn-widget-act:hover {
	border-color: #121212;
	background-color: #121212;
}

.sidebar-widget .widget-header .btn-widget-act:active,
.sidebar-widget .widget-header .btn-widget-act:focus {
	border-color: black;
	background-color: black;
}

.sidebar-widget .widget-header .btn-widget-act.dropdown-toggle {
	border-left-color: black;
}

.sidebar-widget .widget-header .widget-toggle {
	font-size: 17px;
	/* font-size: 1.7rem; */
	line-height: 13px;
	line-height: 1.3rem;
	color: #465162;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	text-align: center;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	transition-timing-function: linear;
}

.sidebar-widget .widget-content {
	padding: 15px 0 0;
}

.sidebar-widget.widget-collapsed .widget-header .widget-toggle {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.sidebar-widget.widget-collapsed .widget-content {
	display: none;
}

.sidebar-widget.widget-tasks ul li {
	position: relative;
}

.sidebar-widget.widget-tasks ul li a {
	color: var(--custom-on-secondary-color);
	display: block;
	margin: 0 -25px 0 -30px;
	padding: 10px 0 10px 55px;
}

.sidebar-widget.widget-tasks ul li a:hover {
	background: #2c2c2c;
	text-decoration: none;
}

.sidebar-widget.widget-tasks ul li:before {
	border: 5px solid #cccccc;
	border-radius: 100px;
	content: "";
	display: inline-block;
	left: 0;
	margin: -5px 0 0;
	position: absolute;
	top: 50%;
	z-index: 999;
}

.sidebar-widget.widget-tasks ul li:nth-child(6n + 1):before {
	border-color: #d64b4b;
}

.sidebar-widget.widget-tasks ul li:nth-child(6n + 2):before {
	border-color: #0090d9;
}

.sidebar-widget.widget-tasks ul li:nth-child(6n + 3):before {
	border-color: #4dd79c;
}

.sidebar-widget.widget-tasks ul li:nth-child(6n + 4):before {
	border-color: #d9a300;
}

.sidebar-widget.widget-tasks ul li:nth-child(6n + 5):before {
	border-color: #c926ff;
}

.sidebar-widget.widget-tasks ul li:nth-child(6n + 6):before {
	border-color: #ffff26;
}

.sidebar-widget.widget-stats ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-widget.widget-stats .stats-title {
	color: #a6a6a6;
}

.sidebar-widget.widget-stats .stats-complete {
	float: right;
	font-size: 10px;
	font-size: 1rem;
	color: #666;
}

.sidebar-widget.widget-stats .progress {
	height: 7px;
	background: #474453;
	box-shadow: 0 1px 0 #585564 inset;
	margin-bottom: 25px;
}

.sidebar-widget.widget-calendar {
	margin: 0 0 25px;
}

.sidebar-widget.widget-calendar ul {
	list-style: none;
	margin: 0;
	padding: 20px 0;
	border-top: 1px solid #000;
}

.sidebar-widget.widget-calendar ul time {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.3em;
	font-weight: 600;
	color: var(--custom-on-secondary-color);
	margin-bottom: 0.1em;
}

.sidebar-widget.widget-calendar ul span {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.3em;
	color: white;
}

.sidebar-widget.widget-friends ul {
	list-style: none;
	margin: 0;
	padding: 10px 2px;
}

.sidebar-widget.widget-friends ul li {
	padding: 10px 0;
}

.sidebar-widget.widget-friends ul li .profile-info,
.sidebar-widget.widget-friends ul li .profile-picture {
	display: inline-block;
	vertical-align: middle;
}

.sidebar-widget.widget-friends ul li .profile-picture {
	position: relative;
	width: 35px;
}

.sidebar-widget.widget-friends ul li .profile-picture img {
	width: 100%;
	height: auto;
}

.sidebar-widget.widget-friends ul li .profile-info {
	margin: 0 35px 0 10px;
}

.sidebar-widget.widget-friends ul li span.name {
	display: block;
	color: white;
	font-weight: 600;
	line-height: 1.3em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-bottom: 0.2em;
}

.sidebar-widget.widget-friends ul li span.title {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.3em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.sidebar-widget.widget-friends ul li.status-online .profile-picture:after,
.sidebar-widget.widget-friends ul li.status-offline .profile-picture:after {
	display: none;
	position: absolute;
	top: -4px;
	right: -4px;
	content: "";
	width: 15px;
	height: 15px;
	border: 2px solid #000;
	border-radius: 50%;
}

.sidebar-widget.widget-friends ul li.status-online .profile-picture:after {
	display: block;
	background-color: #1aae88;
}

.sidebar-widget.widget-friends ul li.status-offline .profile-picture:after {
	display: block;
	background-color: #d2312d;
}

.panel {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	/* WHY?
	+ .panel {
		margin-top: 35px;
	}*/
}

/* .card-header {
	background: #f6f6f6;
	border-radius: 5px 5px 0 0;
	border-bottom: 1px solid #dadada;
	padding: 18px;
	position: relative;
} */

.card {
	background: var(--custom-surface-color);
	color: var(--custom-on-surface-color);
}

.card-header {
	background: var(--custom-surface-color);
	color:var(--custom-on-surface-color);
	/* border-radius: 5px 5px 0 0; */
	border-bottom: 1px solid #dadada;
	padding: 18px;
	position: relative;
}



.card-header.bg-primary {
	background: #cccccc;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-secondary {
	background: #e36159;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-tertiary {
	background: #2baab1;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-quartenary {
	background: #734ba9;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-success {
	background: #47a447;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-warning {
	background: #ed9c28;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-danger {
	background: #d2322d;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-info {
	background: #5bc0de;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-dark {
	background: #171717;
	color: white;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-header.bg-white {
	background: #fff;
	border-bottom: 0 none;
	border-right: 0 none;
}

.card-actions {
	right: 15px;
	position: absolute;
	top: 15px;
}

.card-actions a {
	background-color: transparent;
	border-radius: 2px;
	color: #b4b4b4;
	font-size: 14px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	width: 24px;
}

.card-actions a:hover {
	background-color: #eeeeee;
	color: #b4b4b4;
	text-decoration: none;
}

.card-actions a,
.card-actions a:focus,
.card-actions a:hover,
.card-actions a:active,
.card-actions a:visited {
	outline: none !important;
	text-decoration: none !important;
}

/* .card-title {
	color: #33353f;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	padding: 0;
	text-transform: none;
} */
.card-title {
	color: var(--custom-secondary-color);
	font-size: 20px;
	/* font-weight: 400;
	line-height: 20px;
	text-transform: none; */
	padding: 0;
}

.card-subtitle {
	color: #808697;
	font-size: 12px;
	line-height: 1.2em;
	margin: 7px 0 0;
	padding: 0;
}

.card-body {
	background: var(--custom-surface-color);
	color: var(--custom-on-surface-color);
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}

.card-body-nopadding {
	padding: 0;
}

.card-header + .card-body {
	border-radius: 0 0 5px 5px;
}

/* .card-footer {
	border-radius: 0 0 5px 5px;
	margin-top: -5px;
}

.card-footer-btn-group {
	display: table;
	width: 100%;
	padding: 0;
}

.card-footer-btn-group a {
	background-color: var(--custom-background-color);
	display: table-cell;
	width: 1%;
	border-left: 1px solid #ddd;
	padding: 10px 15px;
	text-decoration: none;
}

.card-footer-btn-group a:hover {
	background-color: #f0f0f0;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) inset;
}

.card-footer-btn-group a:first-child {
	border-left: none;
} */

.card-body.bg-primary {
	background: #cccccc;
	color: white;
}

.card-body.bg-secondary {
	background: #e36159;
	color: white;
}

.card-body.bg-tertiary {
	background: #2baab1;
	color: white;
}

.card-body.bg-quartenary {
	background: #734ba9;
	color: white;
}

.card-body.bg-success {
	background: #47a447;
	color: white;
}

.card-body.bg-warning {
	background: #ed9c28;
	color: white;
}

.card-body.bg-danger {
	background: #d2322d;
	color: white;
}

.card-body.bg-info {
	background: #5bc0de;
	color: white;
}

.card-body.bg-dark {
	background: #171717;
	color: white;
}

.card-featured {
	border-top: 3px solid #33353f;
}

.card-featured .card-header {
	border-radius: 0;
}

.card-featured-top {
	border-top: 3px solid #33353f;
}

.card-featured-right {
	border-right: 3px solid #33353f;
}

.card-featured-bottom {
	border-bottom: 3px solid #33353f;
}

.card-featured-left {
	border-left: 3px solid #33353f;
}

.card-featured-primary {
	border-color: #cccccc;
}

.card-featured-primary .card-title {
	color: #cccccc;
}

.card-featured-secondary {
	border-color: #e36159;
}

.card-featured-secondary .card-title {
	color: #e36159;
}

.card-featured-tertiary {
	border-color: #2baab1;
}

.card-featured-tertiary .card-title {
	color: #2baab1;
}

.card-featured-quartenary {
	border-color: #734ba9;
}

.card-featured-quartenary .card-title {
	color: #734ba9;
}

.card-featured-success {
	border-color: #47a447;
}

.card-featured-success .card-title {
	color: #47a447;
}

.card-featured-warning {
	border-color: #ed9c28;
}

.card-featured-warning .card-title {
	color: #ed9c28;
}

.card-featured-danger {
	border-color: #d2322d;
}

.card-featured-danger .card-title {
	color: #d2322d;
}

.card-featured-info {
	border-color: #5bc0de;
}

.card-featured-info .card-title {
	color: #5bc0de;
}

.card-featured-dark {
	border-color: #171717;
}

.card-featured-dark .card-title {
	color: #171717;
}

.card-highlight .card-header {
	background-color: #cccccc;
	border-color: #cccccc;
	color: #fff;
}

.card-highlight .card-title {
	color: #fff;
}

.card-highlight .card-subtitle {
	color: #fff;
	color: rgba(255, 255, 255, 0.7);
}

.card-highlight .card-actions a {
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
}

.card-highlight .card-body {
	background-color: #cccccc;
	color: #fff;
}

.card-highlight-title .card-header {
	background-color: #2baab1;
}

.card-highlight-title .card-title {
	color: #fff;
}

.card-highlight-title .card-subtitle {
	color: #fff;
	color: rgba(255, 255, 255, 0.7);
}

.card-highlight-title .card-actions a {
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
}

.card-header-icon {
	margin: 0 auto;
	font-size: 42px;
	/* font-size: 4.2rem; */
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 55px;
	border-radius: 55px;
}

.card-header-icon.bg-primary {
	background: #cccccc;
	color: white;
}

.card-header-icon.bg-secondary {
	background: #e36159;
	color: white;
}

.card-header-icon.bg-tertiary {
	background: #2baab1;
	color: white;
}

.card-header-icon.bg-quartenary {
	background: #734ba9;
	color: white;
}

.card-header-icon.bg-success {
	background: #47a447;
	color: white;
}

.card-header-icon.bg-warning {
	background: #ed9c28;
	color: white;
}

.card-header-icon.bg-danger {
	background: #d2322d;
	color: white;
}

.card-header-icon.bg-info {
	background: #5bc0de;
	color: white;
}

.card-header-icon.bg-dark {
	background: #171717;
	color: white;
}

.card-header-profile-picture img {
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	border: 4px solid #fff;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.card-icon {
	color: #fff;
	font-size: 42px;
	float: left;
}

.card-icon ~ .card-title,
.card-icon ~ .card-subtitle {
	margin-left: 64px;
}

/* Dark - Panels */
html .card-primary .card-header {
	background: #cccccc;
}

html .card-primary .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-primary .card-title {
	color: white;
}

html .card-primary .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-secondary .card-header {
	background: #e36159;
}

html .card-secondary .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-secondary .card-title {
	color: white;
}

html .card-secondary .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-tertiary .card-header {
	background: #2baab1;
}

html .card-tertiary .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-tertiary .card-title {
	color: white;
}

html .card-tertiary .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-quartenary .card-header {
	background: #734ba9;
}

html .card-quartenary .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-quartenary .card-title {
	color: white;
}

html .card-quartenary .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-success .card-header {
	background: #47a447;
}

html .card-success .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-success .card-title {
	color: white;
}

html .card-success .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-warning .card-header {
	background: #ed9c28;
}

html .card-warning .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-warning .card-title {
	color: white;
}

html .card-warning .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-danger .card-header {
	background: #d2322d;
}

html .card-danger .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-danger .card-title {
	color: white;
}

html .card-danger .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-info .card-header {
	background: #5bc0de;
}

html .card-info .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-info .card-title {
	color: white;
}

html .card-info .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-dark .card-header {
	background: #171717;
}

html .card-dark .card-subtitle {
	opacity: 0.8;
	color: white;
}

html .card-dark .card-title {
	color: white;
}

html .card-dark .card-actions a {
	background-color: transparent !important;
	color: white;
}

html .card-transparent > .card-header {
	background: none;
	border: 0;
	padding-left: 0;
	padding-right: 0;
}

html .card-transparent > .card-header .card-actions {
	right: 0;
}

html .card-transparent > .card-header + .card-body {
	border-radius: 5px;
}

html .card-transparent > .card-body {
	padding: 0;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

html .panel .card-header-transparent {
	background: none;
	border: 0;
	padding-left: 0;
	padding-right: 0;
}

html .panel .card-header-transparent .card-actions {
	right: 0;
}

html .panel .card-header-transparent + .card-body {
	border-radius: 5px;
}

.card-horizontal {
	display: table;
	width: 100%;
}

.card-horizontal .card-header,
.card-horizontal .card-body,
.card-horizontal .card-footer {
	display: table-cell;
	vertical-align: middle;
}

.card-horizontal .card-header {
	border-radius: 5px 0 0 5px;
}

.card-horizontal .card-header + .card-body {
	border-radius: 0 5px 5px 0;
}

.card-horizontal .card-footer {
	border-radius: 0 5px 5px 0;
	margin-top: 0;
}

@media only screen and (max-width: 767px) {
	.card-actions {
		float: none;
		margin-bottom: 15px;
		position: static;
		text-align: right;
	}

	.card-actions a {
		vertical-align: top;
	}
}
/* tabs */
.tabs {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin-bottom: 35px;
}

/* navigation */
/* .nav-tabs {
	margin: 0;
	font-size: 0;
}

.nav-tabs li {
	display: inline-block;
	float: none;
}

.nav-tabs li:last-child a {
	margin-right: 0;
}

.nav-tabs li a {
	border-radius: 5px 5px 0 0;
	font-size: 13px;
	
	margin-right: 1px;
}

.nav-tabs li a,
.nav-tabs li a:hover {
	background: #f4f4f4;
	border-bottom: none;
	border-left: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;
	border-top: 3px solid #dddddd;
	color: #555555;
}

.nav-tabs li a:hover {
	border-bottom-color: transparent;
	border-top: 3px solid #555555;
	box-shadow: none;
}

.nav-tabs li a:active,
.nav-tabs li a:focus {
	border-bottom: 0;
}

.nav-tabs li.active a,
.nav-tabs li.active a:hover,
.nav-tabs li.active a:focus {
	background: white;
	border-left-color: #eeeeee;
	border-right-color: #eeeeee;
	border-top: 3px solid #555555;
	color: #555555;
} */

/* content */
.tab-content {
	border-radius: 0 0 4px 4px;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
	background-color: var(--custom-surface-color);
	color: var(--custom-on-surface-color);
	border: 1px solid #eeeeee;
	border-top: 0;
	padding: 15px;
}

/* content - footer inside */
/* .tab-content .card-footer {
	margin: -15px;
	margin-top: 15px;
} */

/* Justified */
/* .nav-tabs.nav-justified {
	margin-bottom: -1px;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
}

.nav-tabs.nav-justified li {
	margin-bottom: 0;
}

.nav-tabs.nav-justified li:first-child a,
.nav-tabs.nav-justified li:first-child a:hover {
	border-radius: 5px 0 0 0;
	border-left: none;
}

.nav-tabs.nav-justified li:last-child a,
.nav-tabs.nav-justified li:last-child a:hover {
	border-radius: 0 5px 0 0;
	border-right: none;
}

.nav-tabs.nav-justified li a {
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #ddd;
	border-radius: 0;
	margin-right: 0;
}

.nav-tabs.nav-justified li a:hover,
.nav-tabs.nav-justified li a:focus {
	border-bottom: 1px solid #ddd;
	border-left: none;
	border-right: none;
}

.nav-tabs.nav-justified li.active a,
.nav-tabs.nav-justified li.active a:hover,
.nav-tabs.nav-justified li.active a:focus {
	background: white;
	border-left-color: #eeeeee;
	border-right-color: #eeeeee;
	border-top: 3px solid #555555;
	color: #555555;
}

.nav-tabs.nav-justified li.active a {
	border-bottom: 1px solid #fff;
}

.nav-tabs.nav-justified li.active a,
.nav-tabs.nav-justified li.active a:hover,
.nav-tabs.nav-justified li.active a:focus {
	border-top-color: #555555;
	border-top-width: 3px;
	border-left: none;
	border-right: none;
}

.nav-tabs.nav-justified li.active a:hover {
	border-bottom: 1px solid #fff;
} */

/* Bottom Tabs */
.tabs.tabs-bottom .tab-content {
	border-radius: 4px 4px 0 0;
	border-bottom: 0;
	border-top: 1px solid #eeeeee;
}

.tabs.tabs-bottom .nav-tabs {
	border-bottom: none;
	border-top: 1px solid #dddddd;
}

.tabs.tabs-bottom .nav-tabs li {
	margin-bottom: 0;
	margin-top: -1px;
}

.tabs.tabs-bottom .nav-tabs li:last-child a {
	margin-right: 0;
}

.tabs.tabs-bottom .nav-tabs li a {
	border-radius: 0 0 5px 5px;
	font-size: 13px;
	font-size: 1.3rem;
	margin-right: 1px;
}

.tabs.tabs-bottom .nav-tabs li a,
.tabs.tabs-bottom .nav-tabs li a:hover,
.tabs.tabs-bottom .nav-tabs li a:focus,
.tabs.tabs-bottom .nav-tabs li a:active {
	border-bottom: 3px solid #dddddd;
	border-top: 1px solid #dddddd;
}

.tabs.tabs-bottom .nav-tabs li a:hover,
.tabs.tabs-bottom .nav-tabs li a:focus,
.tabs.tabs-bottom .nav-tabs li a:active {
	border-bottom: 3px solid #555555;
	border-top: 1px solid #dddddd;
}

.tabs.tabs-bottom .nav-tabs li.active a,
.tabs.tabs-bottom .nav-tabs li.active a:hover,
.tabs.tabs-bottom .nav-tabs li.active a:focus {
	border-bottom: 3px solid #555555;
	border-top-color: transparent;
}

/* Bottom Tabs with Justified Nav */
.tabs.tabs-bottom .nav.nav-tabs.nav-justified {
	border-top: none;
}

.tabs.tabs-bottom .nav.nav-tabs.nav-justified li a {
	margin-right: 0;
	border-top-color: #dddddd;
}

.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a {
	border-radius: 0 0 0 5px;
}

.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a {
	margin-right: 0;
	border-radius: 0 0 5px 0;
}

.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a,
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a:hover,
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a:focus {
	border-top-color: transparent;
}

/* Vertical */
.tabs-vertical {
	display: table;
	width: 100%;
}

.tabs-vertical .tab-content {
	display: table-cell;
	vertical-align: top;
}

.tabs-vertical .nav-tabs {
	border-bottom: none;
	display: table-cell;
	height: 100%;
	float: none;
	padding: 0;
	vertical-align: top;
}

.tabs-vertical .nav-tabs > li {
	display: block;
}

.tabs-vertical .nav-tabs > li a {
	border-radius: 0;
	display: block;
	padding-top: 10px;
}

.tabs-vertical .nav-tabs > li a,
.tabs-vertical .nav-tabs > li a:hover,
.tabs-vertical .nav-tabs > li a:focus {
	border-bottom: none;
	border-top: none;
}

.tabs-vertical .nav-tabs > li.active a,
.tabs-vertical .nav-tabs > li.active a:hover,
.tabs-vertical .nav-tabs > li.active:focus {
	border-top: none;
}

/* Vertical - Left Side */
.tabs-left .tab-content {
	border-radius: 0 5px 5px 5px;
	border-left: none;
}

.tabs-left .nav-tabs > li {
	margin-right: -1px;
}

.tabs-left .nav-tabs > li:first-child a {
	border-radius: 5px 0 0 0;
}

.tabs-left .nav-tabs > li:last-child a {
	border-radius: 0 0 0 5px;
}

.tabs-left .nav-tabs > li a {
	border-right: 1px solid #eeeeee;
	border-left: 3px solid #dddddd;
	margin-right: 1px;
	margin-left: -3px;
}

.tabs-left .nav-tabs > li a:hover {
	border-left-color: #555555;
}

.tabs-left .nav-tabs > li.active a,
.tabs-left .nav-tabs > li.active a:hover,
.tabs-left .nav-tabs > li.active a:focus {
	border-left: 3px solid #555555;
	border-right-color: #fff;
}

/* Vertical - Right Side */
.tabs-right .tab-content {
	border-radius: 5px 0 5px 5px;
	border-right: none;
}

.tabs-right .nav-tabs > li {
	margin-left: -1px;
}

.tabs-right .nav-tabs > li:first-child a {
	border-radius: 0 5px 0 0;
}

.tabs-right .nav-tabs > li:last-child a {
	border-radius: 0 0 5px 0;
}

.tabs-right .nav-tabs > li a {
	border-right: 3px solid #dddddd;
	border-left: 1px solid #eeeeee;
	margin-right: 1px;
	margin-left: 1px;
}

.tabs-right .nav-tabs > li a:hover {
	border-right-color: #555555;
}

.tabs-right .nav-tabs > li.active a,
.tabs-right .nav-tabs > li.active a:hover,
.tabs-right .nav-tabs > li.active a:focus {
	border-right: 3px solid #555555;
	border-left: 1px solid #fff;
}

/* states */
html body .tabs-primary .nav-tabs li a,
html body .tabs-primary .nav-tabs li a:hover,
html body .tabs-primary .nav-tabs.nav-justified li a,
html body .tabs-primary .nav-tabs.nav-justified li a:hover {
	color: #cccccc;
}

html body .tabs-primary .nav-tabs li a:hover,
html body .tabs-primary .nav-tabs.nav-justified li a:hover {
	border-top-color: #cccccc;
}

html body .tabs-primary .nav-tabs li.active a,
html body .tabs-primary .nav-tabs li.active a:hover,
html body .tabs-primary .nav-tabs li.active a:focus,
html body .tabs-primary .nav-tabs.nav-justified li.active a,
html body .tabs-primary .nav-tabs.nav-justified li.active a:hover,
html body .tabs-primary .nav-tabs.nav-justified li.active a:focus {
	border-top-color: #cccccc;
	color: #cccccc;
}

html body .tabs-primary.tabs-bottom .nav-tabs li a:hover,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li a:hover {
	border-bottom-color: #cccccc;
}

html body .tabs-primary.tabs-bottom .nav-tabs li.active a,
html body .tabs-primary.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-primary.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
	border-bottom-color: #cccccc;
}

html body .tabs-primary.tabs-vertical.tabs-left li a:hover {
	border-left-color: #cccccc;
}

html body .tabs-primary.tabs-vertical.tabs-left li.active a,
html body .tabs-primary.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-primary.tabs-vertical.tabs-left li.active a:focus {
	border-left-color: #cccccc;
}

html body .tabs-primary.tabs-vertical.tabs-right li a:hover {
	border-right-color: #cccccc;
}

html body .tabs-primary.tabs-vertical.tabs-right li.active a,
html body .tabs-primary.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-primary.tabs-vertical.tabs-right li.active a:focus {
	border-right-color: #cccccc;
}

html body .tabs-success .nav-tabs li a,
html body .tabs-success .nav-tabs li a:hover,
html body .tabs-success .nav-tabs.nav-justified li a,
html body .tabs-success .nav-tabs.nav-justified li a:hover {
	color: #47a447;
}

html body .tabs-success .nav-tabs li a:hover,
html body .tabs-success .nav-tabs.nav-justified li a:hover {
	border-top-color: #47a447;
}

html body .tabs-success .nav-tabs li.active a,
html body .tabs-success .nav-tabs li.active a:hover,
html body .tabs-success .nav-tabs li.active a:focus,
html body .tabs-success .nav-tabs.nav-justified li.active a,
html body .tabs-success .nav-tabs.nav-justified li.active a:hover,
html body .tabs-success .nav-tabs.nav-justified li.active a:focus {
	border-top-color: #47a447;
	color: #47a447;
}

html body .tabs-success.tabs-bottom .nav-tabs li a:hover,
html body .tabs-success.tabs-bottom .nav-tabs.nav-justified li a:hover {
	border-bottom-color: #47a447;
}

html body .tabs-success.tabs-bottom .nav-tabs li.active a,
html body .tabs-success.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-success.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-success.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-success.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-success.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
	border-bottom-color: #47a447;
}

html body .tabs-success.tabs-vertical.tabs-left li a:hover {
	border-left-color: #47a447;
}

html body .tabs-success.tabs-vertical.tabs-left li.active a,
html body .tabs-success.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-success.tabs-vertical.tabs-left li.active a:focus {
	border-left-color: #47a447;
}

html body .tabs-success.tabs-vertical.tabs-right li a:hover {
	border-right-color: #47a447;
}

html body .tabs-success.tabs-vertical.tabs-right li.active a,
html body .tabs-success.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-success.tabs-vertical.tabs-right li.active a:focus {
	border-right-color: #47a447;
}

html body .tabs-warning .nav-tabs li a,
html body .tabs-warning .nav-tabs li a:hover,
html body .tabs-warning .nav-tabs.nav-justified li a,
html body .tabs-warning .nav-tabs.nav-justified li a:hover {
	color: #ed9c28;
}

html body .tabs-warning .nav-tabs li a:hover,
html body .tabs-warning .nav-tabs.nav-justified li a:hover {
	border-top-color: #ed9c28;
}

html body .tabs-warning .nav-tabs li.active a,
html body .tabs-warning .nav-tabs li.active a:hover,
html body .tabs-warning .nav-tabs li.active a:focus,
html body .tabs-warning .nav-tabs.nav-justified li.active a,
html body .tabs-warning .nav-tabs.nav-justified li.active a:hover,
html body .tabs-warning .nav-tabs.nav-justified li.active a:focus {
	border-top-color: #ed9c28;
	color: #ed9c28;
}

html body .tabs-warning.tabs-bottom .nav-tabs li a:hover,
html body .tabs-warning.tabs-bottom .nav-tabs.nav-justified li a:hover {
	border-bottom-color: #ed9c28;
}

html body .tabs-warning.tabs-bottom .nav-tabs li.active a,
html body .tabs-warning.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-warning.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-warning.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-warning.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-warning.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
	border-bottom-color: #ed9c28;
}

html body .tabs-warning.tabs-vertical.tabs-left li a:hover {
	border-left-color: #ed9c28;
}

html body .tabs-warning.tabs-vertical.tabs-left li.active a,
html body .tabs-warning.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-warning.tabs-vertical.tabs-left li.active a:focus {
	border-left-color: #ed9c28;
}

html body .tabs-warning.tabs-vertical.tabs-right li a:hover {
	border-right-color: #ed9c28;
}

html body .tabs-warning.tabs-vertical.tabs-right li.active a,
html body .tabs-warning.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-warning.tabs-vertical.tabs-right li.active a:focus {
	border-right-color: #ed9c28;
}

html body .tabs-danger .nav-tabs li a,
html body .tabs-danger .nav-tabs li a:hover,
html body .tabs-danger .nav-tabs.nav-justified li a,
html body .tabs-danger .nav-tabs.nav-justified li a:hover {
	color: #d2322d;
}

html body .tabs-danger .nav-tabs li a:hover,
html body .tabs-danger .nav-tabs.nav-justified li a:hover {
	border-top-color: #d2322d;
}

html body .tabs-danger .nav-tabs li.active a,
html body .tabs-danger .nav-tabs li.active a:hover,
html body .tabs-danger .nav-tabs li.active a:focus,
html body .tabs-danger .nav-tabs.nav-justified li.active a,
html body .tabs-danger .nav-tabs.nav-justified li.active a:hover,
html body .tabs-danger .nav-tabs.nav-justified li.active a:focus {
	border-top-color: #d2322d;
	color: #d2322d;
}

html body .tabs-danger.tabs-bottom .nav-tabs li a:hover,
html body .tabs-danger.tabs-bottom .nav-tabs.nav-justified li a:hover {
	border-bottom-color: #d2322d;
}

html body .tabs-danger.tabs-bottom .nav-tabs li.active a,
html body .tabs-danger.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-danger.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-danger.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-danger.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-danger.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
	border-bottom-color: #d2322d;
}

html body .tabs-danger.tabs-vertical.tabs-left li a:hover {
	border-left-color: #d2322d;
}

html body .tabs-danger.tabs-vertical.tabs-left li.active a,
html body .tabs-danger.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-danger.tabs-vertical.tabs-left li.active a:focus {
	border-left-color: #d2322d;
}

html body .tabs-danger.tabs-vertical.tabs-right li a:hover {
	border-right-color: #d2322d;
}

html body .tabs-danger.tabs-vertical.tabs-right li.active a,
html body .tabs-danger.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-danger.tabs-vertical.tabs-right li.active a:focus {
	border-right-color: #d2322d;
}

html body .tabs-info .nav-tabs li a,
html body .tabs-info .nav-tabs li a:hover,
html body .tabs-info .nav-tabs.nav-justified li a,
html body .tabs-info .nav-tabs.nav-justified li a:hover {
	color: #5bc0de;
}

html body .tabs-info .nav-tabs li a:hover,
html body .tabs-info .nav-tabs.nav-justified li a:hover {
	border-top-color: #5bc0de;
}

html body .tabs-info .nav-tabs li.active a,
html body .tabs-info .nav-tabs li.active a:hover,
html body .tabs-info .nav-tabs li.active a:focus,
html body .tabs-info .nav-tabs.nav-justified li.active a,
html body .tabs-info .nav-tabs.nav-justified li.active a:hover,
html body .tabs-info .nav-tabs.nav-justified li.active a:focus {
	border-top-color: #5bc0de;
	color: #5bc0de;
}

html body .tabs-info.tabs-bottom .nav-tabs li a:hover,
html body .tabs-info.tabs-bottom .nav-tabs.nav-justified li a:hover {
	border-bottom-color: #5bc0de;
}

html body .tabs-info.tabs-bottom .nav-tabs li.active a,
html body .tabs-info.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-info.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-info.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-info.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-info.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
	border-bottom-color: #5bc0de;
}

html body .tabs-info.tabs-vertical.tabs-left li a:hover {
	border-left-color: #5bc0de;
}

html body .tabs-info.tabs-vertical.tabs-left li.active a,
html body .tabs-info.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-info.tabs-vertical.tabs-left li.active a:focus {
	border-left-color: #5bc0de;
}

html body .tabs-info.tabs-vertical.tabs-right li a:hover {
	border-right-color: #5bc0de;
}

html body .tabs-info.tabs-vertical.tabs-right li.active a,
html body .tabs-info.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-info.tabs-vertical.tabs-right li.active a:focus {
	border-right-color: #5bc0de;
}

html body .tabs-dark .nav-tabs li a,
html body .tabs-dark .nav-tabs li a:hover,
html body .tabs-dark .nav-tabs.nav-justified li a,
html body .tabs-dark .nav-tabs.nav-justified li a:hover {
	color: #171717;
}

html body .tabs-dark .nav-tabs li a:hover,
html body .tabs-dark .nav-tabs.nav-justified li a:hover {
	border-top-color: #171717;
}

html body .tabs-dark .nav-tabs li.active a,
html body .tabs-dark .nav-tabs li.active a:hover,
html body .tabs-dark .nav-tabs li.active a:focus,
html body .tabs-dark .nav-tabs.nav-justified li.active a,
html body .tabs-dark .nav-tabs.nav-justified li.active a:hover,
html body .tabs-dark .nav-tabs.nav-justified li.active a:focus {
	border-top-color: #171717;
	color: #171717;
}

html body .tabs-dark.tabs-bottom .nav-tabs li a:hover,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li a:hover {
	border-bottom-color: #171717;
}

html body .tabs-dark.tabs-bottom .nav-tabs li.active a,
html body .tabs-dark.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-dark.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
	border-bottom-color: #171717;
}

html body .tabs-dark.tabs-vertical.tabs-left li a:hover {
	border-left-color: #171717;
}

html body .tabs-dark.tabs-vertical.tabs-left li.active a,
html body .tabs-dark.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-dark.tabs-vertical.tabs-left li.active a:focus {
	border-left-color: #171717;
}

html body .tabs-dark.tabs-vertical.tabs-right li a:hover {
	border-right-color: #171717;
}

html body .tabs-dark.tabs-vertical.tabs-right li.active a,
html body .tabs-dark.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-dark.tabs-vertical.tabs-right li.active a:focus {
	border-right-color: #171717;
}

/*	Slider - */
.ui-slider.ui-widget-content {
	background: #ebebeb;
	border: none;
}

/*	Sliders - Horizontal */
.ui-slider-horizontal {
	height: 6px;
}

.ui-slider-horizontal .ui-slider-handle {
	top: -7px;
}

/*	Sliders - Vertical */
.ui-slider-vertical {
	display: inline-block;
	width: 6px;
}

.ui-slider-vertical .ui-slider-handle {
	left: -7px;
}

/*	Sliders - UI Handle */
.ui-slider .ui-slider-handle {
	background: #d9d9d9;
	border: 6px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
	cursor: pointer;
	height: 20px;
	width: 20px;
}

.ui-slider .ui-slider-handle:hover {
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3);
}

/*	Sliders - UI Handle (Fix Windows Mobile Devices) */
.ui-slider .ui-slider-handle {
	-ms-touch-action: none;
	touch-action: none;
}

/*	Sliders - Range */
.ui-slider .ui-slider-range {
	background: #d9d9d9;
}

/*	Sliders - Contextual */
.slider-primary .ui-slider-range,
.slider-primary .ui-slider-handle {
	background: #cccccc;
}

.slider-gradient.slider-primary .ui-slider-range,
.slider-gradient.slider-primary .ui-slider-handle {
	background-image: -webkit-linear-gradient(#e6e6e6 0, #cccccc 50%, #b3b3b3 100%);
	background-image: linear-gradient(to, #cccccc 50%, #b3b3b3 100%);
}

.slider-gradient.ui-slider-vertical.slider-primary .ui-slider-range,
.slider-gradient.ui-slider-vertical.slider-primary .ui-slider-handle {
	background-image: -webkit-linear-gradient(left, #e6e6e6 0, #cccccc 50%, #b3b3b3 100%);
	background-image: linear-gradient(to right, #e6e6e6 0, #cccccc 50%, #b3b3b3 100%);
}

.slider-success .ui-slider-range,
.slider-success .ui-slider-handle {
	background: #47a447;
}

.slider-gradient.slider-success .ui-slider-range,
.slider-gradient.slider-success .ui-slider-handle {
	background-image: -webkit-linear-gradient(#63bb63 0, #47a447 50%, #388038 100%);
	background-image: linear-gradient(to, #47a447 50%, #388038 100%);
}

.slider-gradient.ui-slider-vertical.slider-success .ui-slider-range,
.slider-gradient.ui-slider-vertical.slider-success .ui-slider-handle {
	background-image: -webkit-linear-gradient(left, #63bb63 0, #47a447 50%, #388038 100%);
	background-image: linear-gradient(to right, #63bb63 0, #47a447 50%, #388038 100%);
}

.slider-warning .ui-slider-range,
.slider-warning .ui-slider-handle {
	background: #ed9c28;
}

.slider-gradient.slider-warning .ui-slider-range,
.slider-gradient.slider-warning .ui-slider-handle {
	background-image: -webkit-linear-gradient(#f1b257 0, #ed9c28 50%, #d18211 100%);
	background-image: linear-gradient(to, #ed9c28 50%, #d18211 100%);
}

.slider-gradient.ui-slider-vertical.slider-warning .ui-slider-range,
.slider-gradient.ui-slider-vertical.slider-warning .ui-slider-handle {
	background-image: -webkit-linear-gradient(left, #f1b257 0, #ed9c28 50%, #d18211 100%);
	background-image: linear-gradient(to right, #f1b257 0, #ed9c28 50%, #d18211 100%);
}

.slider-danger .ui-slider-range,
.slider-danger .ui-slider-handle {
	background: #d2322d;
}

.slider-gradient.slider-danger .ui-slider-range,
.slider-gradient.slider-danger .ui-slider-handle {
	background-image: -webkit-linear-gradient(#db5b57 0, #d2322d 50%, #a82824 100%);
	background-image: linear-gradient(to, #d2322d 50%, #a82824 100%);
}

.slider-gradient.ui-slider-vertical.slider-danger .ui-slider-range,
.slider-gradient.ui-slider-vertical.slider-danger .ui-slider-handle {
	background-image: -webkit-linear-gradient(left, #db5b57 0, #d2322d 50%, #a82824 100%);
	background-image: linear-gradient(to right, #db5b57 0, #d2322d 50%, #a82824 100%);
}

.slider-info .ui-slider-range,
.slider-info .ui-slider-handle {
	background: #5bc0de;
}

.slider-gradient.slider-info .ui-slider-range,
.slider-gradient.slider-info .ui-slider-handle {
	background-image: -webkit-linear-gradient(#85d0e7 0, #5bc0de 50%, #31b0d5 100%);
	background-image: linear-gradient(to, #5bc0de 50%, #31b0d5 100%);
}

.slider-gradient.ui-slider-vertical.slider-info .ui-slider-range,
.slider-gradient.ui-slider-vertical.slider-info .ui-slider-handle {
	background-image: -webkit-linear-gradient(left, #85d0e7 0, #5bc0de 50%, #31b0d5 100%);
	background-image: linear-gradient(to right, #85d0e7 0, #5bc0de 50%, #31b0d5 100%);
}

.slider-dark .ui-slider-range,
.slider-dark .ui-slider-handle {
	background: #171717;
}

.slider-gradient.slider-dark .ui-slider-range,
.slider-gradient.slider-dark .ui-slider-handle {
	background-image: -webkit-linear-gradient(#313131 0, #171717 50%, black 100%);
	background-image: linear-gradient(to, #171717 50%, black 100%);
}

.slider-gradient.ui-slider-vertical.slider-dark .ui-slider-range,
.slider-gradient.ui-slider-vertical.slider-dark .ui-slider-handle {
	background-image: -webkit-linear-gradient(left, #313131 0, #171717 50%, black 100%);
	background-image: linear-gradient(to right, #313131 0, #171717 50%, black 100%);
}

/* Alert new states */
.alert-default {
	background-color: #ebebeb;
	border-color: #e3e3e3;
	color: #6c6c6c;
}

.alert-default .alert-link {
	color: #454545;
}

.alert-primary {
	background-color: var(--custom-primary-color) !important;
	border-color: transparent !important;
	color: var(--custom-on-primary-color)!important;
}

.btn-primary {
	background-color: var(--custom-primary-color) !important;
	border-color: transparent !important;
	color: var(--custom-on-primary-color)!important;
}

.btn-danger {
	background-color: var(--custom-error-color) !important;
	border-color: transparent !important;
	color: var(--custom-on-error-color)!important;
}

.bg-primary {
	background-color: var(--custom-primary-color) !important;
	border-color: transparent !important;
	color: var(--custom-on-primary-color)!important;
}

.btn-outline-primary{
	border-color: var(--custom-primary-color);
	color: var(--custom-primary-color);
}
.btn-outline-primary:hover, .btn-outline-primary:focus{
	border-color: var(--custom-primary-color)!important;
	color: var(--custom-on-primary-color) !important;
}

.btn-check:checked+.btn,
:not(.btn-check)+.btn:active,
.btn:first-child:active,
.btn.active,
.btn.show {
	color: var(--custom-on-primary-color) !important;
	background-color: var(--custom-primary-color) !important;
	border-color: var(--custom-primary-color) !important;
}

.dropdown-toggle .btn.show{
	background-color: transparent !important;
	border-color: transparent !important;
}


.selectize-control.multi .selectize-input>div.active {
	background: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
}

.userbox .dropdown-menu.show a:hover {
	background: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
}

.daterangepicker .ranges li.active {
	background: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
}

.page-header h2 {
	border-bottom-color: var(--custom-primary-color) !important;
}

.nav-link{
	color: var(--custom-on-secondary-color) !important;
}

.nav-link:hover, .nav-link:focus{
	color: var(--custom-primary-color) !important;
}

a, .btn-link {
	color: var(--custom-primary-color) !important;
}

.sidebar-left .sidebar-header .sidebar-toggle:hover i {
	color: var(--custom-primary-color) !important;
}

.nav-pills .nav-link{
	color: var(--custom-primary-color) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background-color: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
}

.dropdown-menu a{
	color: var(--custom-on-background-color) !important;
}

#primary-stroke{
	stroke: var(--custom-primary-color)!important;
}


.alert-primary .alert-link {
	color: #999999;
}

.alert-dark {
	background-color: #313131;
	border-color: black;
	color: #cacaca;
}

.alert-dark .alert-link {
	color: #f0f0f0;
}

/* Progress bar overwrite style */
.progress-bar {
	background: #cccccc;
}

.progress .progress-bar {
	box-shadow: none;
	border-radius: 4px;
}

/* Progress bar default style */
.progress {
	background: #474453;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4) inset;
}

/* Progress bar light style */
.progress.light {
	background: #f6f7f8;
	background: -webkit-linear-gradient(#f6f7f8, #f6f7f8 10%, whitesmoke 11%);
	background: linear-gradient(#f6f7f8, #f6f7f8 10%, whitesmoke 11%);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
}

/* Progress bar roundness generic */
.progress-squared,
.progress-squared .progress-bar {
	border-radius: 0 !important;
}

/* Progress bar sizes */
.progress-xs {
	height: 7px;
}

.progress-xs,
.progress-xs .progress-bar {
	border-radius: 7px;
}

.progress-xs .progress-bar {
	direction: ltr !important;
	text-indent: -9999px;
}

.progress-xs.progress-half-rounded,
.progress-xs.progress-half-rounded .progress-bar {
	border-radius: 2px;
}

.progress-xs.progress-striped .progress-bar {
	background-size: 15px 15px;
}

.progress-sm {
	border-radius: 12px;
	height: 12px;
}

.progress-sm,
.progress-sm .progress-bar {
	border-radius: 12px;
}

.progress-sm .progress-bar {
	font-size: 10px;
	line-height: 12px;
}

.progress-sm.progress-half-rounded,
.progress-sm.progress-half-rounded .progress-bar {
	border-radius: 4px;
}

.progress-sm.progress-striped .progress-bar {
	background-size: 20px 20px;
}

.progress-md {
	border-radius: 14px;
	height: 14px;
}

.progress-md,
.progress-md .progress-bar {
	border-radius: 14px;
}

.progress-md .progress-bar {
	font-size: 11px;
	line-height: 14px;
}

.progress-md.progress-half-rounded,
.progress-md.progress-half-rounded .progress-bar {
	border-radius: 4px;
}

.progress-md.progress-striped .progress-bar {
	background-size: 25px 25px;
}

.progress-lg {
	border-radius: 16px;
	height: 16px;
}

.progress-lg,
.progress-lg .progress-bar {
	border-radius: 16px;
}

.progress-lg .progress-bar {
	line-height: 16px;
}

.progress-lg.progress-half-rounded,
.progress-lg.progress-half-rounded .progress-bar {
	border-radius: 5px;
}

.progress-lg.progress-striped .progress-bar {
	background-size: 30px 30px;
}

.progress-xl {
	border-radius: 18px;
	height: 18px;
}

.progress-xl,
.progress-xl .progress-bar {
	border-radius: 18px;
}

.progress-xl .progress-bar {
	line-height: 18px;
}

.progress-xl.progress-half-rounded,
.progress-xl.progress-half-rounded .progress-bar {
	border-radius: 6px;
}

.progress-xl.progress-striped .progress-bar {
	background-size: 35px 35px;
}

/* Progress bar states */
.progress .progress-bar-primary {
	background-color: #cccccc;
}

.progress .progress-bar-success {
	background-color: #47a447;
}

.progress .progress-bar-warning {
	background-color: #ed9c28;
}

.progress .progress-bar-danger {
	background-color: #d2322d;
}

.progress .progress-bar-info {
	background-color: #5bc0de;
}

.progress .progress-bar-dark {
	background-color: #171717;
}

.circular-bar {
	margin-bottom: 25px;
}

.circular-bar .circular-bar-chart {
	position: relative;
}

.circular-bar strong {
	display: block;
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	position: absolute;
	top: 35%;
	width: 80%;
	left: 10%;
	text-align: center;
}

.circular-bar label {
	display: block;
	font-weight: 100;
	font-size: 17px;
	line-height: 20px;
	position: absolute;
	top: 50%;
	width: 80%;
	left: 10%;
	text-align: center;
}

.card-group .card-accordion {
	border: 1px solid #ddd;
}

.card-group .card-accordion .card-header {
	border-radius: 5px;
	padding: 0;
}

.card-group .card-accordion .card-header a {
	color: #cccccc;
	display: block;
	padding: 15px;
	font-size: 16px;
	border-radius: 5px;
}

.card-group .card-accordion .card-header a:hover,
.card-group .card-accordion .card-header a:focus {
	text-decoration: none;
}

.card-group .card-accordion .card-header a .fa {
	margin-right: 4px;
}

.card-group .card-accordion .card-body {
	border-radius: 0 0 5px 5px;
}

.card-group .card-accordion.card-accordion-first {
	border-radius: 0 0 5px 5px;
}

.card-group .card-accordion.card-accordion-first .card-header {
	border-radius: 0 0 5px 5px;
}

.card-group .card-accordion-primary .card-header .card-title a {
	background: #cccccc;
	color: #fff;
}

.card-group .card-accordion-success .card-header .card-title a {
	background: #47a447;
	color: #fff;
}

.card-group .card-accordion-warning .card-header .card-title a {
	background: #ed9c28;
	color: #fff;
}

.card-group .card-accordion-danger .card-header .card-title a {
	background: #d2322d;
	color: #fff;
}

.card-group .card-accordion-info .card-header .card-title a {
	background: #5bc0de;
	color: #fff;
}

.card-group .card-accordion-dark .card-header .card-title a {
	background: #171717;
	color: #fff;
}

.chart {
	width: 100%;
}

.chart.chart-xs {
	height: 150px;
}

.chart.chart-sm {
	height: 184px;
}

.chart.chart-md {
	height: 350px;
}

.chart.chart-lg {
	height: 500px;
}

#flotTip {
	padding: 4px 8px;
	background-color: #000;
	z-index: 100;
	color: #fff;
	opacity: 0.7;
	font-size: 11px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.jqstooltip {
	min-width: 30px;
	min-height: 25px;
	border: 0 !important;
	height: auto !important;
	width: auto !important;
}

.circular-bar {
	margin: 25px 0;
}

.circular-bar .circular-bar-chart {
	position: relative;
}

.circular-bar strong {
	display: block;
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	position: absolute;
	top: 35%;
	width: 80%;
	left: 10%;
	text-align: center;
}

.circular-bar label {
	display: block;
	font-weight: 100;
	font-size: 17px;
	line-height: 20px;
	position: absolute;
	top: 50%;
	width: 80%;
	left: 10%;
	text-align: center;
}

.circular-bar.circular-bar-xs {
	width: 50px;
}

.circular-bar.circular-bar-xs strong {
	display: none;
}

.circular-bar.circular-bar-xs label {
	font-size: 11px;
	left: 0;
	text-align: center;
	top: 28%;
	width: 100%;
}

.small-chart-wrapper {
	display: inline-block;
	margin: 10px 15px;
	width: 100%;
}

.small-chart-wrapper .small-chart {
	display: block;
	float: left;
	margin-bottom: 8px;
	min-width: 80px;
}

.small-chart-wrapper .small-chart-info {
	display: inline-block;
	padding: 0 0 0 10px;
}

.small-chart-wrapper .small-chart-info label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	color: #a0a0a0;
	padding: 0;
	margin: 0;
	line-height: 15px;
}

.small-chart-wrapper .small-chart-info strong {
	display: block;
	font-size: 13px;
	padding: 0;
	margin: 0;
	line-height: 15px;
}

.small-chart-wrapper + .small-chart-wrapper {
	margin-left: 25px;
}

@media only screen and (max-width: 767px) {
	.small-chart-wrapper {
		margin-right: 0;
		margin-left: 0;
		text-align: center;
	}

	.small-chart-wrapper .small-chart {
		width: 100%;
		text-align: center;
	}

	.small-chart-wrapper .small-chart-info {
		padding-left: 0;
	}
}

.chart-data-selector {
	visibility: hidden;
	max-height: 255px;
	padding: 6px;
}

.chart-data-selector h2 {
	color: #33353f;
	font-size: 20px;
	line-height: 20px;
	margin: 0;
	padding: 0;
	text-transform: none;
	letter-spacing: -1px;
}

.chart-data-selector h2 .multiselect {
	background: #f6f6f6;
	border: 0 none;
	font-size: 20px;
	font-weight: 600;
	margin: -4px 0 0 4px !important;
	padding: 3px 12px 3px 8px;
}

.chart-data-selector h2 .multiselect:hover,
.chart-data-selector h2 .multiselect:focus,
.chart-data-selector h2 .multiselect:active {
	text-decoration: none;
}

.chart-data-selector h2 .multiselect-container {
	margin: 0 0 0 4px;
	min-width: 120%;
}

.chart-data-selector .chart-data-selector-items {
	position: relative;
	overflow: hidden;
}

.chart-data-selector .chart-data-selector-items .chart-active {
	visibility: hidden;
}

.chart-data-selector .chart-data-selector-items .chart-hidden {
	visibility: hidden;
}

.chart-data-selector.ready {
	max-height: none;
	visibility: visible;
}

.chart-data-selector.ready .chart-active {
	visibility: visible;
	position: relative;
	z-index: 2;
}

.chart-data-selector.ready .chart-hidden {
	visibility: hidden;
	position: absolute;
	z-index: 1;
	top: -9999px;
}

.dd {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 20px;
}

.dd-list {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dd-list .dd-list {
	padding-left: 30px;
}

.dd-collapsed .dd-list {
	display: none;
}

.dd-item,
.dd-empty,
.dd-placeholder {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 20px;
	font-size: 13px;
	line-height: 20px;
}

.dd-handle {
	display: block;
	height: 34px;
	margin: 5px 0;
	padding: 6px 10px;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid #ccc;
	background: #f6f6f6;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.dd-handle:hover {
	color: #cccccc;
	background: #fff;
}

.dd-item > button {
	display: block;
	position: relative;
	cursor: pointer;
	float: left;
	width: 25px;
	height: 20px;
	margin: 7px 0;
	padding: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	background: transparent;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
}

.dd-item > button:before {
	content: "+";
	display: block;
	position: absolute;
	width: 100%;
	text-align: center;
	text-indent: 0;
}

.dd-item > button[data-action="collapse"]:before {
	content: "-";
}

.dd-placeholder {
	margin: 5px 0;
	padding: 0;
	min-height: 30px;
	background: white;
	border: 1px dashed #cccccc;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.dd-empty {
	margin: 5px 0;
	padding: 0;
	min-height: 30px;
	background: #f2fbff;
	border: 1px dashed #b6bcbf;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px dashed #bbb;
	min-height: 100px;
	background-color: #e5e5e5;
	background-image: -webkit-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), -webkit-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);
	background-image: -moz-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), -moz-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);
	background-image: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);
	background-size: 60px 60px;
	background-position: 0 0, 30px 30px;
}

.dd-dragel {
	position: absolute;
	pointer-events: none;
	z-index: 9999;
}

.dd-dragel > .dd-item .dd-handle {
	margin-top: 0;
}

.dd-dragel .dd-handle {
	-webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}
/* 
.toggle {
	margin: 10px 0 0;
	position: relative;
	clear: both;
}

.toggle > input {
	cursor: pointer;
	filter: alpha(opacity=0);
	height: 45px;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}

.toggle > label {
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
	background: #f4f4f4;
	border-left: 3px solid #cccccc;
	border-radius: 5px;
	color: #cccccc;
	display: block;
	font-size: 1.1em;
	min-height: 20px;
	padding: 12px 20px 12px 10px;
	position: relative;
	cursor: pointer;
	font-weight: 400;
}

.toggle > label:-moz-selection {
	background: none;
}

.toggle > label i.fa-minus {
	display: none;
}

.toggle > label i.fa-plus {
	display: inline;
}

.toggle > label:selection {
	background: none;
}

.toggle > label:before {
	border: 6px solid transparent;
	border-left-color: inherit;
	content: "";
	margin-top: -6px;
	position: absolute;
	right: 4px;
	top: 50%;
}

.toggle > label:hover {
	background: var(--custom-background-color);
}

.toggle > label + p {
	display: block;
	overflow: hidden;
	padding-left: 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	height: 25px;
}

.toggle > label i {
	font-size: 0.7em;
	margin-right: 8px;
	position: relative;
	top: -1px;
}

.toggle > .toggle-content {
	display: none;
}

.toggle > .toggle-content > p {
	margin-bottom: 0;
	padding: 10px 0;
}

.toggle.active i.fa-minus {
	display: inline;
	color: #fff;
}

.toggle.active i.fa-plus {
	display: none;
}

.toggle.active > label {
	background: #cccccc;
	border-color: #cccccc;
	color: #fff;
}

.toggle.active > label:before {
	border: 6px solid transparent;
	border-top-color: #fff;
	margin-top: -3px;
	right: 10px;
}

.toggle.active > p {
	white-space: normal;
}

.toggle > p.preview-active {
	height: auto;
	white-space: normal;
} */

.label-default {
	background: #ebebeb;
	color: var(--custom-on-secondary-color);
}

.label-sm {
	font-size: 50%;
}

.label-primary {
	background-color: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
}



.label-success {
	background: #47a447;
	color: white;
}

.label-warning {
	background: #ed9c28;
	color: white;
}

.label-danger {
	background: #d2322d;
	color: white;
}

.label-info {
	background: #5bc0de;
	color: white;
}

.label-dark {
	background: #171717;
	color: white;
}

.mfp-bg {
	z-index: 10000;
}

.mfp-wrap {
	z-index: 10001;
}

.modal-block {
	background: transparent;
	padding: 0;
	text-align: left;
	max-width: 600px;
	margin: 40px auto;
	position: relative;
}

.modal-block.modal-block-xs {
	max-width: 200px;
}

.modal-block.modal-block-sm {
	max-width: 400px;
}

.modal-block.modal-block-md {
	max-width: 600px;
}

.modal-block.modal-block-lg {
	max-width: 900px;
}

.modal-block.modal-block-full {
	max-width: 98%;
}

.modal-block.modal-header-color .card-header h2 {
	color: #fff;
}

.modal-block.modal-full-color {
	color: #fff;
}

.modal-block.modal-full-color .card-header {
	border: 0;
}

.modal-block.modal-full-color .card-header h2 {
	color: #fff;
}

.modal-block.modal-full-color .card-footer {
	border: 0;
}

.modal-block.modal-full-color .card-body {
	background-color: transparent;
}

.modal-block.modal-full-color .fa {
	color: #fff !important;
}

/* Modal Wrapper */
.modal-wrapper {
	position: relative;
	padding: 25px 0;
}

/* Modal Icon */
.modal-icon {
	float: left;
	width: 20%;
	text-align: center;
}

.modal-icon .fa {
	font-size: 52px;
	position: relative;
	top: -10px;
	color: #cccccc;
}

.modal-icon.center {
	float: none;
	width: auto;
	padding-top: 20px;
}

.modal-icon.center + .modal-text {
	float: none;
	width: auto;
}

.modal-icon + .modal-text {
	float: left;
	width: 80%;
}

/* Modal Text */
.modal-text {
	padding: 0 5px;
}

.modal-text h1,
.modal-text h2,
.modal-text h3,
.modal-text h4,
.modal-text h5,
.modal-text h6 {
	padding: 0;
	margin: -7px 0 4px 0;
}

.modal-block-primary .fa {
	color: #cccccc;
}

.modal-block-primary.modal-header-color .card-header {
	background-color: #cccccc;
}

.modal-block-primary.modal-full-color .panel {
	background-color: #e0e0e0;
}

.modal-block-primary.modal-full-color .card-header {
	background-color: #cccccc;
}

.modal-block-primary.modal-full-color .card-footer {
	background-color: #e0e0e0;
}

.modal-block-success .fa {
	color: #47a447;
}

.modal-block-success.modal-header-color .card-header {
	background-color: #47a447;
}

.modal-block-success.modal-full-color .panel {
	background-color: #5cb85c;
}

.modal-block-success.modal-full-color .card-header {
	background-color: #47a447;
}

.modal-block-success.modal-full-color .card-footer {
	background-color: #5cb85c;
}

.modal-block-warning .fa {
	color: #ed9c28;
}

.modal-block-warning.modal-header-color .card-header {
	background-color: #ed9c28;
}

.modal-block-warning.modal-full-color .panel {
	background-color: #f0ad4e;
}

.modal-block-warning.modal-full-color .card-header {
	background-color: #ed9c28;
}

.modal-block-warning.modal-full-color .card-footer {
	background-color: #f0ad4e;
}

.modal-block-danger .fa {
	color: #d2322d;
}

.modal-block-danger.modal-header-color .card-header {
	background-color: #d2322d;
}

.modal-block-danger.modal-full-color .panel {
	background-color: #d9534f;
}

.modal-block-danger.modal-full-color .card-header {
	background-color: #d2322d;
}

.modal-block-danger.modal-full-color .card-footer {
	background-color: #d9534f;
}

.modal-block-info .fa {
	color: #5bc0de;
}

.modal-block-info.modal-header-color .card-header {
	background-color: #5bc0de;
}

.modal-block-info.modal-full-color .panel {
	background-color: #7dcde5;
}

.modal-block-info.modal-full-color .card-header {
	background-color: #5bc0de;
}

.modal-block-info.modal-full-color .card-footer {
	background-color: #7dcde5;
}

.modal-block-dark .fa {
	color: #171717;
}

.modal-block-dark.modal-header-color .card-header {
	background-color: #171717;
}

.modal-block-dark.modal-full-color .panel {
	background-color: #2b2b2b;
}

.modal-block-dark.modal-full-color .card-header {
	background-color: #171717;
}

.modal-block-dark.modal-full-color .card-footer {
	background-color: #2b2b2b;
}

/* Close */
.mfp-close,
.mfp-close-btn-in .mfp-close {
	font-family: "DM Sans", "Open Sans", Arial, sans-serif;
	font-weight: 600;
	font-size: 22px;
	color: #838383;
}

/* No Margins */
.mfp-no-margins img.mfp-img {
	padding: 0;
}

.mfp-no-margins .mfp-figure:after {
	top: 0;
	bottom: 0;
}

.mfp-no-margins .mfp-container {
	padding: 0;
}

/* Zoom */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0.001;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
	opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

/* Animnate */
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
	opacity: 0.001;
	/* Chrome opacity transition bug */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(600px) rotateX(0);
	-moz-transform: translateY(0) perspective(600px) rotateX(0);
	-ms-transform: translateY(0) perspective(600px) rotateX(0);
	-o-transform: translateY(0) perspective(600px) rotateX(0);
	transform: translateY(0) perspective(600px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
	opacity: 0.01;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

/* Dialog */
.dialog {
	background: white;
	padding: 20px 30px;
	text-align: left;
	margin: 40px auto;
	position: relative;
	max-width: 600px;
}

.dialog.dialog-xs {
	max-width: 200px;
}

.dialog.dialog-sm {
	max-width: 400px;
}

.dialog.dialog-md {
	max-width: 600px;
}

.dialog.dialog-lg {
	max-width: 900px;
}

/* White Popup Block */
.white-popup-block {
	background: #fff;
	padding: 20px 30px;
	text-align: left;
	max-width: 600px;
	margin: 40px auto;
	position: relative;
}

.white-popup-block.white-popup-block-xs {
	max-width: 200px;
}

.white-popup-block.white-popup-block-sm {
	max-width: 400px;
}

.white-popup-block.white-popup-block-md {
	max-width: 600px;
}

.white-popup-block.white-popup-block-lg {
	max-width: 900px;
}

/* Widget - Widget Toggle/Expand */
.widget-toggle-expand .widget-header {
	position: relative;
	margin: 0;
	padding: 5px 0;
}

.widget-toggle-expand .widget-header h6 {
	font-size: 13px;
	font-size: 1.3rem;
	margin: 0;
	padding: 0;
}

.widget-toggle-expand .widget-header .widget-toggle {
	font-size: 21px;
	font-size: 2.1rem;
	line-height: 21px;
	line-height: 2.1rem;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	text-align: center;
	color: #b4b4b4;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	transition-timing-function: linear;
}

.widget-toggle-expand.widget-collapsed .widget-content-expanded {
	display: none;
}

.widget-toggle-expand.widget-collapsed .widget-header .widget-toggle {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

/* Widget - Simple User List */
/* ul.simple-user-list {
	list-style: none;
	padding: 0;
}

ul.simple-user-list li {
	margin: 0 0 20px;
}

ul.simple-user-list li .image {
	float: left;
	margin: 0 10px 0 0;
}

ul.simple-user-list li .title {
	color: #000011;
	display: block;
	line-height: 1.334;
}

ul.simple-user-list li .message {
	display: block;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 1.334;
} */

/* Widget - Simple Post List */
ul.simple-post-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.simple-post-list li {
	border-bottom: 1px dotted #e2e2e2;
	padding: 15px 0;
}

ul.simple-post-list li:after {
	content: "";
	display: table;
	clear: both;
}

ul.simple-post-list li::last-child {
	border-bottom: 0;
}

ul.simple-post-list li .post-image {
	float: left;
	margin-right: 12px;
}

ul.simple-post-list li .post-meta {
	color: #888;
	font-size: 0.8em;
}

ul.simple-post-list li:last-child {
	border-bottom: none;
}

/* Widget - Simple Todo List */
ul.simple-todo-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.simple-todo-list li {
	position: relative;
	padding: 0 0 0 20px;
}

ul.simple-todo-list li.completed {
	color: #a7a7a7;
}

ul.simple-todo-list li.completed:before {
	position: absolute;
	top: 3px;
	left: 0;
	font-family: FontAwesome;
	content: "\f00c";
	z-index: 1;
}

/* Widget - Social Icons */
.social-icons-list {
	display: block;
	margin: 0;
	padding: 0;
}

.social-icons-list a {
	background: #cccccc;
	border-radius: 25px;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	text-align: center;
	width: 30px;
}

.social-icons-list a:hover {
	text-decoration: none;
}

.social-icons-list a span {
	display: none;
}

.social-icons-list a i {
	font-size: 13.5px;
	font-size: 1.35rem;
	color: #fff;
	font-weight: normal;
}

/* Widget - Simple Compose Box */
.simple-compose-box {
	border: 1px solid #d1d1d1;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;
}

.simple-compose-box textarea {
	background-color: transparent;
	display: block;
	width: 100%;
	padding: 10px 10px 5px;
	border: 0;
	resize: none;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.simple-compose-box textarea:focus {
	border: 0 none;
	outline: none;
}

.simple-compose-box .compose-box-footer {
	background-color: #f6f7f8;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}

.simple-compose-box .compose-box-footer:after {
	content: "";
	display: table;
	clear: both;
}

.simple-compose-box .compose-box-footer .compose-toolbar {
	list-style: none;
	margin: 0;
	padding: 0 3px;
	float: left;
}

.simple-compose-box .compose-box-footer .compose-toolbar li {
	display: inline-block;
}

.simple-compose-box .compose-box-footer .compose-toolbar li a {
	display: block;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	width: 30px;
	color: #b3b7bd;
}

.simple-compose-box .compose-box-footer .compose-toolbar li a:hover {
	background-color: #e8eaed;
}

.simple-compose-box .compose-box-footer .compose-btn {
	list-style: none;
	margin: 0;
	padding: 3px;
	float: right;
}

/* Widget - Simple Card List */
ul.simple-card-list {
	list-style: none;
	padding: 0;
}

ul.simple-card-list li {
	padding: 10px 15px;
	margin: 15px 0;
	-webkit-border-radius: 7px;
	border-radius: 7px;
}

ul.simple-card-list li h3 {
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 600;
	margin: 0;
}

ul.simple-card-list li p {
	margin: 0;
	opacity: 0.7;
}

.simple-card-list li.primary {
	background: #cccccc;
	color: white;
}

.simple-card-list li.success {
	background: #47a447;
	color: white;
}

.simple-card-list li.warning {
	background: #ed9c28;
	color: white;
}

.simple-card-list li.danger {
	background: #d2322d;
	color: white;
}

.simple-card-list li.info {
	background: #5bc0de;
	color: white;
}

.simple-card-list li.dark {
	background: #171717;
	color: white;
}

div.simple-card-list {
	display: table;
	width: 100%;
}

div.simple-card-list .card {
	display: table-cell;
}

div.simple-card-list .card .card-content {
	background-color: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin: 0 7px;
	padding: 5px;
}

div.simple-card-list .card h3 {
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 600;
	margin: 0;
}

div.simple-card-list .card p {
	margin: 0;
	opacity: 0.7;
}

/* Widget - Simple Button List */
ul.simple-bullet-list {
	list-style: none;
	padding: 0;
}

ul.simple-bullet-list li {
	position: relative;
	padding: 0 0 0 20px;
	margin: 0 0 10px;
}

ul.simple-bullet-list li:before {
	border: 6px solid #cccccc;
	border-radius: 100px;
	content: "";
	display: inline-block;
	left: 0;
	margin: 0;
	position: absolute;
	top: 5px;
	z-index: 2;
}

ul.simple-bullet-list li .title {
	display: block;
	font-weight: 700;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.4;
	color: #171717;
}

ul.simple-bullet-list li .description {
	display: block;
	color: #999999;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 1.334;
}

ul.simple-bullet-list li.red:before {
	border-color: #d64b4b;
}

ul.simple-bullet-list li.green:before {
	border-color: #4dd79c;
}

ul.simple-bullet-list li.blue:before {
	border-color: #0090d9;
}

ul.simple-bullet-list li.orange:before {
	border-color: #e2a917;
}

/* Widget - Summary */
.widget-summary {
	display: table;
	width: 100%;
}

.widget-summary:after {
	content: "";
	display: table;
	clear: both;
}

.widget-summary .widget-summary-col {
	display: table-cell;
	vertical-align: top;
	width: 100%;
}

.widget-summary .widget-summary-col.widget-summary-col-icon {
	width: 1%;
}

.widget-summary .summary-icon {
	margin-right: 15px;
	font-size: 42px;
	font-size: 4.2rem;
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	color: #fff;
	-webkit-border-radius: 55px;
	border-radius: 55px;
}

.widget-summary .summary {
	min-height: 65px;
	word-break: break-all;
}

.widget-summary .summary .title {
	margin: 0;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 22px;
	line-height: 2.2rem;
	color: #333333;
	font-weight: 500;
}

.widget-summary .summary .info {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 30px;
	line-height: 3rem;
}

.widget-summary .summary .info span {
	vertical-align: middle;
}

.widget-summary .summary .amount {
	margin-right: 0.2em;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 600;
	color: #333333;
	vertical-align: middle;
}

.widget-summary .summary-footer {
	padding: 5px 0 0;
	border-top: 1px dotted #ddd;
	text-align: right;
}

.bg-primary .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-primary .widget-summary .summary .title,
.bg-primary .widget-summary .summary .amount {
	color: white;
}

.bg-primary .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-primary .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-secondary .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-secondary .widget-summary .summary .title,
.bg-secondary .widget-summary .summary .amount {
	color: white;
}

.bg-secondary .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-secondary .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-tertiary .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-tertiary .widget-summary .summary .title,
.bg-tertiary .widget-summary .summary .amount {
	color: white;
}

.bg-tertiary .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-tertiary .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-quartenary .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-quartenary .widget-summary .summary .title,
.bg-quartenary .widget-summary .summary .amount {
	color: white;
}

.bg-quartenary .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-quartenary .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-success .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-success .widget-summary .summary .title,
.bg-success .widget-summary .summary .amount {
	color: white;
}

.bg-success .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-success .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-warning .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-warning .widget-summary .summary .title,
.bg-warning .widget-summary .summary .amount {
	color: white;
}

.bg-warning .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-warning .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-danger .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-danger .widget-summary .summary .title,
.bg-danger .widget-summary .summary .amount {
	color: white;
}

.bg-danger .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-danger .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-info .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-info .widget-summary .summary .title,
.bg-info .widget-summary .summary .amount {
	color: white;
}

.bg-info .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-info .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

.bg-dark .widget-summary .summary-icon {
	background-color: rgba(0, 0, 0, 0.1);
}

.bg-dark .widget-summary .summary .title,
.bg-dark .widget-summary .summary .amount {
	color: white;
}

.bg-dark .widget-summary .summary-footer {
	border-top: 1px solid #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-dark .widget-summary .summary-footer a {
	color: white;
	opacity: 0.6;
}

@media only screen and (min-width: 480px) {
	.widget-summary.widget-summary-xlg {
		padding: 5px 0;
	}

	.widget-summary.widget-summary-xlg .summary-icon {
		width: 110px;
		height: 110px;
		line-height: 110px;
		font-size: 48px;
		font-size: 4.8rem;
	}

	.widget-summary.widget-summary-xlg .summary {
		min-height: 80px;
	}

	.widget-summary.widget-summary-xlg .summary .title {
		font-size: 20px;
		font-size: 2rem;
		line-height: 28px;
		line-height: 2.8rem;
	}

	.widget-summary.widget-summary-xlg .summary .info {
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 30px;
		line-height: 3rem;
	}

	.widget-summary.widget-summary-xlg .summary .amount {
		font-size: 28px;
		font-size: 2.8rem;
	}
}

.widget-summary.widget-summary-lg {
	padding: 0;
}

.widget-summary.widget-summary-lg .summary-icon {
	width: 90px;
	height: 90px;
	line-height: 90px;
	font-size: 42px;
	font-size: 4.2rem;
}

.widget-summary.widget-summary-lg .summary {
	min-height: 65px;
}

.widget-summary.widget-summary-lg .summary .title {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 22px;
	line-height: 2.2rem;
}

.widget-summary.widget-summary-lg .summary .info {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 30px;
	line-height: 3rem;
}

.widget-summary.widget-summary-lg .summary .amount {
	font-size: 24px;
	font-size: 2.4rem;
}

.widget-summary.widget-summary-md {
	padding: 0;
}

.widget-summary.widget-summary-md .summary-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 32px;
	font-size: 3.2rem;
}

.widget-summary.widget-summary-md .summary {
	min-height: 0;
	margin-top: 12px;
}

.widget-summary.widget-summary-md .summary .title {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 18px;
	line-height: 1.8rem;
}

.widget-summary.widget-summary-md .summary .info {
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 22px;
	line-height: 2.2rem;
}

.widget-summary.widget-summary-md .summary .amount {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
}

.widget-summary.widget-summary-md .summary-footer {
	display: none;
}

.widget-summary.widget-summary-sm {
	padding: 0;
}

.widget-summary.widget-summary-sm .summary-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 22px;
	font-size: 2.2rem;
}

.widget-summary.widget-summary-sm .summary {
	min-height: 0;
	margin-top: 4px;
}

.widget-summary.widget-summary-sm .summary .title {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 18px;
	line-height: 1.8rem;
}

.widget-summary.widget-summary-sm .summary .info {
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 18px;
	line-height: 1.8rem;
}

.widget-summary.widget-summary-sm .summary .amount {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
}

.widget-summary.widget-summary-sm .summary-footer {
	display: none;
}

.widget-summary.widget-summary-xs {
	padding: 0;
}

.widget-summary.widget-summary-xs .summary-icon {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	font-size: 1.8rem;
}

.widget-summary.widget-summary-xs .summary {
	min-height: 0;
}

.widget-summary.widget-summary-xs .summary .title {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 40px;
}

.widget-summary.widget-summary-xs .summary .info {
	display: none;
}

.widget-summary.widget-summary-xs .summary-footer {
	display: none;
}

/* Widget - Todo List */
ul.widget-todo-list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

ul.widget-todo-list li {
	border-bottom: 1px dotted #ddd;
	padding: 15px 15px 15px 0;
	position: relative;
}

ul.widget-todo-list li label.line-through span {
	text-decoration: line-through;
}

ul.widget-todo-list li .checkbox-custom {
	margin-bottom: 0;
}

ul.widget-todo-list li .checkbox-custom label {
	padding-left: 10px;
}

ul.widget-todo-list li .todo-actions {
	position: absolute;
	top: 14px;
	right: 0;
	bottom: 14px;
}

ul.widget-todo-list li .todo-actions .todo-remove {
	font-size: 10px;
	vertical-align: middle;
	color: #999999;
}

ul.widget-todo-list li:last-child {
	border-bottom: 0 none;
}

/* Widget - Profile Info */
.widget-profile-info {
	display: table;
	width: 100%;
}

.widget-profile-info .profile-picture {
	display: table-cell;
	vertical-align: middle;
	width: 1%;
}

.widget-profile-info .profile-picture img {
	display: block;
	width: 100px;
	height: 100px;
	margin-right: 15px;
	/* border: 4px solid #fff; */
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.widget-profile-info .profile-info {
	display: table-cell;
	vertical-align: bottom;
	width: 100%;
}

.widget-profile-info .profile-info .profile-footer {
	padding: 5px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
	text-align: right;
}

.widget-profile-info .profile-info .profile-footer a {
	color: #fff;
	opacity: 0.6;
}

/* Widget - Twitter Profile */
.widget-twitter-profile {
	background-color: #cccccc;
	border-radius: 5px;
	color: #fff;
}

.widget-twitter-profile .top-image img {
	width: 100%;
	border-radius: 5px 5px 0 0;
}

.widget-twitter-profile .profile-info {
	padding: 15px;
	min-height: 75px;
}

.widget-twitter-profile .profile-info:after {
	content: "";
	display: table;
	clear: both;
}

.widget-twitter-profile .profile-info .profile-picture {
	float: left;
	margin-right: 15px;
	position: relative;
}

.widget-twitter-profile .profile-info .profile-picture img {
	display: block;
	width: 100px;
	height: 100px;
	margin: -25px 0;
	border: 4px solid #fff;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.widget-twitter-profile .profile-info .profile-account {
	float: left;
}

.widget-twitter-profile .profile-info .profile-account .name {
	margin: 0;
}

.widget-twitter-profile .profile-info .profile-account .account {
	color: white;
	margin: 0;
	line-height: 1.4;
}

.widget-twitter-profile .profile-info .profile-stats {
	float: right;
	list-style: none;
	padding: 5px 0;
	margin: 0;
}

.widget-twitter-profile .profile-info .profile-stats li {
	float: left;
	padding: 0 10px;
}

.widget-twitter-profile .profile-info .profile-stats li .stat {
	font-size: 10px;
	font-size: 1rem;
	margin: 0;
}

.widget-twitter-profile .profile-info .profile-stats li .count {
	display: block;
	margin: 0;
	line-height: 1.4;
	font-weight: 600;
}

.widget-twitter-profile .profile-quote {
	background-color: #d6d6d6;
	border-radius: 0 0 5px 5px;
	padding: 15px 10px 15px 150px;
}

.widget-twitter-profile .profile-quote blockquote {
	padding: 0;
	margin: 0;
	border: 0;
}

.widget-twitter-profile .profile-quote blockquote p {
	position: relative;
	font-style: italic;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.6;
	padding: 15px 0;
	margin: 0 0 10px;
	font-family: Georgia, serif;
}

.widget-twitter-profile .profile-quote blockquote p:before {
	position: absolute;
	top: 0;
	left: -45px;
	content: "\201C";
	font-size: 80px;
	font-size: 8rem;
	line-height: 1;
	font-family: Georgia, serif;
	font-style: normal;
}

.widget-twitter-profile .profile-quote .quote-footer {
	border-top: 1px solid #e6e6e6;
	padding: 5px 0;
	text-align: right;
	color: white;
}

.widget-twitter-profile .profile-quote .quote-footer a {
	color: white;
}

/* Widget - Twitter Profile Responsive */
@media only screen and (max-width: 479px) {
	.widget-twitter-profile .profile-info .profile-stats {
		clear: both;
		float: none;
		padding: 45px 0 0;
		text-align: center;
	}

	.widget-twitter-profile .profile-info .profile-stats li {
		display: inline-block;
		float: none;
	}
}

@media only screen and (max-width: 767px) {
	.widget-twitter-profile .profile-quote {
		padding-left: 10px;
	}

	.widget-twitter-profile .profile-quote blockquote {
		padding-left: 45px;
	}
}

/* Buttons - States */
.nav-pills-primary > li a:hover,
.nav-pills-primary > li a:focus {
	color: #cccccc;
	background-color: white;
}

.nav-pills-primary > li.active > a,
.nav-pills-primary > li.active > a:hover,
.nav-pills-primary > li.active > a:active,
.nav-pills-primary > li.active > a:focus {
	background-color: #cccccc;
}

.nav-pills-success > li a:hover,
.nav-pills-success > li a:focus {
	color: #47a447;
	background-color: #bfe2bc;
}

.nav-pills-success > li.active > a,
.nav-pills-success > li.active > a:hover,
.nav-pills-success > li.active > a:active,
.nav-pills-success > li.active > a:focus {
	background-color: #47a447;
}

.nav-pills-warning > li a:hover,
.nav-pills-warning > li a:focus {
	color: #ed9c28;
	background-color: #fbe4cd;
}

.nav-pills-warning > li.active > a,
.nav-pills-warning > li.active > a:hover,
.nav-pills-warning > li.active > a:active,
.nav-pills-warning > li.active > a:focus {
	background-color: #ed9c28;
}

.nav-pills-danger > li a:hover,
.nav-pills-danger > li a:focus {
	color: #d2322d;
	background-color: #f2c0c3;
}

.nav-pills-danger > li.active > a,
.nav-pills-danger > li.active > a:hover,
.nav-pills-danger > li.active > a:active,
.nav-pills-danger > li.active > a:focus {
	background-color: #d2322d;
}

.nav-pills-info > li a:hover,
.nav-pills-info > li a:focus {
	color: #5bc0de;
	background-color: #f0fafc;
}

.nav-pills-info > li.active > a,
.nav-pills-info > li.active > a:hover,
.nav-pills-info > li.active > a:active,
.nav-pills-info > li.active > a:focus {
	background-color: #5bc0de;
}

.nav-pills-dark > li a:hover,
.nav-pills-dark > li a:focus {
	color: #171717;
	background-color: #707070;
}

.nav-pills-dark > li.active > a,
.nav-pills-dark > li.active > a:hover,
.nav-pills-dark > li.active > a:active,
.nav-pills-dark > li.active > a:focus {
	background-color: #171717;
}

/* Tables - Basic */
.table {
	width: 100%;
}

.table .table {
	background: transparent;
}

/* In case you dont want a border in some row */
.table .b-top-none td {
	border-top: none;
}

/* Tables - Actions */
/* .table .actions,
.table .actions-hover {
	vertical-align: middle;
}

.table .actions a,
.table .actions-hover a {
	display: inline-block;
	margin-right: 5px;
	color: #666;
}

.table .actions a:last-child,
.table .actions-hover a:last-child {
	margin-right: 0;
}

.table .actions a:hover,
.table .actions-hover a:hover {
	color: #333;
}

.table .actions-hover a {
	opacity: 0;
}

.table tr:hover .actions-hover a {
	opacity: 1;
}

.table .actions-fade a {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
} */

/* Tables - No More Tables technique (991px is the bootstrap SM max-width) */
@media only screen and (max-width: 991px) {
	.table.table-no-more,
	.table.table-no-more thead,
	.table.table-no-more tbody,
	.table.table-no-more tr,
	.table.table-no-more th,
	.table.table-no-more td {
		display: block;
	}

	.table.table-no-more thead tr {
		left: -9999px;
		position: absolute;
		top: -9999px;
	}

	.table.table-no-more tr {
		border-bottom: 1px solid #ddd;
	}

	.table.table-no-more td {
		border: none;
		position: relative;
		padding-left: 50%;
		text-align: left;
		white-space: normal;
	}

	.table.table-no-more td:before {
		content: attr(data-title);
		font-weight: bold;
		left: 6px;
		padding-right: 10px;
		position: absolute;
		text-align: left;
		top: 8px;
		white-space: nowrap;
		width: 45%;
	}

	.table.table-no-more.table-bordered td {
		border-bottom: 1px solid #efefef;
	}

	.table.table-no-more.table-condensed td:before {
		top: 5px;
	}
}

/* Tables - States */
.table > thead > tr > td.primary,
.table > tbody > tr > td.primary,
.table > tfoot > tr > td.primary,
.table > thead > tr > th.primary,
.table > tbody > tr > th.primary,
.table > tfoot > tr > th.primary,
.table > thead > tr.primary > td,
.table > tbody > tr.primary > td,
.table > tfoot > tr.primary > td,
.table > thead > tr.primary > th,
.table > tbody > tr.primary > th,
.table > tfoot > tr.primary > th {
	color: #fff;
	background-color: #cccccc;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
	color: #fff;
	background-color: #47a447;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
	color: #fff;
	background-color: #ed9c28;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
	color: #fff;
	background-color: #d2322d;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
	color: #fff;
	background-color: #5bc0de;
}

.table > thead > tr > td.dark,
.table > tbody > tr > td.dark,
.table > tfoot > tr > td.dark,
.table > thead > tr > th.dark,
.table > tbody > tr > th.dark,
.table > tfoot > tr > th.dark,
.table > thead > tr.dark > td,
.table > tbody > tr.dark > td,
.table > tfoot > tr.dark > td,
.table > thead > tr.dark > th,
.table > tbody > tr.dark > th,
.table > tfoot > tr.dark > th {
	color: #fff;
	background-color: #171717;
}

.table > thead > tr > td.dark,
.table > tbody > tr > td.dark,
.table > tfoot > tr > td.dark,
.table > thead > tr > th.dark,
.table > tbody > tr > th.dark,
.table > tfoot > tr > th.dark,
.table > thead > tr.dark > td,
.table > tbody > tr.dark > td,
.table > tfoot > tr.dark > td,
.table > thead > tr.dark > th,
.table > tbody > tr.dark > th,
.table > tfoot > tr.dark > th {
	background-color: #4a4a4a;
	color: white;
}

/* Common Fixes */

.dt-button {
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
	background: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
	font-weight: bold !important;
	border-radius: 100px !important;
}

.dt-button:hover,
.dt-button:focus,
.dt-button:active,
.dt-button:not(:disabled):not(.disabled):active,
.dt-button:not(:disabled):not(.disabled).active {
	background: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
	border-color: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: #ffffff !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	border-color: transparent !important;
	background: var(--custom-primary-color) !important;
	color: var(--custom-on-primary-color) !important;
	font-weight: bold !important;
	border-radius: 10px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	background: var(--custom-background-color) !important;
	color: var(--custom-primary-color) !important;
	border-color: transparent !important;
}

.dataTables_wrapper .dataTables_filter {
	padding: 5px !important;
}

.dataTables_wrapper .dataTables_filter input {
	background-color: var(--custom-background-color) !important;
	color: var(--custom-on-background-color) !important;
	border: 0 !important;
	outline: 0 !important;
	line-height: 30px !important;
}

table.dataTable tbody tr {
	background-color: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	color: inherit !important;
}

.dataTables_wrapper .dataTables_processing {
	background: transparent !important;
	padding: 10px !important;
	height: unset !important;
}

.pricing-table {
	margin: 25px 0;
	padding-left: 0;
	text-align: center;
}

.pricing-table ul {
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0;
}

.pricing-table li {
	border-top: 1px solid #ddd;
	padding: 10px 0;
}

.pricing-table h3 {
	background-color: #eee;
	border-radius: 2px 2px 0 0;
	font-size: 20px;
	font-weight: normal;
	margin: -20px -20px 50px -20px;
	padding: 20px;
}

.pricing-table h3 span {
	background: #fff;
	border: 5px solid #fff;
	border-radius: 100px;
	box-shadow: 0 5px 20px #ddd inset, 0 3px 0 #999 inset;
	color: #cccccc;
	display: block;
	font: bold 25px / 100px Georgia, Serif;
	height: 100px;
	margin: 20px auto -65px;
	width: 100px;
}

.pricing-table .most-popular {
	border: 3px solid #ccc;
	box-shadow: 11px 0 10px -10px rgba(0, 0, 0, 0.1), -11px 0 10px -10px rgba(0, 0, 0, 0.1);
	padding: 30px 20px;
	top: -10px;
	z-index: 2;
}

.pricing-table .most-popular h3 {
	background-color: #cccccc;
	color: #fff;
	padding-top: 30px;
}

.pricing-table .plan-ribbon-wrapper {
	height: 88px;
	overflow: hidden;
	position: absolute;
	right: -5px;
	top: -5px;
	width: 85px;
}

.pricing-table .plan-ribbon {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	background-image: -webkit-linear-gradient(top, #bfdc7a, #8ebf45);
	background-image: linear-gradient(to bottom, #bfdc7a, #8ebf45);
	background-color: #bfdc7a;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	color: #333;
	font-size: 14px;
	left: -5px;
	padding: 7px 0;
	position: relative;
	text-align: center;
	top: 15px;
	width: 120px;
}

.pricing-table .plan-ribbon:before {
	left: 0;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	bottom: -3px;
	content: "";
	position: absolute;
}

.pricing-table .plan-ribbon:after {
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	bottom: -3px;
	content: "";
	position: absolute;
	right: 0;
}

.pricing-table .plan {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	color: #333;
	margin-bottom: 35px;
	margin-right: 0;
	padding: 20px;
	position: relative;
}

.pricing-table .btn {
	margin-top: 5px;
}

.fileupload .uneditable-input .fa {
	position: absolute;
	top: 12px;
}

.fileupload .uneditable-input .fileupload-preview {
	display: block;
	float: left;
	overflow: hidden;
	padding: 0 0 0 17px;
	text-overflow: ellipsis;
	width: 100%;
}

.fileupload .btn {
	border-radius: 0;
}

@media only screen and (max-width: 479px) {
	.fileupload .uneditable-input {
		width: 170px;
	}
}

.card-body .wizard-tabs {
	margin: -15px -15px 15px;
}

.card-body-nopadding .wizard-tabs {
	margin: 0;
}

.wizard-tabs ul {
	display: table;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.wizard-tabs ul > li {
	display: table-cell;
	border-bottom: 1px solid #eeeeee;
	position: relative;
}

.wizard-tabs ul > li > a.active {
	border-bottom-color: transparent;
}

.wizard-tabs ul > li > a.active,
.wizard-tabs ul > li > a.active:hover,
.wizard-tabs ul > li > a.active:focus {
	background: white !important;
	color: #555555;
}

.wizard-tabs ul > li:has(a.active):after {
	border-left-color: white;
}

.wizard-tabs ul > li > a.active > .badge {
	background-color: #cccccc;
}

.wizard-tabs ul > li > a.disabled,
.wizard-tabs ul > li > a.disabled:hover,
.wizard-tabs ul > li > a.disabled:focus {
	color: #cccccc;
}

.wizard-tabs ul > li > a > .badge,
.wizard-tabs ul > li > a.disabled > .badge {
	background-color: #cccccc;
}

.wizard-tabs ul > li > a {
	position: relative;
	display: block;
	padding: 5px;
	font-size: 13px;
	text-decoration: none;
	background: #f4f4f4 !important;
	color: #555555;
	border: none !important;
}

.wizard-tabs ul > li > a,
.wizard-tabs ul > li > a:hover {
	background: #f4f4f4;
	color: #555555;
}

.wizard-tabs ul > li > a:hover {
	box-shadow: none;
}

.wizard-tabs ul > li > a:active,
.wizard-tabs ul > li > a:focus {
	border-bottom: 0;
}

.wizard-tabs ul > li:before,
.wizard-tabs ul > li:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: -10px;
	z-index: 1;
	border: 17px solid transparent;
	border-right: 0;
	border-left: 10px solid transparent;
	width: 0;
	height: 0;
}

.wizard-tabs ul > li:before {
	z-index: 1;
	right: -11px;
	border-left-color: #e0e0e0;
}

.wizard-tabs ul > li:after {
	z-index: 2;
	border-left-color: #f4f4f4;
}

.wizard-tabs ul > li:last-child:before,
.wizard-tabs ul > li:last-child:after {
	display: none;
}

html .wizard-progress {
	margin: 0 15px;
}

html .wizard-progress .steps-progress {
	height: 2px;
	margin: 0 38px;
	position: relative;
	top: 15px;
	background: #cccccc;
}

html .wizard-progress .steps-progress .progress-indicator {
	height: 100%;
	width: 0;
	background: #cccccc;
	-webkit-transition: width 0.2s ease-in;
	-moz-transition: width 0.2s ease-in;
	transition: width 0.2s ease-in;
}

html .wizard-progress .wizard-steps {
	list-style: none;
	margin: 0;
	padding: 15px 0 0;
	display: inline-block;
	width: 100%;
	font-size: 0;
	text-align: justify;
}

html .wizard-progress .wizard-steps:after {
	/*
	* We don't need IE6 and IE7 inline-block hack support here
	* since they don't support :after anyways (the text-justify
	* properties for them are above)... IE8 and above have native
	* inline-block support so for IE8+, both the text-justify and
	* :after will take effect but it doesn't have any negative
	* effects since this element is invisible
	*/
	display: inline-block;
	width: 100%;
	content: ".";
	font-size: 0;
	height: 0;
	line-height: 0;
	visibility: hidden;
}
html .wizard-progress .wizard-steps li {
	display: inline-block;
	vertical-align: top;
	min-width: 50px;
	max-width: 100px;
}
html .wizard-progress .wizard-steps li a {
	position: relative;
	display: block;
	padding: 25px 8px 0;
	font-size: 11px;
	color: #33333f;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	word-break: break-all;
}
html .wizard-progress .wizard-steps li a span {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	background: #cccccc;
	color: white;
	line-height: 26px;
	text-align: center;
	margin-top: -15px;
	margin-left: -15px;
	width: 30px;
	height: 30px;
	border-radius: 35px;
	font-size: 13px;
	text-indent: -1px;
	border: 2px solid #cccccc;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
html .wizard-progress .wizard-steps li a.completed span {
	background: #cccccc;
	color: white;
}
html .wizard-progress .wizard-steps li a.active span {
	background: white;
	color: #cccccc;
	border-color: #cccccc;
}
html .wizard-progress .wizard-steps li a.completed.active span {
	color: #fff;
}
html .wizard-progress.wizard-progress-lg {
	margin: 0 auto 30px;
	width: 80%;
}
html .wizard-progress.wizard-progress-lg .steps-progress {
	margin: 0 52px;
	height: 4px;
	top: 34px;
}
html .wizard-progress.wizard-progress-lg .wizard-steps {
	padding-top: 30px;
}
html .wizard-progress.wizard-progress-lg ul li {
	max-width: 135px;
}
html .wizard-progress.wizard-progress-lg ul li a {
	padding-top: 40px;
	font-size: 14px;
}
html .wizard-progress.wizard-progress-lg ul li a span {
	width: 60px;
	height: 60px;
	margin-top: -30px;
	margin-left: -30px;
	border-radius: 60px;
	line-height: 52px;
	font-size: 22px;
	border-width: 4px;
}

@media only screen and (max-width: 991px) {
	html .wizard-progress,
	html .wizard-progress.wizard-progress-lg {
		width: auto;
		margin-bottom: 0;
		margin-left: -15px;
		margin-right: -15px;
	}
	html .wizard-progress .steps-progress {
		display: none;
	}
	html .wizard-progress .wizard-steps {
		display: block;
		font-size: 0;
		overflow: hidden;
		white-space: nowrap;
		text-align: left;
		width: 100%;
	}
	html .wizard-progress .wizard-steps li {
		-webkit-transition: margin 0.5s linear;
		-moz-transition: margin 0.5s linear;
		transition: margin 0.5s linear;
		display: inline-block;
		float: none;
		position: relative;
		width: 100%;
		min-width: 0;
		max-width: none;
	}
	html .wizard-progress .wizard-steps li a {
		position: relative;
		z-index: 2;
	}
	html .wizard-progress .wizard-steps li:before,
	html .wizard-progress .wizard-steps li:after {
		content: "";
		display: block;
		height: 2px;
		position: absolute;
		top: 0;
		width: 50%;
	}
	html .wizard-progress .wizard-steps li:before {
		background: #cccccc;
		left: 0;
	}
	html .wizard-progress .wizard-steps li:after {
		background: #cccccc;
		right: 0;
	}
	html .wizard-progress .wizard-steps li a.active {
		margin-left: 0;
	}
	html .wizard-progress .wizard-steps li a.completed {
		margin-left: -100%;
	}
	html .wizard-progress .wizard-steps li a.completed:after {
		background: #cccccc;
	}
	html .wizard-progress .wizard-steps li a.completed.active {
		margin-left: 0;
	}
	html .wizard-progress .wizard-steps li:first-child:before {
		display: none;
	}
	html .wizard-progress .wizard-steps li:last-child:after {
		display: none;
	}
	html .wizard-progress.wizard-progress-lg .wizard-steps li {
		min-width: 0;
		max-width: none;
	}
	html .wizard-progress.wizard-progress-lg .wizard-steps li:before,
	html .wizard-progress.wizard-progress-lg .wizard-steps li:after {
		height: 4px;
	}
}
.form-wizard {
	margin-bottom: 20px;
}
.form-wizard .tabs {
	margin-bottom: 0;
}
.form-wizard .tab-content {
	background: none;
	border: 0 none;
	box-shadow: none;
}
.form-wizard ul.pager .next a,
.form-wizard ul.pager .previous a,
.form-wizard ul.pager .first a,
.form-wizard ul.pager .last a,
.form-wizard ul.pager .finish a {
	cursor: pointer;
}
.form-wizard ul.pager .disabled a {
	cursor: not-allowed;
}

.switch {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin: 3px 0;
}
.switch .ios-switch {
	height: 35px;
	width: 65px;
}
.switch .ios-switch .handle {
	height: 31px;
	width: 31px;
}
.switch.switch-primary .ios-switch .on-background {
	background: #cccccc;
}
.switch.switch-success .ios-switch .on-background {
	background: #47a447;
}
.switch.switch-warning .ios-switch .on-background {
	background: #ed9c28;
}
.switch.switch-danger .ios-switch .on-background {
	background: #d2322d;
}
.switch.switch-info .ios-switch .on-background {
	background: #5bc0de;
}
.switch.switch-dark .ios-switch .on-background {
	background: #171717;
}
.switch.switch-lg .ios-switch {
	height: 45px;
	width: 75px;
}
.switch.switch-lg .ios-switch .handle {
	height: 41px;
	width: 41px;
}
.switch.switch-sm .ios-switch {
	height: 25px;
	width: 55px;
}
.switch.switch-sm .ios-switch .handle {
	height: 21px;
	width: 21px;
}

.ios-switch {
	height: 45px;
	width: 75px;
	position: relative;
	background-color: #e5e5e5;
	border-radius: 100px;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.ios-switch .background-fill {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	position: absolute;
	left: 0;
	top: 0;
}

.ios-switch .on-background {
	background-image: -o-linear-gradient(#00e459, #00e158);
	background-image: -ms-linear-gradient(#00e459, #00e158);
	background-image: -moz-linear-gradient(#00e459, #00e158);
	background-image: -webkit-linear-gradient(#00e459, #00e158);
	background-image: linear-gradient(#00e459, #00e158);
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	filter: alpha(opacity=0);
	z-index: 1;
	-o-transition: 0.3s 0.2s;
	-ms-transition: 0.3s 0.2s;
	-moz-transition: 0.3s 0.2s;
	-webkit-transition: 0.3s 0.2s;
	transition: 0.3s 0.2s;
}

.ios-switch .state-background {
	border-radius: 100px;
	z-index: 2;
	background-image: -o-linear-gradient(white, #fdfdfd);
	background-image: -ms-linear-gradient(white, #fdfdfd);
	background-image: -moz-linear-gradient(white, #fdfdfd);
	background-image: -webkit-linear-gradient(white, #fdfdfd);
	background-image: linear-gradient(white, #fdfdfd);
	border: 2px solid #e5e5e5;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-o-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-o-transition: 0.4s;
	-ms-transition: 0.4s;
	-moz-transition: 0.4s;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.ios-switch .handle {
	width: 41px;
	height: 41px;
	background-color: white;
	top: 2px;
	left: 2px;
	position: absolute;
	border-radius: 20px;
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.075), 0 3px 5px rgba(0, 0, 0, 0.15), 1px 2px 2px rgba(0, 0, 0, 0.05);
	z-index: 3;
	-o-transition: -o-transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-ms-transition: -ms-transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-moz-transition: -moz-transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-webkit-transition: -webkit-transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-o-transition: transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-ms-transition: transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-moz-transition: transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-webkit-transition: transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	transition: transform 0.3s 0.25s cubic-bezier(0.455, 0.03, 0.215, 1.33);
	-o-box-sizing: content-box;
	-ms-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.ios-switch.off .handle {
	-o-animation: expand-off 0.3s 0.2s;
	-ms-animation: expand-off 0.3s 0.2s;
	-moz-animation: expand-off 0.3s 0.2s;
	-webkit-animation: expand-off 0.3s 0.2s;
	animation: expand-off 0.3s 0.2s;
	-o-transform: translate(0px, 0);
	-ms-transform: translate(0px, 0);
	-moz-transform: translate(0px, 0);
	-webkit-transform: translate(0px, 0);
	transform: translate(0px, 0);
	-o-transform: translate3d(0px, 0, 0);
	-ms-transform: translate3d(0px, 0, 0);
	-moz-transform: translate3d(0px, 0, 0);
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.ios-switch.off .on-background {
	-o-transition: 0.3s 0s;
	-ms-transition: 0.3s 0s;
	-moz-transition: 0.3s 0s;
	-webkit-transition: 0.3s 0s;
	transition: 0.3s 0s;
}

.ios-switch.off .state-background {
	-o-transition: 0.4s 0.25s;
	-ms-transition: 0.4s 0.25s;
	-moz-transition: 0.4s 0.25s;
	-webkit-transition: 0.4s 0.25s;
	transition: 0.4s 0.25s;
}

.ios-switch.on .handle {
	-o-animation: expand-on 0.3s 0.2s;
	-ms-animation: expand-on 0.3s 0.2s;
	-moz-animation: expand-on 0.3s 0.2s;
	-webkit-animation: expand-on 0.3s 0.2s;
	animation: expand-on 0.3s 0.2s;
	-o-transform: translate(30px, 0);
	-ms-transform: translate(30px, 0);
	-moz-transform: translate(30px, 0);
	-webkit-transform: translate(30px, 0);
	transform: translate(30px, 0);
	-o-transform: translate3d(30px, 0, 0);
	-ms-transform: translate3d(30px, 0, 0);
	-moz-transform: translate3d(30px, 0, 0);
	-webkit-transform: translate3d(30px, 0, 0);
	transform: translate3d(30px, 0, 0);
}

.ios-switch.on .on-background {
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	filter: alpha(opacity=100);
}

.ios-switch.on .state-background {
	-o-transform: scale(0);
	-ms-transform: scale(0);
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}

@keyframes expand-on {
	0% {
		padding-right: 0;
	}

	40% {
		padding-right: 9px;
	}

	100% {
		padding-right: 0;
	}
}
@keyframes expand-off {
	0% {
		padding-right: 0;
		left: 2px;
	}

	40% {
		padding-right: 9px;
		left: -7px;
	}

	100% {
		padding-right: 0;
		left: 2px;
	}
}
@-o-keyframes expand-on {
	0% {
		padding-right: 0;
	}

	40% {
		padding-right: 9px;
	}

	100% {
		padding-right: 0;
	}
}
@-ms-keyframes expand-on {
	0% {
		padding-right: 0;
	}

	40% {
		padding-right: 9px;
	}

	100% {
		padding-right: 0;
	}
}
@-moz-keyframes expand-on {
	0% {
		padding-right: 0;
	}

	40% {
		padding-right: 9px;
	}

	100% {
		padding-right: 0;
	}
}
@-webkit-keyframes expand-on {
	0% {
		padding-right: 0;
	}

	40% {
		padding-right: 9px;
	}

	100% {
		padding-right: 0;
	}
}
@-o-keyframes expand-off {
	0% {
		padding-right: 0;
		left: 2px;
	}

	40% {
		padding-right: 9px;
		left: -7px;
	}

	100% {
		padding-right: 0;
		left: 2px;
	}
}
@-ms-keyframes expand-off {
	0% {
		padding-right: 0;
		left: 2px;
	}

	40% {
		padding-right: 9px;
		left: -7px;
	}

	100% {
		padding-right: 0;
		left: 2px;
	}
}
@-moz-keyframes expand-off {
	0% {
		padding-right: 0;
		left: 2px;
	}

	40% {
		padding-right: 9px;
		left: -7px;
	}

	100% {
		padding-right: 0;
		left: 2px;
	}
}
@-webkit-keyframes expand-off {
	0% {
		padding-right: 0;
		left: 2px;
	}

	40% {
		padding-right: 9px;
		left: -7px;
	}

	100% {
		padding-right: 0;
		left: 2px;
	}
}
/* Summernote */
.note-editor {
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.note-editor.active {
	border-color: #66afe9;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.note-editor .note-title {
	padding-top: 0 !important;
}
.note-editor .note-toolbar {
	background-color: #fff;
	border-bottom: 1px dashed #ddd;
	border-left: none;
	border-right: none;
	border-top: none;
	border-radius: 4px 4px 0 0;
	padding: 6px 4px 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.note-editor .note-toolbar i {
	margin: 0;
}
.note-editor .note-toolbar i:before {
	margin: 0;
}
.note-editor .note-toolbar .btn-group {
	float: none !important;
	margin: 0 0 6px 5px;
}
@media only screen and (max-width: 767px) {
	.note-editor .note-toolbar {
		text-align: center;
	}
}
.note-editor .note-editable {
	clear: both;
	background: #fff;
	border: none;
	border-radius: 0 0 4px 4px;
	font-family: Arial, Helvetica, Sans-serif;
}
.note-editor .note-statusbar {
	background: #fff;
	border-radius: 0 0 4px 4px;
}
.note-editor .note-statusbar .note-resizebar {
	border-color: #ddd;
	display: block;
}

/* Bootstrap Markdown */
.md-editor {
	border-radius: 4px;
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.md-editor > .md-header {
	border-radius: 4px 4px 0 0;
	padding: 6px 4px 0;
}
.md-editor > .md-preview,
.md-editor > textarea {
	background: #fff;
	border-bottom: none;
	border-radius: 0 0 4px 4px;
	padding: 10px;
	outline: none;
	width: 100% !important;
}
.md-editor .btn-group {
	margin-bottom: 6px;
}

.spinner-buttons.btn-group-vertical .btn {
	height: 18px;
	margin: 0 0 0 -1px;
	padding-left: 6px;
	padding-right: 6px;
	text-align: center;
	width: 22px;
	line-height: 14px;
}
.spinner-buttons.btn-group-vertical .btn i {
	margin-top: -2px;
}
.spinner-buttons.btn-group-vertical .btn:first-child {
	border-radius: 0 4px 0 0 !important;
	-webkit-border-radius: 0 4px 0 0 !important;
}
.spinner-buttons.btn-group-vertical .btn:last-child {
	border-radius: 0 0 4px !important;
	-webkit-border-radius: 0 0 4px !important;
	margin-top: -1px;
	height: 17px;
}

@media only screen and (max-width: 767px) {
	#gmap {
		margin: -40px -15px 0 -15px;
	}

	html.mobile-device #gmap {
		min-height: 100px;
	}
}
@media only screen and (min-width: 768px) {
	#gmap {
		bottom: 0;
		height: auto !important;
		left: 0;
		position: absolute !important;
		right: 0;
		top: 0;
		min-height: 0;
	}
}
/* List Containing Markers */
.list-markers {
	border-bottom: 1px solid #2c2c2c;
	padding-bottom: 10px;
}
.list-markers li {
	position: relative;
}
.list-markers p {
	margin: 0 0 2px 0;
	padding: 3px 55px 3px 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
}
.list-markers .location-action {
	position: absolute;
	right: 0;
	top: 2px;
}
.list-markers .location-action.location-edit {
	right: 15px;
	top: 3px;
}
.list-markers .location-action.location-center {
	right: 37px;
}

/* Modal Add/Edit Markers */
.marker-modal .modal-dialog {
	max-width: 450px;
}

.jqvmap-zoomin,
.jqvmap-zoomout {
	background: #cccccc;
	border-radius: 2px;
	color: white;
	height: 20px;
	line-height: 20px;
	padding: 0;
	width: 20px;
	text-align: center;
}
.jqvmap-zoomin:hover,
.jqvmap-zoomout:hover {
	background: #bfbfbf;
}

.jqvmap-zoomout {
	top: 35px;
}

/* Invoice */
.invoice {
	padding: 0 15px 15px;
}

/* Invoice Address Tag */
.invoice address {
	color: #7f8597;
	line-height: 1.5em;
}

/* Invoice header */
.invoice header {
	border-bottom: 1px solid #dadada;
	margin-bottom: 15px;
}
.invoice header .h2,
.invoice header .h4 {
	letter-spacing: 0;
}

/* Invoice Billing Information */
.invoice .bill-to,
.invoice .bill-data {
	padding: 15px 0;
}
.invoice .bill-data .value {
	display: inline-block;
	margin-left: 10px;
	width: 90px;
}

/* Invoice table */
.invoice table.table {
	table-layout: fixed;
}
.invoice table.table > thead:first-child > tr > th {
	background-color: #f8f8f8;
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
}
.invoice table.table > tbody tr > td {
	border-color: #dadada;
}

/* Invoice table items */
.invoice .invoice-items > tbody tr:last-child > td {
	border-bottom: 1px solid #dadada;
}
.invoice .invoice-items #cell-id {
	width: 10%;
}
.invoice .invoice-items #cell-item {
	width: 20%;
}
.invoice .invoice-items #cell-desc {
	width: 20%;
}
.invoice .invoice-items #cell-price {
	width: 10%;
}
.invoice .invoice-items #cell-qty {
	width: 10%;
}
.invoice .invoice-items #cell-total {
	width: 10%;
}

/* Invoice summary */
.invoice-summary .col-sm-4 {
	padding-left: 0;
}

/* Invoice Responsiveness */
@media only screen and (max-width: 991px) {
	.invoice .table-responsive > table.table {
		table-layout: auto;
	}

	.invoice-summary .col-sm-4 {
		padding-left: 15px;
	}
}
/* Invoice Print */
@media print {
	.invoice .table-responsive {
		border: none !important;
		overflow: visible !important;
		width: auto !important;
	}
	.invoice table.table.invoice-items {
		table-layout: auto;
	}
	.invoice header .col-sm-6:first-child,
	.invoice header .col-sm-6:last-child,
	.invoice .bill-info .col-md-6 {
		float: left !important;
	}
	.invoice header .col-sm-6:first-child {
		width: 25% !important;
	}
	.invoice header .col-sm-6:last-child {
		width: 75% !important;
	}
	.invoice .bill-info .col-md-6 {
		width: 50% !important;
	}
	.invoice .invoice-summary .col-sm-4 {
		float: right;
		padding: 0;
		width: 40%;
	}
}

/* Error Pages - wrappers */
.body-error {
	margin: 0 auto;
	max-width: 900px;
	width: 100%;
}
.body-error.error-outside {
	display: table;
	height: 100vh;
}
.body-error.error-outside .center-error {
	display: table-cell;
	vertical-align: middle;
}
.body-error.error-inside {
	margin-top: 150px;
}

/* Error Pages - header */
.body-error .error-header {
	border-bottom: 1px solid #dadada;
	margin-bottom: 50px;
	padding-bottom: 15px;
}
.body-error .error-header .form {
	margin-top: 12px;
}

/* Error Pages - typo */
.body-error .error-code {
	font-size: 140px;
	font-size: 14rem;
	line-height: 140px;
	line-height: 14rem;
	letter-spacing: -10px;
}
.body-error .error-explanation {
	font-size: 20px;
	font-size: 2rem;
	line-height: 36px;
	line-height: 3.6rem;
}

/* Error Pages - Responsive */
@media only screen and (max-width: 1150px) {
	.body-error.error-inside {
		margin-top: 50px;
		padding-bottom: 50px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1150px) {
	.body-error.error-inside .error-code {
		font-size: 100px;
		font-size: 10rem;
		line-height: 100px;
		line-height: 10rem;
		letter-spacing: -7px;
	}
	.body-error.error-inside .error-explanation {
		font-size: 18px;
		font-size: 1.8rem;
		line-height: 32px;
		line-height: 3.2rem;
	}
}
@media only screen and (max-width: 767px) {
	.body-error .error-code {
		font-size: 90px;
		font-size: 9rem;
		line-height: 90px;
		line-height: 9rem;
		letter-spacing: -7px;
	}
	.body-error .error-explanation {
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 28px;
		line-height: 2.8rem;
	}

	.body-error.error-outside {
		height: auto;
		padding: 20px;
	}
}
/* Sign Screens - Wrappers */
.body-sign {
	display: table;
	height: 100vh;
	margin: 0 auto;
	max-width: 500px;
	padding: 0 15px;
	width: 100%;
}
.body-sign .center-sign {
	display: table-cell;
	padding-top: 20px;
	vertical-align: middle;
}
.body-sign .card-sign {
	background: transparent;
}
.body-sign .card-sign .card-title-sign .title {
	background-color: #cccccc;
	border-radius: 5px 5px 0 0;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 20px;
	line-height: 2rem;
	padding: 13px 17px;
	vertical-align: bottom;
}
.body-sign .card-sign .card-body {
	background: #fff;
	border-top: 5px solid #cccccc;
	border-radius: 5px 0 5px 5px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	padding: 33px 33px 15px;
}

/* Sign Screens - Elements */
.body-sign .input-group-icon .input-group-addon i {
	width: 14px;
}
.body-sign .checkbox-custom {
	margin-top: 8px;
}
.body-sign .line-thru {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
.body-sign .line-thru span {
	color: #ccc;
	position: relative;
	z-index: 3;
}
.body-sign .line-thru:before {
	background-color: #fff;
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	margin: -5px 0 0 -20px;
	top: 50%;
	width: 40px;
	z-index: 2;
}
.body-sign .line-thru:after {
	border-bottom: 1px solid #dadada;
	content: "";
	display: block;
	left: 10%;
	position: absolute;
	top: 47%;
	width: 81%;
	z-index: 1;
}

/* Lock Screen */
.body-locked {
	background: url(../images/patterns/noisy_net.png) repeat;
	max-width: none;
	min-height: 400px;
}
.body-locked.body-locked-inline {
	background: none;
	bottom: 0;
	height: 100%;
	left: 0;
	min-height: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}
.body-locked .card-sign {
	margin: 0 auto;
	max-width: 400px;
	padding-top: 40px;
}
.body-locked .card-sign .card-body {
	border-radius: 5px;
	position: relative;
}
.body-locked .current-user {
	margin-top: 60px;
	margin-bottom: 35px;
}
.body-locked .current-user .user-image {
	border: 5px solid #cccccc;
	border-radius: 150px;
	height: 150px;
	left: 50%;
	position: absolute;
	margin-left: -75px;
	top: -75px;
	width: 150px;
}
.body-locked .current-user .user-name {
	font-size: 30px;
	font-size: 3rem;
	line-height: 36px;
	line-height: 3.6rem;
}
.body-locked .current-user .user-email {
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 14px;
	line-height: 1.4rem;
}

/* Locked Screen - Responsive Landscape */
@media only screen and (max-width: 767px) and (orientation: landscape) {
	.body-locked .card-sign,
	.body-locked.body-locked-inline .card-sign {
		padding-top: 0;
	}
	.body-locked .center-sign,
	.body-locked.body-locked-inline .center-sign {
		padding-top: 0;
	}
	.body-locked .center-sign .current-user,
	.body-locked.body-locked-inline .center-sign .current-user {
		margin-bottom: 45px;
		margin-left: 100px;
		margin-top: 10px;
	}
	.body-locked .center-sign .current-user .user-image,
	.body-locked.body-locked-inline .center-sign .current-user .user-image {
		height: 100px;
		left: 35px;
		margin-left: 0;
		margin-top: 0;
		top: 15px;
		width: 100px;
	}
}
/* Lock Screen - Modal */
.mfp-lock-screen.mfp-bg {
	background: black url(../images/patterns/noisy_net.png) repeat;
	opacity: 0.99;
	z-index: 9998;
}
.mfp-lock-screen.mfp-wrap {
	background: none;
	z-index: 9999;
}

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

.fc table {
	border-collapse: collapse;
	border-spacing: 0;
}

.fc .btn {
	line-height: 1.2em;
}

html .fc {
	font-size: 1em;
}

.fc table {
	font-size: 1em;
}

.fc td,
.fc th {
	padding: 1px;
	vertical-align: top;
}

.fc-header td {
	white-space: nowrap;
	vertical-align: middle;
}

.fc-header-left {
	width: 1%;
	text-align: left;
}

.fc-header-center {
	text-align: center;
}

.fc-header-right {
	width: 99%;
	text-align: right;
}

.fc-header td.fc-header-right {
	white-space: normal;
}

.fc-header-title {
	display: inline-block;
	vertical-align: top;
}

.fc-header-title h2 {
	margin: 0 0 10px;
	white-space: nowrap;
}

.fc .fc-header-space {
	padding-left: 10px;
}

.fc-header .fc-button {
	margin-bottom: 1em;
	vertical-align: top;
	margin-right: -1px;
}

.fc-header .fc-corner-right {
	margin-right: 1px;
}

.fc-header .ui-corner-right {
	margin-right: 0;
}

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

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

.fc-header .fc-state-active,
.fc-header .ui-state-active,
.fc-header .ui-state-down {
	z-index: 4;
	background-color: #e6e6e6;
	background-color: #d9d9d9;
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-content {
	clear: both;
}

.fc-view {
	width: 100%;
}

.fc .ui-widget-header {
	border-color: #dddddd;
	padding: 4px 0;
}

thead th.fc-first {
	border-top-left-radius: 5px;
	-moz-border-top-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
}

thead th.fc-last {
	border-top-right-radius: 5px;
	-moz-border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}

.ui-state-highlight.fc-today {
	background: #f4f4f4;
	margin: 2px !important;
	border: 0;
	border-left: 1px solid #dddddd;
	border-top: 1px solid #dddddd;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

.fc-button {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.fc-button-inner {
	position: relative;
	float: left;
	overflow: hidden;
}

.fc-button-content {
	position: relative;
	float: left;
	height: 1.9em;
	line-height: 1.9em;
	padding: 0 0.6em;
	white-space: nowrap;
}

.fc-button-content .fc-icon-wrap {
	position: relative;
	float: left;
	top: 50%;
}

.fc-button-content .ui-icon {
	position: relative;
	float: left;
	margin-top: -50%;
	*margin-top: 0;
	*top: -50%;
}

.fc-state-default {
	border-style: solid;
	border-color: #cccccc #bbbbbb #aaaaaa;
	background: #f3f3f3;
	color: black;
}

.fc-state-default .fc-button-effect {
	position: absolute;
	top: 50%;
	left: 0;
}

.fc-state-default .fc-button-effect span {
	position: absolute;
	top: -100px;
	left: 0;
	width: 500px;
	height: 100px;
	border-width: 100px 0 0 1px;
	border-style: solid;
	border-color: white;
	background: #444444;
	opacity: 0.09;
	filter: alpha(opacity=9);
}

.fc-state-default .fc-button-inner {
	border-style: solid;
	border-color: #cccccc #bbbbbb #aaaaaa;
	background: #f3f3f3;
	color: black;
}

.fc-state-hover {
	border-color: #999999;
}

.fc-state-hover .fc-button-inner {
	border-color: #999999;
}

.fc-state-down {
	border-color: #555555;
	background: #777777;
}

.fc-state-down .fc-button-inner {
	border-color: #555555;
	background: #777777;
}

.fc-state-active {
	border-color: #555555;
	background: #777777;
	color: white;
}

.fc-state-active .fc-button-inner {
	border-color: #555555;
	background: #777777;
	color: white;
}

.fc-state-disabled {
	color: #999999;
	border-color: #dddddd;
	cursor: default;
}

.fc-state-disabled .fc-button-inner {
	color: #999999;
	border-color: #dddddd;
}

.fc-state-disabled .fc-button-effect {
	display: none;
}

.fc-event {
	border-style: solid;
	border-width: 0;
	font-size: 0.85em;
	cursor: default;
}

a.fc-event,
.fc-event-draggable {
	cursor: pointer;
}

a.fc-event {
	text-decoration: none;
}

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

.fc-event-skin {
	border: 0;
}

.fc-event-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-style: solid;
	border-width: 0;
	overflow: hidden;
}

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

.fc-event-hori {
	border-width: 1px 0;
	margin-bottom: 1px;
}

.fc-event-hori .ui-resizable-e {
	top: 0 !important;
}

table.fc-border-separate {
	border-collapse: separate;
}

.fc-border-separate th,
.fc-border-separate td {
	border-width: 1px 0 0 1px;
}

.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
	border-right-width: 1px;
}

.fc-border-separate tr.fc-last th,
.fc-border-separate tr.fc-last td {
	border-bottom-width: 1px;
}

.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
	border-top-width: 0;
}

.fc-grid th {
	text-align: center;
}

.fc-grid .fc-day-number {
	float: right;
	padding: 0 2px;
}

.fc-grid .fc-other-month .fc-day-number {
	opacity: 0.3;
	filter: alpha(opacity=30);
}

.fc-rtl .fc-grid .fc-day-number {
	float: left;
}

.fc-rtl .fc-grid .fc-event-time {
	float: right;
}

.fc-agenda table {
	border-collapse: separate;
}

.fc-agenda-days th {
	text-align: center;
}

.fc-agenda .fc-agenda-axis {
	width: 50px;
	padding: 0 4px;
	vertical-align: middle;
	text-align: right;
	white-space: nowrap;
	font-weight: normal;
}

.fc-agenda .fc-day-content {
	padding: 2px 2px 1px;
}

.fc-agenda-days .fc-agenda-axis {
	border-right-width: 1px;
}

.fc-agenda-days .fc-col0 {
	border-left-width: 0;
}

.fc-agenda-allday th {
	border-width: 0 1px;
}

.fc-agenda-allday .fc-day-content {
	min-height: 34px;
}

.fc-agenda-divider-inner {
	height: 2px;
	overflow: hidden;
}

.fc-widget-header .fc-agenda-divider-inner {
	background: #eeeeee;
}

.fc-agenda-slots th {
	border-width: 1px 1px 0;
}

.fc-agenda-slots td {
	border-width: 1px 0 0;
	background: none;
}

.fc-agenda-slots td div {
	height: 20px;
}

.fc-agenda-slots tr.fc-slot0 th,
.fc-agenda-slots tr.fc-slot0 td {
	border-top-width: 0;
}

.fc-agenda-slots tr.fc-minor th,
.fc-agenda-slots tr.fc-minor td {
	border-top-style: dotted;
}

.fc-agenda-slots tr.fc-minor th.ui-widget-header {
	*border-top-style: solid;
}

.fc-event-vert {
	border-width: 0 1px;
}

.fc-event-vert .fc-event-head,
.fc-event-vert .fc-event-content {
	position: relative;
	z-index: 2;
	width: 100%;
	overflow: hidden;
}

.fc-event-vert .fc-event-time {
	white-space: nowrap;
	font-size: 10px;
}

.fc .ui-draggable-dragging .fc-event-bg,
.fc-select-helper .fc-event-bg {
	display: none;
}

.fc-event-vert .ui-resizable-s {
	bottom: 0 !important;
}

/* Fullcalendar - header */
.fc .fc-header-center {
	display: none;
}
.fc .fc-widget-header {
	background: #cccccc;
	border-color: #cccccc;
	color: white;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 10px 0;
	text-transform: uppercase;
}
.fc .fc-header-title h2 {
	color: #171717;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: normal;
}
.fc .fc-header-title h2:before {
	color: #cccccc;
	content: "\f073";
	display: inline-block;
	font-family: FontAwesome;
	font-size: 30px;
	font-size: 3rem;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	margin-right: 10px;
	-webkit-font-smoothing: antialiased;
}

/* Fullcalendar - Borders */
.fc-widget-content {
	border-color: #ddd;
}

/* Fullcalendar - Border Radius */
.fc-content thead .fc-last .fc-first {
	border-top-left-radius: 4px;
}
.fc-content thead .fc-last .fc-last {
	border-top-right-radius: 4px;
}
.fc-content tbody .fc-last .fc-first {
	border-bottom-left-radius: 4px;
}
.fc-content tbody .fc-last .fc-last {
	border-bottom-right-radius: 4px;
}

/* Fullcalendar - Today */
.fc-content .fc-widget-content.fc-today {
	background: #f7f7f7;
}

/* Fullcalendar - Event Basics */
.fc-event {
	background: #cccccc;
	border-color: #cccccc;
}
.fc-event .fc-event-inner {
	padding: 2px 5px;
}

/* Fullcalendar - Link Event */
a.fc-event:hover .fc-event-inner {
	color: #fff;
	text-decoration: underline;
}

/* Fullcalendar - Event Time Format */
.fc-grid .fc-event-time {
	font-weight: 500;
}
.fc-grid .fc-event-time:after {
	content: " /";
}
.fc-grid .fc-event-title {
	font-weight: 300;
}

/* Fullcalendar - Event States */
/* Buttons - States */
.fc-event.fc-event-default {
	background: #ebebeb;
	border-color: #ebebeb;
}
.fc-event.fc-event-default .fc-event-inner {
	color: #777777;
}

a.fc-event.fc-event-default:hover {
	color: #777777;
}

.fc-event.fc-event-primary {
	background: #cccccc;
	border-color: #cccccc;
}
.fc-event.fc-event-primary .fc-event-inner {
	color: white;
}

a.fc-event.fc-event-primary:hover {
	color: white;
}

.fc-event.fc-event-success {
	background: #47a447;
	border-color: #47a447;
}
.fc-event.fc-event-success .fc-event-inner {
	color: white;
}

a.fc-event.fc-event-success:hover {
	color: white;
}

.fc-event.fc-event-warning {
	background: #ed9c28;
	border-color: #ed9c28;
}
.fc-event.fc-event-warning .fc-event-inner {
	color: white;
}

a.fc-event.fc-event-warning:hover {
	color: white;
}

.fc-event.fc-event-danger {
	background: #d2322d;
	border-color: #d2322d;
}
.fc-event.fc-event-danger .fc-event-inner {
	color: white;
}

a.fc-event.fc-event-danger:hover {
	color: white;
}

.fc-event.fc-event-info {
	background: #5bc0de;
	border-color: #5bc0de;
}
.fc-event.fc-event-info .fc-event-inner {
	color: white;
}

a.fc-event.fc-event-info:hover {
	color: white;
}

.fc-event.fc-event-dark {
	background: #171717;
	border-color: #171717;
}
.fc-event.fc-event-dark .fc-event-inner {
	color: white;
}

a.fc-event.fc-event-dark:hover {
	color: white;
}

/* Fullcalendar - External Events */
.external-event {
	cursor: move;
	display: inline-block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	margin: 5px;
	padding: 10px;
	text-align: left;
}

@media only screen and (max-width: 400px) {
	.fc .fc-header-right .btn-group {
		margin: 10px 0;
	}
	.fc .fc-header-right br.hidden {
		display: block !important;
	}
}
@media only screen and (max-width: 480px) {
	.fc .fc-header-left,
	.fc .fc-header-right {
		display: block;
		width: 100%;
	}
	.fc .fc-header-right {
		padding: 0 0 15px;
		text-align: center;
	}
}
@media only screen and (max-width: 991px) {
	.fc {
		margin-bottom: 30px;
	}
}

.timeline .tm-body {
	position: relative;
	padding: 30px 0;
}
.timeline .tm-body:after {
	background: #505050;
	background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e5799), color-stop(100%, #7db9e8));
	background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
	background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
	background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
	background: linear, to bottom, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%;
	content: "";
	display: block;
	height: 100%;
	left: 140px;
	margin-left: -2px;
	position: absolute;
	top: 0;
	width: 3px;
	z-index: 0;
	filter: alpha(opacity=35);
	opacity: 0.35;
}
.timeline .tm-title {
	position: relative;
	display: inline-block;
	text-align: center;
	min-width: 200px;
	background-color: #fff;
	padding: 4px 5px;
	margin: 0 40px;
	z-index: 1;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.timeline .tm-items {
	list-style: none;
	padding: 0;
	margin: 0;
}
.timeline .tm-items > li {
	position: relative;
	margin: 30px 0;
	padding: 0 0 0 190px;
	min-height: 65px;
	z-index: 1;
}
.timeline .tm-items > li .tm-datetime {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100px;
	height: 48px;
	margin-top: -24px;
	text-align: right;
	z-index: 3;
}
.timeline .tm-items > li .tm-datetime .tm-datetime-time {
	color: #cccccc;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0;
	white-space: nowrap;
}
.timeline .tm-items > li .tm-icon {
	position: absolute;
	top: 50%;
	left: 140px;
	background-color: var(--custom-background-color);
	border: 3px solid #cccccc;
	color: #cccccc;
	font-size: 28px;
	padding: 10px;
	width: 55px;
	height: 55px;
	text-align: center;
	line-height: 29px;
	margin-top: -28px;
	margin-left: -28px;
	z-index: 2;
	-webkit-border-radius: 28px;
	border-radius: 28px;
}
.timeline .tm-items > li .tm-box {
	position: relative;
	background: #fff;
	min-height: 65px;
	padding: 10px 20px;
	border: 1px solid #e9e9e9;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.timeline .tm-items > li .tm-box:after {
	right: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-right-color: #fff;
	border-width: 8px;
	top: 50%;
	margin-top: -8px;
	z-index: 2;
}
.timeline .tm-items > li .tm-box p:last-child {
	margin-bottom: 0;
}
.timeline .tm-items > li .tm-box .tm-meta {
	margin: 10px 0 0;
}
.timeline .tm-items > li .tm-box .tm-meta span {
	display: inline-block;
	padding-right: 8px;
}
.timeline .tm-items > li .tm-box .tm-meta span:last-child,
.timeline .tm-items > li .tm-box .tm-meta span:last-of-type {
	padding-right: 0;
}
.timeline.timeline-simple .tm-body:after {
	left: 30px;
}
.timeline.timeline-simple .tm-body .tm-title {
	border: 1px solid #e9e9e9;
	margin: 0 10px;
}
.timeline.timeline-simple .tm-body .tm-items > li {
	padding: 0 0 0 55px;
}
.timeline.timeline-simple .tm-body .tm-items > li:before {
	display: block;
	position: absolute;
	content: " ";
	background: none repeat scroll 0 0 #cccccc;
	border-radius: 50%;
	box-shadow: 0 0 0 3px white, 0 0 0 6px #cccccc;
	height: 7px;
	left: 30px;
	top: 50%;
	width: 8px;
	margin-left: -4px;
	margin-top: -4px;
}
.timeline.timeline-simple .tm-body .tm-items > li .tm-box:before {
	left: -17px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-right-color: #e9e9e9;
	border-width: 8px;
	top: 50%;
	margin-top: -8px;
	z-index: 1;
}

@media only screen and (max-width: 991px) {
	.timeline .tm-body:after {
		left: 20px;
	}
	.timeline .tm-title {
		margin: 0;
	}
	.timeline .tm-items > li {
		padding-left: 50px;
	}
	.timeline .tm-items > li .tm-info {
		margin: 0 0 15px;
	}
	.timeline .tm-items > li .tm-info:after {
		content: "";
		display: table;
		clear: both;
	}
	.timeline .tm-items > li .tm-icon {
		border-width: 2px;
		float: left;
		font-size: 22px;
		height: 40px;
		line-height: 36px;
		margin: 0 15px 0 0;
		padding: 0;
		position: static;
		width: 40px;
	}
	.timeline .tm-items > li .tm-datetime {
		margin: 0;
		position: static;
		text-align: left;
	}
	.timeline .tm-items > li .tm-datetime .tm-datetime-date {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.3;
	}
	.timeline .tm-items > li .tm-datetime .tm-datetime-time {
		font-size: 18px;
		font-size: 1.8rem;
		line-height: 1.3;
	}
}
@media only screen and (max-width: 767px) {
	.timeline .tm-items > li .tm-box .tm-meta span {
		display: block;
	}
}

.media-gallery ul.mg-folders {
	list-style: none;
	padding: 0;
	margin: 0;
}
.media-gallery ul.mg-folders > li {
	display: block;
	position: relative;
}
.media-gallery ul.mg-folders > li a.menu-item {
	white-space: nowrap;
	text-overflow: ellipsis;
	padding-right: 80px;
}
.media-gallery ul.mg-folders > li a.menu-item i {
	margin-right: 5px;
	width: 16px;
}
.media-gallery ul.mg-folders > li .item-options {
	position: absolute;
	padding: 10px 0;
	right: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: opacity 0.1s ease-in;
	-moz-transition: opacity 0.1s ease-in;
	transition: opacity 0.1s ease-in;
}
.media-gallery ul.mg-folders > li .item-options a:hover {
	text-decoration: none;
}
.media-gallery ul.mg-folders > li:hover .item-options {
	opacity: 1;
}
.media-gallery ul.mg-tags {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
}
.media-gallery ul.mg-tags:after {
	content: "";
	display: table;
	clear: both;
}
.media-gallery ul.mg-tags > li {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}
.media-gallery ul.mg-tags > li a {
	display: block;
	padding: 2px 7px;
	font-size: 11px;
	background-color: #171717;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #666;
}
.media-gallery ul.mg-tags > li a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #cccccc;
}
.media-gallery .mg-files {
	padding: 5px 0 30px;
}
.media-gallery .mg-files .thumbnail {
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 30px;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.media-gallery .mg-files .thumbnail .thumb-preview {
	position: relative;
	z-index: 2;
}
.media-gallery .mg-files .thumbnail .thumb-preview .thumb-image {
	display: block;
	overflow: hidden;
}
.media-gallery .mg-files .thumbnail .thumb-preview img {
	width: 100%;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	transition: all 0.1s linear;
	border-radius: 5px;
}
.media-gallery .mg-files .thumbnail .thumb-preview .mg-thumb-options {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7);
	visibility: hidden;
	overflow: hidden;
}
.media-gallery .mg-files .thumbnail .thumb-preview .mg-thumb-options .mg-zoom {
	position: absolute;
	top: 0;
	right: 0;
	padding: 5px 15px 10px;
	font-size: 22px;
	font-size: 2.2rem;
	color: #fff;
	background-color: #cccccc;
	border-radius: 0 0 0 15px;
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.1s linear 0.1s;
	-moz-transition: -moz-transform 0.1s linear 0.1s;
	-ms-transition: -ms-transform 0.1s linear 0.1s;
	transition: transform 0.1s linear 0.1s;
	-webkit-transform: translate(100%, 0);
	-moz-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	transform: translate(100%, 0);
}
.media-gallery .mg-files .thumbnail .thumb-preview .mg-thumb-options .mg-toolbar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #cccccc;
	color: #fff;
	padding: 6px 10px;
	-webkit-transition: -webkit-transform 0.1s linear 0.1s;
	-moz-transition: -moz-transform 0.1s linear 0.1s;
	-ms-transition: -ms-transform 0.1s linear 0.1s;
	transition: transform 0.1s linear 0.1s;
	-webkit-transform: translate(0, 100%);
	-moz-transform: translate(0, 100%);
	-ms-transform: translate(0, 100%);
	transform: translate(0, 100%);
}
.media-gallery .mg-files .thumbnail .thumb-preview .mg-thumb-options .mg-toolbar:after {
	content: "";
	display: table;
	clear: both;
}
.media-gallery .mg-files .thumbnail .thumb-preview .mg-thumb-options .mg-toolbar .mg-option {
	margin: 0;
}
.media-gallery .mg-files .thumbnail .thumb-preview .mg-thumb-options .mg-toolbar .mg-group > a {
	color: #fff;
	padding: 0 5px;
}
.media-gallery .mg-files .thumbnail .thumb-preview .mg-thumb-options .mg-toolbar .mg-group .mg-toggle {
	color: #fff;
	background: none;
	border: none;
	padding: 2px 2px 2px 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.media-gallery .mg-files .thumbnail .mg-title {
	margin: 13px 0 2px;
	padding-bottom: 2px;
	display: inline-block;
	font-size: 18px;
	font-size: 1.8rem;
}
.media-gallery .mg-files .thumbnail .mg-title small {
	position: relative;
	top: 0;
	left: 0;
	color: #9e9e9e;
	opacity: 0;
	z-index: 1;
	font-size: 10px;
	font-size: 1rem;
}
.media-gallery .mg-files .thumbnail .mg-description:after {
	content: "";
	display: table;
	clear: both;
}
.media-gallery .mg-files .thumbnail.thumbnail-selected {
	border-color: #fff;
	box-shadow: 0 0 8px -1px #cccccc;
}
.media-gallery .mg-files .thumbnail.thumbnail-selected .mg-title small {
	opacity: 1;
}
.media-gallery .mg-files .thumbnail.thumbnail-selected .thumb-preview .mg-thumb-options {
	visibility: visible;
}
.media-gallery .mg-files .thumbnail.thumbnail-selected .thumb-preview .mg-thumb-options .mg-toolbar {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.media-gallery .mg-files .thumbnail:hover .mg-title small {
	opacity: 1;
}
.media-gallery .mg-files .thumbnail:hover .thumb-preview img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.media-gallery .mg-files .thumbnail:hover .thumb-preview .mg-thumb-options {
	visibility: visible;
}
.media-gallery .mg-files .thumbnail:hover .thumb-preview .mg-thumb-options .mg-zoom {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.media-gallery .mg-files .thumbnail:hover .thumb-preview .mg-thumb-options .mg-toolbar {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.log-viewer {
	line-height: 26px;
	line-height: 2.6rem;
	font-family: monospace;
	font-size: 14px;
	font-size: 1.4rem;
}

/* Change Content Background Color */
html.search-results body {
	background: #fff;
}

/* Search Results Wrapper */
.search-content {
	margin: -40px;
}
.search-content .search-control-wrapper {
	background: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	margin-top: 3px;
	padding: 20px;
}

/* Search Results Tabs */
.search-content .search-toolbar {
	border-bottom: 1px solid #ebebeb;
	margin: 0 0 40px;
}
.search-content .search-toolbar .nav-pills {
	margin: 0 40px;
}
.search-content .search-toolbar .nav-pills li {
	margin: 0 15px 0 0;
}
.search-content .search-toolbar .nav-pills li:last-child {
	margin-right: 0;
}
.search-content .search-toolbar .nav-pills li a {
	padding-left: 5px;
	padding-right: 5px;
}
.search-content .search-toolbar .nav-pills li a,
.search-content .search-toolbar .nav-pills li a:hover,
.search-content .search-toolbar .nav-pills li a:focus {
	background: none;
	border-radius: 0;
	border-bottom: 2px solid #fff;
	border-top: 2px solid #fff;
	color: var(--custom-on-background-color);
}
.search-content .search-toolbar .nav-pills li a:hover,
.search-content .search-toolbar .nav-pills li a:focus {
	background: none;
	border-radius: 0;
	border-bottom: 2px solid #fff;
	border-top: 2px solid #fff;
	color: #555;
}
.search-content .search-toolbar .nav-pills li.active a {
	color: #cccccc;
	border-bottom-color: #cccccc;
}
.search-content > .tab-content {
	border: none;
	box-shadow: none;
	padding: 0 40px;
}

/* Search Result Totals */
.search-content .total-results {
	margin-top: -25px;
}

/* Search Results List */
.search-results-list {
	max-width: 750px;
}
.search-results-list li {
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
	padding-bottom: 15px;
	position: relative;
}
.search-results-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.search-results-list .result-type {
	right: 5px;
	position: absolute;
	top: 5px;
}
.search-results-list a {
	border-radius: 4px;
	display: block;
	padding: 25px;
	text-decoration: none;
}
.search-results-list a .title {
	margin-top: 0;
}
.search-results-list a .description {
	color: var(--custom-on-background-color);
}
.search-results-list a p:last-child {
	margin-bottom: 0;
}
.search-results-list a:hover {
	background: #f7f7f7;
}
.search-results-list .has-thumb {
	display: table;
	width: 100%;
}
.search-results-list .has-thumb .result-thumb,
.search-results-list .has-thumb .result-data {
	display: table-cell;
	vertical-align: top;
}
.search-results-list .result-thumb {
	padding-right: 25px;
}
.search-results-list .result-thumb img,
.search-results-list .result-thumb .fa {
	height: 75px;
	width: 75px;
}
.search-results-list .result-thumb .fa {
	background: #cccccc;
	color: white;
	font-size: 36px;
	font-size: 3.6rem;
	line-height: 75px;
	line-height: 7.5rem;
	text-align: center;
}

/* Search Results Responsive */
@media only screen and (max-width: 767px) {
	.search-content {
		margin: -20px;
	}
}
@media only screen and (max-width: 480px) {
	.search-results-list .has-thumb {
		display: block;
	}
	.search-results-list .has-thumb:after {
		content: "";
		display: table;
		clear: both;
	}
	.search-results-list .has-thumb .result-thumb,
	.search-results-list .has-thumb .result-data {
		display: block;
	}
	.search-results-list .has-thumb .result-thumb {
		float: left;
	}
	.search-results-list .has-thumb .result-data .title {
		margin-top: 3px;
	}
	.search-results-list .result-thumb img,
	.search-results-list .result-thumb .fa {
		height: 35px;
		width: 35px;
	}
	.search-results-list .result-thumb .fa {
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 35px;
		line-height: 3.5rem;
	}
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
	background: #888;
}
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link {
	isolation: isolate;
	border-color: var(--bs-nav-tabs-link-hover-border-color);
}

/* .nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
	isolation: isolate;
	border-color: var(--bs-nav-tabs-link-hover-border-color);
} */

/* .btn {
	padding: 0.75em;
	font-size: 1em;
} */

.card-header-small {
	padding: 8px;
}

.card-header-small .card-title {
	font-size: 16px;
}

#menu a {
	font-size: 16px;
}

#notifications-dropdown.dropdown-toggle::after{
	display: none;
}

#notifications-container ul.dropdown-menu {
	width: 13rem;
	max-height: 18rem;
	overflow: auto;
}

.notification-text {
	font-size: 0.9em;
}

.notification-container {
	border-bottom: 1px solid var(--custom-on-surface-color);
}

.notification-title {
	font-size: 1em;
}

.text-white {
	--bs-text-opacity: 1;
	color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}