@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

body {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: var(--primary);
	background-color: var(--grey);
}

:root {
	--primary-blue: #3749a6;
	--primary-blue-hover: #4a5bc2;
	--yellow: #ffc107;
	--primary: #202224;
	--primary-40: rgba(43, 48, 52, 0.4);
	--primary-60: rgba(43, 48, 52, 0.6);
	--white: #fff;
	--black: #000;
	--grey: #f5f6fa;
	--grey-100: #404040;
	--grey-200: #565656;
	--grey-300: #d5d5d5;
	--grey-400: #e0e0e0;
	--grey-500: #eee;
	--grey-600: #7c7c7c;
	--grey-700: #e9e9e9;
	--grey-800: #e2e8ee;
	--grey-900: #a6a6a6;

	--red: #ef3826;
	--header-height: 60px;
	--primary-green: #00ff1a;
	--info: #0dcaf0;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	--bs-gutter-x: 32px;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.hours-exceed {
	background-color: var(--red) !important;
	color: var(--white);
}

.hours-exceed * {
	color: var(--white);
}

.highlight-yellow {
	background-color: var(--yellow) !important;
}

.highlight-blue {
	background-color: var(--primary-blue) !important;
	color: var(--white);
}

.highlight-blue * {
	color: var(--white) !important;
}

table.dataTable>tbody>tr:hover td {
	box-shadow: inset 0 0 0 9999px rgb(55 73 166 / 1%) !important;
	background: transparent;
}

table.dataTable>tbody>tr.selected>* {
	box-shadow: inset 0 0 0 9999px rgb(55 73 166 / 10%) !important;
	background: transparent;
	color: inherit;
}

table.dataTable>tbody>tr.selected:hover>* {
	box-shadow: inset 0 0 0 9999px rgb(55 73 166 / 15%) !important;
}

.modal-header .btn-close {
	background-size: 12px;
	outline: none;
	box-shadow: none;
}

.btn-primary {
	background-color: var(--primary-blue);
	border-color: var(--primary-blue);
}

.btn-outline-primary {
	border-color: var(--primary-blue);
	color: var(--primary-blue);
}

.btn-primary.btn:disabled {
	background: #3749a6;
}

.btn-outline-primary:hover {
	background-color: var(--primary-blue);
	border-color: var(--primary-blue);
	color: var(--white);
}

.entry_row_heading h4 {
	border-bottom: 1px solid rgb(151 151 151 / 50%);
	margin-bottom: 16px;
	padding-bottom: 8px;
	font-size: 18px;
	font-weight: 500;
	color: inherit;
}

.add-entry-btn.btn {
	padding-top: 0;
	padding-bottom: 0;
	min-height: 36px;
	align-items: center;
}

.add-entry-btn svg {
	width: 20px;
	height: auto;
	position: relative;
	fill: var(--primary-blue);
	top: -1px;
}

.dataTables_empty {
	display: none !important;
}

.add-entry-btn:hover svg {
	fill: var(--white);
}

.row {
	--bs-gutter-x: 32px;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.g-3 {
	--bs-gutter-x: 16px;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* page style start */
.page-heading-wrapper {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	flex-direction: column;
}

.page-heading-wrapper h1 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: -0.114286px;
	color: var(--primary);
	margin: 0;
}

.dataTables_filter,
.dataTables_info {
	display: none !important;
}

.heading-wrap p {
	font-weight: 500;
}

input[type="checkbox"]:checked {
	background-color: var(--primary-blue);
	border-color: var(--primary-blue);
}

input[type="checkbox"] {
	box-shadow: none !important;
	outline: none !important;
}

.btn-success {
	color: var(--white);
	background-color: #00b69b;
	border-color: #00b69b;
}

.btn-success:hover {
	background-color: #009e85;
	border-color: #009e85;
}

.btn-warning {
	color: var(--white);
	background-color: #ffa756;
	border-color: #ffa756;
}

.btn-warning:hover {
	color: var(--white);
	background-color: #ff820f;
	border-color: #ff820f;
}

.btn-warning:disabled {
	background-color: #ffc896;
	border-color: #ffc896;
	color: var(--white);
}

.btn-danger {
	color: var(--white);
	background-color: var(--red);
	border-color: var(--red);
}

.btn.badge.text-bg-danger:hover {
	color: var(--white) !important;
	background: var(--red) !important;
}

.btn.badge.text-bg-success:hover {
	color: var(--white) !important;
	background: #00b69b !important;
}

.btn.badge.text-bg-secondary:hover {
	color: var(--white) !important;
	background: #6226ef !important;
}

.btn.badge.text-bg-info:hover {
	color: var(--white) !important;
	color: #ffa756 !important;
}

.btn.badge.text-bg-warning:hover {
	color: var(--white) !important;
	background: #ba29ff !important;
}



.btn.badge.text-bg-primary:hover {
	color: var(--white) !important;
	color: var(--primary-blue) !important;
}

.modal-backdrop {
	background: #10161ab3;
	opacity: 1;
}

.btn-outline-danger {
	border-color: var(--red);
	color: var(--red);
}

.btn-outline-danger:hover {
	border-color: var(--red);
	background-color: var(--red);
	color: var(--white);
}

.form-control {
	background: var(--grey);
	border: 0.6px solid var(--grey-300);
	border-radius: 4px;
	box-shadow: none !important;
	outline: none;
	font-size: 14px;
	color: var(--primary);
	font-weight: 400;
	min-height: 36px;
}

.form-control:focus {
	background: var(--white);
	border-color: var(--primary-blue);
}

.form-control::placeholder {
	color: var(--grey-900);
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: var(--grey-900);
}

.btn-wrapper {
	display: flex;
	gap: 12px;
}

.btn-wrapper .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.btn-wrapper .btn-md {
	font-size: 14px;
	font-weight: 600;
	min-width: 100px;
	border-radius: 4px;
	min-height: 36px;
}

.btn-wrapper .btn-lg {
	font-size: 14px;
	font-weight: 600;
	min-width: 100px;
	border-radius: 4px;
	min-height: 40px;
}

.info-modal .modal-dialog {
	border-radius: 12px;
}

.info-modal .modal-body {
	padding: 24px;
	text-align: center;
}

.info-modal .body-text {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	margin: 0 0 24px 0;
}

.info-modal p {
	margin: 0;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 600;
	color: #787676;
}

.info-modal.with-header .body-text {
	font-size: 14px;
}

.info-modal .btn {
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
}

.btn-primary:hover {
	background-color: var(--primary-blue-hover);
	border-color: var(--primary-blue-hover);
}

/* common form start */
.info-box p {
	font-size: 14px;
	color: rgb(67 67 67 / 82%);
	line-height: 1.25;
	margin: 10px 0 0 0;
}

input[type="time"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator {
	background-color: #3749a62e;
	border-radius: 4px;
	padding: 4px;
	cursor: pointer;
	color: var(--white);
	margin-right: -5px;
	margin-top: -0.7px;
}

.common-form .btn-wrap {
	flex-wrap: wrap;
}

.common-form .input-wrapper input {
	font-size: 14px;
	font-weight: 500;
}

.common-form .input-wrapper input:not([type="checkbox"]),
.common-form .input-wrapper input:not([type="radio"]) {
	height: 40px;
}

.common-form .input-wrapper input[type="checkbox"] {
	height: 16px;
	width: 16px;
}

.form-check-input[type="radio"] {
	width: 16px;
	height: 16px !important;
	margin-right: 8px;
	cursor: pointer;
	box-shadow: none;
	border: 1px solid rgb(55 73 166);
}

.form-check-input[type="radio"]:hover {
	border-color: #0056b3;
}

.form-check-input[type="radio"]:checked {
	background-color: #3749a6;
}

.form-heading h2 {
	border-top: 1px solid rgb(151 151 151 / 50%);
	margin-bottom: 16px;
	padding-top: 30px;
	font-size: 18px;
	font-weight: 700;
	margin-top: 30px;
}

span.required {
	line-height: 0;
	font-weight: 500;
	color: var(--red);
}

.common-form .select2-container {
	display: block;
	width: 100% !important;
}

.common-form .btn-wrap {
	gap: 8px 16px;
	margin: 20px 0 0 0;
}

.common-form .btn-wrap .btn {
	font-size: 14px;
	min-width: 140px;
	border-radius: 4px;
	min-height: 40px;
	font-weight: 600;
}

.common-form .input-wrapper label {
	font-size: 14px;
	font-weight: 700;
}

.common-form .select2-container .select2-selection--single {
	background: var(--grey);
	border: 0.6px solid var(--grey-300);
	border-radius: 4px;
	height: 40px;
	font-size: 14px;
	font-weight: 500;
}

.common-form .select2-container .select2-selection--single .select2-selection__rendered {
	height: 40px;
	line-height: 40px;
}

.common-form .select2-container--default .select2-selection--single .select2-selection__arrow {
	right: 12px;
	top: 6px;
}

.common-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
	top: 10px;
}

.holiday-ouput {
	background: rgb(55 73 166 / 10%);
	padding: 20px;
	border-radius: 10px;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.holiday-ouput * {
	margin: 0;
}

.holiday-ouput h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.holiday-ouput .btn {
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	min-height: 40px;
	min-width: 140px;
}

.holiday-ouput p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	margin-bottom: 10px;
}

.entry-details {
	font-size: 14px;
	border-radius: 6px;
	background-color: rgb(55 73 166 / 5%);
	font-weight: 600;
}

p.sec-subs {
	border-bottom: 1px solid rgb(55 73 166 / 10%);
	padding: 0 0 6px 0;
	border-radius: 0;
	font-size: 14px;
	font-weight: 700;
	color: #3749a6;
}

.entry-row.full {
	grid-column: span 2;
}

.entry-row {
	display: flex;
	padding: 10px 12px;
	gap: 8px;
	border-top: 1px solid rgb(55 73 166 / 10%);
}

.entry-label {
	font-weight: 500;
	color: #202224a1;
	min-width: 110px;
}

.entry-value {
	text-align: left;
	width: 100%;
}

.entry-row:first-child {
	border-top: 0;
}

span.entry-value {
	color: var(--primary);
	font-weight: 700;
}

.delete-modal .modal-dialog {
	max-width: 350px;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}

.delete-modal img.confirm-popup-icon {
	max-width: 50px;
	margin-bottom: 15px;
}

.delete-modal .modal-title {
	font-size: 20px;
	margin-bottom: 5px;
}

.delete-modal .modal-body p {
	margin: 0;
	line-height: 1.25;
	color: var(--grey-600);
	font-weight: 500;
	font-size: 14px;
}

.delete-modal .modal-content {
	border-radius: 12px;
}

.delete-modal .modal-body {
	padding: 24px;
	text-align: center;
}

.legend-wrap {
	background: rgb(55 73 166 / 10%);
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
}

.legend-wrap h3 {
	font-size: 18px;
	font-weight: 700;
}

.legend-wrap ul {
	list-style: none;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.legend-wrap ul li span {
	font-weight: 700;
}

/* {
	.btn-wrapper {
    flex-wrap: wrap;
    gap: 8px;
}
} */
.form-check {
	display: flex;
	gap: 8px;
}

.form-check.form-check-inline {
	margin-bottom: 0;
	display: inline-flex;
	gap: 0;
}

.form-check.form-check-inline label {
	position: relative;
	top: 3px;
	line-height: 1.25;
	display: flex;
}

.select2-container,
.selection,
.select2-selection {
	outline: none !important;
}

.spinner {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: radial-gradient(farthest-side, #3749a6 94%, #0000) top/6.4px 6.4px no-repeat,
		conic-gradient(#0000 30%, #3749a6);
	-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 6.4px), #000 0);
	animation: spinner-c7wet2 1s infinite linear;
	margin: auto;
}



@keyframes spinner-c7wet2 {
	100% {
		transform: rotate(1turn);
	}
}

.loader-wrap {
	border: 0 !important;
	background: transparent;
}


.toast {
	z-index: 99999 !important;
	position: fixed !important;
	top: 20px !important;
	right: 20px !important;
}


.toast-wrapper {

	z-index: 99999 !important;

}



.toast-body .btn-close.text-white {
	filter: invert(1);
}

.toast-body p {
	padding: 0;
	margin: 0;
}

.toast-header {
	padding: 0;
}

.toast-wrapper {
	max-width: calc(100% - 0px);
	margin-left: auto;
}

.select2-selection__clear {
	margin-top: 5px !important;
	margin-right: 30px !important;
	font-size: 16px !important;
	background: #f5f6fa;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	padding: 10px 0;
}

.pagination .page-item {
	list-style: none;
}

/* Page Link */
.pagination .page-link {
	border: none;
	padding: 5px 12px;
	border-radius: 4px;
	background-color: #f5f7fa;
	color: #333;
	font-weight: 500;
	transition: all 0.25s ease-in-out;
	cursor: pointer;
	font-size: 14px;
	outline: none;
	box-shadow: none;
}


.pagination .page-link:hover {
	background-color: var(--primary-blue-hover);
	color: var(--white);
}

/* Active Page */
.pagination .page-item.active .page-link {
	background-color: var(--primary-blue);
	color: #fff;
	font-weight: 600;
}

.pagination .page-item.disabled .page-link {
	background-color: #e5e7eb;
	color: #9ca3af;
	cursor: not-allowed;
	pointer-events: none;
}

.pagination .previous .page-link,
.pagination .next .page-link {
	font-weight: 600;
	padding: 8px 16px;
}

.paginate_button.page-item.previous .page-link,
.paginate_button.page-item.next .page-link {
	min-height: 31px;
	border-radius: 4px;
	font-size: 0;
	min-width: 32.41px;
	background-color: var(--primary-blue);
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 492 492" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><path d="M198.608 246.104 382.664 62.04c5.068-5.056 7.856-11.816 7.856-19.024 0-7.212-2.788-13.968-7.856-19.032l-16.128-16.12C361.476 2.792 354.712 0 347.504 0s-13.964 2.792-19.028 7.864L109.328 227.008c-5.084 5.08-7.868 11.868-7.848 19.084-.02 7.248 2.76 14.028 7.848 19.112l218.944 218.932c5.064 5.072 11.82 7.864 19.032 7.864 7.208 0 13.964-2.792 19.032-7.864l16.124-16.12c10.492-10.492 10.492-27.572 0-38.06L198.608 246.104z" fill="%23ffffff" opacity="1" data-original="%23000000" class=""></path></g></svg>');
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: center;
}

.paginate_button.page-item.previous .page-link,
.paginate_button.page-item.next .page-link {
	background-color: var(--primary-blue-hover);
}

.paginate_button.page-item.next .page-link {
	transform: scaleX(-1);
}

.paginate_button.page-item.previous.disabled .page-link,
.paginate_button.page-item.next.disabled .page-link {
	background-color: #bfbfbf !important;
}

ul.pagination {
	flex-wrap: wrap;
}


@media screen and (min-width: 769px) {
	.entry-details.two-columns {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}

	.entry-details.two-columns .entry-row:nth-child(2) {
		border: 0;
	}
}

@media screen and (max-width: 767px) {
	.holiday-ouput {
		margin-top: 20px;
	}

	.holiday-ouput h3 {
		margin-top: 0px;
		font-size: 20px;
	}

	.mb-b-sm-0 {
		margin-bottom: 0 !important;
	}

	.heading-wrap p,
	.holiday-ouput p {
		font-size: 14px;
	}

	.holiday-ouput p {
		margin-bottom: 0;
	}

	.common-form .input-wrapper label {
		letter-spacing: -0.35px;
	}

	.form-heading h2 {
		margin-top: 20px;
		padding-top: 20px;
	}

	.page-heading-wrapper {
		gap: 20px;
	}

	.entry_row_heading h4 {
		font-size: 16px;
		font-weight: 700;
	}

	.common-form .btn-wrap {
		margin-top: 15px;
	}

	.page-heading-wrapper h1 {
		font-size: 20px;
	}

	.common-form .btn-wrap {
		gap: 8px;
	}
}

@media screen and (max-width: 768px) and (min-width: 576px) {
	.flex-md-1-only {
		flex: 1;
	}
}

@media screen and (max-width: 575px) {
	.w-sm-100 {
		width: 100%;
	}

	.common-form .btn-wrap .btn {
		min-width: unset;
		flex: 1;
	}

	.row.g-3.common-form {
		padding: 0;
	}
}

@media screen and (max-width: 374px) {
	.subfilter-wrapper .btn {
		font-size: 14px;
		letter-spacing: -0.5px;
	}

	.entry-row {
		flex-direction: column;
		gap: 0;
	}

	span.entry-value {
		text-align: left;
	}
}

@media screen and (max-width: 319px) {
	.flex-sm-1 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media screen and (max-width: 319px) {
	.common-form .btn-wrap .btn {
		flex: 0 0 100%;
	}
}