﻿/* ========================================
   DASHBOARD CONTAINER & LAYOUT
   ======================================== */

.dashboardContainer {
	margin: 30px auto 0;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clickBehave {
	cursor: pointer;
	transition: transform 0.2s ease-in-out;
}

	.clickBehave:hover {
		text-shadow: 2px 2px 3px #00000050;
		color: #4a94cc;
	}

.dashboard-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: bold;
	user-select: none;
}

.title-regular {
	font-weight: normal;
}

.busd-info-line {
	font-size: 1.1rem;
	padding-top: 5px;
	user-select: none;
}

.busd-label {
	font-weight: bold;
}

.busd-label2 {
	font-weight: normal;
}

.busd-separator {
	margin: 0 8px;
	color: #999;
}

#bdSeparatorLine {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #ccc;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
}

/* ========================================
   CUSTOM SELECT COMPONENT
   ======================================== */

.custom-select {
	position: relative;
	display: inline-block;
	cursor: pointer;
	user-select: none;
	min-width: 90px;
	width: 100%;
}

.select-styled {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px 15px;
	border: 1px solid #ccc;
	border-radius: 9999px;
	font-size: 1rem;
	font-weight: bold;
	color: #1f2937;
	transition: all 0.2s;
}

	.select-styled:hover {
		border-color: #248963;
		box-shadow: 0 0 0 1px #248963;
	}

.select-arrow {
	width: 0;
	height: 0;
	margin-left: 8px;
	border: 4px solid transparent;
	border-top-width: 6px;
	border-bottom-width: 0;
	transition: transform 0.2s ease-in-out;
}

.select-styled.active .select-arrow,
.bdDashboardToggleControl.active .select-arrow,
#bdDashboardFunctionControl.active .select-arrow {
	transform: rotate(180deg);
}

.select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1000;
	min-height: 200px;
	max-height: 300px;
	overflow-y: auto;
	margin-top: 4px;
	background-color: #fff !important;
	color: #1f2937 !important;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	list-style: none;
	padding: 0;
	margin-bottom: 0;
	display: none;
}

	.select-options li {
		padding: 8px 15px;
		cursor: pointer;
		transition: background-color 0.1s;
	}

		.select-options li:hover {
			background-color: #eff6ff;
			color: #1d4ed8;
		}

		.select-options li.is-selected {
			font-weight: bold;
			background-color: #f3f4f6;
		}

/* ========================================
   CUSTOM SWITCH COMPONENT
   ======================================== */

.custom-switch-wrapper {
	display: inline-block;
	position: relative;
	margin-right: -12px;
}

.custom-switch-container {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	user-select: none;
}

.custom-switch-slider {
	position: absolute;
	background-color: #fff;
	border-radius: 50%;
	top: 2px;
	left: 2px;
	transition: transform 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-switch-label {
	position: absolute;
	font-size: 11px;
	font-weight: 600;
	color: #000;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
	pointer-events: none;
}

	.custom-switch-label.on {
		left: 8px;
	}

	.custom-switch-label.off {
		right: 8px;
	}

/* ========================================
   DASHBOARD TOGGLE CONTROL
   ======================================== */

.bdDashboardToggleControl {
	cursor: pointer;
	user-select: none;
	position: relative;
}

	.bdDashboardToggleControl .d-flex {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.bdDashboardToggleControl .select-arrow {
		width: 0;
		height: 0;
		margin-left: 8px;
		border: 4px solid transparent;
		border-top-width: 6px;
		border-bottom-width: 0;
		transition: transform 0.2s ease-in-out;
	}

#bdDashboardType {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

#bdDashboardTime {
	display: flex;
	align-items: center;
	gap: 8px;
}

#bdDashboardFunctionControl {
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 3px 15px;
	border: 1px solid #ccc;
	border-radius: 9999px;
	font-size: 16px;
	color: #1f2937;
	transition: all 0.2s;
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.bdTimeTitle {
	font-weight: 600;
	font-size: 0.95rem;
	user-select: none;
}

.bdTimeTxt {
	font-weight: 600;
	font-size: 0.95rem;
	user-select: none;
}

/* ========================================
   LEFT COLUMN CONTROLS (bdTopLeft)
   ======================================== */

#bdRewardTypePercentSelectControl {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

#bdRewardTypeImg {
	flex: 0 0 auto;
	margin-right: 10px;
}

#bdRewardTypeTitle {
	flex-grow: 1;
	flex-basis: 0;
	font-weight: 600;
	font-size: 1rem;
}

#bdRewardTypePercent {
	flex: 0 0 auto;
	max-width: 100px;
}

#bdRapidTransactionControl {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

#bdAutoApproveControl {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

#bdAppFunctionControl {
	margin-bottom: 10px;
}

.bd_greyWrap {
	flex-grow: 1;
	flex-basis: 0;
	background-color: #6e6e6e;
	padding: 3px 15px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	font-size: 1rem;
	min-width: fit-content;
	user-select: none;
	position: relative;
}

.bd_TopGreyTitle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
}

.bd_TopGreyInput {
	flex: 0 0 auto;
	height: 28px;
}

.bd_greyright {
	flex: 0 0 auto;
	margin-left: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	min-width: 55px;
	text-align: right;
}

.bd_TopRedCircle1 {
	background-color: #fa0300;
	color: #ffffff;
	border-radius: 25px;
	text-align: center;
	padding: 0 8px;
	width: fit-content;
	margin-left: auto;
}

/* ========================================
   CENTER COLUMN CONTROLS (bdTopCenter)
   ======================================== */

.bdTopCenter-row {
	padding: 4px 15px;
	margin: 0 0 1px 0;
	user-select: none;
	min-height: 34px;
}

	.bdTopCenter-row:hover {
		background-color: #eef5f2;
	}

.bdTopCenter-row2 {
	padding: 4px 15px;
	margin: 0 0 1px 0;
	user-select: none;
}

	.bdTopCenter-row2:hover {
		background-color: #eef5f2;
	}

.bdTopCenter-row .d-flex {
	gap: 0.5rem;
}

#bdTopCenter .location-pin,
#bdTopCenter .owner-icon,
#bdTopCenter .consultant-icon {
	font-size: 1.5rem;
	margin-right: 15px;
	color: #000;
	width: 44px;
}

#bdTopCenter .location-label,
#bdTopCenter .owner-label {
	font-weight: 600;
	font-size: 1.05rem;
	color: #212529;
}

#bdTopCenter .consultant-label {
	font-weight: 600;
	font-size: 0.95rem;
	color: #212529;
}

#bdTopCenter .location-value,
#bdTopCenter .owner-value {
	font-weight: 500;
	font-size: 1.15rem;
	color: #1f2937;
	letter-spacing: 0.8px;
	flex-grow: 1;
	text-align: left;
}

#bdTopCenter .consultant-value {
	font-weight: 500;
	font-size: 1rem;
	color: #fa0300;
	letter-spacing: 0.8px;
	flex-grow: 1;
	text-align: left;
}

#bdTopCenter .edit-location-btn {
	color: #6c757d;
	opacity: 0.75;
	transition: all 0.2s ease;
	padding: 4px;
	border-radius: 4px;
}

	#bdTopCenter .edit-location-btn:hover {
		opacity: 1;
		background-color: #f8f9fa;
		color: #495057;
	}

.deposit-label {
	width: auto;
	min-width: unset;
	padding: 3px 10px;
	justify-content: center;
	max-width: 145px;
}

/* ========================================
   RIGHT COLUMN CONTROLS (bdTopRight)
   ======================================== */

.bdTopBtn-wrap {
	margin-bottom: 10px;
	max-height: 34px;
}

/* ========================================
   SCORE GAUGE & BADGES
   ======================================== */

.score-gauge-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 0.2rem;
}

.score-gauge-svg {
	flex: 1;
	max-width: 60%;
	height: 28px;
}

.score-value {
	flex: 0 0 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem !important;
	text-align: center;
}

.chatCountBadge {
	background-color: rgb(250, 3, 0);
	color: rgb(255, 255, 255);
	text-align: center;
	min-width: 16px;
	max-height: 18px;
	font-size: 0.75rem;
	margin-left: -10px;
	margin-top: -3px;
	position: absolute;
	border-radius: 16px;
	padding: 0px 6px;
}

.genCountBadge {
	background-color: rgb(250, 3, 0);
	color: rgb(255, 255, 255);
	text-align: center;
	min-width: 16px;
	min-height: 16px;
	font-size: 0.75rem;
	margin-left: 0px;
	margin-top: -5px;
	position: absolute;
	border-radius: 16px;
	padding: 0px 7px;
}

.action-badge {
	background-color: rgb(250, 3, 0);
	color: rgb(255, 255, 255);
	text-align: center;
	min-width: 16px;
	max-height: 18px;
	font-size: 0.75rem;
	right: 0px;
	top: -6px;
	position: absolute;
	border-radius: 16px;
	padding: 0px 6px;
}

.chatCountGroup {
	padding: 4px;
	min-width: 36px;
	cursor: pointer;
}

/* ========================================
   COMMON BUTTON STYLES
   ======================================== */

.bdBtnWhite {
	background-color: #ffffff;
	border: 1px solid #ccc;
	padding: 3px 15px;
	border-radius: 9999px;
	font-size: 16px;
	color: #1f2937;
	transition: all 0.2s;
}

	.bdBtnWhite:hover {
		background-color: #f1f1f1;
		border-color: #248963;
		box-shadow: 0 0 0 1px #248963;
	}

.buttonBehave {
	cursor: pointer;
	border: 1px solid #6e6e6e;
}

	.buttonBehave:hover {
		filter: brightness(1.2);
		-webkit-transition: all .35s;
		-moz-transition: all .35s;
		transition: all .35s;
		border: 1px solid #248963;
		box-shadow: 2px 3px 5px #273b332b;
	}

/* ========================================
   CONTAIN BODY (SECTION WRAPPERS)
   ======================================== */

.containBodyWrap {
	display: inline-block;
	width: 100%;
	z-index: 3;
	position: relative;
}

.containBodyTitle {
	font-weight: bold;
	font-size: 1rem;
	user-select: none;
	padding: 3px 8px;
	border: 1px solid #ccc;
	border-radius: 25px;
	margin-left: 10px;
	min-height: 28px;
	line-height: 26px;
	align-items: center;
	width: fit-content;
	background-color: #fff;
	z-index: 3;
	position: relative;
	display: inline-block;
	vertical-align: top;
}

.containBodyTitle2 {
	font-weight: bold;
	font-size: 1rem;
	user-select: none;
	padding: 3px 8px;
	border: 1px solid #ccc;
	border-radius: 25px;
	margin-left: 10px;
	min-height: 28px;
	line-height: 26px;
	align-items: center;
	width: fit-content;
	background-color: #fff;
	color: #000;
	z-index: 3;
	position: relative;
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	vertical-align: top;
}

	.containBodyTitle2:hover {
		border: 1px solid #ccc;
		background-color: #6e6e6e;
		color: #fff;
	}

	.containBodyTitle2.active {
		border: 1px solid #6e6e6e;
		background-color: #6e6e6e;
		color: #fff;
	}

		.containBodyTitle2.active:hover {
			border: 1px solid #ccc;
			background-color: #fff;
			color: #000;
		}

		.containBodyTitle2.active::before {
			content: '';
			position: absolute;
			top: -12px;
			left: 50%;
			transform: translateX(-50%);
			width: 0;
			height: 0;
			border-left: 6px solid transparent;
			border-right: 6px solid transparent;
			border-bottom: 8px solid #6e6e6e;
			z-index: 10;
		}

.containBodyEmptyTitle {
	margin-left: 10px;
	height: 28px;
	align-items: center;
	width: fit-content;
	position: relative;
	display: inline-block;
	z-index: 3;
}

.containBody {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 10px;
	margin-top: -16px;
	z-index: 2;
	position: relative;
}

/* New class specifically for toggleable contain bodies */
.containBodyToggle {
	padding: 0; /* Default: no padding when collapsed */
	border: 1px solid #ccc;
	border-radius: 10px;
	margin-top: -16px;
	z-index: 2;
	position: relative;
	transition: padding 0.2s ease;
}

	.containBodyToggle.expanded {
		padding: 15px; /* Add padding when expanded */
	}

/* Remove the old collapsed class */

.titleButton {
	cursor: pointer;
	color: #fff;
	min-width: 135px;
	text-align: center;
	vertical-align: middle;
	align-items: center;
}

	.titleButton:hover {
		border: 1px solid #248963;
		box-shadow: 2px 3px 5px #273b332b;
		filter: brightness(1.2);
		-webkit-transition: all .35s;
		-moz-transition: all .35s;
		transition: all .35s;
	}

.cancelbtn {
	background-color: #6e6e6e !important;
}

.deleteBtn {
	background-color: #e21d24 !important;
}

.submitBtn {
	background-color: #4acc68 !important;
}


.containBody.collapsed {
	padding: 0 !important;
}

.balanceAmount {
	padding-left: 8px;
}

.bdDashboardControls {
	display: none;
}

/* ========================================
   TABLE STYLES
   ======================================== */
.businesstable,
.businessStatsTable {
	overflow: auto;
	width: 100%;
}

	.businesstable table,
	.businessStatsTable table {
		border: 0px none #dededf;
		height: 100%;
		width: 100%;
		table-layout: fixed;
		border-collapse: collapse;
		border-spacing: 1px;
		text-align: left;
	}

	.businesstable caption,
	.businessStatsTable caption {
		caption-side: top;
		text-align: center;
	}

	.businesstable th,
	.businessStatsTable th {
		border: 0px none #dededf;
		color: #000000;
		padding: 5px;
	}

	.businesstable td,
	.businessStatsTable td {
		border: none;
		padding: 5px;
		font-weight: bold;
	}

	.businesstable tr:nth-child(even) td {
		background-color: #ffffff;
		color: #000000;
	}

	.businesstable tr:nth-child(odd) td {
		background-color: #f6f6f6;
		color: #000000;
	}

	.businesstable tr:nth-child(odd):hover td {
		background-color: #ededed;
		color: #000000;
	}

	.businesstable .storeBlue {
		color: #3d65f8;
	}

	.businesstable tr {
		border: none;
	}

	.businesstable tbody,
	td,
	tfoot,
	th,
	thead,
	tr {
		border: none;
	}

.tableColColour {
	background: #eaf7f0;
}

.tableArrowColour .fa-arrow-down {
	color: var(--bs-danger) !important;
}

.tableArrowColour .fa-arrow-up {
	color: var(--bs-success) !important;
}

.col-blue {
	background-color: #eaf7f0 !important;
}

.col-disabled {
	background-color: #e0e0e06f !important;
	color: #0000005c !important;
	pointer-events: none;
}

/* ========================================
   DATATABLE CUSTOMIZATION
   ======================================== */

table.dataTable.compact thead th,
table.dataTable.compact thead td,
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td,
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
	padding: 2px 4px;
}

table.dataTable.row-border > tbody > tr > *,
table.dataTable.display > tbody > tr > * {
	border-top: 1px solid rgb(0, 0, 0, 0.07);
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
	padding: 10px;
	border-bottom: none;
}

table.dataTable thead > tr > th div.dt-column-header {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 0.20rem !important;
	padding-bottom: 0.45rem;
}

	table.dataTable thead > tr > th div.dt-column-header span.dt-column-title {
		order: 1;
		display: block;
		text-align: center;
		white-space: normal;
		min-height: 55px;
	}

	table.dataTable thead > tr > th div.dt-column-header span.dt-column-order {
		order: 2;
		line-height: 1;
		display: flex !important;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 0rem;
		margin-top: 0.05rem;
	}

.table-link a {
	color: #4247fe;
	text-decoration: underline;
	transition: color 0.2s ease, text-decoration 0.2s ease;
	cursor: pointer;
}

	.table-link a:hover {
		color: #23c2cc;
	}

	.table-link a:active {
		color: #1a1fa5;
	}

	.table-link a:visited {
		color: #4346b6;
	}

.left-cell {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="40"><rect x="10" y="10" width="200" height="20" rx="10" ry="10" fill="%23ffffff" stroke="%23cccccc" stroke-width="1"/></svg>');
	background-repeat: no-repeat;
	background-size: initial;
	background-position-x: left;
	background-position-y: center;
}

.middle-cell {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="40"><rect x="-50" y="10" width="150" height="20" rx="0" ry="0" fill="%23ffffff" stroke="%23cccccc" stroke-width="1"/></svg>');
	background-repeat: no-repeat;
	background-size: initial;
	background-position-y: center;
}

.right-cell {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="40"><rect x="-10" y="10" width="200" height="20" rx="10" ry="10" fill="%23ffffff" stroke="%23cccccc" stroke-width="1"/></svg>');
	background-repeat: no-repeat;
	background-size: initial;
	background-position-y: center;
	background-position-x: right;
}

.dtr-details .left-cell,
.dtr-details .middle-cell,
.dtr-details .right-cell {
	background-image: none;
}

.userActive {
	color: #2cb645;
}

.userInactive {
	color: #f79317;
}

.userNo {
	color: #fa0300;
}

.tblCellSpacer {
	width: 35px;
	height: auto;
}

/* ========================================
   SEARCH CONTROLS
   ======================================== */

.searchIcon {
	display: inline-block;
	position: relative;
	width: 18px;
	height: 25px;
	margin-right: 5px;
}

.searchInput1 {
	display: inline-block;
	position: relative;
	width: calc(100% - 35px);
	max-width: 300px;
	height: 25px;
	vertical-align: middle;
}

	.searchInput1 input {
		width: 100%;
		height: 22px;
		padding: 0px 5px;
		border: 0px;
	}

		.searchInput1 input:focus-visible {
			outline: none;
			border-radius: 3px;
		}

/* ========================================
   FORM INPUTS & CONTROLS
   ======================================== */



input {
	font: 1rem/1.7 "Lato", sans-serif;
	background-color: #fff;
}

.input-group-custom2 {
	position: relative;
}

	.input-group-custom2 .form-label {
		margin-bottom: 2px;
		font-weight: bold;
	}

	.input-group-custom2 .form-control {
		padding-top: 2px;
		padding-bottom: 2px;
		border-width: 1px;
		font-size: 16px;
		background-color: #fff;
		border-color: rgba(var(--inverse-color-rgb), 0.8);
		line-height: 0.8;
	}

	.input-group-custom2 select {
		line-height: 1.2 !important;
		appearance: auto !important;
		-webkit-appearance: auto;
		-moz-appearance: auto;
	}

.memSchedCol {
	text-align: center;
}

.memDayOfWeek {
	text-align: center;
	font-weight: bold;
	font-size: 0.9rem;
}

.memDayInput {
	min-width: 83px;
	max-width: 88px;
	margin-bottom: 5px;
}

	.memDayInput input {
		padding: 3px 2px;
		height: 25px;
		background-color: #fff;
	}

		.memDayInput input[type="time"] {
			direction: ltr;
			width: auto;
			border: 1px solid #ccc;
		}

		.memDayInput input[type="time" i] {
			padding-inline-start: 3px;
		}

input[type="time"]::-webkit-calendar-picker-indicator {
	width: 15px;
	margin-top: 4px;
}

.memDateInput {
	margin-bottom: 0px;
}

	.memDateInput input {
		padding: 3px 2px;
		height: 25px;
		background-color: #fff;
	}

		.memDateInput input[type="date"] {
			direction: ltr;
			width: auto;
			border: 1px solid #fff;
		}


.dashRadioCont1 {
	display: inline-block;
	width: 50px;
}

.dashRadio {
	appearance: none;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	border: 2px solid #999999;
	transition: 0.2s all linear;
	margin-right: 3px;
	position: relative;
	top: 4px;
}

	.dashRadio:checked {
		border: 6px solid black;
	}

.menChkbxTitle {
	text-align: center;
	font-weight: bold;
	font-size: 0.95rem;
	font-family: Arial, Helvetica, sans-serif;
}
/* ========================================
   MAP & VISUAL ELEMENTS
   ======================================== */

.dashMapCont {
	width: 155px;
	height: 155px;
	position: relative;
}

.dashMap {
	width: 155px;
	height: 155px;
	position: relative;
	background-color: #f4f4f4;
	border: 1px solid #cecece;
}

.dashMapFlag {
	width: 37px;
	height: 22px;
	position: absolute;
	left: 1px;
	top: 1px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
}

.labelBlock {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-weight: 600;
	margin-right: 0.5rem;
}

.colourBlock {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 6px;
	min-width: 0;
	height: 27px;
	text-align: center;
}

.bg-red {
	background-color: #e21e0e;
}

.bg-orange {
	background-color: #ffa602;
}

.bg-yellow {
	background-color: #ffe327;
	color: #000;
}

.bg-greenlight {
	background-color: #bdf120;
	color: #000;
}

.bg-green {
	background-color: #21dd24;
}

.horizontalBlock {
	padding: 0px;
	text-align: center;
}

.labelText {
	display: inline-flex;
	gap: 2px;
}

.colorUnderBar {
	width: 100%;
	height: 4px;
}
/* ========================================
   UTILITY CLASSES
   ======================================== */

.cPointer {
	cursor: pointer;
}

.mouseHovZoom:hover {
	transform: scale(1.1);
}

.bolder {
	font-weight: 800 !important;
}
/* ========================================
   MEDIA QUERIES
   ======================================== */

@media (max-width: 576px) {
	.containBodyTitle {
		flex: 1 1 100%;
	}
}

@media only screen and (max-width: 768px) {
	.pt-766 {
		padding-top: 15px;
	}
}

.tblHeadContIndicator {
	border-radius: 30px;
	min-width: 30px;
	height: 30px;
	font-size: 17px;
	color: #fff;
	text-align: center;
	background-color: #fa0300;
	color: #ffffff;
	padding: 0 8px;
	width: fit-content;
}

.indicatorRed {
	background: #fa0300;
	border: 1px solid #fa0300;
}

.indicatorGreen {
	background: #4acc68;
	border: 1px solid #4acc68;
}

.indicatorGrey {
	background: #6e6e6e;
	border: 1px solid #6e6e6e;
}

.db_editGray {
	color: #6e6e6e !important;
	cursor: pointer;
}

	.db_editGray:hover {
		color: #4f9d80 !important;
	}

.dashCheck {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #000;
	border-radius: 3px;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	top: 2px;
}

	.dashCheck:checked {
		background-color: #000;
		border-color: #000;
	}

		.dashCheck:checked::after {
			content: '\2713';
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			color: #fff;
			font-size: 14px;
			font-weight: bold;
		}

	.dashCheck:hover {
		box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
	}

.chkBxGroup {
	display: flex;
	justify-content: space-around;
}

.circleRed {
	color: #fa0300;
}

.circleGreen {
	color: #4acc68;
}

.circleGrey {
	color: #6e6e6e;
}

.IconIndicator {
	width: 100%;
	display: flex;
	justify-content: center;
}

	.IconIndicator img {
		width: 26px;
		height: 26px;
		object-fit: contain;
	}

	.IconIndicator.disabled {
		opacity: 0.3;
	}

.chkBxGroup {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.chkBxColumn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.chkBxTitle {
	font-size: 9px;
	font-weight: 600;
	color: #495057;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	text-align: center;
	line-height: 1;
}

.chkBxInput {
	display: flex;
	align-items: center;
	justify-content: center;
}


.dt-container table tbody tr:last-child td,
.dt-container table tbody tr:last-child th {
	border-bottom: 0 !important;
}

.countBadgeHeader {
	width: fit-content;
	border: 1px solid #fa0300;
	background: #fa0300;
	border-radius: 30px;
	min-width: 30px;
	height: 30px;
	font-size: 17px;
	color: #fff;
	text-align: center;
}

.bdDashCalendar {
	width: 0;
	height: 0;
	margin-left: 8px;
	border: 4px solid transparent;
	border-top-width: 6px;
	border-bottom-width: 0;
	transition: transform 0.2s ease-in-out;
}

.dashboardContainer .fa-arrow-alt-up {
	color: var(--bs-success);
}

.dashboardContainer .fa-arrow-alt-right {
	color: #000;
}

.dashboardContainer .fa-arrow-alt-down {
	color: var(--bs-danger);
}

/* Custom Ratio Progress Bar */
.ratio-progress {
	position: relative;
	height: 10px;
	background: linear-gradient(to right, #e21e0e 0%, #ffe327 50%, #21dd24 100%);
	border-radius: 4px;
	overflow: visible;
	user-select: none;
}

.ratio-progress-bar {
	position: relative;
	height: 100%;
	background: transparent;
	border-right: 2px solid #000;
	transition: width 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 8px;
}

.ratio-progress-text {
	position: absolute;
	right: -15px;
	top: -8px;
	transform: translateY(-50%);
	font-weight: bold;
	font-size: 0.9rem;
	white-space: nowrap;
	color: #000;
}

.ratioCircleGreen, .ratioCircleRed {
	height: 2rem;
	width: 2rem;
	border-radius: 3rem;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	user-select: none;
}

.ratioCircleGreen {
	border: 0.15rem solid #4acc68;
}

.ratioCircleRed {
	border: 0.15rem solid #e21e0e;
}

@media (max-width: 576px) {
	.flex-xs-wrap {
		flex-wrap: wrap !important;
	}
}

.textUnderline {
	padding-bottom: 1px;
	border-bottom: 3px solid #000;
	display: inline-block;
	min-width: 34px;
	text-align: center;
	line-height: 18px
}

.underline-red {
	border-color: #e21e0e !important;
}

.underline-orange {
	border-color: #ffa602 !important;
}

.underline-yellow {
	border-color: #ffe327 !important;
}

.underline-greenlight {
	border-color: #bdf120 !important;
}

.underline-green {
	border-color: #4acc68 !important;
}

.underline-grey {
	border-color: #6e6e6e !important;
}

.txt-red {
	color: #e21e0e !important;
}

.txt-orange {
	color: #ffa602 !important;
}

.txt-yellow {
	color: #ffe327 !important;
}

.txt-greenlight {
	color: #bdf120 !important;
}

.txt-green {
	color: #4acc68 !important;
}

.txt-grey {
	color: #b2b2b2 !important;
}

.progress-text {
	font-size: 1rem;
	font-weight: bold;
	color: #000;
	user-select: none;
	margin-left: 8px;
}

.smallProgress, .progress, .progress-stacked {
	--bs-progress-font-size: 0.75rem;
	--bs-progress-bg: #fff;
	--bs-progress-border-radius: 0;
	--bs-progress-bar-color: #fff;
	--bs-progress-bar-bg: #0d6efd;
	--bs-progress-bar-transition: width 0.6s ease;
	--bs-progress-box-shadow: #00000076;
	--bs-progress-box-shadow-sm: #0000004d;
	--bs-progress-box-shadow-lg: #00000080;
	max-width: 85px;
	min-width: 65px;
	height: 0.8rem;
	border: 1px solid #ccc;
	border-top: 1px solid #aaa;
	border-right: 1px solid #aaa;
	background-color: #fff;
	border-radius: 0;
}

.bd_percent {
	display: inline-block;
	position: relative;
	margin-left: 6px;
}

.bd_percentIndicator {
	min-width: 80px;
}

.bd_disabled, .bd_disabled .fa-arrow-alt-down, .bd_disabled .fa-arrow-alt-right, .bd_disabled .fa-arrow-alt-left, .bd_disabled .fa-arrow-alt-up {
	color: #b2b2b2 !important;
}

.bd_tbleDays {
	min-width: 80px;
}
