﻿@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;700&display=swap');

@keyframes dataUpdated {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}


/* LAYOUT */

html {
	width: 100%;
	min-height: 100%;
}

body {
	padding: 0px;
	margin: 0px;
	width: 100%;
	min-height: 100%;
	background-color: #fff;
	font-family: 'IBM Plex Sans', 'Helvetica Neue', sans-serif;
	font-size: 10.5pt;
	font-weight: 400;
	color: #162737;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
}

	body.bg-gray {
		background-color: #f7f8f9;
	}

	body.modal-open {
		overflow: hidden;
		height: 100%;
		max-height: 100%;
		touch-action: none;
	}

#nav {
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1000;
	height: 100vh;
	width: 90px;
	background-color: #ffffff;
	overflow-y: auto;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
}

	#nav ul {
		list-style: none;
		padding: 0px;
		margin: 0px;
	}

		#nav ul li {
			display: block;
			position: relative;
			left: 0px;
			top: 0px;
		}

			#nav ul li a {
				display: block;
				color: #9aa3b0;
				font-size: 7.5pt;
				text-align: center;
				text-decoration: none;
				text-transform: uppercase;
				padding: 15px 6px 15px 6px;
				transition: all .3s;
			}

				#nav ul li a:hover, #nav ul li a.active {
					color: #486a80;
					background-color: #fff;
					text-decoration: none;
				}

				#nav ul li a i {
					display: block !important;
					margin: 0px auto 6px auto !important;
					font-size: 14pt;
				}

			#nav ul li:not(.nav-dashboard-logo) {
				border-bottom: solid 0px #f7f8f9;
			}

.nav-logo {
	margin-bottom: 18px;
}

	.nav-logo img {
		display: block;
		margin: 0px auto 0px auto;
		max-width: 65%;
	}

.nav-icon {
	display: none;
}

.submenu .grid a {
	color: #9aa3b0 !important;
	font-size: 8pt;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	padding: 15px 6px 15px 6px;
	transition: all .3s;
	border-radius: 3px;
}

	.submenu .grid a:hover, .submenu .grid a.active {
		color: #486a80 !important;
		text-decoration: none;
	}

	.submenu .grid a i {
		display: block !important;
		margin: 0px auto 6px auto !important;
		font-size: 14pt;
	}

	.submenu .grid a .text {
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		display: block;
	}

#header {
	padding: 30px 24px 30px 18px;
	margin-left: -12px;
	margin-right: -12px;
	background-color: #fff;
}

	#header .icon-btn-group.header {
		top: 6px;
	}

		#header .icon-btn-group.header .icon-btn.big {
			top: 3px;
		}

	#header .icon-btn-group:not(.header) {
		top: 0px;
	}

	#header .icon-btn-group .btn {
		display: inline-block;
		position: relative;
		top: -12px;
		font-size: 9pt;
	}

	#header .page-subtitle i {
		font-size: 90%;
	}

	#header .avatar {
		margin-left: 18px;
		position: relative;
		top: 4px;
		width: 37px;
		height: 37px;
	}

#main {
	padding: 0px 0px 12px 0px;
}

#site {
	width: 100%;
	padding-left: 102px;
	padding-right: 12px;
}

img {
	max-width: 100%;
}

.avatar {
	width: 27px;
	height: 27px;
	border-radius: 50%;
}

	.avatar.initials {
		background-color: #9aa3b0;
		position: relative;
		left: 0px;
		top: 0px;
	}

		.avatar.initials .text {
			font-size: 6pt;
			color: #ffffff;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
		}

.dot {
	display: inline-block;
	z-index: 10;
	border-radius: 50%;
	padding: 3px;
	background-color: #243147;
}

	.dot.light {
		background-color: #9aa3b0;
	}

	.dot.success {
		background-color: #75b12a;
	}

	.dot.danger {
		background-color: #ea212d;
	}

	.dot.has-number {
		padding: 7px;
		top: 5px !important;
		right: 5px !important;
	}

		.dot.has-number span {
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			color: #ffffff;
			font-size: 7pt;
		}

.loading-screener {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 1040;
	background-color: rgba(0, 0, 0, .5);
}

	.loading-screener > div {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		color: #ffffff;
	}

	.loading-screener div.icon {
		font-size: 32pt;
		margin-bottom: 6px;
	}

	.loading-screener div.text {
		font-size: 12pt;
	}

.scroll-container-h {
	width: 100%;
	overflow-x: auto;
	white-space: nowrap;
}

.data-updated {
	animation: dataUpdated 2s;
}


/* FORMATTING */

h1, .h1 {
	margin: 0px;
	color: #486a80;
	font-size: 19pt;
	font-weight: 400;
}

h2, input.h2 {
	margin: 0px 0px 15px 0px;
	color: #243147;
	font-size: 15pt;
	font-weight: 400;
}

h3, .h3 {
	margin: 0px 0px 15px 0px;
	font-size: 14pt;
	color: #51add0;
	font-weight: 400;
}

h4 {
	margin: 6px 0px 12px 0px;
	font-weight: 700;
}

p {
	margin-top: 0px;
	margin-bottom: 15px;
}

pre {
	margin: 0px;
	font-family: inherit;
	font-size: inherit;
	white-space: pre-wrap;
}

a, a:active, .link {
	color: #486a80;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}

	a:hover, .link:hover {
		color: #162737;
		text-decoration: none;
	}

	a.table-row, a.griditem {
		text-decoration: none;
		color: inherit;
	}

div.hr {
	margin: 6px 0px 6px 0px;
	height: 1px;
	line-height: 1px;
	border-top: solid 1px #f7f8f9;
}

	div.hr.no-margin {
		margin-top: 0px;
		margin-bottom: 0px;
	}

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.text-bottom {
	vertical-align: bottom !important;
}

.text-middle {
	vertical-align: middle !important;
}

.text-top {
	vertical-align: top !important;
}

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

.text-italic {
	font-style: italic;
}

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

.text-small {
	font-size: 90% !important;
}

.text-xsmall {
	font-size: 80% !important;
}

.text-danger, .text-bad {
	color: #ea212d !important;
}

.text-success, .text-good {
	color: #75b12a !important;
}

.text-light, .text-neutral {
	color: #9aa3b0 !important;
}

.text-note {
	color: #8c7e5e !important;
}

.text-link {
	color: #243147 !important;
}

.text-default {
	color: #162737 !important;
}

.text-cold {
	color: cornflowerblue !important;
}

.h-subtext {
	font-size: 8.5pt;
	color: #9aa3b0;
	display: block;
	margin-top: 6px;
}

.text-overflow-dots {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: block;
}

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

.text-no-wrap {
	white-space: nowrap;
}

.no-margin {
	margin: 0px !important;
}

.no-margin-top {
	margin-top: 0px !important;
}

.no-margin-bottom {
	margin-bottom: 0px !important;
}

.small-padding {
	padding: 9px !important;
}

.no-padding {
	padding: 0px !important;
}

.no-padding-top {
	padding-top: 0px !important;
}

.no-padding-bottom {
	padding-bottom: 0px !important;
}

.no-padding-left {
	padding-left: 0px !important;
}

.no-padding-right {
	padding-right: 0px !important;
}

.no-list-items {
	margin-top: 60px;
	color: #9aa3b0;
	text-align: center;
	font-size: 90%;
}

label, .label {
	display: inline-block;
	margin-bottom: 3px;
}

	label:not(.input-checkbox):not(.input-radio), .label:not(.input-checkbox):not(.input-radio) {
		color: #9aa3b0;
		font-size: 90%;
	}

.fw {
	display: block;
	width: 100%;
}

.hide, .filtered {
	display: none !important;
}

.inline-block {
	display: inline-block !important;
}

.disabled {
	opacity: .5;
	cursor: default;
}

.opacity-full {
	opacity: 1 !important;
}

.cursor-pointer {
	cursor: pointer;
}


/* TAGS */

.tag {
	display: inline-block;
	padding: 4px;
	border-radius: 12px;
	font-size: 8pt !important;
	white-space: nowrap;
	border: solid 1px transparent;
}

	.tag.small {
		font-size: 6.5pt;
	}

	.tag.big {
		font-size: 10pt;
	}

	.tag.normal, .tag.activity-log {
		background-color: #fff;
		border-color: #E6E9EF;
		color: #4D5056 !important;
	}

		.tag.normal.active, .tag.activity-log.active {
			background-color: #E6E9EF;
		}

	.tag.warning, .tag.activity-note, .icon-btn.activity-note {
		background-color: #fff;
		border-color: #FBF0D6;
		color: #866A31 !important;
	}

		.tag.warning.active, .tag.activity-note.active, .icon-btn.activity-note.active, .icon-btn.activity-note:hover {
			background-color: #FBF0D6 !important;
		}

	.tag.good, .tag.activity-task, .icon-btn.activity-task {
		background-color: #fff;
		border-color: #D7EBDA;
		color: #2C5D36 !important;
	}

		.tag.good.active, .tag.activity-task.active, .icon-btn.activity-task.active, .icon-btn.activity-task:hover {
			background-color: #D7EBDA !important;
		}

	.tag.bad {
		background-color: #fff;
		border-color: #FEE4E8;
		color: #FD425D !important;
	}

		.tag.bad.active {
			background-color: #FEE4E8;
		}

	.tag.activity-appointment, .icon-btn.activity-appointment {
		background-color: #fff;
		border-color: #E4FAF8;
		color: #156157 !important;
	}

		.tag.activity-appointment.active, .icon-btn.activity-appointment.active, .icon-btn.activity-appointment:hover {
			background-color: #E4FAF8 !important;
		}

	.tag.activity-call, .icon-btn.activity-call {
		background-color: #fff;
		border-color: #FBE6FB;
		color: #6E426B !important;
	}

		.tag.activity-call.active, .icon-btn.activity-call.active, .icon-btn.activity-call:hover {
			background-color: #FBE6FB !important;
		}

	.tag.activity-email, .icon-btn.activity-email {
		background-color: #fff;
		border-color: #E7E4F5;
		color: #081138 !important;
	}

		.tag.activity-email.active, .icon-btn.activity-email.active, .icon-btn.activity-email:hover {
			background-color: #E7E4F5 !important;
		}

	.tag i {
		margin-left: 0px !important;
		margin-right: 0px !important;
	}

	.tag .text {
		margin-left: 3px;
		margin-right: 2px;
	}

	.tag:not(:last-of-type) {
		margin-right: 3px;
	}

.badge {
	position: absolute;
	right: -6px;
	top: -6px;
	background-color: #486a80;
	padding: 6px;
	border-radius: 50%;
}

	.badge.text {
		padding: 9px;
	}

		.badge.text span {
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			color: #ffffff;
			font-size: 6pt;
		}

	.badge.transparent {
		background-color: transparent;
	}

		.badge.transparent span {
			color: #486a80;
			font-weight: bold;
			font-size: 8pt;
		}


/* PROGRESSBAR */

.progressbar-outer {
	padding: 6px;
	width: 100%;
	position: relative;
	background-color: #fafbfc;
	overflow: hidden;
}

.progressbar-inner {
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .1);
}

	.progressbar-inner.warning {
		background-color: #feb030;
	}

	.progressbar-inner.good {
		background-color: #75b12a90;
	}


/* ICON GROUP */

.icon-btn-group {
	float: left;
	position: relative;
	top: -3px;
}

	.icon-btn-group:not(.right) .icon-btn {
		margin-right: 6px;
	}

	.icon-btn-group.right {
		float: right;
	}

		.icon-btn-group.right .icon-btn {
			margin-left: 6px;
		}

	.icon-btn-group::after {
		content: '';
		clear: both;
		display: table;
	}

	.icon-btn-group.extra-margin-top {
		margin-top: 6px;
	}

.icon-btn {
	display: inline-block;
	position: relative;
	left: 0px;
	top: 0px;
	padding: 21px;
	margin: -6px -12px -6px -12px;
	border: solid 1px transparent;
	border-radius: 50%;
	color: #9aa3b0;
	cursor: pointer;
	transition: all .3s;
}

	.icon-btn.inline {
		top: -6px;
		margin-bottom: -24px !important;
	}

	.icon-btn.small {
		padding: 18px;
		margin: 0px -6px 0px -6px;
	}

	.icon-btn.big {
		font-size: 14pt;
	}

	.icon-btn.secondary {
		background: none #51add0;
		border-color: #51add0;
		color: #ffffff;
		opacity: .9;
	}

	.icon-btn.fixed {
		position: fixed;
		top: unset;
		right: 30px;
		bottom: 24px;
		left: unset;
		width: 24px;
		height: 24px;
		z-index: 100;
		opacity: .75;
	}

.icon-btn-group .icon-btn.inline {
	top: 0px;
	margin-bottom: -24px !important;
}

.icon-btn > i, .icon-btn > span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.icon-btn > .dot {
	position: absolute;
	right: 9px;
	top: 9px;
}

.icon-btn:not(.no-hover):hover, .icon-btn.active, .icon-btn.focus {
	background-color: #f7f8f9;
	color: #243147;
	text-decoration: none;
}

.icon-btn.secondary:hover {
	background: none #51add0;
	border-color: #51add0;
	color: #ffffff;
	opacity: 1;
}

.icon-btn.danger:hover, .icon-btn.danger.active {
	color: #ea212d;
}

.icon-btn.success:hover, .icon-btn.success.active {
	color: #75b12a;
}

.icon-btn.focus:hover, .icon-btn.focus.active {
	background-color: #486a80;
	color: #fff;
	text-decoration: none;
}

.icon-btn-group:hover .icon-btn.focus:not(:hover) {
	opacity: .5;
	transition: opacity .8s;
}

.icon-btn-group.clean > .icon-btn:hover, .icon-btn-group.clean > .icon-btn.active .icon-btn.clean:hover, .icon-btn.clean.active {
	background-color: transparent;
}

.modal-container .icon-btn {
	margin: -9px -6px -6px -6px;
}


/* CONTEXTMENU */

.ctxmenu-container {
	position: relative;
	display: inline-block;
}

	.ctxmenu-container.open .ctxmenu-overlay, .ctxmenu-container.open .ctxmenu {
		visibility: visible;
		opacity: 1;
	}

		.ctxmenu-container.open .ctxmenu:not(.left) {
			right: 0px;
		}

		.ctxmenu-container.open .ctxmenu.left {
			left: 0px;
		}

.ctxmenu-overlay {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	background: rgba(53, 64, 82, .001);
	cursor: auto;
	z-index: 1010;
	opacity: 0;
	visibility: hidden;
}

.ctxmenu {
	position: absolute;
	right: 5px;
	top: 100%;
	width: 300px;
	overflow-y: auto;
	color: inherit;
	font-size: inherit;
	background-color: #ffffff;
	border: solid 1px #f2f3f6;
	box-shadow: 0 0px 5px rgba(0, 0, 0, 0.06);
	padding: 6px 12px 6px 12px;
	text-align: left;
	line-height: normal;
	z-index: 1020;
	cursor: auto;
	opacity: 0;
	visibility: hidden;
	transition: all .5s;
}

	.ctxmenu.left {
		right: auto;
		left: 0px;
	}

	.ctxmenu .block {
		padding: 12px 12px 12px 12px;
		margin: 0px -12px 0px -12px;
		transition: all .3s;
		display: block;
		color: #141d23;
	}

	.ctxmenu a.block:hover, .ctxmenu span.block:hover {
		background-color: #fafbfc;
		cursor: pointer;
		text-decoration: none;
		color: inherit;
	}

	.ctxmenu.lookup-list a.block, .ctxmenu.lookup-list span.block {
		padding: 9px 6px 9px 6px;
	}

	.ctxmenu h2 {
		color: #9aa3b0;
		font-size: 90%;
		text-transform: uppercase;
		padding: 15px 12px 15px 12px;
		margin: 0px -12px 0px -12px;
	}

		.ctxmenu h2 i {
			margin-right: 15px;
		}

		.ctxmenu h2:not(:first-of-type) {
			margin-top: 24px;
		}

	.ctxmenu a i {
		margin-right: 9px;
		opacity: .5;
		font-size: 90%;
	}

	.ctxmenu i.fas, .ctxmenu i.far {
		/*opacity: .5;*/
	}


/* MODAL */

.modal-container {
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1010;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	transition: opacity .3s;
	cursor: default;
}

	.modal-container:not(.open) {
		visibility: hidden;
		opacity: 0;
	}

	.modal-container.open {
		visibility: visible;
		opacity: 1;
	}

		.modal-container.open > .modal {
			transition: all .3s ease-in-out;
		}

.modal {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1020;
	width: 90%;
	max-width: 90%;
	max-height: 90%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

	.modal:not(.clean) {
		padding: 18px;
		background-color: #ffffff;
		box-shadow: 0 0px 2px rgba(0, 0, 0, 0.08);
	}

.modal-container:not(.left):not(.right) > .modal {
	border-radius: 3px;
}

.modal-container.scale-in > .modal {
	transform: translate(-50%, -50%) scale(0.98);
	transform-origin: top right;
}

.modal-container.scale-in.open > .modal {
	transform: translate(-50%, -50%) scale(1);
}

.modal-container.fade-in > .modal {
	opacity: 0;
}

.modal-container.fade-in.open > .modal {
	opacity: 1;
}

.modal-container.left > .modal {
	left: 0%;
	right: auto;
	top: 0%;
	max-width: 100%;
	height: 100%;
	max-height: none;
	transform: none;
}

.modal-container.left.slide-in > .modal {
	left: -100%;
}

.modal-container.left.slide-in.open > .modal {
	left: 0%;
}

.modal-container.left.scale-in > .modal {
	transform: scale(0.98);
	transform-origin: top left;
}

.modal-container.left.scale-in.open > .modal {
	transform: scale(1);
}

.modal-container.right > .modal {
	left: auto;
	right: 0%;
	top: 0%;
	max-width: 100%;
	height: 100%;
	max-height: none;
	transform: none;
}

.modal-container.right.slide-in > .modal {
	right: -100%;
}

.modal-container.right.slide-in.open > .modal {
	right: 0%;
}

.modal-container.right.scale-in > .modal {
	transform: scale(0.98);
	transform-origin: top right;
}

.modal-container.right.scale-in.open > .modal {
	transform: scale(1);
}


.modal-lg {
	width: 1200px;
}

.modal-md {
	width: 900px;
}

.modal-sm {
	width: 600px;
}

.modal-xs {
	width: 450px;
}

.modal-sheet {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	overflow-y: auto;
}

.modal-header {
	padding: 9px 6px 6px 6px;
	position: relative;
	margin-bottom: 18px;
	border-bottom: solid 0px #f7f8f9;
}

	.modal-header h2 {
		margin-bottom: 18px;
		color: inherit;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}

	.modal-header .icon-btn-group.right .icon-btn {
		margin-left: 0px;
		top: 4px;
	}

.modal-content {
	padding: 0px 6px 6px 6px;
	text-align: left;
	height: 100%;
	overflow: auto;
}

.modal-opener {
	cursor: pointer;
}


/* TABGROUPS */

.tabgroup {
	border-radius: 3px;
}

	.tabgroup .tabs {
		margin-bottom: 12px;
	}

		.tabgroup .tabs .tab {
			margin-right: 9px;
			font-size: 90%;
			color: #9aa3b0;
			padding: 3px;
			border-bottom: solid 2px transparent;
			text-decoration: none;
		}

			.tabgroup .tabs .tab.active {
				color: #243147;
				border-bottom-color: #243147;
			}

	.tabgroup .tabsheets {
	}

		.tabgroup .tabsheets .tabsheet {
			padding: 9px;
		}

			.tabgroup .tabsheets .tabsheet:not(.active) {
				display: none;
			}



/* FORM/INPUTS */

form {
	margin: 0px;
}

.input-container {
	position: relative;
}

	.input-container .input-radio, .input-container .input-checkbox {
		margin-top: 12px !important;
	}

	.input-container .tag {
		margin-top: 7px !important;
	}

.input {
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	padding: 9px;
	background: none #fafbfc;
	border: solid 1px #fafbfc;
	border-radius: 3px;
	outline: 0;
	resize: none;
	transition: all .3s;
	-webkit-appearance: none;
}

	.input:focus {
		background-color: #f7f8f9;
		border-color: #f7f8f9;
	}

	.input.input-validation-error {
		/*color: #ea212d;*/
	}

	.input.lookup {
		padding-right: 30px;
	}

		.input.lookup.selectlist, .input.lookup.picklist {
			cursor: pointer;
		}

	.input.clean, .quill-container.clean {
		background-color: transparent;
		border-color: transparent;
	}

	.input.headersearch {
		background: #ffffff;
		border-width: 0px;
	}

	.input.inline {
		margin-top: -9px;
		margin-bottom: -9px;
	}

	.input.white, .quill-container.white {
		background-color: #ffffff;
		border-color: #f1f2f3;
	}

.input-radio, .input-checkbox {
	cursor: pointer;
	opacity: 1 !important;
	margin-top: 3px;
	margin-left: 30px;
}

	.input-radio input, .input-checkbox input {
		display: none;
	}

	.input-radio span::before, .input-checkbox span::before {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		color: #f7f8f9;
		background-color: #f7f8f9;
		margin-left: -30px;
		margin-right: 6px;
		padding: 5px 4px 4px 5px;
		transition: color .3s;
	}

	.input-radio span::before {
		border-radius: 50%;
		content: '\f111';
		font-size: 7pt;
		border: solid 2px #f7f8f9;
	}

	.input-checkbox span::before {
		border-radius: 3px;
		content: '\f00c';
	}

	.input-radio input:checked + span::before, .input-checkbox input:checked + span::before {
		color: #243147;
	}

	.input-checkbox.checkbox-delete span::before {
		font-weight: 400;
		background-color: transparent;
		color: inherit;
		font-size: inherit;
		border-radius: 0px;
		padding: unset;
		content: '\f2ed';
		transition: color .3s;
	}

	.input-checkbox.checkbox-delete input:checked + span::before {
		content: '\f2ed';
		color: #ea212d;
	}

	.input-radio.tag, .input-checkbox.tag {
		margin: 0px 3px 6px 0px;
	}

		.input-radio.tag span::before, .input-checkbox.tag span::before {
			display: none;
		}

.input-icon {
	position: absolute;
	right: 9px;
	top: 10px;
	z-index: 20;
}

	.input-icon + .input {
		padding-right: 30px;
	}

	.input-icon.left {
		left: 9px;
		right: auto;
	}

		.input-icon.left + .input {
			padding-left: 36px;
			padding-right: 9px;
		}

	.input-icon:not(.left).second {
		right: 39px;
	}

.input.upload {
	padding-right: 66px;
}

.fileupload-data, .fileupload-file {
	display: none;
}

span.input-icon {
	color: #243147;
}

.btn {
	border: solid 1px #243147;
	border-radius: 3px;
	outline: 0;
	background: none #243147;
	color: #ffffff;
	font-size: inherit;
	font-family: inherit;
	padding: 7px;
	cursor: pointer;
	transition: background .3s;
	text-align: center;
	opacity: .9;
	-webkit-appearance: none;
	transition: all .3s;
}

	.btn:hover {
		color: #ffffff;
		text-decoration: none;
		opacity: 1;
	}

	.btn.secondary {
		background: none #51add0;
		border-color: #51add0;
		color: #ffffff;
	}

		.btn.secondary:hover {
			background-color: #51add0;
			border-color: #51add0;
		}

	.btn.simple {
		background: none #f7f8f9;
		border-color: #f7f8f9;
		color: #243147;
	}

		.btn.simple:hover {
			background-color: #f7f8f9;
			border-color: #f7f8f9;
		}

	.btn.clean {
		background: none transparent;
		color: #9aa3b0;
		border-color: transparent;
	}

		.btn.clean:hover {
		}

	.btn.danger {
		background: none #ea212d;
		border-color: #ea212d;
		color: #ffffff;
	}

		.btn.danger.simple {
			background: none #ffffff;
			color: #ea212d;
		}

			.btn.danger.simple:hover {
				color: #ffffff;
			}

		.btn.danger.clean {
			background: none #ffffff;
			color: #9aa3b0;
			border-color: transparent;
		}

			.btn.danger.clean:hover {
				background: none #ffffff;
				color: #ea212d;
				border-color: transparent;
			}

		.btn.danger:hover {
			background: none #e2202c;
		}

	.btn.success {
		background: none #75b12a;
		border-color: #75b12a;
		color: #ffffff;
	}

		.btn.success.simple {
			background: none #ffffff;
			color: #75b12a;
		}

			.btn.success.simple:hover {
				color: #ffffff;
			}

::placeholder {
	color: #9aa3b0;
	font-size: inherit;
}

.validation-summary-errors, .validation-message {
	color: #ea212d;
	font-size: 90%;
}

	.validation-summary-errors ul {
		padding-left: 18px;
	}

.validation-message {
	padding: 6px 6px 6px 0px;
	display: block;
	text-align: left;
}


/* BOX-CONTAINERS */

.box {
	background-color: #ffffff;
	border: solid 0px transparent;
	border-radius: 3px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
}

.box-bg-1 {
	background-color: #fafbfc;
}

.box-bg-2 {
	background-color: #e7eefb;
}

.box-note {
	background-color: #FBF0D6;
	border-color: #FBF0D6;
	color: #866A31 !important;
}


/* GRID */

.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0px;
	margin: 0px -6px 0px -6px;
}

	.grid.flex-start {
		justify-content: flex-start;
	}

		.grid.flex-start .griditem {
			margin-left: 6px;
			margin-right: 6px;
		}

	.grid.no-equal-height {
		align-items: flex-start;
	}

.griditem {
	margin-bottom: 12px;
	padding: 24px;
	position: relative;
}

	.griditem.no-padding {
		padding: 0px;
	}

	.griditem.border {
		border: solid 1px #f7f8f9;
	}

.grid.datagrid > .griditem {
	padding: 6px 6px 6px 0px;
}

.grid.formgrid > .griditem {
	padding: 3px 0px 3px 0px;
}

.griditem.buttons {
	float: none;
	clear: both;
	text-align: right;
	margin-top: 0px;
	margin-bottom: 0px;
	display: flex;
	justify-content: flex-end;
}

	.griditem.buttons .btn {
		display: inline-block;
		min-width: 100px;
		text-decoration: none;
	}

		.griditem.buttons .btn:not(:first-of-type) {
			margin-left: 6px;
		}

.grid.formgrid h3, .grid.datagrid h3 {
	margin-bottom: 3px;
}

.gridheader::after {
	content: '';
	clear: both;
	display: table;
	margin-bottom: 15px;
}

.griditem.col-0 {
	width: 0px;
	margin: 0px;
	overflow: hidden;
}

.griditem.col-1 {
	width: calc(8.3333% - 12px);
}

.griditem.col-2 {
	width: calc(16.6666% - 12px);
}

.griditem.col-3 {
	width: calc(24.9999% - 12px);
}

.griditem.col-4 {
	width: calc(33.3332% - 12px);
}

.griditem.col-5 {
	width: calc(41.6665% - 12px);
}

.griditem.col-6 {
	width: calc(49.9998% - 12px);
}

.griditem.col-7 {
	width: calc(58.3331% - 12px);
}

.griditem.col-8 {
	width: calc(66.6664% - 12px);
}

.griditem.col-9 {
	width: calc(74.9997% - 12px);
}

.griditem.col-10 {
	width: calc(83.333% - 12px);
}

.griditem.col-11 {
	width: calc(91.6663% - 12px);
}

.griditem.col-12 {
	width: calc(100% - 12px);
}


.flex {
	display: flex;
	flex-direction: row;
}

	.flex.space-between {
		justify-content: space-between;
	}

.flexitem {
	flex-basis: auto;
}


/* TABLE */

.table {
	display: table;
	width: 100%;
}

	.table.fixed {
		table-layout: fixed;
	}

.table-head {
	display: table-header-group;
}

.table-body {
	display: table-row-group;
}

.table-row {
	display: table-row;
}

	.table-row:hover {
		background-color: #fafbfc !important;
	}

	.table.no-hover > .table-row, .table.no-hover > .table-row:hover, .table-row.no-hover:hover, .table-row.header, .table-row.footer {
		background-color: transparent !important;
	}

	.table-row.header {
		color: #9aa3b0;
		text-transform: uppercase;
		font-size: 90%;
	}

		.table-row.header .table-cell.col-sort {
			cursor: ns-resize;
			user-select: none;
		}

.table:not(.no-border) > .table-row.header:not(.no-border) > .table-cell {
	border-width: 2px;
}

.table-row.pick {
	cursor: pointer;
}

.table-row.footer {
	font-weight: bold;
}

	.table-row.footer .table-cell {
		border-bottom-width: 0px;
	}

.table.no-border > .table-body > .table-row > .table-cell, .table.no-border > .table-row > .table-cell, .table-row.no-border > .table-cell, .table-cell.no-border {
	border-width: 0px;
}

.table.no-padding > .table-row > .table-cell, .table-row.no-padding > .table-cell, .table-cell.no-padding {
	padding: 0px;
}

.table.small-padding > .table-row > .table-cell, .table-row.small-padding > .table-cell, .table-cell.small-padding {
	padding: 9px;
}

.table-cell {
	display: table-cell;
	border-bottom: solid 1px #f7f8f9;
	padding: 15px;
	position: relative;
	vertical-align: middle;
}

.table.boxed > .table-row > .table-cell {
	border: solid 2px #ffffff;
}

.table-cell.indent {
	padding-left: 24px;
}

.table-cell.content-fit {
	width: 1px;
	white-space: nowrap;
}

.table-cell.actions {
	text-align: right;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

	.table-cell.actions > i {
		margin-left: 9px;
		margin-top: 2px;
	}

	.table-cell.actions > a:not(.icon-btn), .table-cell.actions > span:not(.tag), .table-cell.actions > .action {
		color: #243147;
		cursor: pointer;
		display: inline-block;
	}

.table-cell.avatars {
	width: 70px;
	padding-right: 0px;
}

	.table-cell.avatars .avatar {
		margin-top: 3px;
	}

.table.list > .table-row:not(.header):not(.footer) {
	background-color: #ffffff;
}

	.table.list > .table-row:not(.header):not(.footer) > .table-cell {
		border-bottom-width: 3px;
	}



/* CALENDAR */

.cal-day {
	display: flex;
	flex-wrap: wrap;
	max-width: 384px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.cal-day-cell {
	flex: 1 1 48px;
	height: 48px;
	position: relative;
	border-radius: 50%;
}

a.cal-day-cell:hover {
	background-color: #f7f8f9;
}

.cal-day-cell span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.cal-day-cell.header {
	text-align: center;
	color: #9aa3b0;
	font-size: 90%;
}

.cal-day-cell.today {
	color: #162737;
}

.cal-day-cell.selected {
	color: #162737;
	background-color: #f9fbff;
	font-weight: bold;
}


/* LOGIN PAGE */

#main-login {
	width: 100%;
	height: 100vh;
	background-image: url('../images/login-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
}

	#main-login .logo {
		margin-bottom: 60px;
		height: 40px;
		width: auto;
	}



/* RESPONSIVE */

@media (max-width: 1200px) {

	.griditem.no-padding-lg {
		padding: 0px;
	}

	.griditem.no-margin-bottom-lg {
		margin-bottom: 0px;
	}

	.griditem.col-lg-0 {
		width: 0px;
		margin: 0px;
		overflow: hidden;
	}

	.griditem.col-lg-1 {
		width: calc(8.3333% - 12px);
	}

	.griditem.col-lg-2 {
		width: calc(16.6666% - 12px);
	}

	.griditem.col-lg-3 {
		width: calc(24.9999% - 12px);
	}

	.griditem.col-lg-4 {
		width: calc(33.3332% - 12px);
	}

	.griditem.col-lg-5 {
		width: calc(41.6665% - 12px);
	}

	.griditem.col-lg-6 {
		width: calc(49.9998% - 12px);
	}

	.griditem.col-lg-7 {
		width: calc(58.3331% - 12px);
	}

	.griditem.col-lg-8 {
		width: calc(66.6664% - 12px);
	}

	.griditem.col-lg-9 {
		width: calc(74.9997% - 12px);
	}

	.griditem.col-lg-10 {
		width: calc(83.333% - 12px);
	}

	.griditem.col-lg-11 {
		width: calc(91.6663% - 12px);
	}

	.griditem.col-lg-12 {
		width: calc(100% - 12px);
	}

	.no-padding-lg {
		padding: 0px !important;
	}

	.no-margin-lg {
		margin: 0px !important;
	}

	.show-lg {
		display: inline-block !important;
	}

	.table-row.show-lg {
		display: table-row !important;
	}

	.table-cell.show-lg {
		display: table-cell !important;
	}

	.hide-lg, .table-row.hide-lg, .table-cell.hide-lg {
		display: none !important;
	}
}


@media (max-width: 900px) {

	#nav {
		position: fixed;
		left: 0px;
		top: auto;
		bottom: 0px;
		height: auto;
		width: 100%;
		box-shadow: 0 0px 5px rgba(0, 0, 0, 0.08);
	}

		#nav ul {
			display: table;
			table-layout: fixed;
			width: 100%;
		}

			#nav ul li {
				display: table-cell;
			}

				#nav ul li a {
					padding: 9px 3px 9px 3px;
				}

	.nav-logo {
		display: none !important;
	}

	.nav-icon {
		display: table-cell;
	}

	#site {
		padding-left: 6px;
		padding-right: 6px;
		padding-bottom: 60px;
	}

	#header {
		margin-left: -6px;
		margin-right: -6px;
	}

	.icon-btn.fixed {
		bottom: 72px;
	}

	.grid:not(.datagrid):not(.formgrid) > .griditem {
		padding: 18px;
	}

	.grid.formgrid > .griditem {
		padding: 3px 0px 3px 0px;
	}

	.griditem.col-md-0 {
		width: 0px;
		margin: 0px;
		overflow: hidden;
	}

	.griditem.col-md-1 {
		width: calc(8.3333% - 12px);
	}

	.griditem.col-md-2 {
		width: calc(16.6666% - 12px);
	}

	.griditem.col-md-3 {
		width: calc(24.9999% - 12px);
	}

	.griditem.col-md-4 {
		width: calc(33.3332% - 12px);
	}

	.griditem.col-md-5 {
		width: calc(41.6665% - 12px);
	}

	.griditem.col-md-6 {
		width: calc(49.9998% - 12px);
	}

	.griditem.col-md-7 {
		width: calc(58.3331% - 12px);
	}

	.griditem.col-md-8 {
		width: calc(66.6664% - 12px);
	}

	.griditem.col-md-9 {
		width: calc(74.9997% - 12px);
	}

	.griditem.col-md-10 {
		width: calc(83.333% - 12px);
	}

	.griditem.col-md-11 {
		width: calc(91.6663% - 12px);
	}

	.griditem.col-md-12 {
		width: calc(100% - 12px);
	}

	.no-padding-md {
		padding: 0px !important;
	}

	.no-margin-md {
		margin: 0px !important;
	}

	.show-md {
		display: inline-block !important;
	}

	.table-row.show-md {
		display: table-row !important;
	}

	.table-cell.show-md {
		display: table-cell !important;
	}

	.hide-md, .table-row.hide-md, .table-cell.hide-md {
		display: none !important;
	}
}



@media (max-width: 600px) {

	#nav ul li a {
		padding: 18px 3px 12px 3px;
	}

		#nav ul li a .text {
			display: none;
		}

	.table-cell.avatars {
		width: 42px;
	}

	.modal-container {
	}

		.modal-container.open .modal {
			right: 0px;
		}

	.modal {
		height: 100%;
		max-width: 100%;
		max-height: none;
		border-radius: 0px !important;
		left: unset;
		right: -100%;
		top: 0px;
		transform: none;
	}

		.modal:not(.clean) {
			border-width: 0px;
			box-shadow: none;
		}

	.ctxmenu-overlay {
		background-color: rgba(0, 0, 0, .2);
	}

	.ctxmenu, .ctxmenu.left {
		position: fixed;
		left: 0px;
		right: 0px;
		top: auto;
		bottom: -25%;
		color: #ffffff;
		width: 100vw;
		height: auto;
		max-height: 85%;
		background-color: #ffffff;
		text-align: left;
		transition: bottom .5s;
		padding: 12px;
	}

	.ctxmenu-container.open .ctxmenu {
		bottom: 0px;
	}

	.ctxmenu .block {
		width: 100%;
		margin: 0px;
		padding: 18px 6px 18px 6px;
		transition: all .3s;
	}

	.ctxmenu a.block:hover, .ctxmenu span.block:hover {
		color: #141d23;
	}

	.ctxmenu .block i {
		margin: 3px 9px 0px 0px;
	}

	.ctxmenu h2 {
		text-align: left;
		font-size: inherit;
		padding-left: 18px !important;
	}

		.ctxmenu h2 i {
			margin-right: 6px;
		}

	.ctxmenu div.hr {
	}

	.griditem {
		padding: 18px;
	}

		.griditem.col-sm-0 {
			width: 0px;
			margin: 0px;
			overflow: hidden;
		}

		.griditem.col-sm-1 {
			width: calc(8.3333% - 12px);
		}

		.griditem.col-sm-2 {
			width: calc(16.6666% - 12px);
		}

		.griditem.col-sm-3 {
			width: calc(24.9999% - 12px);
		}

		.griditem.col-sm-4 {
			width: calc(33.3332% - 12px);
		}

		.griditem.col-sm-5 {
			width: calc(41.6665% - 12px);
		}

		.griditem.col-sm-6 {
			width: calc(49.9998% - 12px);
		}

		.griditem.col-sm-7 {
			width: calc(58.3331% - 12px);
		}

		.griditem.col-sm-8 {
			width: calc(66.6664% - 12px);
		}

		.griditem.col-sm-9 {
			width: calc(74.9997% - 12px);
		}

		.griditem.col-sm-10 {
			width: calc(83.333% - 12px);
		}

		.griditem.col-sm-11 {
			width: calc(91.6663% - 12px);
		}

		.griditem.col-sm-12 {
			width: calc(100% - 12px);
		}

		.griditem.buttons {
			text-align: center;
			flex-direction: column-reverse;
		}

			.griditem.buttons.no-reverse {
				flex-direction: column;
			}

			.griditem.buttons .btn {
				width: 100%;
				margin: 9px 0px 0px 0px !important;
			}

	.no-padding-sm {
		padding: 0px !important;
	}

	.no-margin-sm {
		margin: 0px !important;
	}

	.show-sm {
		display: inline-block !important;
	}

	.table-row.show-sm {
		display: table-row !important;
	}

	.table-cell.show-sm {
		display: table-cell !important;
	}

	.hide-sm, .table-row.hide-sm, .table-cell.hide-sm {
		display: none !important;
	}
}


@media (-webkit-min-device-pixel-ratio: 2) {

	body.mobile .input-icon {
		top: 12px;
	}
}

@media print {

	.hide-print {
		display: none !important;
	}
}


/* BLAZOR */

#blazor-error-ui {
	background: lightyellow;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1010;
}

	#blazor-error-ui .dismiss {
		cursor: pointer;
		position: absolute;
		right: 0.75rem;
		top: 0.5rem;
	}


/* TINY */

.tox.tox-tinymce {
	background: none #f7f8f9;
	border: solid 1px #f7f8f9;
	border-radius: 3px;
}

.tox-editor-header {
	box-shadow: none !important;
	border-bottom: solid 1px #f7f8f9 !important;
}

.tox-edit-area__iframe {
	font-family: 'IBM Plex Sans', 'Helvetica Neue', sans-serif !important;
	font-size: 10.5pt !important;
}

.tox-statusbar {
	border-top: solid 1px #f7f8f9 !important;
}

.tox-statusbar__branding {
	display: none;
}
