:root {
	--breakpoint-sm: 600px;
	--breakpoint-md: 960px;
	--breakpoint-lg: 1280px;
	--breakpoint-xl: 1920px;

	--grid: 8px;

	--palette-primary: #06508b;
	--palette-secondary: #7985c1;
	--palette-danger: #ce0000;
	--palette-info: #17a2b8;
	--palette-success: #009933;
	--palette-warning: #ff8f00;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

html {
	height: 100%;
	-ms-overflow-style: scrollbar;
	-ms-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: 100%;
}

[hidden], .hidden {
	display: none !important;
}

a,
button,
[onclick] {
	cursor: pointer;
}

.disabled, [disabled] {
	cursor: not-allowed;
	opacity: 0.6;
	pointer-events: none;
}

.align-baseline { vertical-align: baseline !important; }
.align-top { vertical-align: top !important; }
.align-middle { vertical-align: middle !important; }
.align-bottom { vertical-align: bottom !important; }
.align-text-bottom { vertical-align: text-bottom !important; }
.align-text-top { vertical-align: text-top !important; }

.alert {
	border: 2px solid transparent;
	line-height: 1.4;
	margin-bottom: 1rem;
	padding: calc(var(--grid) * 1.5);
}

.alert .material-icons:not(.close) {
	margin-right: 3px;
}

.alert-dismissible {
	padding-right: 40px;
	position: relative;
}

.alert-dismissible .close {
	cursor: pointer;
	opacity: 0.54;
	padding: 8px 8px;
	position: absolute;
	right: 0;
	top: 0;
}

.alert-dismissible .close:hover, .alert-dismissible .close:focus { opacity: 0.87; }
.alert-dismissible .close:active { opacity: 1; }

.alert-primary {
	background-color: #7dc2f9;
	border-color: var(--palette-primary);
	color: #021829;
}

.alert-secondary {
	background-color: white;
	border-color: var(--palette-secondary);
	color: #435091;
}

.alert-danger {
	background-color: #f2dfde;
	border-color: var(--palette-danger);
	color: #602625;
}

.alert-info {
	background-color: #beeff7;
	border-color: var(--palette-info);
	color: #0c525d;
}

.alert-success {
	background-color: #eaf6eb;
	border-color: var(--palette-success);
	color: #2d682f;
}

.alert-warning {
	background-color: #fffaed;
	border-color: var(--palette-warning);
	color: #a07800;
}

.bg-primary { background: var(--palette-primary) !important; }
.bg-secondary { background: var(--palette-secondary) !important; }
.bg-danger { background: var(--palette-danger) !important; }
.bg-info { background: var(--palette-info) !important; }
.bg-success { background: var(--palette-success) !important; }
.bg-warning { background: var(--palette-warning) !important; }

.border-0 { border: 0 !important; }
.border-top-0 { border-top: 0 !important; }
.border-right-0 { border-right: 0 !important; }
.border-bottom-0 { border-bottom: 0 !important; }
.border-left-0 { border-left: 0 !important; }

.clearfix::after {
	clear: both;
	content: "";
	display: block;
}

.close {
	float: right;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .5;
}

.close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	opacity: .75;
}

.close:not(:disabled):not(.disabled) {
	cursor: pointer;
}

button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
	-webkit-appearance: none;
}

.collapse:not(.show) {
	display: none;
}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}

.fade { transition: opacity 0.15s linear; }
.fade:not(.show) { opacity: 0; }

.float-left { float: left !important; }
.float-right { float: right !important; }
.float-none { float: none !important; }

.font-italic { font-style: italic !important; }
.font-weight-bold { font-weight: 700 !important; }
.font-weight-light { font-weight: 300 !important; }
.font-weight-normal { font-weight: 400 !important; }

.form-group {
	margin-bottom: 1rem;
}

.form-control {
	display: block;
	padding: 0.375rem 0.75rem !important;
	width: 100%;
}

.form-control:disabled,
.form-control[readonly] {
	cursor: not-allowed;
	opacity: 0.7;
}

.was-validated .form-control:invalid { border-color: var(--palette-danger); }
.was-validated .form-control:valid { border-color: var(--palette-success); }

.form-text {
	display: block;
	margin-top: .25rem;
}

.container *,
.container *::before,
.container *::after {
	box-sizing: border-box;
}

.container-sm { max-width: calc(var(--breakpoint-sm) - 40px); }
.container-md { max-width: calc(var(--breakpoint-md) - 40px); }
.container-lg { max-width: calc(var(--breakpoint-lg) - 40px); }
.container-xl { max-width: calc(var(--breakpoint-xl) - 40px); }

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: calc(var(--grid) * -1.5);
	margin-right: calc(var(--grid) * -1.5);
}

.col {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.col-20 { flex: 0 0 20%; max-width: 20%; }
.col-25 { flex: 0 0 25%; max-width: 25%; }
.col-33 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-40 { flex: 0 0 40%; max-width: 40%; }
.col-50 { flex: 0 0 50%; max-width: 50%; }
.col-60 { flex: 0 0 60%; max-width: 60%; }
.col-66 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-75 { flex: 0 0 75%; max-width: 75%; }
.col-100 { flex: 0 0 100%; max-width: 100%; }

.col-xl-100, .col-xl-80, .col-xl-75, .col-xl-66, .col-xl-60, .col-xl-50, .col-xl-40, .col-xl-33, .col-xl-25, .col-xl-20, .col-xl,
.col-lg-100, .col-lg-80, .col-lg-75, .col-lg-66, .col-lg-60, .col-lg-50, .col-lg-40, .col-lg-33, .col-lg-25, .col-lg-20, .col-lg,
.col-md-100, .col-md-80, .col-md-75, .col-md-66, .col-md-60, .col-md-50, .col-md-40, .col-md-33, .col-md-25, .col-md-20, .col-md,
.col-sm-100, .col-sm-80, .col-sm-75, .col-sm-66, .col-sm-60, .col-sm-50, .col-sm-40, .col-sm-33, .col-sm-25, .col-sm-20, .col-sm,
.col-100, .col-80, .col-75, .col-66, .col-60, .col-50, .col-40, .col-33, .col-25, .col-20, .col {
	box-sizing: border-box;
	position: relative;
	min-height: 1px;
	padding-left: calc(var(--grid) * 1.5);
	padding-right: calc(var(--grid) * 1.5);
	width: 100%;
}

@media (min-width: 600px) {
	.col-sm { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-sm-25 { flex: 0 0 25%; max-width: 25%; }
	.col-sm-33 { flex: 0 0 33.333%; max-width: 33.333%; }
	.col-sm-50 { flex: 0 0 50%; max-width: 50%; }
	.col-sm-66 { flex: 0 0 66.666%; max-width: 66.666%; }
	.col-sm-75 { flex: 0 0 75%; max-width: 75%; }
	.col-sm-100 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 960px) {
	.col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-md-25 { flex: 0 0 25%; max-width: 25%; }
	.col-md-33 { flex: 0 0 33.333%; max-width: 33.333%; }
	.col-md-50 { flex: 0 0 50%; max-width: 50%; }
	.col-md-66 { flex: 0 0 66.666%; max-width: 66.666%; }
	.col-md-75 { flex: 0 0 75%; max-width: 75%; }
	.col-md-100 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1280px) {
	.col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-lg-25 { flex: 0 0 25%; max-width: 25%; }
	.col-lg-33 { flex: 0 0 33.333%; max-width: 33.333%; }
	.col-lg-50 { flex: 0 0 50%; max-width: 50%; }
	.col-lg-66 { flex: 0 0 66.666%; max-width: 66.666%; }
	.col-lg-75 { flex: 0 0 75%; max-width: 75%; }
	.col-lg-100 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1920px) {
	.col-xl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-xl-25 { flex: 0 0 25%; max-width: 25%; }
	.col-xl-33 { flex: 0 0 33.333%; max-width: 33.333%; }
	.col-xl-50 { flex: 0 0 50%; max-width: 50%; }
	.col-xl-66 { flex: 0 0 66.666%; max-width: 66.666%; }
	.col-xl-75 { flex: 0 0 75%; max-width: 75%; }
	.col-xl-100 { flex: 0 0 100%; max-width: 100%; }
}

.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-none { display: none !important; }

@media (min-width: 600px) {
	.d-sm-block { display: block !important; }
	.d-sm-flex { display: flex !important; }
	.d-sm-inline { display: inline !important; }
	.d-sm-inline-block { display: inline-block !important; }
	.d-sm-none { display: none !important; }
}

@media (min-width: 960px) {
	.d-md-block { display: block !important; }
	.d-md-flex { display: flex !important; }
	.d-md-inline { display: inline !important; }
	.d-md-inline-block { display: inline-block !important; }
	.d-md-none { display: none !important; }
}

@media (min-width: 1280px) {
	.d-lg-block { display: block !important; }
	.d-lg-flex { display: flex !important; }
	.d-lg-inline { display: inline !important; }
	.d-lg-inline-block { display: inline-block !important; }
	.d-lg-none { display: none !important; }
}

@media (min-width: 1920px) {
	.d-xl-block { display: block !important; }
	.d-xl-flex { display: flex !important; }
	.d-xl-inline { display: inline !important; }
	.d-xl-inline-block { display: inline-block !important; }
	.d-xl-none { display: none !important; }
}

.m-0 { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.my-0 { margin-bottom: 0 !important; margin-top: 0 !important; }

.p-0 { padding: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-bottom: 0 !important; padding-top: 0 !important; }

.m-1 { margin: calc(var(--grid) / 4) !important; }
.mb-1 { margin-bottom: calc(var(--grid) / 4) !important; }
.ml-1 { margin-left: calc(var(--grid) / 4) !important; }
.mr-1 { margin-right: calc(var(--grid) / 4) !important; }
.mt-1 { margin-top: calc(var(--grid) / 4) !important; }
.mx-1 { margin-left: calc(var(--grid) / 4) !important; margin-right: calc(var(--grid) / 4) !important; }
.my-1 { margin-bottom: calc(var(--grid) / 4) !important; margin-top: calc(var(--grid) / 4) !important; }

.p-1 { padding: calc(var(--grid) / 4) !important; }
.pb-1 { padding-bottom: calc(var(--grid) / 4) !important; }
.pl-1 { padding-left: calc(var(--grid) / 4) !important; }
.pr-1 { padding-right: calc(var(--grid) / 4) !important; }
.pt-1 { padding-top: calc(var(--grid) / 4) !important; }
.px-1 { padding-left: calc(var(--grid) / 4) !important; padding-right: calc(var(--grid) / 4) !important; }
.py-1 { padding-bottom: calc(var(--grid) / 4) !important; padding-top: calc(var(--grid) / 4) !important; }

.m-2 { margin: calc(var(--grid) / 3) !important; }
.mb-2 { margin-bottom: calc(var(--grid) / 2) !important; }
.ml-2 { margin-left: calc(var(--grid) / 2) !important; }
.mr-2 { margin-right: calc(var(--grid) / 2) !important; }
.mt-2 { margin-top: calc(var(--grid) / 2) !important; }
.mx-2 { margin-left: calc(var(--grid) / 2) !important; margin-right: calc(var(--grid) / 2) !important; }
.my-2 { margin-bottom: calc(var(--grid) / 2) !important; margin-top: calc(var(--grid) / 2) !important; }

.p-2 { padding: calc(var(--grid) / 2) !important; }
.pb-2 { padding-bottom: calc(var(--grid) / 2) !important; }
.pl-2 { padding-left: calc(var(--grid) / 2) !important; }
.pr-2 { padding-right: calc(var(--grid) / 2) !important; }
.pt-2 { padding-top: calc(var(--grid) / 2) !important; }
.px-2 { padding-left: calc(var(--grid) / 2) !important; padding-right: calc(var(--grid) / 2) !important; }
.py-2 { padding-bottom: calc(var(--grid) / 2) !important; padding-top: calc(var(--grid) / 2) !important; }

.m-3 { margin: var(--grid) !important; }
.mb-3 { margin-bottom: var(--grid) !important; }
.ml-3 { margin-left: var(--grid) !important; }
.mr-3 { margin-right: var(--grid) !important; }
.mt-3 { margin-top: var(--grid) !important; }
.mx-3 { margin-left: var(--grid) !important; margin-right: var(--grid) !important; }
.my-3 { margin-bottom: var(--grid) !important; margin-top: var(--grid) !important; }

.p-3 { padding: var(--grid) !important; }
.pb-3 { padding-bottom: var(--grid) !important; }
.pl-3 { padding-left: var(--grid) !important; }
.pr-3 { padding-right: var(--grid) !important; }
.pt-3 { padding-top: var(--grid) !important; }
.px-3 { padding-left: var(--grid) !important; padding-right: var(--grid) !important; }
.py-3 { padding-bottom: var(--grid) !important; padding-top: var(--grid) !important; }

.m-4 { margin: calc(var(--grid) * 1.5) !important; }
.mb-4 { margin-bottom: calc(var(--grid) * 1.5) !important; }
.ml-4 { margin-left: calc(var(--grid) * 1.5) !important; }
.mr-4 { margin-right: calc(var(--grid) * 1.5) !important; }
.mt-4 { margin-top: calc(var(--grid) * 1.5) !important; }
.mx-4 { margin-left: calc(var(--grid) * 1.5) !important; margin-right: calc(var(--grid) * 1.5) !important; }
.my-4 { margin-bottom: calc(var(--grid) * 1.5) !important; margin-top: calc(var(--grid) * 1.5) !important; }

.p-4 { padding: calc(var(--grid) * 1.5) !important; }
.pb-4 { padding-bottom: calc(var(--grid) * 1.5) !important; }
.pl-4 { padding-left: calc(var(--grid) * 1.5) !important; }
.pr-4 { padding-right: calc(var(--grid) * 1.5) !important; }
.pt-4 { padding-top: calc(var(--grid) * 1.5) !important; }
.px-4 { padding-left: calc(var(--grid) * 1.5) !important; padding-right: calc(var(--grid) * 1.5) !important; }
.py-4 { padding-bottom: calc(var(--grid) * 1.5) !important; padding-top: calc(var(--grid) * 1.5) !important; }

.m-5 { margin: calc(var(--grid) * 3) !important; }
.mb-5 { margin-bottom: calc(var(--grid) * 3) !important; }
.ml-5 { margin-left: calc(var(--grid) * 3) !important; }
.mr-5 { margin-right: calc(var(--grid) * 3) !important; }
.mt-5 { margin-top: calc(var(--grid) * 3) !important; }
.mx-5 { margin-left: calc(var(--grid) * 3) !important; margin-right: calc(var(--grid) * 3) !important; }
.my-5 { margin-bottom: calc(var(--grid) * 3) !important; margin-top: calc(var(--grid) * 3) !important; }

.p-5 { padding: calc(var(--grid) * 3) !important; }
.pb-5 { padding-bottom: calc(var(--grid) * 3) !important; }
.pl-5 { padding-left: calc(var(--grid) * 3) !important; }
.pr-5 { padding-right: calc(var(--grid) * 3) !important; }
.pt-5 { padding-top: calc(var(--grid) * 3) !important; }
.px-5 { padding-left: calc(var(--grid) * 3) !important; padding-right: calc(var(--grid) * 3) !important; }
.py-5 { padding-bottom: calc(var(--grid) * 3) !important; padding-top: calc(var(--grid) * 3) !important; }

.h-100 { height: 100% !important; }
.w-100 { width: 100% !important; }

.custom-select {
	display: inline-block;
	height: calc(2.25rem + 2px);
	padding: 0.375rem 1.75rem 0.375rem 0.75rem;
	line-height: 1.5;
	color: #495057;
	vertical-align: middle;
	background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
	background-size: 8px 10px;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.custom-select:focus {
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
	color: #495057;
	background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
	height: auto;
	padding-right: 0.75rem;
	background-image: none;
}

.custom-select:disabled {
	color: #6c757d;
	background-color: #e9ecef;
}

.custom-select::-ms-expand {
	opacity: 0;
}

.custom-select-sm {
	height: calc(1.8125rem + 2px);
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	font-size: 90%;
}

.custom-select-lg {
	height: calc(2.875rem + 2px);
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	font-size: 125%;
}

.justify-content-center {
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.lead {
	font-size: 1.25rem;
	line-height: 1.4;
}

.material-icons { vertical-align: text-bottom; }
.material-icons.xsmall { font-size: 12px; }
.material-icons.small { font-size: 13px; }
.material-icons.medium { font-size: 16px; }
.material-icons.large { font-size: 18px; }
.material-icons.xlarge { font-size: 20px; }

.modal-open {
	overflow: hidden;
}

.modal {
	bottom: 0;
	left: 0;
	display: none;
	outline: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1050;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-dialog {
	margin: 0.5rem;
	pointer-events: none;
	position: relative;
	width: auto;
}

.modal.fade .modal-dialog {
	transform: translate(0, -25%);
	transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
	transform: translate(0, 0);
}

.modal-dialog-centered {
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
	background-clip: padding-box;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	outline: 0;
	pointer-events: auto;
	position: relative;
	width: 100%;
}

.modal-backdrop {
	background-color: #000;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1040;
}

.modal-backdrop.fade { opacity: 0; }
.modal-backdrop.show { opacity: 0.6; }

.modal-header {
	align-items: flex-start;
	background-color: #f0f0f0;
	border-bottom: 1px solid #ddd;
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
	display: flex;
	justify-content: space-between;
	padding: 1rem;
}

.modal-header .close {
	margin: -0.5rem -0.5rem -0.5rem auto;
	padding: 0.5rem;
}

.modal-header h5 {
	font-size: 1.25rem;
	margin-top: 0;
}

.modal-title {
	line-height: 1.5;
	margin-bottom: 0;
}

.modal-body {
	flex: 1 1 auto;
	font-size: 12px;
	min-height: 50px;
	padding: 1rem;
	position: relative;
}

.modal-body input {
	border: 1px solid #cecece;
	box-sizing: border-box;
	font-size: 12px;
	padding: 5px 8px;
	width: 100%;
}

.modal-footer {
	align-items: center;
	background-color: #f0f0f0;
	border-top: 1px solid #ddd;
	border-bottom-left-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
	display: flex;
	justify-content: flex-end;
	padding: 1rem;
}

.modal-footer button {
	font-size: 12px;
	margin-right: 0;
	min-width: 65px;
}

.modal-footer > :not(:first-child) { margin-left: .25rem; }
.modal-footer > :not(:last-child) { margin-right: .25rem; }
.modal-footer .help {
	width: 100%;
}

.modal-scrollbar-measure {
	height: 50px;
	overflow: scroll;
	position: absolute;
	top: -9999px;
	width: 50px;
}

@media (min-width: 600px) {
	.modal-dialog { margin: 1.75rem auto; max-width: calc(var(--breakpoint-sm) - 80px); }
	.modal-dialog-centered { min-height: calc(100% - (1.75rem * 2)); }
	.modal-sm { max-width: 320px; }
}

@media (min-width: 960px) {
	.modal-lg { max-width: calc(var(--breakpoint-md) - 80px); }
}

@media (min-width: 1280px) {
	.modal-lg { max-width: calc(var(--breakpoint-lg) - 80px); }
}

#modal-calendar .modal-dialog {
	max-width: 1000px;
}

#modal-calendar .modal-footer {
	justify-content: space-between;
}

.calendar-legend > div {
	display: inline-block;
}

.calendar-legend span {
	bottom: 2px;
	border: 1px solid #ccc;
	display: inline-block;
	height: 15px;
	margin-right: 4px;
	position: relative;
	vertical-align: middle;
	width: 30px;
}

.fc-event {
	cursor: default;
}

.fc-nonbusiness {
	cursor: not-allowed;
}

.fc-toolbar button:active {
	color: #2f72b6 !important;
}

.fc-toolbar button:disabled {
	color: #888;
}

.fc-toolbar button:focus {
	box-shadow: none !important;
}

.fc-toolbar button:active,
.fc-toolbar button:disabled,
.fc-toolbar button:focus,
.fc-toolbar button:hover {
	border-color: #ccc !important;
}

.fc-widget-content.fc-today {
	background: white !important;
}

.nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-link {
	display: block;
	padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
	text-decoration: none;
}

.nav-link.disabled {
	color: #6c757d;
}

.nav-tabs {
	border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
	margin-bottom: -1px;
}

.nav-tabs .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
	border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
	color: #6c757d;
	background-color: transparent;
	border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	color: #495057;
	background-color: #fff;
	border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.nav-pills .nav-link {
	border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: #007bff;
}

.nav-fill .nav-item {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	text-align: center;
}

.nav-justified .nav-item {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

.pagination {
	display: -ms-flexbox;
	display: flex;
	font-size: 1.1rem;
	padding-left: 0;
	list-style: none;
	border-radius: 0.25rem;
}

.page-link {
	position: relative;
	display: block;
	padding: 0.5rem 1.2rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #333;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.page-link:hover {
	z-index: 2;
	color: #0056b3;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6;
}

.page-link:focus {
	z-index: 2;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: #305AAD;
	border-color: #305AAD;
}

.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6;
}

.pagination-lg .page-link {
	padding: 0.75rem 1.5rem;
	font-size: 1.25rem;
	line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: 0.3rem;
	border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
	border-top-left-radius: 0.2rem;
	border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
	border-top-right-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
}

.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
.shadow-none { box-shadow: none !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.tab-content > .tab-pane {
	display: none;
}

.tab-content > .active {
	display: block;
}

.table {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
}

.table thead {
	background: url("../images/catalogue_head.jpg") repeat-x;
	border-bottom: 1px solid white;
}

.table td {
	border-bottom: 1px solid #dee2e6;
	padding: 0.25rem 0.75rem;
	vertical-align: middle;
}

.table th {
	border-top: none;
	color: white;
	padding: 0.75rem;
}

.table tbody + tbody {
	border-top: 2px solid #dee2e6;
}

.table .table {
	background-color: #fff;
}

.table-sm th,
.table-sm td {
	padding: 0.3rem;
}

.table-bordered {
	border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
	border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
	border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
}

.table-danger td { border-bottom: 1px solid #d2d2d2; }
.table tbody tr.table-danger { background-color: #ffefee; }
.table-striped tbody tr.table-danger:nth-of-type(odd) { background-color: #f2e2e1; }

.table tbody tr.table-success { background-color: #f7fff8; }
.table-striped tbody tr.table-success:nth-of-type(odd) { background-color: #eaf6eb; }

.table tbody tr.table-dark {
	background-color: #4f5460;
	color: white;
	font-weight: bold;
}

.table-hover tbody tr:hover { background-color: #fff6e9 !important; }
.table tbody tr.table-dark:hover { background-color: #4f5460 !important; }

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
	border: 0;
}

.text-center { text-align: center !important; }
.text-justify { text-align: justify !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-capitalize { text-transform: capitalize !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-nowrap { white-space: nowrap !important; }

.text-dark { color: black !important; }
.text-muted { color: #6c757d !important; }
.text-primary { color: var(--palette-primary) !important; }
.text-secondary { color: var(--palette-secondary) !important; }
.text-danger { color: var(--palette-danger) !important; }
.text-info { color: var(--palette-info) !important; }
.text-success { color: var(--palette-success) !important; }
.text-warning { color: var(--palette-warning) !important; }

.tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	margin: 0;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	white-space: normal;
	line-break: auto;
	font-size: 1rem;
	word-wrap: break-word;
	opacity: 0;
}

.tooltip.show {
	opacity: 1;
}

.tooltip .arrow {
	position: absolute;
	display: block;
	width: 1rem;
	height: 0.5rem;
}

.tooltip .arrow::before {
	position: absolute;
	content: "";
	border-color: transparent;
	border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
	padding: 0.5rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
	bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
	top: 0;
	border-width: 0.5rem 0.5rem 0;
	border-top-color: #0c0;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
	padding: 0 0.5rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
	left: 0;
	width: 0.5rem;
	height: 1rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
	right: 0;
	border-width: 0.5rem 0.5rem 0.5rem 0;
	border-right-color: #0c0;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
	padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
	top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
	bottom: 0;
	border-width: 0 0.5rem 0.5rem;
	border-bottom-color: #0c0;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
	padding: 0 0.5rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
	right: 0;
	width: 0.5rem;
	height: 1rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
	left: 0;
	border-width: 0.5rem 0 0.5rem 0.5rem;
	border-left-color: #0c0;
}

.tooltip-inner {
	max-width: 250px;
	padding: 0.25rem 0.5rem;
	color: black;
	text-align: center;
	background-color: white;
	border: 2px solid #0c0;
	border-radius: 0.25rem;
}

#overDiv {
	border: 1px solid black;
}
