/* ===== Primary Styles ========================================================
   Author: Dan Mitchell / Vitamin Cornwall
   ========================================================================== */

   
/**********************************************************************
 Import other stylesheets
 *********************************************************************/

@import url('./reset.css');
@import url('./grid.css');

@import url('./animate.min.css');

@import url('../fontawesome/css/all.css');
@import url('../js/libs/choices/styles/choices.min.css');
@import url('../js/libs/chartjs/Chart.min.css');
@import url('../js/libs/simplebar/simplebar.css');
@import url('../js/libs/tippy/light.css');

@import url('../fonts/opensans/stylesheet.css');


/**********************************************************************
 Variables
 *********************************************************************/

:root {
	--baseBgColour: #2b2e33;
}


/**********************************************************************
 Clearable elements
 *********************************************************************/

.clearfix::before, .clearfix::after { content: " "; display: table; }
.clearfix::after { clear: both; } .clearfix { *zoom: 1; }

.container::before, .container::after { content: " "; display: table; }
.container::after { clear: both; } .container { *zoom: 1; }

/* .row::before, .row::after { content: " "; display: table; } */
/* .row::after { clear: both; } .row { *zoom: 1; } */


/**********************************************************************
 Set default elements stylings
 *********************************************************************/

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	color: #333;
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: .2px;
	text-align: left;
}

html {
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
	background-color: transparent;
	color: #000;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin: 0 0 1em 0;
}

h1 {
	font-size: 24px;
}
h2 {
	font-size: 22px;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 14px;
}

hr {
	margin: 1em 0;
	height: 1px;
	border: none;
	background-color: rgba(0,0,0,0.07);
	width: 100%;
}

form {
	margin: 0;
}

p {
	margin: 1.5em 0;
}

p + form {
	margin-top: 2em;
}

button {
	margin: 0;
	overflow: visible;
	-webkit-appearance: button;
}

[href] {
	cursor: pointer;
}

canvas {
	border: none;
	outline: none;
}


/**********************************************************************
 Useful utility styling classes
 *********************************************************************/

.pad-8040 {
	padding: 80px 40px;
}

.width-100 {
	width: 100px;
	max-width: 100px;
}

.width-200 {
	width: 200px;
	max-width: 200px;
}

.width-700 {
	max-width: 700px;
}

.margintopbottom-5 > * {
	margin: 5px 0;
}

.center {
	text-align: center;
}

.nowrap {
	white-space: nowrap;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.row {
	margin-bottom: 1.5em;
}

.last-row {
	margin-bottom: 0;
}

.full-bg {
	position: fixed;
	z-index: 9;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: #8e8e96;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.row.divider {
	text-align: center;
	margin-bottom: 2.5em;
}
	.row.divider span {
		display: block;
		position: relative;
		overflow: hidden;
	}
	.row.divider span::before {
		content: "";
		position: absolute;
		width: 40%;
		height: 1px;
		background: #d8d8d8;
		left: 0;
		top: 50%;
	}
	.row.divider span::after {
		content: "";
		position: absolute;
		width: 40%;
		height: 1px;
		background: #d8d8d8;
		right: 0;
		top: 50%;
	}

.hidden {
	display: none;
}

.split-left {
	width: 48%;
	float: left;
}
.split-right {
	width: 48%;
	float: right;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}



/**********************************************************************
 The flex layout
 *********************************************************************/

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	min-height: 100vh;
	max-height: 100vh;
}

body,
main {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

main {
	flex-direction: row;
	min-height: 0;
}

header {
	display: flex;
	flex-direction: row;
}

aside {
	flex: 0 0 260px;
	/* overflow-y: auto; */
}

main .body {
	flex: 1 1 auto;
	overflow-y: auto;
}

aside .lower {
	position: sticky;
	bottom: 0;
}


/**********************************************************************
 Menus
 *********************************************************************/

 ul.menu {
	list-style: none;
	max-width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}
	ul.menu li {
		position: relative;
	}
	ul.menu li.divider {
		height: 1px;
		background-color: rgba(0,0,0,0.07);
		margin: 12px 0px;
	}
	ul.menu li.heading {
		font-size: 15px;
		padding: 10px 15px;
		position: relative;
		white-space: nowrap;
		color: #fff;
		transition: all .3s ease;
		background: #72777a;
		position: sticky;
		top: 0;
		z-index: 10;
	}
	ul.menu li.subheading {
		font-size: 15px;
		padding: 15px 15px;
		position: relative;
		white-space: nowrap;
		line-height: 1em;
		color: #333;
		transition: all .3s ease;
		background: #e0e0e0;
		border-bottom: 1px solid #e0e0e0;
		position: sticky;
		top: 0px;
		z-index: 11;
		font-weight: bold;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	ul.menu li.subheading[data-collapsible] {
		cursor: pointer;
	}
	ul.menu li.subheading > span {
		display: flex;
		align-items: center;
		flex: 0 0 90%;
		overflow: hidden;
	}
	ul.menu li.subheading span.total {
		font-style: normal;
		font-weight: normal;
		margin-left: 5px;
		font-size: 0.8em;
	}
	ul.menu li.subheading[data-collapsible]::after {
		content: "";
		width: 12px;
		height: 10px;
		margin-right: 5px;
		background-image: url('../images/chevron-1.svg');
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		transition: transform 100ms ease-out;
		will-change: transform;
	}
	ul.menu li.subheading[data-collapsible].collapsed::after {
		transform: rotate(180deg);
	}
	ul.menu li.subheading[data-collapsible].collapsed {
		border-bottom: 1px solid #cecece;
	}
	ul.menu .subheading img {
		width: auto;
		height: 1.7em;
		margin-right: 0.75em;
	}
	ul.menu .subheading i {
		vertical-align: middle;
		margin-right: 0.75em;
	}
	ul.menu .subheading b {
		display: block;
		font-style: normal;
		font-size: 12px;
		font-weight: normal;
	}
	ul.menu .subheading span {
		display: inline-block;
		vertical-align: middle;
	}
	.calltoaction + ul.menu li.heading {
		top: 70px;
	}
	.calltoaction + ul.menu li.subheading {
		top: 70px;
	}
	ul.menu li.noresults {
		font-size: 15px;
		padding: 25px 15px;
		position: relative;
		color: #72777a;
		transition: all .3s ease;
		text-align: center;
	}
		ul.menu li a {
			display: flex;
			align-items: center;
			font-size: 15px;
			padding: 10px 15px;
			position: relative;
			white-space: nowrap;
			color: rgba(0,0,0,0.87);
			transition: backgroundColor .3s ease;
			line-height: 1.1;
			cursor: pointer;
		}
			ul.menu li > a .icon-holder {
				position: relative;
				display: inline-block;
				flex: 1;
				border-radius: 6px;
				font-size: 17px;
				/* height: 35px; */
				/* line-height: 35px; */
				/* margin-right: 14px; */
				text-align: left;
				width: 35px;
				transition: backgroundColor .3s ease;
				vertical-align: middle;
				background-repeat: no-repeat;
				background-size: contain;
				background-position: center center;
				vertical-align: middle;
			}
			.is-collapsed ul.menu li > a .icon-holder {
				text-align: center;
			}
			ul.menu li > a .title {
				display: inline-block;
				/* max-width: 80%; */
				flex: 5;
				overflow: hidden;
				text-overflow: ellipsis;
				vertical-align: middle;
				transition: all .3s ease;
				transition-property: max-width;
			}
		ul.menu li:hover {
			background-color: rgba(0,0,0,0.1);
		}
		ul.menu li.subheading:hover {
			background-color: #e0e0e0;
		}
		ul.menu li:hover a {
			color: #313435;
			text-decoration: none;
		}
		ul.menu li a.hover:hover {
			color: #313435 !important;
			text-decoration: none;
			background-color: #f3f3f3 !important;
		}
		ul.menu li a.active {
			background-color: #0074ff;
			color: #fff;
			font-weight: 600;
		}
		ul.menu li a:active {
			/* transform: scale(0.95); */
		}
		ul.menu li.open {
			text-decoration: none;
			background-color: #0074ff;
		}
		ul.menu li.open:hover a {
			background-color: inherit;
		}
		ul.menu li.open > a {
			color: #fff;
		}
		.is-collapsed .mainsidebar ul.menu li > a {
			padding: 10px 0;
		}
		ul.menu li.list-heading {
			margin-top: 1em;
		}
		ul.menu li em {
			display: inline-block;
			font-style: normal;
			max-width: 90%;
			overflow: hidden;
			text-overflow: ellipsis;
		}
		/* .flyoutmenu ul.menu li em {
			max-width: 90%;
		} */
		ul.menu li.dropdown ul {
			display: none;
			list-style: none;
			margin: 0;
			padding: 0;
			background-color: #fff;
		}
			ul.menu li.dropdown ul li {
				margin:0;
				padding:0;
			}
				ul.menu li.dropdown ul li a {
					padding-left: 2.75em;
				}
		ul.menu li.dropdown > a::after {
			/* position: absolute; */
			/* top: 50%; */
			/* right: 14px; */
			/* display: inline-block; */
			flex: 1;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			content: "\f061";
			transform: rotate(0deg);
			transform-origin: 50% 50%;
			transition: all .3s ease;
			border-radius: 50%;
			max-width: 20px;
			line-height: 20px;
			text-align: center;
			margin-left: 1px;
		}
		ul.menu li.dropdown.open > ul {
			display: block;
		}
		ul.menu li.dropdown.open > a::after {
			transform: rotate(90deg);
		}

		ul.menu li.dropdown.flyoutmenu.flyoutmenu-active {
			background-color: #f3f3f3;
		}
		/*
		ul.menu li.dropdown.flyoutmenu > a.dropdown-active-link::after {
			background-color: #72777a;
			color: #e6e6e6;
			transform: rotate(0deg) translateY(-50%) !important;
		}
		ul.menu li.dropdown.flyoutmenu > a:hover {
			color: inherit;
			text-decoration: none;
			background-color: inherit;
		}
		*/
		ul.menu li.dropdown.flyoutmenu > a::after {
			content: "\f141";
		}
		ul.menu li.dropdown.flyoutmenu.flyoutmenu-active > a::after {
			background-color: #0373fb;
			color: #fff;
		}

		/*
		ul.menu li.dropdown.flyoutmenu.open > a::after {
			transform: rotate(0deg) translateY(-50%);
		}
		*/
	ul.menu li small {
		display: block;
		width: 72%;
		overflow: hidden;
		text-overflow: ellipsis;
		margin-top: 0.25em;
	}


.flyoutmenu-menu {
	display: none;
}

.flyoutmenu-main {
	position: fixed;
	left:0;
	top:0;
	z-index: 99999;

	background: #fff;
	min-width: 200px;
	max-width: 350px;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: .25em;
	transform: scale(1) translateX(-10%);
	transition: transform .2s ease-out, opacity .2s ease-out;
	opacity: 0;
	visibility: hidden;
	transform-origin: top left;
	margin-left: 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.flyoutmenu-main.active {
	visibility: visible;
	opacity: 1;
	transform: scale(1) translateX(0%);
}
	.flyoutmenu-main ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
		.flyoutmenu-main li {
			margin: 0;
			padding: 0;
		}
			.flyoutmenu-main li.divider {
				height: 1px;
				background-color: rgba(0,0,0,0.07);
				margin: 12px 0px;
			}
			.flyoutmenu-main li > a {
				padding: 8px 15px;
				display: flex;
				text-decoration: none;
				align-items: center;
				cursor: pointer;
			}
			.flyoutmenu-main li > a:hover {
				background: #f3f3f3;
			}
			.flyoutmenu-main li > a i {
				margin-right: 0.5em;
				min-width: 20px;
				max-width: 20px;
			}
			.flyoutmenu-main li > a .title {
				white-space: nowrap;
			}


/**********************************************************************
 Header
 *********************************************************************/

header {
	/* border-bottom: 1px solid #e8ecee; */
	border-bottom: 1px solid rgba(0,0,0,0.08);
	background: #f6f6f6;
	/* box-shadow: 0 1px 3px 0 rgba(21,27,38,.15); */
	box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 6px 0px;
	position: relative;
	z-index: 10;
}
	header .logo {
		flex: 0 0 260px;
		border-right: 0px solid #e8ecee;
		height: 65px;
		text-align: center;
		background-repeat: no-repeat;
		background-position: 25px center;
		background-size: 145px;
		background-color: #0074FF;
		background-image: url('../images/logo-type.svg');
		transition: flex-basis .5s;
	}
	header .block {
		display: flex;
		flex-direction: row;
		flex: 1 1 auto;
		justify-content: space-between;
		/* justify-content: flex-start; */
		align-items: center;
	}
	header .toggle-aside-main {
		margin-left: 1em;
		cursor: pointer;
		width: 50px;
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
	}
	header .toggle-aside-main:hover {
		background-color: rgba(0,0,0,0.1);
	}
	header .user-nav {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
		header .user-nav li {
			display: inline-block;
			/* margin-left: 2em; */
			margin: 0 7px 0 14px;
		}
		header .user-nav li i.fas {
			/* margin-right: 1em; */
			display: inline-block;
			vertical-align: middle;
		}
		header .user-nav li .title {
			margin-left: 1em;
			display: inline-block;
			vertical-align: middle;
			font-weight: 600;
		}

.dropdown-user {
	cursor: pointer;
}
.dropdown-user:hover {
	background-color: inherit !important;
}
.dropdown-user.flyoutmenu-active {
	background-color: inherit !important;
}
.dropdown-user > span {
	display: block;
	padding: 10px 15px;
	border-radius: 0.5em;
	transition: backgroundColor 100ms ease-in-out;
	background-color: rgba(0,0,0,0.1);
	white-space: nowrap;
}
.dropdown-user > span small {
	display: block;
	font-size: 10px;
	width: auto !important;
}
.dropdown-user:active span {
	/* transform: scale(0.9); */
}
.dropdown-user:hover > span,
.dropdown-user.flyoutmenu-active > span {
	background-color: #0074ff;
	color: #fff;
}

.toggledarkmode_li {
	display: flex !important;
	align-items: stretch;
	justify-content: center;
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
.toggledarkmode_li:hover {
	background: rgba(0,0,0,0.1) !important;
}
.toggledarkmode {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1em;
}


/**********************************************************************
 App flex
 *********************************************************************/

 .app {
	display: flex;
	flex-direction: row;
	max-height: 100%;
	min-height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.app aside {
	position: relative;
	z-index: 10;
}

.app .appbody {
	min-height: 0;
	flex: 1 1 auto;
	position: relative;
	z-index: 9;
	/* overflow: hidden; */
	/* overflow-y: auto; */
}

.maincontent {
	padding: 25px;
}


/**********************************************************************
 Aside
 *********************************************************************/

aside {
	max-width: 260px;
	/* border-right: 0px solid #e8ecee; */
	border-right: 1px solid rgba(0,0,0,0.08);
	background-color: #fff;
	transition: flex-basis .5s;
	transition-property: flex-basis, max-width, opacity;
	/* box-shadow: 1px 0 3px 0 rgba(21,27,38,.15); */
	box-shadow: rgba(0, 0, 0, 0.13) 2px 0px 6px 0px;
}

main > aside {
	position: relative;
	z-index: 9;
	/* background-color: #f3f2f8; */
	background-color: #f6f6f6;
	border-right: 1px solid rgba(0,0,0,0.08);
	padding: 0.78em;
}

main > aside ul.menu li {
	border-radius: 0.6em;
	overflow: hidden;
	margin-bottom: 2px;
}
main > aside ul.menu li:last-child {
	margin-bottom: 0;
}

aside.aside-right {
	order: 1;
	border-right: none;
	border-left: 0px solid #e8ecee;
	box-shadow: rgba(0, 0, 0, 0.3) -2px 0px 6px 0px;
	max-width: 260px;
}
aside.aside-right.hidden {
	max-width: 0;
	/* visibility: hidden; */
	display: block;
	flex: 0 0 0px;
	padding: 0;
	/* opacity: 0; */
}

.formpanel-veil {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.6);
	backdrop-filter: blur(1px);
	transition: all 200ms ease-in-out;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
}

aside.formpanel {
	flex-basis: 300px;
	max-width: 300px;
	display: flex;
	z-index: 99999;
}
aside.formpanel + .formpanel-veil {
	visibility: visible;
	opacity: 1;
}
aside.formpanel.hidden + .formpanel-veil {
	visibility: hidden;
	opacity: 0;
}
aside.formpanel .inside {
	display: flex;
	flex-direction: column;
	max-width: 300px;
	min-width: 300px;
	width: 300px;
	/* overflow-x: hidden; */
}
aside.formpanel form {
	padding: 20px;
	z-index: 5;
}
aside.formpanel .formpanel-header {
	padding: 10px;
	background: #0074ff;
	color: #fff;
	font-weight: bold;
	position: sticky;
	top: 0;
	z-index: 10;
	font-size: 16px;
	line-height: 1;
	display: flex;
	justify-content: flex-start;
}
aside.formpanel .formpanel-header-main {
	justify-content: space-between;
}
aside.formpanel .formpanel-header a {
	color: #fff !important;
	margin-right: 10px;
}
aside.formpanel .formpanel-header > i {
	margin-right: 0.75em;
	width: 20px;
}
aside.formpanel .formpanel-section {
	position: relative;
	display: flex;
	flex-direction: column;
}
aside.formpanel .formpanel-section .formpanel-header {
	background: #005fbd;
	color: #fff;
	top: 36px;
	z-index: 9;
}

/**********************************************************************
 Main
 *********************************************************************/

main {
	background-color: #f6f8f9;
}


/**********************************************************************
 Tables
 *********************************************************************/

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1em;
	background-color: transparent;
	border-collapse: collapse;
	background: #fff;
	border-bottom: 1px solid #e9ecef;
}
.table:last-child {
	margin-bottom: 0;
}
	.table td,
	.table th {
		padding: 15px;
		border-top: 1px solid #e9ecef;
	}
	.table thead th {
		vertical-align: bottom;
		border-bottom: 2px solid #e9ecef;
	}
.table-striped tbody tr:nth-of-type(even) {
	background-color: #f9f9f9;
}
.table-hover tbody tr {
	transition: all .1s ease;
}
.table-hover tbody tr:hover {
	background-color: #f3f3f3;
}
.table tr[data-href] {
	cursor: pointer;
}
.table tr[data-editid].selected {
	background-color: #0074ff !important;
	color: #fff;
}
.table tr.no-results td {
	text-align: center;
	padding: 2em 0;
}





/**********************************************************************
 Sidebars
 *********************************************************************/

.sidebar .calltoaction {
	padding: 20px;
	background-color: #f5f5f5;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	position: sticky;
	top: 0;
	z-index: 20;
}

.sidebarpanels {
	display: flex;
}


/**********************************************************************
 A box
 *********************************************************************/

.box {
	background-color: #fff;
	border: 1px solid rgba(0,0,0,0.07);
	padding: 20px;
	margin-bottom: 20px;
}
	.box h6 {
		margin: 0 0 1.5em 0;
		font-weight: bold;
		font-size: 16px;
		color: #313435;
	}

.box-header {
	display: flex;
	flex-direction: row;
	flex: 1 1 auto;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 20px 0;
}
	.box-header h1 {
		margin: 0;
		padding: 0 0 5px 0;
		position: relative;
	}
		.box-header h1 i {
			margin-right: 0.25em;
		}
	.box-header h1::after {
		content: "";
		position: absolute;
		left: 0;
		top: 100%;
		width: 40px;
		height: 2px;
		background: #0074FF;
	}
		.box-header h1 small {
			display: block;
			font-size: 0.5em;
			color: #9a9a9a;
			text-transform: uppercase;
		}
	.box-header a.btn {
		height: auto;
	}
.box-fullwidth {
	margin-left: -20px;
	margin-right: -20px;
}

.box-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.box-flex > div {
	flex: 1;
	margin-right: 40px;
}
.box-flex > div:last-child {
	margin-right: 0;
}


/**********************************************************************
 Buttons
 *********************************************************************/

.btn {
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	user-select: none;
	border: 1px solid transparent;
	padding: .4em .8em;
	border-radius: .25em;
	transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;	
	cursor: pointer;
	min-height: 31px;
}
	.btn i {
		margin-right: 0.5em;
	}
.btn + .btn {
	margin-left: 10px;
}
.btn-block {
	display: block;
}
.btn-moresidepadding {
	padding-left: 2.5em;
	padding-right: 2.5em;
}
	.btn:hover {
		text-decoration: none;
	}
	.btn:focus {
		box-shadow: 0 0 0 0.2em rgba(33,150,243,.5);
		outline: 0;
	}
	.btn:active {
		color: #fff;
		background-color: #0074ff;
		border-color: #0074ff;
	    box-shadow: 0 0 0 0.2em rgba(33,150,243,.5);
	}

.btn-primary {
	color: #fff !important;
	background-color: #2196fe;
	border-color: #2196f3;
}
	.btn-primary:hover {
		color: #fff !important;
		background-color: #0c83e2;
		border-color: #0c7cd5;
	}
	.btn-primary:focus {
		box-shadow: 0 0 0 0.2em rgba(33,150,243,.5);
	}
	.btn-primary:active {
		color: #fff !important;
		background-color: #0c7cd5;
		border-color: #0b75c9;
		box-shadow: 0 0 0 0.2em rgba(33,150,243,.5);
	}

.btn-secondary {
	color: #fff !important;
    background-color: #868e96;
    border-color: #868e96;
}
	.btn-secondary:hover {
		color: #fff !important;
		background-color: #727b84;
		border-color: #6c757d;
	}
	.btn-secondary:focus {
		box-shadow: 0 0 0 0.2em hsla(210,7%,56%,.5);
	}
	.btn-secondary:active {
		color: #fff !important;
		background-color: #6c757d;
		border-color: #666e76;
		box-shadow: 0 0 0 0.2em hsla(210,7%,56%,.5);
	}

.btn-success {
	color: #fff !important;
    background-color: #4caf50;
    border-color: #4caf50;
}
	.btn-success:hover {
		color: #fff !important;
		background-color: #409444;
		border-color: #3d8b40;
	}
	.btn-success:focus {
		box-shadow: 0 0 0 0.2em rgba(76,175,80,.5);
	}
	.btn-success:active {
		color: #fff !important;
		background-color: #3d8b40;
		border-color: #39833c;
		-webkit-box-shadow: 0 0 0 0.2em rgba(76,175,80,.5);
		box-shadow: 0 0 0 0.2em rgba(76,175,80,.5);
	}

.btn-danger {
    color: #fff !important;
    background-color: #f44336;
    border-color: #f44336;
}
	.btn-danger:hover {
		color: #fff !important;
		background-color: #f22112;
		border-color: #ea1c0d;
	}
	.btn-danger:focus {
		box-shadow: 0 0 0 0.2em rgba(244,67,54,.5);
	}
	.btn-danger:active {
		color: #fff !important;
		background-color: #ea1c0d;
		border-color: #de1b0c;
		-webkit-box-shadow: 0 0 0 0.2em rgba(244,67,54,.5);
		box-shadow: 0 0 0 0.2em rgba(244,67,54,.5);
	}

.btn-warning {
	color: #111 !important;
    background-color: #ffeb3b;
    border-color: #ffeb3b;
}
	.btn-warning:hover {
		color: #111 !important;
		background-color: #ffe715;
		border-color: #ffe608;
	}
	.btn-warning:focus {
		box-shadow: 0 0 0 0.2em rgba(255,235,59,.5);
	}
	.btn-warning:active {
		color: #111 !important;
		background-color: #ffe608;
		border-color: #fae100;
		-webkit-box-shadow: 0 0 0 0.2em rgba(255,235,59,.5);
		box-shadow: 0 0 0 0.2em rgba(255,235,59,.5);
	}

.btn-info {
	color: #fff !important;
    background-color: #00bcd4;
    border-color: #00bcd4;
}
	.btn-info:hover {
		color: #fff !important;
		background-color: #009aae;
		border-color: #008fa1;
	}
	.btn-info:focus {
		box-shadow: 0 0 0 0.2em rgba(0,188,212,.5);
	}
	.btn-info:active {
		color: #fff !important;
		background-color: #008fa1;
		border-color: #008394;
		-webkit-box-shadow: 0 0 0 0.2em rgba(0,188,212,.5);
		box-shadow: 0 0 0 0.2em rgba(0,188,212,.5);
	}

.btn-danger.btn-invert {
	color: #f44336 !important;
	background-color: transparent;
	border-color: transparent;
}
	.btn-danger.btn-invert:hover {
		color: #fff !important;
		background-color: #f22112;
		border-color: #ea1c0d;
	}

.btn[disabled] {
	opacity: 0.5;
	cursor: default;
	background-color: #CCC;
	border-color: #999;
	color: #000 !important;
}
	.btn[disabled]:hover,
	.btn[disabled]:active {
		background-color: #CCC;
		border-color: #999;
		color: #000 !important;
	}

.btn-icon i {
	margin-left: 0.5em;
	margin-right: 0.5em;
}

.btn-icon-left i {
	margin-left: 0 !important;
	margin-right: 0.5em !important;
}

.btn-icon-right i {
	margin-left: 0.5em !important;
	margin-right: 0 !important;
}


/**********************************************************************
 Alerts
 *********************************************************************/

.alert {
	position: relative;
	padding: .7em 1.25em;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: .25em;
}
	.alert-primary {
		color: #114e7e;
		background-color: #d3eafd;
		border-color: #c1e2fc;
	}
	.alert-secondary {
		color: #464a4e;
		background-color: #e7e8ea;
		border-color: #dddfe2;
	}
	.alert-success {
		color: #285b2a;
		background-color: #dbefdc;
		border-color: #cde9ce;
	}
	.alert-danger {
		color: #7f231c;
		background-color: #fdd9d7;
		border-color: #fccac7;
	}
	.alert-warning {
		color: #857a1f;
		background-color: #fffbd8;
		border-color: #fff9c8;
	}
	.alert-info {
		color: #00626e;
		background-color: #ccf2f6;
		border-color: #b8ecf3;
	}


/**********************************************************************
 Forms
 *********************************************************************/

.form {
	display: block;
}
	.form label {
		display: inline-block;
		margin-bottom: 0.5em;
	}
	.form label.full {
		width: 100%;
	}
	.form input::placeholder,
	.form textarea::placeholder {
		color: #d6d6d6;
	}
	.form input[type=text],
	.form input[type=date],
	.form input[type=email],
	.form input[type=password],
	.form input[type=number],
	.form select,
	.form textarea {
		display: block;
		width: 100%;
		padding: .5em .7em;
		margin: 0;
		font-size: 1em;
		color: #495057;
		background-color: #fff;
		border: 1px solid #ced4da;
		border-radius: .25em;
		transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
		min-height: 2.25em;
	}
		.form input[type=text]:focus,
		.form input[type=date]:focus,
		.form input[type=email]:focus,
		.form input[type=password]:focus,
		.form input[type=number]:focus,
		.form select:focus,
		.form textarea:focus {
			color: #495057;
			background-color: #fff;
			border-color: #9acffa;
			outline: none;
			box-shadow: 0 0 0 0.2em rgba(33,150,243,.25);
		}
	.form textarea {
		min-height: 100px;
		resize: vertical;
	}
	.form option.placeholder {
		color: #d6d6d6;
	}
	.form select {
		-webkit-appearance: none;
		-moz-appearance: none;
		text-indent: 1px;
	}
	.form .select {
		display: block;
		position: relative;
	}
	.form .select::after {
		content: "\f061";
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;

		-webkit-font-smoothing: antialiased;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		line-height: 2.2;

		color: #000;
		position: absolute;
		right: 0;
		top: 0;
		text-align: center;
		width: 40px;
		height: 100%;
		pointer-events: none;
		transition: .1s all ease-in-out;
	}
	.form .select.focus::after {
		/* content: "\f063"; */
		transform: rotate(90deg);
	}
	.form .select.multiple::after {
		display: none;
	}
	.form input[type=text] + input,
	.form input[type=text] + textarea {
		margin-top: 1em;
	}
	.form .row-buttons {
		display: flex;
		flex-direction: row;
		flex: 1 1 auto;
		flex-wrap: nowrap;
		justify-content: space-around;
	}
		.form .row-buttons .btn {
			flex-grow: 1;
		}
		.form .row-buttons .btn.hidden {
			display: none;
		}
	.darkmode .form .row-buttons-sticky {
		position: sticky;
		bottom: 0;
		backdrop-filter: saturate(1.8) blur(1.5em);
		padding: 10px 0;
		background: rgba(255,255,255,0.66);
	}
	.darkmode .form .row-buttons-sticky {
		background: rgba(43,46,51,0.66);
	}

.form .select-css {
	display: block;
	font-size: 14px;
	/* font-family: sans-serif; */
	font-weight: 500;
	color: #444;
	line-height: 1.3;
	padding: .1em 1.4em .1em .8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #aaa;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	border-radius: .5em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
		linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
	display: none;
}
.select-css:hover {
	border-color: #888;
}
.select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: none;
}
.select-css option {
	font-weight:normal;
}
	
.choices__input,
.choices__inner {
	color: #495057 !important;
	background: #fff !important;
	border: 1px solid #ced4da !important;
	border-radius: .25em !important;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out !important;
	min-height: 2.25em !important;
	font-size: 14px !important;
	padding: .5em .7em !important;
}
	.choices__input:focus {
		box-shadow: none !important;
		border-radius: 0 !important;
		border: none !important;
	}

[data-type=select-multiple] .choices__inner {
	padding: 4px 8px !important;
}

.choices__list + .choices__input {
	display: inline-block !important;
	border: none !important;
}

.choices__list--multiple .choices__item {
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #2196fe;
    border: 1px solid #2196fe;
    color: #fff;
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
    border-left: 1px solid #fff;
}


/**********************************************************************
 Custom checkboxes and radios
 *********************************************************************/

.checkbox {
	position: relative;
	user-select: none;
	cursor: pointer;
}
label.checkbox {
	display: flex;
	align-items: center;
}
.checkbox + .checkbox {
	/* margin-left: 20px; */
}
label + .checkbox {
	/* margin-left: 10px; */
}
.checkbox-flex {
	display: flex !important;
	align-items: flex-start !important;
}
	.checkbox input[type=checkbox],
	.checkbox input[type=radio] {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}
	.checkbox span {
		display: inline-block;
		width: 21px;
		height: 21px;
		background-color: #fff;
		border: 1px solid #ced4da;
		border-radius: 20%;
		vertical-align: middle;
		position: relative;
		margin-right: 0.5em;
		border-radius: .25em;
		transition: all .2s ease;
	}
	.checkbox:hover input ~ span,
	.checkbox:focus input ~ span,
	.checkbox input:focus ~ span {
		background-color: #e7e7e7;
	}
	.checkbox input:focus ~ span {
		border-color: #9acffa;
		outline: none;
		box-shadow: 0 0 0 0.2em rgba(33,150,243,.25);
	}
	.checkbox input:checked ~ span {
		background-color: #2196fe;
		border: 1px solid #2196fe;
	}
	.checkbox span::after {
		content: "";
		position: absolute;
		opacity: 1;
		transition: all .3s ease;
	}
	.checkbox span::after {
		left: 6px;
		top: 2px;
		width: 5px;
		height: 10px;
		border: solid #ffffff;
		border-width: 0 3px 3px 0;
		transform: rotate(45deg) scale(.25);
	}
	.checkbox input:checked ~ span::after {
		opacity: 1;
		transform: rotate(45deg) scale(1);
	}
	.checkbox.radio span::after {
		left: 4px;
		top: 4px;
		width: 11px;
		height: 11px;
		border: none !important;
		transform: scale(.25);
		border-radius: 50%;
		background-color: #fff;
	}
	.checkbox.radio span {
		border-radius: 50%;
	}

	/* .checkbox-eyes | replaces checkbox default with the 'eye' icon */
	.checkbox.checkbox-eyes:hover input ~ span,
	.checkbox.checkbox-eyes:focus input ~ span,
	.checkbox.checkbox-eyes input:focus ~ span {
		background-color: transparent;
	}
	.checkbox.checkbox-eyes span {
		border: none;
	}
	.checkbox.checkbox-eyes input:checked ~ span {
		background-color: transparent;
		border: none;
	}
	.checkbox.checkbox-eyes span::after {
		font-family: 'Font Awesome 5 Free';
		font-weight: 400;
		content: "\f06e";
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		line-height: 1.3;
		border: none;
		transform: rotate(0deg) !important;
		color: #757575;
		text-align: center;
		opacity: 0;
	}

	/* .checkbox-info | replaces checkbox default with the 'info' icon */
	.checkbox.checkbox-info span {
		border: none;
	}
	.checkbox.checkbox-info span::after {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		content: "\f05a";
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		line-height: 1.3;
		border: none;
		transform: rotate(0deg);
		color: #2196fe;
		text-align: center;
	}
	.checkbox.checkbox-info:hover input ~ span,
	.checkbox.checkbox-info:focus input ~ span,
	.checkbox.checkbox-info input:focus ~ span {
		background-color: transparent;
		border-color: transparent;
		box-shadow: none;
	}
	.checkbox.checkbox-info input:checked ~ span {
		background-color: transparent;
		border: none;
	}

.checkbox-list .checkbox {
	display: block;
	margin-left: 0;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/**********************************************************************
 Login panel
 *********************************************************************/

.panel-auth-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 0;
	background-color: #f6f8f9;
}
.panel-auth {
	max-width: 600px;
	background-color: rgba(255,255,255,1);
	border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	display: flex;
	flex-direction: row;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}
	.panel-auth .side {
		flex: 0 0 200px;
		min-height: 0;
		background-color: #0074ff;
		background-image: url('/app/public/assets/images/logo-t.svg');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 150px;
	}
	.panel-auth .inner {
		flex: 1 1 auto;
		padding: 2em 2em;
	}
	.panel-auth h4 {
		text-align: left;
		font-size: 1.7em;
	}
	.panel-auth .checkbox {
		margin-top: 5px;
	}
	.panel-auth a {
		display: inline-block;
	}
	.panel-auth a:hover {
		text-decoration: underline;
	}
	.panel-auth a.forgotpw {
		margin-top: 10px;
		font-size: 11px;
	}


/**********************************************************************
 Register panel
 *********************************************************************/

.panel-register {
	position: relative;
	z-index: 10;
	float: right;
	width: 400px;
	height: 100vh;
	background-color: rgba(255,255,255,0.98);
	box-shadow: 6px 0px 8px 3px rgba(0,0,0,0.5);
}
	.panel-register a.returntologin {
		margin-top: 10px;
		font-size: 12px;
		display: inline-block;
	}
	.panel-register a.returntologin:hover {
		text-decoration: underline;
	}


/**********************************************************************
 Apps
 *********************************************************************/

/* .app {
}
	.app .sidebar {
		background: #fff;
		top: 65px;
		bottom: 0;
		height: auto;
		z-index: 8888;
		box-shadow: 6px 0px 8px -2px rgba(0,0,0,0.1);
	}
	.app .sidebar .inner > ul {
		border-right: 0;
	}

.app-wrapper {
	min-height: 100vh;
	transition: all .3s ease-in-out;
	position: relative;
}
	.app-wrapper .inner {
		padding: 20px 30px;
	}

.app .sidebar + .app-wrapper {
	margin-left: 280px;
	min-height: calc(100vh - 65px);
} */



/**********************************************************************
 Content block
 *********************************************************************/

.content-block {
	display: none;
}
	.content-block.active {
		display: block;
	}



/**********************************************************************
 Loaders, Modals, and Veils
 *********************************************************************/

.veilspinner {
	position: fixed;
	z-index: 999998;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity .4s;
	transition-timing-function: cubic-bezier(0.36, 0.55, 0.19, 1);
	background-color: #444;
	opacity: .7;
	animation: veilfadein .4s;
	animation-fill-mode: forwards;
}
	.veilspinner.hidden {
		animation: veilfadeout .4s;
		animation-fill-mode: forwards;
	}

.spinner,
.veilspinner::before {
	content:"";
	position: absolute;
	z-index: 999999;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 50px;
	height: 50px;
	background: url('../images/spinner1.svg') center center no-repeat;
	background-size: contain;
}

.thespinner {
	width: 50px;
	height: 50px;
	background: url('../images/spinner1.svg') center center no-repeat;
	background-size: contain;
}
.thespinner {
	width: 100%;
	height: 100%;
	position: absolute;
	background-size: 50px 50px;
	background-color: rgba(0,0,0,0.3);
	left: 0;
	top: 0;
	cursor: not-allowed;
}

@keyframes veilfadeout {
	0% {
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

@keyframes veilfadein {
	0% {
		opacity: 0;
		visibility: visible;
	}
	100% {
		opacity: .9;
	}
}

.modal {
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	/* transition: opacity 200ms ease-in-out; */
	transition: visibility 0s 200ms, opacity 200ms ease-in-out;
}

.modal__dialog {
	width: 90%;
	max-width: 50vw;
	max-height: 75vh;
	min-width: 600px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	transform: scale(0.8);
	opacity: 0;
	transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
	position: relative;
	overflow: auto;
	transform-origin: center right;
}

.modal__header {
	padding: 20px;
	border-bottom: 1px solid #e2e2e2;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal__title {
	margin: 0;
}

.modal__close {
	padding: 0;
	font-size: 16px;
	border: none;
	color: #ccc;
	cursor: pointer;
	background-color: transparent;
	background-image: none;
}

.modal__close:focus {
	outline: none;
}

.modal__close:hover,
.modal__close:active {
	color: #0074ff;
}

.modal__body {
	min-height: 300px;
	position: relative;
}

.modal__iframe {
	width: 100%;
	height: 600px;
	border: 0;
	overflow: auto;
}

.modal--open {
	visibility: visible;
	opacity: 1;
	transition: opacity 200ms ease-in-out;
}

.modal--open .modal__dialog {
	opacity: 1;
	transform: scale(1);
}


/**********************************************************************
 Darken things up a bit
 *********************************************************************/

@media (prefers-color-scheme: dark) {
}

.darkmode header {
	background-color: #2c2c2c;
}
.darkmode header [href] {
	color: #fff;
}
.darkmode header .logo {
	border-color: rgba(255,255,255,0.08);
}

.darkmode main {
	background-color: #1f1f1f;
}

.darkmode aside {
	background-color: #2c2c2c;
	border-color: rgba(255,255,255,0.08);
	color: #cbd4db;
}
	.darkmode aside a {
		color: #cbd4db !important;
	}

.darkmode .app aside {
	background-color: #2b2e33;
}

.darkmode .dropdown-user {
	color: #fff;
}
.darkmode .dropdown-user > span {
	/* background-color: rgba(255,255,255,0.2); */
}
.darkmode ul.menu li.divider {
	/* background-color: #273240 !important; */
	background-color: rgba(255,255,255,0.08);
}
.darkmode .app ul.menu li.divider {
	background-color: #46494e !important;
}
.darkmode ul.menu li:not(.dropdown-user):not(.subheading):hover {
	background-color: rgba(255,255,255,0.08) !important;
}
.darkmode ul.menu li a.active {
	background-color: #0373fb !important;
	color: #fff !important;
}
.darkmode ul.menu li.subheading {
	background-color: #0f478a !important;
	color: #fff !important;
}
.darkmode ul.menu li a.hover:hover {
	background-color: rgba(255,255,255,0.08) !important;
	color: #cbd4db !important;
}
.darkmode ul.menu li.dropdown.flyoutmenu.flyoutmenu-active > a::after {
    background-color: #ffffff;
    color: #0373fb;
}
.darkmode:not(.cleanpagemode) aside .simplebar-scrollbar::before {
	background: #fff !important;
}

.darkmode ul.menu li.dropdown.flyoutmenu.flyoutmenu-active:not(.dropdown-user) {
	background-color: #0373fb !important;
}
.darkmode ul.menu li.dropdown.flyoutmenu.flyoutmenu-active a {
	color: #fff !important;
}
.darkmode ul.menu li.dropdown.flyoutmenu.flyoutmenu-active .checkbox.checkbox-eyes span::after {
	color: #fff;
}

/* .darkmode .flyoutmenu-menu {
	background: #2b2e33;
}

.darkmode .flyoutmenu-menu a {
	color: #fff;
} */

.darkmode .sticky-title {
	background-color: #64676b;
	color: #fff;
}

.darkmode .toggledarkmode {
	color: #fff;
}

.darkmode .toggle-aside-main {
	color: #fff;
}

.darkmode ul.menu li.dropdown ul {
	background-color: #005fbd;
}

.darkmode .marker-item {
	border-color: #4f535a;
}

.darkmode .marker-item:hover {
    background-color: #084077;
}

.darkmode .map-options-container {
	background-color: rgb(43, 46, 51);
}

.darkmode .choices__list--dropdown .choices__list {
	color: #000 !important;
}

.darkmode header .toggle-aside-main:hover {
	background-color: rgba(255,255,255,0.08) !important
}

/**********************************************************************
 Cards and box shadows
 *********************************************************************/

.card {
	background: #fff;
	border-radius: 2px;
	display: inline-block;
	height: 300px;
	margin: 1rem;
	position: relative;
	width: 300px;
}

.card-1 {
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.card-1:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-2 {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.card-3 {
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.card-4 {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-5 {
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}



/**********************************************************************
 Accordions
 *********************************************************************/

.accordion-trigger {
	cursor: pointer;
	position: relative;
}
.accordion-trigger::after {
	position: absolute;
	top: 50%;
	right: 14px;
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f078";
	width: 20px;
	/* height: 100%; */
	transform: translateY(-50%) rotate(0deg);
	transform-origin: 35% 50%;
	transition: all 0.3s;
}
.accordion-trigger.active::after {
	transform: translateY(-50%) rotate(180deg);
}
.accordion-content {
	max-height: auto;
	transition: max-height 0.3s, padding 0.3s;
}
.accordion-trigger.active + .accordion-content {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}


/**********************************************************************
 Accordions
**********************************************************************/

.tabs {
	z-index: 1;
	position: relative;
}

.tabs > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	border-bottom: 2px solid #005fbd;
	position: sticky;
	z-index: 1;
	top: 36px;
}

.tab {
	flex: 1;
	cursor: pointer;
	padding: 10px;
	background: #45515d;
	color: #fff;
	transition: all 100ms ease-in-out;
}

.tab:hover {
}

.tab:last-child {
}

.tab--active {
	background: #005fbd;
	/* font-weight: bold; */
}

.tab--active:hover {
}

.tabcontent {
	display: none;
	padding: 0px;
}

.tabcontent--active {
	display: block;
}



/**********************************************************************
 ...
**********************************************************************/

.swal2-container {
	z-index: 99999 !important;
}

select.ql-header {
	display: none !important;
}

.ql-editor p {
	margin: 1em 0 !important;
}
.ql-editor p:first-child {
	margin-top: 0 !important;
}
.ql-editor p:last-child {
	margin-bottom: 0 !important;
}
.ql-toolbar,
.ql-container {
	background-color: #fff !important;
}
.ql-container {
	color: #000;
}



.layerPopup {
	width: 200px;
	padding: 5px;
}
.layerPopupTitle {
	font-weight: bold;
	font-size: 1.3em;
	margin-top: 7px;
	color: #000;
}
.layerPopupOptions {
	float: right;
}


.pickr .pcr-button {
	width: 100% !important;
	height: 2.2em !important;
}

[data-nosimplebar] {
	overflow-y: auto;
}
