@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
		url('../') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
		url('../fonts/poppins/Poppins-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
		url('../fonts/poppins/Poppins-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
		url('../fonts/poppins/Poppins-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

:root {
	--headerbg: #38943F;
	--nav-headbg: #38943F;
	--primary: #38943F;
}


/*============ HEADER CSS STARTS HERE ==========*/
.web-header {
	width: 100%;
	height: auto;
	/* padding: 23px 0; */
	background-color: var(--white);
}

.web-header .web-logo {
	width: 99px;
	height: 43px;
}

.web-header .web-logo img {
	width: 100%;
	height: 100%;
}

.web-header .navbar-nav .nav-link {
	padding: 0;
	color: var(--text-gray-1);
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.web-header .navbar-nav li {
	margin-right: 35px;
}

.web-header .navbar-nav li:last-child {
	margin-right: 0;
}

.web-header .navbar-nav li:first-child {
	margin-left: 35px;
}

.web-header .navbar-toggler {
	background-color: #fff;
	border: 1px solid var(--theme-color);
}

.web-header .navbar-toggler-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.web-header .navbar-toggler-icon::before {
	content: '\f0c9';
	position: absolute;
	margin: 0 auto;
	text-align: center;
	display: inline-block;
	font-size: 22px;
	line-height: 22px;
	color: var(--theme-color);
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
}

.web-header ul.dropdown-menu {
	padding: 0;
	border: 0;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.web-header .dropdown li {
	margin: 0 !important;
}

.web-header .dropdown li .dropdown-item {
	color: var(--text-gray-1);
	font-size: 13px;
	line-height: 24px;
	font-weight: 400;
	padding: 5px 15px;
	border-bottom: 1px solid #ebebeb;
}

.web-header .dropdown li .dropdown-item:active {
	background-color: var(--primary);
	color: #fff;
}

.web-header .dropdown li:last-child .dropdown-item {
	border: 0;
}

.profile-drop .dropdown a.dropdown-toggle {
	text-decoration: none;
	display: flex;
	align-items: center;
	cursor: pointer;
	column-gap: 10px;
	color: #38943F;
}

.profile-drop .dropdown .employee_image {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	object-fit: cover;
	border: 2px solid #245438;
	padding: 4px;
}

.profile-drop .dropdown-menu {
	padding: 0;
	border: 0;
	top: 60px !important;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
		rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.profile-drop .dropdown-item {
	font-size: 13px;
	line-height: 23px;
	font-weight: 400;
	padding: 5px 20px;
}

.theme-color {
	color: var(--primary);
}

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

/* start notification wrapper */
.notification-wrapper a i {
	color: var(--primary);
	font-size: 20px;
}

.profile-drop .notification-wrapper {
	margin-right: 25px;
}

.profile-drop .notification-wrapper .dropdown-menu {
	top: 35px !important;
	width: 350px;
	right: 0;
	left: unset;
	padding: 15px 0 0;
}

.profile-drop .notification-wrapper .dropdown-menu .notify-item {
	padding: 10px;
	border-bottom: 1px solid #e8e8e8;
}

/* start notification wrapper */
.notification-wrapper a i {
	color: var(--primary);
	font-size: 20px;
}

.profile-drop .notification-wrapper {
	margin-right: 25px;
}

.profile-drop .notification-wrapper .dropdown-menu {
	top: 35px !important;
	width: 350px;
	right: 0;
	left: unset;
	padding: 15px 0 0;
}

.profile-drop .notification-wrapper .dropdown-menu .notify-item {
	padding: 10px;
	border-bottom: 1px solid #e8e8e8;
}

.notification-footer {
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	width: 100%;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.notification-footer:hover {
	text-decoration: underline;
	color: var(--primary);
}

.notification-wrapper .dropdown-toggle::after {
	margin-left: 0px;
	font-size: 14px;
	content: "\f107";
	border: 0;
	font-family: var(--fa-style-family, "Font Awesome 6 Pro");
	font-weight: var(--fa-style, 900);
}

/* end notification wrapper */
/*============ HEADER CSS ENDS HERE ==========*/

/* common css */
.content-body {
	padding: 20px;
}

.mySwiper-3 .swiper-pagination-bullet {
	color: green;
	background: green;
}

.dash-card {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-height: 70px;
	padding: 15px;
	color: var(--bs-card-cap-color);
	background-color: #fff;
	border-radius: 10px;
	justify-content: space-between;
	flex-direction: row-reverse;
	border: 1px solid rgba(0, 0, 0, 0.3);
	margin-bottom: 30px;
}

.dash-card .symbol {
	border: 1px solid #DBDBDB;
	width: 60px;
	height: 60px;
	border-radius: 10px;
	justify-content: center;
	display: flex;
	align-items: center;
}

.dash-card .symbol i {
	font-size: 25px;
}

.dash-card .value h4 {
	color: #3D4152;
	font-weight: 600;
	font-size: 1.35rem;
}

.dash-card .value p {
	color: #777777;
}

.dashboard-row [class*='col-']:nth-child(1) .dash-card .symbol i {
	color: var(--primary);
}

.dashboard-row [class*='col-']:nth-child(2) .dash-card .symbol i {
	color: #FC8019;
}

.dashboard-row [class*='col-']:nth-child(3) .dash-card .symbol i {
	color: #EB5757;
}

.dashboard-row [class*='col-']:nth-child(4) .dash-card .symbol i {
	color: #33A9FF;
}

.theme-btn {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	box-shadow: 0px 2px 7px 0px #38943F99 !important;
	transition: all ease .25s !important;
}

.theme-btn:hover,
.theme-btn:focus {
	transform: translateY(-3px);
	box-shadow: 0px 1px 2px 0px #38943F99 !important;
	border-color: var(--primary);
	background-color: var(--primary);
}

.bordered-btn {
	background-color: transparent !important;
	border-color: var(--primary) !important;
	color: var(--primary) !important;
}

.theme-lg {
	height: 50px;
	font-size: 20px;
	min-width: 180px;
}

.cate-title {
	margin-bottom: 1.2rem;
}

.center-align-table tr th,
.center-align-table tr td {
	text-align: center;
}

.info-heading {
	border-bottom: 1px dashed #dee2e6;
}

.info-heading h5 {
	font-weight: 600;
	font-size: 18px;
}

.form-lg .form-group {
	margin-bottom: 30px;
}

.form-lg .form-group .form-control {
	height: 54px;
	border-color: #212529;
	border-radius: 10px;
}

/*end common css */

/* login css */
.athuntication-body {
	background: #38943f29;
}


.athuntication-body .main_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

a.athun-logo {
	max-width: 132px;
	width: 100%;
	margin: 0 auto;
	display: block;
}

a.athun-logo img {
	height: 100%;
	width: 100%;
}

.sign-in-your p {
	color: #696969;
}

.sign-in-your .form-group {
	margin-bottom: 15px;
}

.sign-in-your .form-group .form-control {
	min-height: 40px;
}

.form-group {
	margin-bottom: 20px;
}

.login-bx {
	background-color: #fff;
	border-radius: 8px;
}

.form-control,
.form-select {
	min-height: 50px;
	border-radius: 10px;
	border: 1px solid #ebebeb;
}

.form-label {
	font-size: 14px;
	line-height: 24px;
}

.forget-link a {
	color: var(--primary);
	font-size: 16px;
	text-decoration: none;
}

.theme-btn {
	background-color: var(--primary);
	box-shadow: 0px 2px 7px 0px #38943F99;
	transition: all ease .25s;
}

.theme-btn:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0px 1px 2px 0px #38943F99 !important;
	background-color: var(--primary) !important;
}

.theme-lg {
	height: 50px;
	font-size: 20px;
	min-width: 180px;
}

.sign-in-your h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 5px !important;
}

.seperator {
	margin: 15px 0;
	display: flex;
	gap: 20px;
	align-items: center;
}

.seperator .line {
	width: 100%;
	height: 1px;
	background-color: #ccc;
}

.sign-in-your p {
	margin-bottom: 0;
}

.food-img {
	width: 100%;
	height: 43.875rem;
	object-fit: cover;
	border-radius: 0.5rem;
}

.login-wrapper {
	margin-bottom: 1.875rem;
	background-color: unset;
	transition: all .5s ease-in-out;
	position: relative;
	border: 0rem solid transparent;
	border-radius: 0.5rem;
	box-shadow: none;
}

.text-primary {
	color: var(--primary) !important;
}

.custom-checkbox {
	position: relative;
	padding: 0;
	border: 0;
}

.custom-checkbox input {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	border: 0;
	opacity: 0;
}

.custom-checkbox .form-check-label {
	border: 1px solid #77777759;
	width: 100%;
	height: 55px;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}

.custom-checkbox input:checked+.form-check-label {
	background-color: var(--primary);
	color: #fff;
}

.login-w-button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	gap: 10px;
	border: 1px solid #ADADAD;
	background: #fff;
	padding: 10px;
	height: 40px;
	width: 100%;
	font-weight: 600;
	border-radius: 5px;
	color: #222222;
	transition: .3s ease all;
	font-size: 14px;
	box-shadow: 0 0 15px #00000020;
}

.login-w-button:hover {
	color: #222222;
}

.login-w-button img {
	position: absolute;
	left: 15px;
}

.social-login-wrapper h6 {
	color: #696969;
	margin-bottom: 0;
}

/* start otp screen */
.otp-input {
	display: flex;
	margin: 0 -5px;
	align-items: center;
	justify-content: center;
}

.otp-input .form-group {
	padding: 0 5px;
}

.otp-input input {
	background: #ECECEC;
	border: 0;
	width: 60px;
	height: 58px;
	border-radius: 6px;
}

.otp-input input:focus-visible {
	outline: 1px solid var(--primary);
}

/* end otp screen */

/* Employee Header CSS START Here */
.employee-header {
	padding: 0;
	background-color: #fff;
	width: 100%;
	height: auto;
}

.employee-header .navbar a.nav-link {
	color: #38943F;
	padding: 0;
	margin-right: 35px;
}

.employee-header .navbar li:last-child a.nav-link {
	margin-right: 0;
}

.employee-header .navbar a.navbar-brand img {
	width: 110px;
}

.employee-header .profile-drop .dropdown a.dropdown-toggle {
	text-decoration: none;
	display: flex;
	align-items: center;
	column-gap: 10px;
	color: #38943F;
}

.employee-header .profile-drop .dropdown .employee_image {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	object-fit: cover;
	border: 2px solid #245438;
	padding: 4px;
}

.employee-header .profile-drop .profile-dropdown a.dropdown-toggle:after {
	content: "\f107";
	border: 0;
	font-family: var(--fa-style-family, "Font Awesome 6 Pro");
	font-weight: var(--fa-style, 900);
}

.employee-header .profile-drop .dropdown-menu {
	padding: 0;
	border: 0;
	top: 60px !important;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
		rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.employee-header .profile-drop .dropdown-item {
	font-size: 13px;
	line-height: 23px;
	font-weight: 400;
	padding: 5px 20px;
}

/* Employee Header CSS Ends Here */

/* Banner Area CSS START Here */
.banner_area {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #38943f2e;
	background-blend-mode: multiply;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 175px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner_area h4 {
	/* text-align: center; */
	color: var(--primary);
	font-size: 50px;
	line-height: 30px;
	font-weight: 700;
	margin: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.banner_area .breadcrumb {
	/* justify-content: center; */
	margin: 0;
}

.banner_area .breadcrumb ol {
	margin: 0;
}

.banner_area .breadcrumb ol li a {
	color: #000;
	text-decoration: none;
}

.banner_area .breadcrumb-item.active {
	color: var(--primary);
	text-decoration: underline;
}

.banner_area .breadcrumb-item+.breadcrumb-item::before {
	color: #000;
}

/* Employee Sidebar CSS START Here */
.inner_wrap {
	padding-top: 80px;
	padding-bottom: 80px;
	background: #f7f7f7;
}

.employee_sidebar {
	width: 100%;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	height: auto;
	overflow: hidden;
	text-align: center;
	padding: 20px 0;
	border-radius: 10px;
	background: #fff;
}

.employee_sidebar .sidebar-top {
	margin: 0 auto 30px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 2px solid #38943F;
	display: block;
	position: relative;
}

a.prfl-edit-btn {
	background: #37923f;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.employee_sidebar .sidebar-top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	padding: 10px;
}

.employee_sidebar .sidebar-inner .navbar-nav {
	justify-content: start;
	text-align: start;
}

.employee_sidebar .sidebar-inner .navbar-nav .nav-link {
	padding: 10px 15px;
	background-color: #fff;
	color: #000;
	border-bottom: 1px solid #ebebeb;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.employee_sidebar .sidebar-inner .navbar-nav .nav-link.active {
	color: #fff;
	background-color: #38943F;
}

.employee_sidebar .sidebar-inner .navbar-nav li:last-child .nav-link {
	border-bottom: 0;
}

/* Employee Dashboard CSS START Here */
.banner_area {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #38943f2e;
	background-blend-mode: multiply;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.inner_wrap .employee_right_side {
	width: 100%;
	height: auto;
}

.inner_wrap .employee_right_side .custom_header {
	padding: 15px;
	background-color: #38943F;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	border-radius: 10px 10px 0 0;
}

.inner_wrap .employee_right_side .inner_box {
	width: 100%;
	height: auto;
	padding: 30px 20px;
	background-color: #fff;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.inner_wrap .dashboard-widget {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 15px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 0 40px 5px rgb(0 0 0/ 3%);
}

.inner_wrap .dashboard-widget .dashboard-widget-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	border-radius: 50px;
}

.inner_wrap .dashboard-widget.color-1 {
	background: rgba(98, 89, 202, .15);
	color: #6259ca;
}

.inner_wrap .dashboard-widget.color-1 h1 {
	color: #6259ca;
}

.inner_wrap .dashboard-widget-info span {
	font-weight: 500;
	font-size: 14px;
}

.inner_wrap .dashboard-widget-info h1 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.card-row [class*='col-'] {
	padding: 0 7px;
}

.inner_wrap .dashboard-widget.color-1 .dashboard-widget-icon {
	background: #6259ca;
	color: #fff;
}

.inner_wrap .dashboard-widget.color-2 {
	background: rgba(14, 198, 198, .15);
	color: #29bf6c;
}

.inner_wrap .dashboard-widget.color-2 .dashboard-widget-icon {
	background: #29bf6c;
	color: #fff;
}

.inner_wrap .dashboard-widget.color-2 h1 {
	color: #29bf6c;
}

.inner_wrap .dashboard-widget.color-3 {
	background: rgba(239, 29, 38, .15);
	color: #ef1d26;
}

.inner_wrap .dashboard-widget.color-3 h1 {
	color: #ef1d26;
}

.inner_wrap .dashboard-widget.color-3 .dashboard-widget-icon {
	background: #ef1d26;
	color: #fff;
}

.inner-box {
	width: 100%;
	height: auto;
	padding: 15px;
	background-color: #fff;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.info-heading {
	border-bottom: 1px dashed #dee2e6;
}

.info-heading h5 {
	font-weight: 600;
	font-size: 18px;
}

.inner_wrap .popular-item-box {
	display: flex;
	gap: 10px;
	background-color: #fff;
	box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	padding-right: 10px;
	margin-bottom: 20px;
}

.inner_wrap .popular-item-box .popular-item-box-img {
	overflow: hidden;
	border-radius: 12px 0px 0px 12px;
	position: relative;
}

.inner_wrap .popular-item-box .popular-item-box-img img {
	height: 100%;
	;
	width: 135px;
	object-fit: none;
}

.inner_wrap .popular-item-box .popular-item-box-img .popular-item-box-img-overlay {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	align-items: center;
	padding: 4px 6px;
	border-radius: 6px;
	background: rgba(0, 9, 41, 0.8);
	z-index: 11;
}

.inner_wrap .popular-item-box .popular-item-box-img .popular-item-box-img-overlay .icon {
	line-height: 0;
}

.inner_wrap .popular-item-box .popular-item-box-img .popular-item-box-img-overlay .text p {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: -0.16px;
	margin: 0;
}

.inner_wrap .popular-item-box .popular-inner-box {
	padding: 14px 0;
	flex: 1;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-item-box-text h3 {
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.24px;
	color: #424242;
	margin: 0;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 5px;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item .icon {
	line-height: 0;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item .text h5 {
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	color: #4d5461;
	margin: 0;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item-btm {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	border-top: 1px solid rgba(229, 230, 235, 0.4);
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item-btm h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	color: #424242;
	margin-bottom: 8px;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item-btm .calories-count {
	margin-bottom: 5px;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item-btm .address {
	color: #686868;
	font-size: 14px;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item-btm p {
	color: #686868;
	font-weight: 600;
}

.inner_wrap .popular-item-box .popular-inner-box .popular-inner-item-btm .order-time {
	color: #686868;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.table th,
.table td {
	font-size: 15px;
	white-space: nowrap;
}

.table th:not(:first-child),
.table td:not(:first-child) {
	min-width: 100px;
}

.table th:first-child,
.table td:first-child {
	width: 100px;
}

.table-prfl-detail th,
.table-prfl-detail td {
	width: 25% !important;
}

.star-group {
	display: flex;
	font-size: 12px;
}

.star-group i {
	color: #FDBC15;
}

.review-wrapper {
	display: flex;
	align-items: center;
}

.review-count {
	color: #5E5E5E;
	font-size: 14px;
}

.custom-modal .modal-header {
	padding: 10px;
}

.custom-modal .modal-header h4 {
	font-size: 18px;
	font-weight: 600;
}

.custom-modal .modal-header .btn-close {
	font-size: 12px;
}

.custom-modal .modal-dialog {
	max-width: 650px;
}

.food-detail-banner {
	height: 200px;
}

.food-detail-banner img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.food-detail-wrapper .text p {
	color: #686868;
	font-size: 18px;
	font-weight: 600;
}

.food-detail-wrapper .text .address,
.food-detail-wrapper .text .order-time {
	color: #686868;
	font-size: 14px;
}

.food-detail-title h4 {
	font-size: 18px;
	font-weight: 600;
}

.food-detail-title h6 {
	color: #38943F;
	font-size: 18px;
	font-weight: 600;
}

.description-wrapper {
	padding-top: 10px;
	border-top: 1px solid #69696936;
	margin-top: 20px;
}

.description-wrapper p {
	font-size: 14px;
	color: #696969;
}

.quantity-box .theme-btn {
	box-shadow: none;
	color: #fff;
	font-size: 12px;
	line-height: 22px;
}

.quantity-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.quantity-box p {
	font-weight: 400;
	font-size: 16px;
	line-height: 27px;
	color: #FFFFFF;
	margin: 0 15px;
	border: 1px solid #38943f;
	border-radius: 50px;
	padding: 1px;
}

.qty {
	display: inline-flex;
	flex-wrap: wrap;
}

.qty input {
	width: 70px;
	text-align: center;
	background: transparent;
	border: 0;
	color: #38943f;
}

.qty button {
	width: 40px;
	height: 40px;
	background: #38943f;
	color: #fff;
	border-radius: 50px;
	border: 0;
	line-height: 30px;
	font-size: 16px;
}

button.qtyplus {
	margin-left: 3px;
}

ul.food-detail {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	background: #F2F2F2;
	border-radius: 10px;
	margin: 0 -5px 0px;
	padding: 20px 0;
}

.food-detail li {
	list-style: none;
	display: flex;
	align-items: center;
	padding: 4px 16px;
	color: #000000;
	margin: 0 5px 0px;
	width: 100%;
}

.food-detail li .food-text {
	display: flex;
	width: 100%;
}

.food-detail li .food-text span {
	font-size: 16px;
}

.food-detail li .food-text h5 {
	margin-bottom: 0;
	font-size: 18px;
	margin-left: auto;
}

.nav-tabs.bordered-tab {
	border: 1px solid #38943F;
	border-radius: 6px;
	padding: 10px 0;
}

.nav-tabs.bordered-tab .nav-item {
	flex: 0 0 50%;
	max-width: 50%;
}

.nav-tabs.bordered-tab .nav-link {
	margin-bottom: 0px;
	border: 0;
	width: 100%;
	color: #949494;
	padding: 0;
}

.nav-tabs.bordered-tab .nav-link.active,
.nav-tabs.bordered-tab .nav-link:hover {
	border-radius: 0px;
	color: var(--primary);
	font-weight: 600;
}

.nav-tabs.bordered-tab .nav-item:nth-child(odd) {
	border-right: 1px solid #38943F;
}

.white-btn {
	background: #fff !important;
	color: var(--primary) !important;
}

/* Employee Dashboard CSS ENDS HERE */

/* Employee Profile CSS START HERE */
.inner_wrap .image_box {
	width: 120px;
	height: 120px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.inner_wrap .image_box img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.form-group {
	margin-bottom: 20px;
}

.form-control,
.form-select {
	min-height: 50px;
	border-radius: 10px;
	border: 1px solid #ebebeb;
}

.form-label {
	font-size: 14px;
	line-height: 24px;
}

.custom-image-upload {
	margin-bottom: 20px;
}

.custom-image-upload .uploader-inner {
	width: 250px;
	height: 250px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.custom-image-upload .uploader-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.custom-image-upload .uploader-inner input[type="file"] {
	width: 100%;
	height: 44px;
	z-index: 9;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
	cursor: pointer;
}

.custom-image-upload .uploader-inner .upload-btn {
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--primary);
	width: 100%;
	text-align: center;
	padding: 10px 0;
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	cursor: pointer;
}

.detail-status-wrapper .custom-checkbox {
	padding: 0 5px;
}

.detail-status-wrapper .custom-checkbox .form-check-label {
	padding: 0 10px;
	height: 45px;
	min-width: 100px;
}

/* Employee Profile CSS ENDS HERE */

/* my order detail page css */
.order-item-detail {
	padding: 15px;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	margin: 20px 0;
}

.order-item-detail h5 {
	font-size: 18px;
	font-weight: 600;
}

.order-list-wrapper .order-item {
	color: #686868;
	padding: 5px 0;
}

.total-payment {
	border-top: 1px dashed #DBDBDB;
	padding: 10px 0;
	margin-top: 10px;
	font-weight: 600;
}

.role-info {
	color: var(--primary);
	font-weight: 600;
}

.orders-status {
	font-size: 12px;
	font-weight: 600;
}

.complete {
	color: var(--primary);
}

.delete {
	color: #FF4337;
}

/* end my order detail page css */

/* start notification css */
.notification-item svg {
	margin-right: 10px;
}

.notify-text h5 {
	color: #333333;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 3px;
}

.notify-text p {
	color: #2A2D36;
}

.notification-toggle {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.notification-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.notification-toggle .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #fff;
	-webkit-transition: .4s;
	transition: .4s;
}

.notification-toggle .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: #fff;
	-webkit-transition: .4s;
	transition: .4s;
}

.notification-toggle input:checked+.slider {
	background-color: #fff;
}

.notification-toggle input:focus+.slider {
	box-shadow: 0 0 1px #fff;
}

.notification-toggle input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
	background-color: var(--primary);
}

/* Rounded sliders */
.notification-toggle .slider.round {
	border-radius: 34px;
}

.notification-toggle .slider.round:before {
	border-radius: 50%;
}

/* end notification css */
.password-field {
	position: relative;
}

.password-field .toggle-password {
	position: absolute;
	top: 18px;
	right: 20px;
}

/* start reporting css */
.custom-checkbox {
	position: relative;
	padding: 0;
	border: 0;
}

.custom-checkbox input {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	border: 0;
	opacity: 0;
}

.custom-checkbox .form-check-label {
	border: 1px solid #77777759;
	width: 100%;
	height: 55px;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}

.custom-checkbox input:checked+.form-check-label {
	background-color: var(--primary);
	color: #fff;
}

.fileformat-check {
	position: relative;
	max-width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
}

.fileformat-check input {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	opacity: 0;
}

.fileformat-check .form-check-label {
	border: 1px solid #e8e8e8;
	padding: 10px;
	border-radius: 4px;
}

.fileformat-check input:checked+.form-check-label {
	border-color: var(--primary);
	background: #F0FEE1;
}

.format-img {
	max-width: 100px;
}

.format-img img {
	width: 100%;
	height: 50px;
	object-fit: contain;
}

/* end reporting css */
.custom_header.trans-emp {
	display: flex;
	justify-content: space-between;
}

.trans-emp .trans-text p {
	margin-bottom: 0px;
}

.trans-emp .download-ico p {
	margin-bottom: 0px;
	font-size: 15px;
}

.trans-emp .download-ico .btn-group {
	background: #fff;
}

.trans-date {
	display: flex;
	justify-content: start;
	gap: 40px;
	padding-bottom: 0px;
}

.trans-date label {
	font-size: 15px;
}

.trans-date .trans-cal #start-date {
	padding: 5px;
	font-size: 15px;
	border: 1px solid #e3e3e3;
}

.trans-date .trans-cal #end-date {
	padding: 5px;
	border: 1px solid #e3e3e3;
	font-size: 15px;
}

#login-form .field-loginform-rememberme {
	margin-bottom: 0px !important;
}

#login-form .field-loginform-rememberme .form-check {
	margin-bottom: 0;
}

.contact-group ul {
	padding-left: 0px;
}

span#cart-count {
	position: absolute;
	bottom: 15px;
	left: 18px;
	background: #b8ccbd;
	padding: 2px;
	padding-bottom: 2px;
	color: #000;
	border-radius: 10px;
	font-size: 12px;
	padding-bottom: 0px;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.similar-item-wrapper .review-wrapper .theme-krajee-svg.rating-sm .krajee-icon,
.similar-item-wrapper .review-wrapper.theme-krajee-svg.rating-sm .krajee-icon-clear {
	width: 1.1rem;
	height: 1.1rem;
}

.similar-item-wrapper .review-wrapper .rating-input {
	display: none !important;
}

.custom-radio-wrapper {
	position: relative;
}

.custom-radio-wrapper input {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
}

.custom-radio-wrapper label {
	border: 2px solid #C2C2C2;
	border-radius: 15px;
	padding: 3px 11px;
	color: #7D7D7E;
}

.custom-radio-wrapper label svg {
	margin-right: 5px;
}

.custom-radio-list .custom-radio-wrapper:not(:last-child) {
	margin-right: 15px;
}

.custom-radio-wrapper input[type="radio"]:checked+label {
	background-color: #28963d21;
	border-color: #28963D;
	color: #28963D;
}

.custom-radio-wrapper input[type="radio"]:checked+label svg path {
	fill: #28963D;
}

.background_white {
	background: #fff;
	padding: 50px 0px;
	border-top: 1px solid #4949491a;
}

.text-col .subhead {
	font-weight: 400;
	letter-spacing: 3px;
}

.text-col h3 {
	font-weight: 400;
	font-size: 40px;
	line-height: 1.25;
	text-transform: none;
}

.checkoutView {
	width: 550px !important;
}

.detail-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.margin-top {
	margin-top: 30px;
}

#report-form #report-form-submit {
	margin-top: 42px !important;
}

.lunch_wrp {
	position: relative;
	padding-bottom: 20px;
}

.lunch_wrp .empty {
	position: absolute;
	bottom: 0;
}

#company-vat_number {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

#basic-addon3 {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.inner-page-card .employer-table td:last-child {
	text-align: left;
}

.table.employer-table th:first-child,
.table.employer-table td:first-child, 
.table.company-table th:first-child,
.table.company-table td:first-child ,
.table.table-prfl-detail th:first-child,
.table.table-prfl-detail td:first-child  {
	width: auto;
	min-width: auto;
}

.inner-page-card .employer-table, 
.company-table, 
.table-prfl-detail {
	table-layout: fixed;
	width: 100%;

}
.verify-otp-card{
	position:relative;
}

.verify-otp-card .alert {
	position: absolute;
	top: 15%;
	left: 50%;
	min-width: 630px;
	transform: translateX(-50%);
}
.custom-form-check {
    padding-left: 0px !important;
}
