:root {
	--text-color: #3e485a;
	--main-color: #62708C;
	--main-title-color: #334466;
	--control-bg: #F7F8FA;
	--control-border: #C3CAD9;
	--btn-color: #62708C;
	--btn-clicked-bg: #5865d6;
	--btn-clicked-color: #ffffff;
	--btn-hover-bg: #dae1f3;
	--btn-hover-color: #00338d;
	--disabled-color: #C3CAD9;
	--dialog-bg-color: #ffffff;
	/* red button */
	--btn-red-border: #ed6d6d;
	--btn-red-color: #ed6d6d;
	--btn-red-clicked-bg: #ed6d6d;
	--btn-red-clicked-color: #ffffff;
	--btn-red-hover-bg: #ffc0bb;
	--btn-red-hover-color: #ed6d6d;
	/* green button */
	--btn-green-bg: #029B11;
	--btn-green-disabled-bg: #5F9EA0;
	--btn-green-hover-color: #029B11;
	--btn-green-hover: #dff6dd;
	/* alerts */
	--alr-err-color: #510b0c;
	--alr-err-bg: #e5a7a8;
	--alr-war-color: #533c00;
	--alr-war-bg: #ffe49e;
	--alr-inf-color: #240e43;
	--alr-inf-bg: #dbc1ff;
	--alr-suc-color: #082f08;
	--alr-suc-bg: #c1d7c1;
	/* alerts dark */
	--alr-err-color-dark: #fde7e9;
	--alr-err-bg-dark: #630001;
	--alr-war-color-dark: #fff4ce;
	--alr-war-bg-dark: #6a4b16;
	--alr-inf-color-dark: #efd9fd;
	--alr-inf-bg-dark: #3b2e58;
	--alr-suc-color-dark: #dff6dd;
	--alr-suc-bg-dark: #054b16;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	background-color: #edeff2;
}

.form-group {
	display: flex;
	flex-flow: column;
	gap: 5px;
}

	.form-group label {
		color: #6B7A99;
		font-size: 12px;
	}

.date-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 8px;
	flex-wrap: wrap;
}

.shifts-styles {
	display: flex;
	gap: 5px;
	flex-direction: column;
	align-items: stretch;
	padding: 5px;
	border-radius: 3px;
	border: solid 1px #c3cad9;
}

@media (max-aspect-ratio:1/1) {
	/*Mobile*/

	.form-inline-adaptable {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.select-width {
		width: 100%;
	}

	.data-input-width {
		width: 50vw;
	}

	.text-input-width {
		width: 25vw;
	}

	.small-mobile {
		font-size: x-small;
	}

	.radio-buttons label,
	.radio-buttons input {
		text-align: center;
		align-items: center;
		justify-content: center;
		display: flex;
		padding: 0;
		cursor: pointer;
		height: 40px;
		border: 1px solid #C3CAD9;
		color: #62708C;
		border-right: none;
		padding-right: 10px;
		padding-left: 10px;
		transition: 0.3s;
	}

	.attachment-column {
		width: 30vw;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.date-filters input {
		width: 30vw;
		font-size: x-small;
	}

	.shifts-styles input {
		width: 17vw;
		padding: 0px 0px 0px 3px;
	}

	.shifts-styles button {
		padding: 0px 10px 0px 10px;
	}

	.shifts-styles .btn-group button {
		padding: 0px 5px 0px 5px;
	}

	.company-card-container img {
		max-width: 130px;
		max-height: 45px;
	}
}

@media (min-aspect-ratio:1/1) {
	/*Desktop*/

	.form-inline-adaptable {
		display: flex;
		flex-direction: row;
		align-items: flex-end;
		gap: 5px;
		justify-content: space-between;
	}

	.select-width {
		width: 204px;
	}

	.small-mobile {
	}

	.radio-buttons label,
	.radio-buttons input {
		text-align: center;
		align-items: center;
		justify-content: center;
		display: flex;
		padding: 0;
		cursor: pointer;
		height: 40px;
		border: 1px solid #C3CAD9;
		color: #62708C;
		border-right: none;
		padding-right: 15px;
		padding-left: 15px;
		transition: 0.3s;
	}

	.attachment-column {
		width: auto;
	}

	.company-card-container img {
		height: 45px;
	}
}

.form-inline {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	flex-wrap: wrap;
}

.form-control {
	height: 50px;
	padding: 0px 10px 0px 15px;
	border-radius: 5px;
	border: solid 1px #c3cad9;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: #62708C;
	transition: 0.3s;
}

	.form-control.inline {
		box-sizing: border-box;
		height: 40px;
	}

	.form-control::placeholder {
		color: #6B7A99;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		letter-spacing: 0px;
		text-align: left;
	}

	.form-control:focus, :focus-visible {
		border: 1px solid #5865D6;
		box-shadow: 0px 2px 15px 0px #26334D4D;
		outline: none;
		color: #00338D;
	}

	.form-control:disabled {
		color: #C3CAD9;
		border: 1px solid #C3CAD9;
	}

		.form-control:disabled::placeholder {
			color: #C3CAD9;
		}

	.form-control.error, .form-control:invalid {
		color: #CE2A1D;
		border-color: #CE2A1D;
		box-shadow: 0px 2px 15px 0px #26334D4D;
	}

select.form-control {
	appearance: none;
	--chevron: url("data:image/svg+xml,<svg width='12' height='7' viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'><path d='M1.71249 0.2925L5.59249 4.1725L9.47249 0.2925C9.86249 -0.0975 10.4925 -0.0975 10.8825 0.2925C11.2725 0.6825 11.2725 1.3125 10.8825 1.7025L6.29249 6.2925C5.90249 6.6825 5.27249 6.6825 4.88249 6.2925L0.292486 1.7025C0.105233 1.51567 0 1.26202 0 0.9975C0 0.732982 0.105233 0.479331 0.292486 0.2925C0.682486 -0.0875 1.32249 -0.0975 1.71249 0.2925Z' fill='%236B7A99'/></svg>");
	background: var(--chevron) right 0.5em center no-repeat white;
	background-position-x: 95%;
	padding-right: 25px;
}

.btn, .pagination button {
	height: 40px;
	border: 1px solid var(--control-border);
	color: var(--btn-color);
	border-radius: 5px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	transition: 0.3s;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	background-color: var(--control-bg);
	background-position: center;
	text-wrap: nowrap;
}

.pagination button {
	border: none;
}

	.pagination button:disabled {
		color: var(--disabled-color);
	}

.btn:disabled {
	color: var(--disabled-color);
	border: 1px solid var(--disabled-color);
}

.btn:hover:not(:disabled) {
	background-color: var(--btn-hover-bg);
	color: var(--btn-hover-color);
	border: 1px solid var(--btn-hover-bg);
	/* ripple */
	/* background: var(--btn-hover-bg) radial-gradient(circle, transparent 1%, var(--btn-hover-bg) 1%) center/15000%; */
}

.btn:hover:not(:disabled),
.btn.selected:hover:not(:disabled) {
	background-color: var(--btn-hover-bg);
	color: var(--btn-hover-color);
	border: 1px solid var(--btn-hover-bg);
	/* ripple */
	/* background: var(--btn-hover-bg) radial-gradient(circle, transparent 1%, var(--btn-hover-bg) 1%) center/15000%; */
}

.btn:active:not(:disabled),
.btn.selected:not(:disabled),
.btn.selected:active:not(:disabled) {
	background-color: var(--btn-clicked-bg);
	color: var(--btn-clicked-color);
	border: 1px solid var(--btn-clicked-bg);
	background-size: 100%;
	/* ripple */
	/* transition: background 0s; */
}

.btn.red {
	border: 1px solid var(--btn-red-border);
	color: var(--btn-red-color);
}

	.btn.red:hover:not(:disabled),
	.btn.red.selected:hover:not(:disabled) {
		background-color: var(--btn-red-hover-bg);
		color: var(--btn-red-hover-color);
		border: 1px solid var(--btn-red-hover-bg);
		/* ripple */
		/* background: var(--btn-red-hover-bg) radial-gradient(circle, transparent 1%, var(--btn-red-hover-bg) 1%) center/15000%; */
	}

	.btn.red:hover:not(:disabled),
	.btn.red.selected:hover:not(:disabled) {
		background-color: var(--btn-red-hover-bg);
		color: var(--btn-red-hover-color);
		border: 1px solid var(--btn-red-hover-bg);
		/* ripple */
		/* background: var(--btn-red-hover-bg) radial-gradient(circle, transparent 1%, var(--btn-red-hover-bg) 1%) center/15000%; */
	}

	.btn.red:active:not(:disabled),
	.btn.red.selected:not(:disabled),
	.btn.red.selected:active:not(:disabled) {
		background-color: var(--btn-red-clicked-bg);
		color: var(--btn-red-clicked-color);
		border: 1px solid var(--btn-red-clicked-bg);
		background-size: 100%;
	}

.btn.green:hover:not(:disabled) {
	background-color: var(--btn-green-hover);
	color: var(--btn-green-hover-color);
	border: 1px solid var(--btn-green-hover);
}
.btn.green:not(:disabled),
.btn.green:active:not(:disabled) {
	background-color: var(--btn-green-bg);
	color: var(--btn-clicked-color);
	border: 1px solid var(--btn-green-bg);
	background-size: 100%;
}
.btn.greenDisabled {
	background-color: var(--btn-green-disabled-bg);
	color: var(--btn-clicked-color);
	border: 1px solid var(--btn-green-disabled-bg);
	background-size: 100%;
}

.panel {
	background-color: var(--control-bg);
	box-shadow: 0px 10px 15px 0px #26334D0D;
	border-radius: 8px;
	padding: 30px;
	display: flex;
	flex-flow: column;
}

@media screen and (max-width: 600px) {
	.panel {
		padding-left: 8px;
		padding-right: 8px;
	}
}

.btn-menu {
	height: 40px;
	border: none;
	color: #00338D;
	border-radius: 5px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	transition: 0.3s;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	background: none;
}

	.btn-menu:disabled,
	.btn-menu.disabled {
		color: #C3CAD9 !important;
		cursor: no-drop;
		background: none !important;
	}

	.btn-menu:hover:not(:disabled),
	.btn-menu:focus:not(:disabled) {
		background-color: #dae1f3;
		color: #00338d;
	}

	.btn-menu:active:not(:disabled),
	.btn-menu.selected {
		background-color: #5865d6;
		color: white;
	}

	.btn-menu svg {
		flex-shrink: 0;
	}

.panel hr {
	width: 100%;
	height: 1px;
	background-color: #DFE3EB;
	border: 0;
	margin-bottom: 0px;
	margin-top: 0px;
}

.panel-header {
	color: #00338D;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.panel-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	text-wrap: nowrap;
	gap: 13px;
}

.panel-title-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	text-wrap: nowrap;
	gap: 13px;
	margin-left: auto;
}

button.panel-title-action {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	background: none;
	outline: none;
	border: none;
	cursor: pointer;
}

.panel-body {
	color: var(--text-color);
	font-size: 14px;
	gap: 20px;
	display: flex;
	flex-flow: column;
	margin-top: 21px;
}

.panel-footer {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
}

.panel-tab {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #62708C;
	padding-bottom: 29px;
	text-wrap: nowrap;
	margin-right: 50px;
	appearance: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	background: none;
	outline: none;
	border: none;
	cursor: pointer;
	gap: 13px;
}

	.panel-tab.selected {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: solid 5px #00338D;
		color: #00338D;
		padding-bottom: 25px;
	}

/* Mobile panel (hides non selected tabs)*/
@media (max-aspect-ratio:1/1) {
	.panel-tab {
		display: none;
	}

		.panel-tab.selected {
			display: flex;
			align-items: center;
			justify-content: space-between;
			border-bottom: solid 5px #00338D;
			color: #00338D;
			padding-bottom: 25px;
			align-items: center;
			justify-content: space-between;
			text-wrap: nowrap;
			margin-right: 50px;
			appearance: none;
			font-family: inherit;
			font-size: inherit;
			font-weight: inherit;
			background: none;
			outline: none;
			cursor: pointer;
			gap: 13px;
		}
}

.radio-buttons {
	display: flex;
}

	.radio-buttons.vertical {
		flex-flow: column;
	}

	.radio-buttons.small label,
	.radio-buttons.small input {
		height: 30px;
		padding-right: 11px;
		padding-left: 11px;
		font-size: 10px;
	}

	.radio-buttons label:first-of-type {
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}

	.radio-buttons label:last-of-type {
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		border-right: 1px solid #C3CAD9;
	}

	.radio-buttons input[type="radio"] {
		display: none;
	}

	.radio-buttons label:hover {
		background-color: #dae1f3;
		color: #00338d;
	}

	.radio-buttons label.disabled, .radio-buttons label.disabled:hover {
		color: var(--disabled-color);
		background-color: var(--control-bg);
		cursor: not-allowed;
	}

	.radio-buttons input[type="radio"]:checked + label, .radio-buttons label.selected {
		background-color: #5865d6;
		color: white;
	}

.btn-group {
	display: flex;
	border-radius: 5px;
}

	.btn-group button:disabled {
		color: var(--disabled-color);
		border: 1px solid var(--disabled-color);
		border-right: none;
		cursor: default;
	}

	.btn-group button {
		display: flex;
		align-items: center;
		gap: 8px;
		appearance: none;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		background: none;
		outline: none;
		border: none;
		cursor: pointer;
		height: 40px;
		border: 1px solid #C3CAD9;
		color: #62708C;
		border-right: none;
		padding-right: 15px;
		padding-left: 15px;
		transition: 0.3s;
		text-wrap: nowrap;
		flex: 1;
	}

		.btn-group button:first-of-type,
		.btn-group a:first-of-type {
			border-top-left-radius: 5px;
			border-bottom-left-radius: 5px;
		}

		.btn-group button:last-of-type,
		.btn-group a:last-of-type {
			border-top-right-radius: 5px;
			border-bottom-right-radius: 5px;
			border-right: 1px solid #C3CAD9;
		}

		.btn-group button:hover:not(:disabled),
		.btn-group a:hover:not(:disabled),
		.btn-group button.selected:hover:not(:disabled) {
			background-color: #dae1f3;
			color: #00338d;
		}


		.btn-group button:active,
		.btn-group a:active,
		.btn-group button.selected:not(:disabled),
		.btn-group button.selected:active:not(:disabled) {
			background-color: #5865d6;
			color: white;
		}

		.btn-group button.red {
			border-color: var(--btn-red-border);
			color: var(--btn-red-color);
		}

			.btn-group button.red:last-of-type,
			.btn-group a.red:last-of-type {
				border-right: 1px solid #C3CAD9;
			}

			.btn-group button.red:hover:not(:disabled),
			.btn-group a.red:hover:not(:disabled),
			.btn-group button.red.selected:hover:not(:disabled) {
				background-color: var(--btn-red-hover-bg);
				color: var(--btn-red-hover-color);
				border-color: var(--btn-red-hover-bg);
			}

			.btn-group button.red:active,
			.btn-group a.red:active,
			.btn-group button.red.selected:not(:disabled),
			.btn-group button.red.selected:active:not(:disabled) {
				background-color: var(--btn-red-clicked-bg);
				color: var(--btn-red-clicked-color);
				border-color: var(--btn-red-clicked-bg);
				background-size: 100%;
			}

.popover{
	border:0;
	position:absolute;
	top:anchor(bottom) !important;
	top: 7%; /* fallback (firefox) */
	left: auto;
	right: anchor(end) !important;
	right: 5%; /* fallback (firefox) */
	box-shadow: 0px 10px 15px 0px #26334d4a;
	border-radius: 5px;
	padding: 0;
	margin: 0;
}

	.popover::backdrop {
		background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	}

@media screen and (max-width: 600px) {
	.popover {
		margin-top: auto;
		margin-bottom: 21px;
		animation: popover-slideIn 0.5s ease-out;
		position: fixed;
		right: 0px;
		left: 0px;
		top: 0px;
		box-shadow: none;
		margin-right: auto;
		margin-left: auto;
	}

	@keyframes popover-slideIn {
		from {
			margin-bottom: -50vh;
		}

		to {
			margin-bottom: 21px;
		}
	}
}

.dropdown {
	display: flex;
	flex-flow: column;
	box-shadow: 0px 10px 15px 0px #26334d4a;
	border-radius: 5px;
	right: 0;
	top: 30px;
	z-index: 999;
	position: absolute;
	max-height: 205px;
	overflow: auto;
	scrollbar-width: none;
	overflow-y: scroll;
}

	.dropdown::-webkit-scrollbar {
		display: none;
	}

	.dropdown button {
	}

.subtext {
	font-size: 12px;
	color: grey;
	padding-left: 10px;
	font-weight: normal;
}

.btn-group.vertical {
	flex-flow: column;
}

	.btn-group.vertical.user-info {
		display: flex;
		justify-content: center;
		align-items: center;
		appearance: none;
		font-family: inherit;
		font-size: 16px;
		font-weight: bold;
		text-wrap: nowrap;
		text-decoration: none;
		background-color: #fafafa;
		outline: none;
		border: none;
		height: 40px;
		color: #62708C;
		border-bottom: none;
		padding: 15px;
	}

	.dropdown button,
	.dropdown a,
	.btn-group.vertical button,
	.btn-group.vertical a,
	.radio-buttons.vertical label {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		appearance: none;
		font-family: inherit;
		font-size: 14px;
		font-weight: inherit;
		text-wrap: nowrap;
		text-decoration: none;
		background-color: #edeff2;
		outline: none;
		border: none;
		cursor: pointer;
		height: 40px;
		border: 1px solid #C3CAD9;
		color: #62708C;
		border-bottom: none;
		padding-right: 15px;
		padding-left: 15px;
		transition: 0.3s;
		flex: none;
	}

		.dropdown button:first-of-type,
		.dropdown a:first-of-type,
		.radio-buttons.vertical label:first-of-type {
			border-top-left-radius: 5px;
			border-top-right-radius: 5px;
			border-bottom-left-radius: 0px;
		}

		.btn-group.vertical button:first-of-type,
		.btn-group.vertical a:first-of-type {
			border-top-left-radius: 0px;
			border-top-right-radius: 0px;
			border-bottom-left-radius: 0px;
		}

		.dropdown button:last-of-type,
		.dropdown a:last-of-type,
		.btn-group.vertical button:last-of-type,
		.btn-group.vertical a:last-of-type,
		.radio-buttons.vertical label:last-of-type {
			border-bottom-left-radius: 5px;
			border-bottom-right-radius: 5px;
			border-top-right-radius: 0px;
			border-bottom: 1px solid #C3CAD9;
		}

		.dropdown button:hover,
		.dropdown a:hover,
		.btn-group.vertical button:hover,
		.btn-group.vertical a:hover,
		.radio-buttons.vertical label:hover {
			background-color: #dae1f3;
			color: #00338d;
		}

		.dropdown button:active,
		.dropdown a:active,
		.btn-group.vertical button:active,
		.btn-group.vertical a:active,
		.radio-buttons.vertical label:active {
			background-color: #5865d6;
			color: white;
		}

.message {
	box-shadow: 0px 30px 60px 0px #26334D40;
	border-radius: 8px;
	display: flex;
	flex-flow: column;
	align-items: stretch;
	background-color: #f5f7ff;
	overflow: hidden;
	color: var(--text-color);
}

.message-header {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	margin: 15px;
	margin-bottom: 0px;
}

	.message-header button {
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		color: inherit;
		background: none;
		outline: none;
		border: none;
		cursor: pointer;
	}

.message-body {
	margin: 3px;
	padding: 34px;
}

.message-footer {
	display: flex;
	justify-content: space-between;
}

	.message-footer button {
		flex: 1;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		cursor: pointer;
		background: none;
		border: none;
		height: 40px;
		transition: 0.3s;
	}

		.message-footer button:hover, .message-footer button.action:hover {
			background-color: #dae1f3;
			color: #00338d;
		}

		.message-footer button.action {
			background-color: #5865d6;
			color: white;
		}

		.message-footer button.action-red {
			background-color: #ed6d6d;
			color: white;
		}

			.message-footer button.action-red:hover {
				background-color: #ffc0bb;
				color: inherit;
			}

.datatable {
	border-collapse: collapse;
	color: var(--text-color);
}

	.datatable thead th {
		font-weight: 400;
		font-size: 12px;
		height: 40px;
		color: #3F5073;
		text-align: left;
		padding-inline: 27px;
	}

	.datatable td {
		font-size: 12px;
		padding-inline: 21px;
		color: inherit;
	}

	.datatable tbody tr {
		transition: 0.3s;
	}

		.datatable tbody tr:hover {
			background-color: #dae1f3;
			color: #00338d;
			position: relative;
		}

			.datatable tbody tr:hover::after {
				background: #00338d;
				position: absolute;
				bottom: 10%;
				left: 0;
				height: 80%;
			}

.company-logo {
	max-height: 40px;
	max-width: 90%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {

	.datatable.withOrderBy thead th {
		height: 20px;
		padding-left: 0;
	}

	.datatable.responsive thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.datatable.responsive.withOrderBy thead {
		height: 20px;
		width: 100%;
		position: sticky;
	}

	.datatable.responsive tr {
		display: block;
		margin-bottom: 1rem;
		border: 1px solid #ccc;
		border-radius: 0.5rem;
		padding: 0.5rem;
	}

	.datatable.responsive td {
		display: flex;
		justify-content: space-between;
		padding: 0.5rem;
		text-align: left;
		border-bottom: 1px solid #eee;
	}

		.datatable.responsive td::before {
			/*
* aria-label has no advantage, it won't be read inside a table
content: attr(aria-label);
*/
			content: attr(data-label);
			font-weight: bold;
			flex: 1;
			padding-right: 1rem;
		}
}

@media (max-width: 768px) {
	.button-text {
		display: none;
	}
}

.btn-group.presses {
	box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.2);
	justify-content: space-between;
}

	.btn-group.presses button {
		display: flex;
		flex-flow: column;
		height: auto;
		align-items: center;
		gap: 5px;
		padding: 5px;
		flex: 1 1 0px;
		min-width: 0px;
	}

		.btn-group.presses button.selected{
			background-color: #dae1f3;
			color: #00338d;
		}

		.btn-group.presses button.selected .icon-container {
			background-color: white !important;
		}

		.btn-group.presses button:not(.selected) .icon-container {
			background-color: var(--btn-hover-bg) !important;
		}

		.btn-group.presses button.selected .change-fill path {
			fill: white !important;
		}

		.btn-group.presses button:not(.selected) .change-fill path {
			fill: #00338D !important;
		}

.press-progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #CCCCCC55;
	transition: width 0.3s ease, background-color 0.3s ease;
	z-index: 1;
}

#press-progress-text {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	font-size: 14px;
	font-weight: bold;
	z-index: 2;
}

.btn-group .caret {
	width: auto !important;
	justify-content: space-around !important;
	flex: 0 0 40px !important;
}

.truncate {
	white-space: nowrap;
	overflow: hidden;
	text-wrap: nowrap;
	text-overflow: ellipsis;
	width: 100%;
}

.hero-data {
	display: flex;
	flex-flow: column;
	background: var(--dialog-bg-color);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	font-size: 18px;
	color: var(--main-title-color);
	align-items: stretch;
	justify-content: flex-start;
}

	.hero-data.selected {
		background-color: var(--btn-hover-bg);
	}

	.hero-data.mini.selected {
		font-size: inherit;
		background-color: var(--btn-hover-bg);
		color: var(--btn-hover-color);
	}

	.hero-data.small {
		flex-flow: row;
		padding: 21px;
		gap: 21px;
		justify-content: space-between;
		font-size: 14px;
	}

	.hero-data.mini {
		font-size: inherit;
		gap: 8px;
		color: inherit;
	}

		.hero-data.mini.selected {
			font-size: inherit;
			background-color: var(--btn-hover-bg);
			color: var(--btn-hover-color);
		}

.hero-data-content {
	display: flex;
	flex-flow: row;
	gap: 21px;
	color: var(--btn-clicked-bg);
	align-items: center;
	margin: 13px;
	justify-content: space-between;
}

	.hero-data-content.mini {
		display: flex;
		flex-flow: row;
		gap: 8px;
		color: var(--main-title-color);
		align-items: center;
		margin: 8px;
		justify-content: space-between;
	}

	.hero-data-content > sub {
		font-size: 14px;
		color: var(--main-color);
		position: relative;
		white-space: break-spaces;
	}

	.hero-data-content > div {
		color: var(--main-title-color);
		display: flex;
		flex-flow: column;
		align-items: flex-end;
		text-align: right;
	}

		.hero-data-content > div:first-child {
			display: flex;
			width: 60px;
			height: 60px;
			background-color: var(--btn-hover-bg); /* Set your desired background color */
			border-radius: 30px;
			align-items: center;
			justify-content: center;
		}

	.hero-data-content.selected > div:first-child {
		background-color: var(--dialog-bg-color);
	}

.donut {
	width: 2rem;
	height: 2rem;
	margin: 2rem;
	border-radius: 50%;
	border: 3px solid #5865d6;
	border-top-color: var(--btn-hover-bg);
	animation: 1.5s spin infinite linear;
}

.donut-small {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	border: 1.5px solid #5865d6;
	border-top-color: var(--btn-hover-bg);
	animation: 1.5s spin infinite linear;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.alert {
	background-color: var(--btn-hover-bg);
	word-wrap: break-word;
	word-break: break-word;
	border-radius: .375rem;
	margin-top: 1rem;
	padding: 1rem;
	transition: height .5s ease-in, opacity .5s ease-in;
	display: block;
	position: relative;
}

	.alert > :first-child {
		margin-top: 0;
	}

	.alert a {
		color: inherit;
		text-decoration: none;
	}

	.alert p {
		word-wrap: break-word;
		margin-top: 1rem;
		margin-bottom: 0;
	}

.alert-title {
	font-weight: bold;
}

.alert.error {
	background-color: var(--alr-err-bg);
	color: var(--alr-err-color);
}

.alert.warning {
	background-color: var(--alr-war-bg);
	color: var(--alr-war-color);
}

.alert.info {
	background-color: var(--alr-inf-bg);
	color: var(--alr-inf-color);
}

.alert.success {
	background-color: var(--alr-suc-bg);
	color: var(--alr-suc-color);
}

.color-picker {
	overflow: hidden;
	width: 40px;
	height: 40px;
	/* optional formatting below here */
	border-radius: 50%;
	box-shadow: 1px 1px 3px 0px grey;
}

	.color-picker input[type='color'] {
		padding: 0;
		width: 150%;
		height: 150%;
		margin: -25%;
		cursor: pointer;
	}

.spacer {
	/* For when firefox does not read correcly <br /> */
	height: 20px;
}

.press-ink-bars {
	display: flex;
	gap: 2px;
	align-items: center;
}

.press-bar {
	width: 30px;
	height: 10px;
	border-radius: 2px;
	background-color: rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

	.press-bar::before {
		content: "";
		position: absolute;
		height: 100%;
		width: var(--level, 100%);
		background-color: currentColor;
		border-radius: 2px;
		transition: width 0.3s ease-in-out;
		left: 0;
	}

.notification-bubble {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 14px;
	height: 14px;
	background-color: #f44336;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: bold;
	z-index: 1;
}

@media print {
	div.pad * {
		page-break-after: avoid;
		page-break-before: avoid;
	}
}

.pagination {
	display: flex;
	align-items: center;
}


.sc-background {
	position: relative;
	height: 60px;
	margin-bottom: 10px;
	background-color: #fff;
	border-radius: 150px 150px 0 0;
	overflow: hidden;
	text-align: center;
}

.sc-gauge {
	width: 120px;
}

.sc-mask {
	position: absolute;
	top: 25px;
	right: 25px;
	left: 25px;
	height: 48px;
	background-color: var(--control-bg);
	border-radius: 150px 150px 0 0;
	z-index: 6;
}


.sc-percentage {
	position: absolute;
	top: 60px;
	left: -50%;
	width: 100%;
	height: 100%;
	margin-left: 60px;
	background: linear-gradient(90deg,rgba(83, 237, 88, 1) 0%, rgba(193, 199, 87, 1) 50%, rgba(224, 16, 16, 1) 100%);
	transform: rotate(0deg);
	transform-origin: top center;
}

.sc-value {
	position: absolute;
	top: 70%;
	left: 0;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
}

.sc-min {
	float: left;
	font-size: 12px;
}

.sc-max {
	float: right;
	font-size: 12px;
}

.sc-needle {
	position: absolute;
	bottom: 4px;
	left: 49.5%;
	height: 60px;
	background-color: var(--text-color);
	transform-origin: bottom center;
	transition: transform 0.5s ease-in-out;
	z-index: 9999;
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
	border-bottom: 12px solid var(--text-color);
	clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.sc-needle-center {
	position: absolute;
	bottom: 0px;
	left: 51%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	background-color: var(--text-color);
	border: 2px solid var(--text-color);
	border-radius: 50%;
	z-index: 10000;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

section {
	overflow-x: auto;
}

.plot-card {
	position: relative;
	display: flex;
	flex-direction: row;
	border-radius: 5px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: rgb(98, 112, 140);
	outline: none;
	border: solid 1px rgb(195, 202, 217);
	box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.2);
	overflow: hidden;
}

.plot-card-group {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 700px), 48%));
	gap: 8px;
}

.color-picker-fill {
	overflow: hidden;
	width: auto;
	height: auto;
}

	.color-picker-fill input[type='color'] {
		padding: 0;
		width: 150%;
		height: 150%;
		margin: -25%;
		cursor: pointer;
	}

.board-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 5px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: rgb(98, 112, 140);
	outline: none;
	border: solid 1px rgb(195, 202, 217);
	box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.2);
	overflow: hidden;
}

.board-card-group {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	gap: 8px;
}

.graph-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 5px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: rgb(98, 112, 140);
	outline: none;
	border: solid 1px rgb(195, 202, 217);
}

.graph-card-group {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 700px), 48%));
	gap: 8px;
}


.btn-group.cardPresses {
	display: flex;
	gap: 8px;
	max-width: max-content;
	flex-wrap: wrap;
}

	.btn-group.cardPresses button {
		display: flex;
		flex-flow: column;
		height: auto;
		align-items: center;
		gap: 5px;
		padding: 5px;
		flex: 1 1 auto;
		min-width: 0px;
		max-width: fit-content;
		border-radius: 8px;
		overflow: hidden;
		border: 1px solid #ddd;
	}

		.btn-group.cardPresses button.selected .donut-label {
			fill: white !important;
		}

		.btn-group.cardPresses button.selected:hover .donut-label {
			fill: #00338D !important;
		}

		.btn-group.cardPresses button:not(.selected):hover .donut-label {
			fill: #00338D !important;
		}

		.btn-group.cardPresses button:not(.selected):hover .donut-label {
			fill: #00338D !important;
		}

.press-text {
	max-width: 210px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
}

.press-printer-card {
	overflow: hidden;
	min-width: 280px;
}

.press-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.4rem;
}

.status-badge {
	color: white;
	padding: 0.1rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 500;
	display: inline-block;
	text-transform: capitalize;
	max-width: fit-content;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.press-card-body {
	padding: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	min-height: 60px;
}

.ink-usage {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	font-size: 0.75rem;
	margin-bottom: 1rem;
}

.ink-box {
	background-color: #f1f1f1;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 500;
}

.job-section {
	margin-bottom: 1rem;
}

.job-name {
	margin-bottom: 0.4rem;
}

.progress-bar {
	height: 10px;
	background: #e5e5e5;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 0.25rem;
}

.progress-bar-inner {
	height: 100%;
	background: #1d7bff;
	transition: width 0.3s ease-in-out;
}

.card-footer {
	padding: 1rem;
	border-top: 1px solid #eee;
}

.footer-grid {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	align-items: flex-start;
}

.view-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1rem;
}

.press-view-btn {
	padding: 0.45rem 1rem;
	border: none;
	border-radius: 8px;
	font-size: 0.85rem;
	cursor: pointer;
}

.donut-chart {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 4px auto;
}

.donut-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	background: #E3E9F5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	color: #333;
	box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

.legend {
	display: flex;
	justify-content: space-around;
	margin-top: 4px;
	font-family: sans-serif;
	flex-wrap: wrap;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 1px 2px;
}

.donut-legend-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

.legend.vertical {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.75rem;
}

.color-box {
	width: 12px;
	height: 12px;
	border-radius: 4px;
}

.ink-drop {
	width: 12px;
	height: 12px;
	display: inline-block;
}

.legend.many-columns {
	width: 80%;
	gap: 1px 5px;
	font-size: 0.75rem;
}



.unlock-feature-message {
	position: absolute;
	text-align: center;
	font-size: medium;
	margin: 3vh;
	color: whitesmoke;
	background-color: #5b5b5b;
	padding: 1vh;
	border-radius: 100px;
	top: 85%;
	left: 50%;
}

.license-fake-image {
	background-position: center;
	background-size: contain;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	background-blend-mode: lighten;
	background-repeat: no-repeat;
	min-height: 500px;
}

.presses-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.press-item {
	flex: 1 1 290px;
	min-width: 290px;
	max-height: 350px;
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.presses-grid.stretch-last-row::after {
	flex-grow: 999;
}
