html[data-sidenav-size] .content-page {
	margin-inline-start: 0;
	margin-inline-end: 0;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
	height: 100vh;
	min-height: 0;
}

#dashboardTopBar,
#dashboardControlsBar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 80px;
	padding: 0 25px;
}

#dashboardContent {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	justify-content: safe center;
}

#dashboardControls {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.logout-checkmark {
	margin: 0 auto;
	width: 40px;
}

.logout-checkmark svg {
	display: block;
	width: 40px;
	height: 40px;
}

.logout-checkmark .circle {
	stroke-dasharray: 390;
	animation: logout-checkmark-draw-circle .9s ease-in-out;
}

.logout-checkmark .check {
	stroke-dasharray: 100;
	animation: logout-checkmark-draw-check 1.25s ease-in-out;
}

@keyframes logout-checkmark-draw-circle {
	0% {
		stroke-dashoffset: 390;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes logout-checkmark-draw-check {
	0% {
		stroke-dashoffset: 100;
	}
	40% {
		stroke-dashoffset: 100;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

#revenueLabourPerformanceChart {
	border-radius: .25rem;
	box-shadow: 0 .75rem 6rem rgba(56, 65, 74, .03);
}

.highcharts-title {
	opacity: 0;
}

.text-ultra-success {
	color: #4ccd6a !important;
}

.status-card .status-card-text-shadow {
	text-shadow: 1px 1px 10px rgba(0, 0, 0, .4), 0px 0px 8px rgba(0, 0, 0, .4), 0px 0px 4px rgba(0, 0, 0, .4);
}

.status-card {
	position: relative;
	overflow: hidden;
}

.status-card::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -15%;
	width: 90%;
	height: 130%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 1;
}

.status-card .card-body {
	position: relative;
	z-index: 2;
}

.status-card.status-better::after {
	background:
		radial-gradient(circle at 80% 50%,
			rgba(76, 205, 106, .8) 0%,
			rgba(76, 205, 106, .5) 35%,
			rgba(76, 205, 106, .2) 60%,
			transparent 80%
		),
		conic-gradient(from 45deg at 72% 50%,
			transparent 0deg,
			rgba(76, 205, 106, .6) 20deg,
			transparent 40deg
		),
		radial-gradient(circle at 80% 40%, #4ccd6a 4px, transparent 6px);

	background-repeat: no-repeat;
}

.status-card.status-good::after {
	background:
		radial-gradient(circle at 80% 50%,
			rgba(26, 188, 156, .7) 0%,
			rgba(26, 188, 156, .4) 35%,
			rgba(26, 188, 156, .15) 60%,
			transparent 80%
		),
		radial-gradient(circle at 65% 35%, #1abc9c 4px, transparent 6px),
		radial-gradient(circle at 75% 65%, #1abc9c 3px, transparent 5px),
		radial-gradient(circle at 85% 45%, #1abc9c 3px, transparent 5px);

	background-repeat: no-repeat;
}

.status-card.status-warning::after {
	background:
		radial-gradient(circle at 80% 50%,
			rgba(247, 184, 75, .95) 0%,
			rgba(247, 184, 75, .65) 30%,
			rgba(247, 184, 75, .35) 55%,
			transparent 85%
		),
		radial-gradient(circle at 80% 45%, #f1556c 5px, transparent 7px);
	background-repeat: no-repeat;
}

.status-card.status-danger::after {
	background:
		radial-gradient(circle at 80% 50%,
			rgba(241, 85, 108, .9) 0%,
			rgba(241, 85, 108, .6) 40%,
			rgba(241, 85, 108, .3) 65%,
			transparent 85%
		),
		radial-gradient(circle at 75% 35%, #f1556c 5px, transparent 7px),
		radial-gradient(circle at 85% 65%, #f1556c 4px, transparent 6px);
	background-repeat: no-repeat;
}

.gap-1-5 {
	gap: 0.5625rem !important;
}

/* A switch that opens its form-group has no group label above it, so its own label
   carries the field name and has to match the weight of a .form-label. Switches that
   sit underneath a group label are not :first-child, so they keep the normal body
   weight and the group label stays the only bold text in the block. */
.form-group > .form-check:first-child .form-check-label {
	font-weight: var(--theme-font-weight-semibold);
}