/***Admin Dashborad CSS Start***/
/* Dashboard Sidebar */
.admin_dashboard {
    overflow: hidden;
    background-color: #eee;
    width: 100%;
    height: 100vh;
}

.admin_dashboard .sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 280px;
	height: 100%;
    background-color: var(--White);
	z-index: 2000;
	transition: .3s ease;
	overflow-x: hidden;
	scrollbar-width: none;
}

.admin_dashboard .sidebar::--webkit-scrollbar {
	display: none;
}

.admin_dashboard .sidebar.hide {
	width: 65px;
}

.admin_dashboard .sidebar .brand {
	position: sticky;
	top: 0;
	left: 0;
	height: 60px;
	z-index: 500;
	background: var(--White);
	padding: 12px 0 12px 14px;
	display: flex;
	align-items: center;
}

.admin_dashboard .sidebar .brand img {
	width: auto;
	height: 35px;
}

.admin_dashboard .sidebar .side-menu {
	width: 100%;
	margin: 32px 0 0;
	padding: 0;
}

.admin_dashboard .sidebar .side-menu li {
	height: 48px;
	background: transparent;
	margin-left: 10px;
	border-radius: 48px 0 0 48px;
	padding: 4px;
}

.admin_dashboard .sidebar .side-menu li.active {
	background: #eee;
	position: relative;
}

.admin_dashboard .sidebar .side-menu li.active::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	top: -40px;
	right: 0;
	box-shadow: 20px 20px 0 #eee;
	z-index: -1;
}

.admin_dashboard .sidebar .side-menu li.active::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	bottom: -40px;
	right: 0;
	box-shadow: 20px -20px 0 #eee;
	z-index: -1;
}

.admin_dashboard .sidebar .side-menu li a {
    font: normal normal 400 16px / 24px var(--font-family);
    color: var(--Black);
    padding: 8px 16px;
    width: 100%;
    height: 100%;
    background-color: var(--White);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 48px;
    text-decoration: none;
}

.admin_dashboard .sidebar .side-menu.top li.active a {
    color: var(--White);
    background-color: var(--Primary);
}

.admin_dashboard .sidebar .side-menu li a img {
    width: 20px;
    height: auto;
}

.admin_dashboard .sidebar .side-menu li.active a img {
    filter: brightness(0) invert(1);
}

.admin_dashboard .sidebar .side-menu.bottom {
    position: absolute;
    bottom: 0;
    margin: 0;
    border-top: 1px solid #d0d5dd;
}

.smart-calendar .calendar-popup {
	position: absolute;
	top: 62px;
	background-color: #fff;
	border-radius: 6px;
	border: 1px solid #d0d5dd;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	padding: 12px;
	display: none;
	width: 100%;
	z-index: 1000;
}

.smart-calendar .calendar-header {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}

.smart-calendar .calendar-header .form-select {
	font: normal normal 400 14px / 20px var(--font-family);
	border-radius: 6px;
	border: 1px solid #d0d5dd;
	background-color: transparent;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	color: var(--Black);
	padding: 8px 12px;
}

.smart-calendar .week-days,
.smart-calendar .dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
}

.smart-calendar .week-days span,
.smart-calendar .dates span {
	font: normal normal 500 14px / 20px var(--font-family);
	color: var(--Black);
	text-align: center;
}

.smart-calendar .dates span {
	font-weight: 400;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.smart-calendar .dates span.selected {
	background-color: var(--Secondary);
}

.admin_dashboard .dashboard_content {
	position: relative;
	width: calc(100% - 280px);
	left: 280px;
	transition: .3s ease;
}

.admin_dashboard .sidebar.hide~.dashboard_content {
	width: calc(100% - 60px);
	left: 60px;
}

.admin_dashboard .dashboard_content .navbar {
	height: 60px;
	background: var(--White);
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
}

.admin_dashboard .dashboard_content .admin_profile {
	font: normal normal 400 16px / 24px var(--font-family);
	color: var(--Black);
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.admin_dashboard .dashboard_content .admin_profile .first_letter {
	font: normal normal 500 18px / 19px var(--font-family);
	color: var(--Black);
	width: 35px;
	height: 35px;
	border-radius: 100px;
	background-color: var(--Secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

.admin_dashboard .dashboard_content main {
    width: 100%;
    padding: 24px;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.admin_dashboard .dashboard_content .content_section {
	display: none;
}

.admin_dashboard .dashboard_content .content_section .top_heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	background-color: var(--White);
	border-radius: 12px;
    padding: 16px 20px;
}

.admin_dashboard .dashboard_content .content_section .top_heading h3 {
    font: normal normal 700 24px var(--font-family);
	color: var(--Black);
}

.admin_dashboard .dashboard_content .dashboard_filter {
	display: flex;
	align-items: center;
	gap: 12px;
}

.admin_dashboard .dashboard_content .dashboard_filter .input_inr {
	width: 100%;
	position: relative;
}

.admin_dashboard .dashboard_content .dashboard_filter .form-control,
.admin_dashboard .dashboard_content .dashboard_filter .form-select,
.admin_dashboard .dashboard_content .dashboard_filter .custom-select-box {
    font: normal normal 400 14px / 20px var(--font-family);
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    background-color: var(--White);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--Black);
    padding: 8px 12px;
    min-width: 160px;
}

.admin_dashboard .dashboard_content .dashboard_filter .input_inr .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 20px;
    height: 20px;
    margin: auto;
    display: flex;
}

.admin_dashboard .dashboard_content .dashboard_filter .input_inr .icon img {
	width: 100%;
	height: auto;
}

.admin_dashboard .dashboard_content .dashboard_filter .calendar-popup {
	top: 42px;
	min-width: 360px;
}

.admin_dashboard .dashboard_content .dashboard_filter .input_inr:has(.date-input) .form-control[readonly] {
    background-color: #fff;
    cursor: pointer;
}

.admin_dashboard .dashboard_content .dashboard_filter .btn {
	font: normal normal 400 14px / 20px var(--font-family);
	color: var(--White);
	padding: 8px 16px;
	background-color: var(--Primary);
	border-radius: 6px;
	min-width: 100px;
}

.admin_dashboard .dashboard_content .dashboard_filter .btn_resetFilter {
	background-color: #f44336;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr {
	display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr p {
	font: normal normal 400 14px / 20px var(--font-family);
	color: var(--Black);
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .input_search {
	width: 350px;
	position: relative;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .form-control {
	font: normal normal 400 14px / 20px var(--font-family);
	border-radius: 24px;
	border: 1px solid #d0d5dd;
	background-color: var(--White);
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	color: var(--Black);
    padding: 8px 20px;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .enquiry_result {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background-color: var(--White);
	border: 1px solid #d0d5dd;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	z-index: 9999;
	overflow-y: auto;
	border-radius: 6px;
	display: none;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .enquiry_result ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .enquiry_result li {
	padding: 8px 12px;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .enquiry_result li:last-child {
	border-bottom: none;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .enquiry_result li:hover {
	background-color: #f3f3f3;
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .enquiry_result li p {
	font: normal normal 500 14px / 20px var(--font-family);
	color: var(--Black);
}

.admin_dashboard .dashboard_content .import_enquiryWrpr .enquiry_result li span {
	font: normal normal 400 12px / 16px var(--font-family);
	color: var(--Black);
	display: block;
}

.admin_dashboard .dashboard_content .custom-select-box::before {
    right: 8px;
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/engineersahabedu/assets/img/chevron-down.svg);
}

.admin_dashboard .dashboard_content .custom-select-options {
	top: calc(100% + 2px);
	border-radius: 6px;
	background-color: var(--White);
	border: 1px solid #d0d5dd;
}

.admin_dashboard .dashboard_content .custom-select-options .custom-option {
	font: normal normal 400 14px / 20px var(--font-family);
	padding: 8px 12px;
	color: var(--Black);
	border-bottom: 1px solid #d0d5dd;
}

.admin_dashboard .dashboard_content .custom-select-options .custom-option:hover {
	background-color: #efefef;
}

.admin_dashboard .dashboard_content .custom-select-options .custom-option:last-child {
	border-bottom: none;
}

.admin_dashboard .dashboard_content .admission_info .row {
	row-gap: 16px;
	--bs-gutter-x: 16px;
}

.admin_dashboard .dashboard_content .admission_info .card_box {
	padding: 24px;
	background-color: var(--White);
	border-radius: 12px;
	height: 100%;
}

.admin_dashboard .dashboard_content .admission_info .card_box:has(.info) {
	display: flex;
	align-items: center;
	gap: 16px;
}

.admin_dashboard .dashboard_content .admission_info .card_box .icon {
	width: 56px;
	height: 56px;
    background-color: var(--Secondary);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.admin_dashboard .dashboard_content .admission_info .card_box .icon img {
	width: 24px;
	height: auto;
}

.admin_dashboard .dashboard_content .admission_info .card_box .info h4 {
	font: normal normal 700 24px var(--font-family);
	color: var(--Black);
	letter-spacing: 1px;
}

.admin_dashboard .dashboard_content .admission_info .card_box .info p {
	font: normal normal 400 16px var(--font-family);
	color: var(--Black);
	margin-bottom: 6px;
}

.admin_dashboard .dashboard_content .admission_info .card_title {
	margin-bottom: 12px;
}

.admin_dashboard .dashboard_content .admission_info .card_title h4 {
    font: normal normal 600 20px var(--font-family);
    color: var(--Black);
}

.admin_dashboard .dashboard_content .admission_info .card_box .table {
	margin: 0;
}

.admin_dashboard .dashboard_content .admission_info .card_box th,
.admin_dashboard .dashboard_content .admission_info .card_box td {
	font: normal normal 400 14px / 17px var(--font-family);
	color: #344054;
	padding: 8px 16px;
	vertical-align: middle;
	text-transform: capitalize;
}

.admin_dashboard .dashboard_content .admission_info .card_box th {
	color: var(--Black);
	font-weight: 600;
}

.admin_dashboard .content_section .card_boxInr {
	padding: 24px;
    background-color: var(--White);
    border-radius: 12px;
}

.admin_dashboard .content_section .table_cardBox {
	max-height: calc(100vh - 242px);
}

.admin_dashboard .content_section .table_cardBox table {
	margin: 0;
}

.admin_dashboard .content_section .table_cardBox th,
.admin_dashboard .content_section .table_cardBox td {
	font: normal normal 400 14px / 20px var(--font-family);
	color: #344054;
	padding: 8px 16px;
	vertical-align: middle;
	text-transform: capitalize;
}

.admin_dashboard .content_section .table_cardBox th {
	color: var(--Black);
	font-weight: 600;
	padding: 12px 16px;
}

.admin_dashboard .content_section .table_cardBox .email_field {
	text-transform: unset;
}

.admin_dashboard .content_section .table_cardBox td.photo_student {
	padding: 0;
	width: 55px;
}

.admin_dashboard .content_section .table_cardBox td.photo_student img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	object-position: center;
}

.admin_dashboard .content_section .table_cardBox td:has(.btn_joinLink) {
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin_dashboard .content_section .table_cardBox td .btn {
	font: normal normal 400 12px / 15px var(--font-family);
	color: var(--White);
    padding: 6px 12px;
    background-color: #1677ff;
    border-radius: 4px;
	border: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: 0.4s all ease-out;
}

.admin_dashboard .content_section .table_cardBox td .btn img {
	width: 15px;
	height: auto;
}

.admin_dashboard .content_section .table_cardBox td .btn_joinLink {
	background-color: #1a73e8;
}

.admin_dashboard .content_section .table_cardBox td .btn_copyLink {
	background-color: var(--Primary);
}

.admin_dashboard .content_section .table_cardBox td .next_dueDate {
	display: flex;
	align-items: center;
	gap: 6px
}

.admin_dashboard .content_section .table_cardBox td .badge {
	padding: 4px 8px;
	border-radius: 24px;
	font-size: 12px;
	font-weight: 400;
	display: inline-block;
}

.admin_dashboard .content_section .table_cardBox td .badge-overdue {
	background:#ff4d4f;
	color:#fff;
}

.admin_dashboard .content_section .table_cardBox td .badge-today {
	background:#1677ff;
	color:#fff;
}

.admin_dashboard .content_section .table_cardBox td .badge-upcoming {
	background:#faad14;
	color:#fff;
}

.admin_dashboard .content_section .table_cardBox td .badge-paid {
	background:#52c41a;
	color:#fff;
}

.admin_dashboard .content_section .row {
	row-gap: 16px;
}

.admin_dashboard .content_section .top_header {
	border-bottom: 1px solid #d0d5dd;
    padding-bottom: 20px;
    margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.admin_dashboard .content_section .top_header .btn_prevList {
    font: normal normal 600 18px / 24px var(--font-family);
    color: var(--Black);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.admin_dashboard .content_section .top_header .btn_prevList img {
	width: 24px;
	height: auto;
}

.admin_dashboard .content_section .top_header .btn_saveChanges {
	font: normal normal 500 14px / 20px var(--font-family);
	color: var(--Black);
	background: var(--Secondary);
	padding: 8px 16px;
	box-shadow: 0px 1px 2px rgba(27, 31, 35, 0.05);
	border-radius: 8px;
}

.admin_dashboard .content_section .card_boxInr .input_inr {
	position: relative;
	display: flex;
	flex-direction: column;
}

.admin_dashboard .content_section .card_boxInr .input_inr label {
	font: normal normal 400 12px/16px var(--font-family);
	color: #344054;
	margin-bottom: 4px;
}

.admin_dashboard .content_section .card_boxInr .input_inr .form-control,
.admin_dashboard .content_section .card_boxInr .input_inr .form-select {
	font: normal normal 400 14px / 20px var(--font-family);
	border-radius: 6px;
	border: 1px solid #d0d5dd;
	background-color: transparent;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	color: var(--Black);
	padding: 8px 12px;
}

.admin_dashboard .content_section .card_boxInr .input_inr .form-control::placeholder {
	color: #667085;
	opacity: 1;
}

.admin_dashboard .content_section .card_boxInr .info_inr .student_img {
	width: 100%;
	height: 215px;
	border-radius: 8px;
	border: 1px dashed #344054;
	overflow: hidden;
}

.admin_dashboard .content_section .card_boxInr .info_inr .student_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.admin_dashboard .content_section .card_boxInr .input_inr .has-icon {
	position: relative;
}

.admin_dashboard .content_section .card_boxInr .input_inr .icon {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 20px;
	height: 20px;
	margin: auto;
	display: flex;
}

.admin_dashboard .content_section .card_boxInr .input_inr .icon img {
	width: 100%;
	height: auto;
}

.admin_dashboard .content_section .card_boxInr .input_inr:has(.date-input) .form-control[readonly] {
	background-color: #fff;
	cursor: pointer;
}

.admin_dashboard .content_section .card_boxInr .input_inr .form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
	cursor: no-drop;
	pointer-events: unset;
}

.admin_dashboard .content_section .card_boxInr .custom-select-box {
	font: normal normal 400 14px / 20px var(--font-family);
	border-radius: 6px;
	padding: 8px 12px;
	border: 1px solid #d0d5dd;
	color: var(--Black);
	position: relative;
	z-index: 0;
}

.admin_dashboard .content_section .card_boxInr .custom-select-box::before {
	right: 8px;
	width: 20px;
	height: 20px;
	background-image: url(/wp-content/themes/engineersahabedu/assets/img/chevron-down.svg);
}

.admin_dashboard .content_section .card_boxInr .custom-select-options {
	top: calc(100% + 2px);
	border-radius: 6px;
	background-color: var(--White);
	border: 1px solid #d0d5dd;
}

.admin_dashboard .content_section .card_boxInr .custom-select-options .custom-option {
	font: normal normal 400 14px / 20px var(--font-family);
	padding: 8px 12px;
	color: var(--Black);
	border-bottom: 1px solid #d0d5dd;
}

.admin_dashboard .content_section .card_boxInr .custom-select-options .custom-option:hover {
	background-color: #efefef;
}

.admin_dashboard .content_section .card_boxInr .custom-select-options .custom-option:last-child {
	border-bottom: none;
}

.admin_dashboard .content_section .card_boxInr .btn_submit {
	font: normal normal 600 16px var(--font-family);
	border-radius: 6px;
	background-color: #fde74c;
	color: #101828;
	padding: 16px 32px;
	width: 100%;
	height: auto;
}

.admin_dashboard .content_section .card_boxInr .btn_submit img {
	width: 16px;
	height: auto;
	margin-left: 16px;
}

.admin_dashboard .content_section .card_boxInr .input_inr .calender_icon {
	position: absolute;
	right: 14px;
	top: 39px;
	width: 20px;
	height: 20px;
}

.admin_dashboard .content_section .card_boxInr .input_inr .calender_icon img {
	width: 100%;
	height: auto;
}

.admin_dashboard .content_section .card_boxInr .form_group {
	display: flex;
	align-items: center;
	gap: 24px;
}

.admin_dashboard .content_section .card_boxInr .form_group .form-check {
	min-height: auto;
	padding-left: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.admin_dashboard .content_section .card_boxInr .form-check label {
	font: normal normal 400 14px / 20px var(--font-family);
	margin-bottom: 0;
}

.admin_dashboard .content_section .card_boxInr .form-check .form-check-input {
	width: 20px;
	height: 20px;
	margin-top: 0;
	margin-left: 0;
}

.form-check-input:focus {
	box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0; 
}

.admin_dashboard .content_section .card_boxInr .error {
	font: normal normal 400 12px / 16px var(--font-family);
	color: red;
	margin-top: 4px;
}

.admin_dashboard .content_section .card_boxInr .installment-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.admin_dashboard .content_section .card_boxInr .info_inr .row,
.admin_dashboard .content_section .card_boxInr .info_inr .col-lg-10 .row {
	row-gap: 12px;
	--bs-gutter-x: 12px;
}

.admin_dashboard .content_section .card_boxInr .info_inr .input_inr .group_input {
	display: flex;
	align-items: center;
	gap: 16px;
}

.admin_dashboard .content_section .card_boxInr .info_inr .custom-select-wrapper.is-disabled {
	cursor: no-drop;
	pointer-events: unset;
	opacity: 0.8;
}

.admin_dashboard .content_section .card_boxInr .custom-select-wrapper.is-disabled .custom-select-box {
	cursor: not-allowed;
	background-color: #dee2e6;
	pointer-events: none;
}

.admin_dashboard .content_section .card_boxInr .info_inr #detail_fee_type {
	text-transform: capitalize;
}

.admin_dashboard .content_section .card_boxInr .info_inr .installment_status_text {
	font: normal normal 500 12px / 18px var(--font-family);
	color: var(--White);
	padding: 10px 16px;
	border-radius: 6px;
	min-width: 80px;
	text-align: center;
}

.admin_dashboard .content_section .card_boxInr .info_inr .installment_status_text.paid {
	background-color: #198754;
}

.admin_dashboard .content_section .card_boxInr .info_inr .installment_status_text.pending {
	background-color: #ffc107;
}

.admin_dashboard .content_section .card_boxInr .info_inr .installment_status_text.overdue {
	background-color: #dc3545;
}

.admin_dashboard .content_section .card_boxInr .info_inr .btn_installmentSave {
	font: normal normal 500 12px / 16px var(--font-family);
	color: var(--Black);
	padding: 10px 16px;
	background-color: var(--Secondary);
	border-radius: 6px;
	min-width: 85px;
}

.admin_dashboard .content_section .card_boxInr .info_inr .btn:disabled {
	background-color: #e9ecef;
	color: #777777;
	opacity: 1;
	cursor: no-drop;
	pointer-events: unset;
}

.admin_dashboard .content_section .card_boxInr .info_inr .btn_downloadReceipt {
	font: normal normal 500 12px / 16px var(--font-family);
	color: var(--White);
	padding: 10px 16px;
	background-color: var(--Black);
	border-radius: 6px;
	white-space: nowrap;
}

.admin_dashboard .content_section .card_boxInr .response_msgCard {
	position: fixed;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: auto;
	font: normal normal 400 16px / 24px var(--font-family);
	color: var(--White);
	padding: 12px 24px;
	border-radius: 32px;
	max-width: fit-content;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100px);
	transition: all 0.4s ease-in-out;
}

.admin_dashboard .content_section .card_boxInr .response_msgCard.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.admin_dashboard .content_section .card_boxInr .response_msgCard.error {
	background-color: #e74c3c;
}

.admin_dashboard .content_section .card_boxInr .response_msgCard.success {
	background-color: #1fada1;
}

.receipt_wrapper {
	width: 595px;
	margin: 30px auto;
	background: var(--White);
	border-top: 5px solid var(--Primary);
	padding: 32px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.receipt_wrapper .reciept_header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 46px;
}

.receipt_wrapper .logo_blc img {
	height: 28px;
}

.receipt_wrapper .contact_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.receipt_wrapper .contact_info p {
	font: normal normal 400 10px / 13px var(--font-family);
	color: var(--Black);
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

.receipt_wrapper .contact_info p b {
	font-weight: 500;
}

.receipt_wrapper .contact_info p img {
	width: 15px;
	height: auto;
}

.receipt_wrapper .contact_info .info_inr {
	display: flex;
	align-items: center;
	gap: 12px;
}

.receipt_wrapper .reciept_title {
	margin: 32px 0 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.receipt_wrapper .reciept_title h3 {
	font: normal normal 700 32px/100% var(--font-family);
	color: #000;
	white-space: nowrap;
}

.receipt_wrapper .reciept_title img {
	width: 100%;
	height: auto;
}

.receipt_wrapper .row {
	row-gap: 36px !important;;
	--bs-gutter-x: 16px;
}

.receipt_wrapper .field {
	display: flex;
	align-items: flex-end;
	gap: 2px;
}

.receipt_wrapper .field .label {
	font: normal normal 400 14px / 100% var(--font-family);
	color: #000;
	white-space: nowrap;
}

.receipt_wrapper .field .line {
	border-bottom: 1px dotted #000;
	display: inline-block;
	width: 100%;
	font: normal normal 400 14px / 100% var(--font-family);
	color: #000;
	padding-left: 4px;
}

.receipt_wrapper .note span {
	font: normal normal 400 10px / 13px var(--font-family);
	color: #000;
	display: block;
}

.receipt_wrapper .field .line img {
	width: 40px;
	height: auto;
	display: block;
	margin: auto;
}