body{
	font-family: "Outfit", sans-serif;
	font-weight: normal;
	letter-spacing: 0.5px;
}
.loader-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
/* Loader overlay with semi-transparent background */
.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* White opaque background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* SVG Loader */
.loader {
    width: 64px;
    height: 32px;
    position: relative;
}
.loader div.loading_text{
    position: absolute;
    top: 2em;
    left: 0;
    width: fit-content;
}
.ip {
	width: 4em;
	height: 2em;
}
.ip__track {
	/* stroke: hsl(var(--hue),90%,90%); */
    stroke: #f4f4f4;
	transition: stroke var(--trans-dur);
}
.ip__worm1,
.ip__worm2 {
	animation: worm1 1s linear infinite;
}
.ip__worm2 {
	animation-name: worm2;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(var(--hue),90%,5%);
		--fg: hsl(var(--hue),90%,95%);
	}
	.ip__track {
		stroke: hsl(var(--hue),90%,15%);
	}
}

/* Animation */
@keyframes worm1 {
	from {
		stroke-dashoffset: 0;
	}
	50% {
		animation-timing-function: steps(1);
		stroke-dashoffset: -358;
	}
	50.01% {
		animation-timing-function: linear;
		stroke-dashoffset: 358;
	}
	to {
		stroke-dashoffset: 0;
	}
}
@keyframes worm2 {
	from {
		stroke-dashoffset: 358;
	}
	50% {
		stroke-dashoffset: 0;
	}
	to {
		stroke-dashoffset: -358;
	}
}

#dropzone {
	width: 100%;
	border: 2px dashed #007bff;
	padding: 20px;
	text-align: center;
}
.file-stats{
	margin-top: 20px;
    border: 1px solid #ccc;
    width: 220px;
    padding: 10px;
    border-radius: 5px;
}
.nav-link.active{
	color: black;
}
#image-viewer img{
	width: 100%;
}
.border.border-dashed{
	border-style: dashed !important;
}

.text-sm{
	font-size: 80%;
}
.table.table-sm{
	font-size: 13px;
}
.table tr th{
	font-weight: 500;
}
.table.table-sm tr td{
	padding-left: 10px;
}
.border-box{
	position: relative;
    border: 1px dashed rgba(76,187,203,0.3);
    border-radius: 10px;
    padding: 10px;
}
.border-box h4.border-box-heading{
	font-size: 12px;
    position: absolute;
    top: -13px;
    right: 10px;
    background: rgb(76,187,203);
    padding: 5px 6px;
    border: 1px solid rgba(76,187,203,0.3);
    border-radius: 5px;
	color: #fff;
}
.dropdown-menu span.text{
	font-size: 13px;
	letter-spacing: normal;
}
.h-26{
	height: 26px !important;
}
.h-42{
	height: 42px !important;
}
.h-295px{
	height: 295px !important;
}
.mt-24px{
	margin-top: 24px !important;
}
#kt_app_sidebar_logo{
	border-bottom: 1px solid #e7eeef;
}
.app-avatar-container{
	border-left: 1px solid #e7eeef;
	padding-left: 10px;
}
.app-header{
	background: #fff;
	border-bottom: 1px solid #e7eeef;
}
[data-kt-app-layout=light-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-title{
	font-size: 12px;
	font-weight: normal;
}
[data-kt-app-layout=light-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-title:hover{
	color: #4bbbcb !important;
}
[data-kt-app-layout=light-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-icon i{
	color: #a3abb4 !important;
}
[data-kt-app-layout=light-sidebar] .app-sidebar .menu .menu-item:hover .menu-icon i{
	color: #4bbbcb !important;
}
.dashboard-widget{
	height: 135.5px !important;
	overflow: hidden;
	border-radius: 16px;
}
.dashboard-widget .title{
	font-size: 12px;
	font-weight: 400;
	color: rgba(85, 99, 115, 1);
}
.dashboard-widget h1{
	margin-top: 5px;
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 0px;
}
.dashboard-widget a{
	font-size: 11px;
}
.dashboard-widget.style-1{
	border: 1px solid rgba(76, 187, 203, 0.3);
}
.dashboard-widget.style-2{
	background: rgba(239, 245, 246, 0.5);
	border: 1px solid rgba(233, 243, 245, 1);
}
.text-yellow{
	color: rgba(232, 184, 61, 1) !important;
}
a{
	color: rgba(6, 119, 135, 1) !important;
	font-weight: 400;
}
.badge-warning{
	background: rgba(232, 184, 61, 0.2) !important;
	border: 1px solid rgba(232, 184, 61, 0.7) !important;
	color: rgba(43, 55, 70, 1) !important;
	font-weight: normal;
	font-size: 10px;
}
.badge-primary{
	background: rgba(76, 187, 203, 0.2) !important;
	border: 1px solid rgba(76, 187, 203, 0.7) !important;
	color: rgba(43, 55, 70, 1) !important;
	font-weight: normal;
	font-size: 10px;
}
.badge-danger{
	background: rgb(203 76 76 / 20%) !important;
    border: 1px solid rgb(203 76 76 / 70%) !important;
    color: rgba(43, 55, 70, 1) !important;
    font-weight: normal;
    font-size: 10px;
}
.badge-success{
	background: rgba(76, 203, 96, 0.2) !important;
	border: 1px solid rgba(76, 203, 96, 1) !important;
	color: rgba(43, 55, 70, 1) !important;
	font-weight: normal;
	font-size: 10px;
}
.table.table-startuhub {
    border-collapse: separate !important;
    border-spacing: 0;
	--bs-table-hover-bg: #56bfcf3d !important
}
.table.table-startuhub thead tr th{
	background: rgba(243, 246, 247, 0.5) !important;
	padding: 5px;
	padding-left: 10px !important;
	border: 1px solid rgba(208, 222, 225, 1) !important;
	border-right: 0px !important;
	text-transform: uppercase;
	color: rgba(85, 99, 115, 0.7);
	font-size: 10px;
}
.table.table-startuhub thead tr:first-child th:first-child {
    border-top-left-radius: 4px !important;
}
.table.table-startuhub thead tr:first-child th:last-child {
    border-top-right-radius: 4px !important;
	border-right: 1px solid rgba(208, 222, 225, 1) !important;
}
.table.table-startuhub tbody tr td{
	border-bottom: 1px solid rgba(85, 99, 115, 0.05) !important;
	font-size: 11px;
	padding-left: 10px !important;
	padding-top: 15px;
	padding-bottom: 9px;
}
.table.table-startuhub tbody tr:hover td {
    border: none;
	border-top: 1px solid #4cbbcb;
	border-bottom: 1px solid #4cbbcb !important;
}

.table.table-startuhub tbody tr:hover td:first-child {
    border-left: 1px solid var(--Blue-100, #4cbbcb);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table.table-startuhub tbody tr:hover td:last-child {
    border-right: 1px solid var(--Blue-100, #4cbbcb);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}


/*
border: #e7eeef
primary: #4bbbcb
font color: #2b3746
menu icon color: #a3abb4
*/
@media (min-width: 992px) {
    [data-kt-app-sidebar-minimize=on] {
		--bs-app-sidebar-width: 67px;
		--bs-app-header-height: 42px;
		--bs-app-header-height-actual: 42px;
	}
}

:root, [data-bs-theme=light]{
	--bs-body-font-size: 12px !important;
	--bs-breadcrumb-font-size: 12px !important;
	--bs-primary: #4bbbcb !important;
	--bs-primary-active: #4bbbcb !important;
	--bs-app-header-height: 42px;
	--bs-app-header-height-actual: 42px;
	--bs-app-sidebar-light-menu-link-color: #2b3746 !important;
	--bs-text-primary: #4bbbcb !important;
	--bs-primary-inverse: #ffffff !important;
	--bs-component-hover-color: #4bbbcb !important;
	--bs-app-header-minimize-border-bottom: 1px solid #e7eeef;
}
.btn{
	--bs-btn-line-height: 1rem !important;
	--bs-btn-font-weight: 400 !important;
	--bs-btn-border-radius: 3px !important;
}
.btn.btn-secondary{
	background-color: #fff;
	border: 1px solid rgb(208, 222, 225) !important;
	color: #2b3746;
}
.btn-check:active+.btn.btn-secondary, .btn-check:checked+.btn.btn-secondary, .btn.btn-secondary.active, .btn.btn-secondary.show, .btn.btn-secondary:active:not(.btn-active), .btn.btn-secondary:focus:not(.btn-active), .btn.btn-secondary:hover:not(.btn-active), .show>.btn.btn-secondary{
	background-color: #fff !important;
	color: #2b3746;
}
.btn-sm.btn-xs{
	font-size: 10px !important;
    padding: 5px 10px !important;
}

body{
	letter-spacing: normal !important;
	background-color: #fff !important;
}

.dashboard-chart-card{
	background: rgba(239, 245, 246, 0.5);
	border: 1px solid rgba(233, 243, 245, 1);
	border-radius: 16px;
}
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}
.form-select-dashboard{
	appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
	border: 0;
    background: none;
    font-size: 10px;
    padding: 4px 20px 4px 4px; /* Add right padding for arrow */
    color: rgba(85, 99, 115, 0.6);
	position: relative;
	background-color: transparent;
}
.custom-select-wrapper::after {
    content: "\f078"; /* Unicode for Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    pointer-events: none; /* So it doesn't block clicks */
    font-size: 10px;
    color: rgba(85, 99, 115, 0.6);
}

.form-check-input:checked{
	background-color: #4bbbcb !important;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm{
	background-color: #4bbbcb !important;
}
.border-primary-2{
	border-color: rgba(76, 187, 203, 0.3) !important
}
.text-grey{
	color: rgba(85, 99, 115, 1) !important;
}
.bg-progress{
	background-color: rgba(217, 229, 231, 0.6) !important;
}
[data-kt-sticky-name="batch-summary"]{
	background: #fff !important;
	border-radius: 8px;
	border: 1px solid rgba(76, 187, 203, 0.3);
}
.fw-500{
	font-weight: 500 !important;
}
.fw-400{
	font-weight: 400 !important;
}
.dz-starthub{
	border: 1px dashed rgba(76, 187, 203, 0.4) !important;
	height: 100%;
	background: rgba(85, 99, 115, 0.02) !important;
}
.dz-starthub .upload-icon{
	color: rgba(6, 119, 135, 1) !important;
}
.dz-starthub .dz-preview {
  display: none !important;
}
.dz-starthub.dz-started .dz-message{
	display: block !important;
	margin-top: 3.25rem !important
}
.batch-section-heading{
	font-weight: 500;
	font-size: 16px;
	border-bottom: 1px solid rgba(76, 187, 203, 0.3);
	padding-bottom: 16px;
}
.batch-section-heading h3{
	font-weight: 500;
	font-size: 16px;
}
.fs-18px{
	font-size: 20px !important;
}
.fs-20px{
	font-size: 20px !important;
}
.pb-8px{
	padding-bottom: 8px !important;
}

.sh-accordion .accordion-item{
	border: none;
}
.sh-accordion .accordion-item:first-of-type{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.sh-accordion .accordion-item:first-of-type .accordion-button{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.sh-accordion .accordion-button:not(.collapsed){
	background-color: rgba(85,99,115, 0.05);
	padding: 0;
	padding: 11px 16px;
	padding-right: 8px;
	color: rgba(43,55,70,1);
	font-size: 16px;
	font-weight: 500;
}
.sh-accordion .accordion-button.collapsed{
	padding: 0;
	padding: 11px 16px;
	padding-right: 8px;
	color: rgba(43,55,70,1);
	font-size: 16px;
	font-weight: 500;
}
.sh-accordion .badge.badge-square{
	border-radius: 3px;
	padding: 2px 4px;
	font-size: 8px;
	color: #fff;
	height: 16px;
	font-weight: 500;
}
.sh-accordion .badge.badge-primary{
	background-color: rgb(76,187,203) !important;
	border: none !important;
	color: #fff !important;
}
.accordion{
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%343B4C'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.sh-accordion .accordion-body{
	padding: 10px 16px !important;
}
.sh-accordion .nav-link{
	padding: 6px 0px;
	font-size: 14px;
	color: rgba(85,99,115,0.7) !important;
}
.sh-accordion .nav-link i.ki-outline{
	font-size: 18px;
}
.sh-accordion .nav-link i.ki-outline.text-success{
	color: #4CCB60 !important;
}

.sh-accordion .nav-link.active{
	font-weight: 500;
	color: #556373 !important;
}

#btn-process-batch{
	padding: 18px 20px;
	font-size: 16px;
}
.ocr-image-container{
	background: #f6f7f8;
	border-radius: 4px;
	padding: 30px;
}
.ocr-image-container img{
	border: 1px dashed #d4d4d4;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#btn-approve{
	background-color: rgba(76,187,203,0.2);
	border: 1px solid rgba(76,187,203,0.3);
	border-radius: 4px;
	padding: 15px 12px;
	font-size: 16px;
	color: #2B3746 !important;
	text-align: center;
}
#btn-approve.disabled{
	padding: 15px 12px !important;
	color: rgba(6, 119, 135, 1) !important;
}
.ocr-findings{
	border: 1px solid rgba(76,187,203,0.2);
	padding: 20px;
	color: #2B3746;
	border-radius: 4px;
}
.overall-conf-score{
	border: 1px dashed rgba(76,187,203,0.3);
	border-radius: 4px;
	padding: 5px 0;
	color: rgba(85,99,115,0.6) !important;
	font-size: 12px;
}
.overall-conf-score span{
	font-size: 16px;
}
.form-control{
	font-size: 12px;
    font-weight: 400;
    color: #2B3746;
    padding: 8px 10px;
}
.select2-container--bootstrap5 .select2-selection__clear{
	right: 1rem;
}
.review_fields .btn.btn-light{
	font-size: 12px !important;
    font-weight: 400 !important;
    color: #2B3746 !important;
    padding: 11px 10px !important;
	border: 1px solid var(--bs-gray-300) !important;
	border-radius: .475rem !important;
	background: none !important;
}
.review_fields .btn.btn-light:hover{
	background: none !important;
}
.printing-order-container{
	background-color: #F6F7F8;
	padding: 40px;
}
.printing-order-container img{
	width: 100%;
	border: 1px dashed #ccc;
	border-radius: 5px;
	height: 245px;
}
.printing-order-container .mail-number{
	color: rgba(85,99,115,0.8);
	letter-spacing: 5px;
}
.form-sm{
	font-size: 11px;
    padding: 5px 10px;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}
.sh-tfooter{
	height: 56px;
	background: rgba(85, 99, 115, 0.02);
	border: 1px solid rgba(85, 99, 115, 0.05);
	padding: 10px;
}
.select-per-page{
	width: 80px;
	font-size: 12px;
	padding: 5px 10px;
	cursor: pointer;
}

.sh-pagination .page-link{
	font-size: 10px;
	background: rgb(245, 245, 246);
	padding: 2px;
	border-radius: 3px;
	height: 20px;
	color: #556373 !important;
	border: none !important;
	font-weight: 500;
}
.sh-pagination .page-link:hover, .sh-pagination .page-item.next .page-link:hover{
	color: #556373 !important;
	background: rgba(0,0,0,0.06);
}
.sh-pagination .active .page-link, .sh-pagination .active .page-link:hover{
	color: #4cbbcb;
	background: rgba(76, 187, 203, 0.15);
}
.tooltip-inner {
  background-color: #2b3746;
  color: rgb(251,252,252);
  padding: 4px 8px;
  font-size: 10px;
  border-radius: 4px;
  text-align: center;
}
.tooltip{
	--bs-tooltip-bg: #2b3746 !important;
}
.custom-group input[type="text"], .custom-group select{
	background: #eff5f6 !important;
	border: none !important;
	outline: none;
	padding: 8px 16px;
	border-radius: 20px;
	height: 32px;
}
.custom-group .input-group-text{
	height: 32px;
	padding: 8px 0px;
	background: #eff5f6;
	border-radius: 20px;
	border: none;
	padding-left: 10px;
}
.custom-group select{
	cursor: pointer;
}
.bg-gray-100{
	background-color: var(--bs-gray-100) !important;
}
.cursor-pointer{
	cursor: pointer !important;
}