@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Lato:wght@300;400;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

:root {
	--primary: #feba27;
	--secondary: #2f2d52;
	--gold: #ffc107;
	--white: #fff;
	--black: #231e41;
	--bgLight: #f2f5fa;
	--bgLight2: #f9fafc;
	--bgDark: #0c2239;
	--borderColor: #e5e5e5;
	--fontColor: #696969;
	--shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.1);
	--shadow2: 0 1px 2px rgb(0 0 0 / 20%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Jost", sans-serif;
	color: var(--fontColor);
	background: var(--white);
	font-weight: 400;
	font-size: 15px;
}

body::-webkit-scrollbar {
	width: 10px;
	height: 100%;
}

body::-webkit-scrollbar-track {
	background: var(--white);
}

body::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 5px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

body::-webkit-scrollbar-thumb:hover {
	background: var(--secondary);
}

.rtl {
	direction: rtl;
	overflow-x: hidden !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--fontColor);
	box-shadow: 0 0 0px 1000px var(--white) inset;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.badge {
	border-radius: 50px;
	font-family: "Jost", sans-serif;
	font-weight: 400;
	font-size: 14px;
	padding: 5px 5px 3px 20px;
	position: relative;
	background: var(--bgLight) !important;
	color: var(--secondary);
}

.blob-dancing {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite !important;
}

.badge::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #26cc8c;
}

.badge.bg-primary::before {
	background: #488ff9;
}

.badge.bg-info::before {
	background: #59c8ff;
}

.badge.bg-danger::before {
	background: #ff6379;
}

.badge.bg-warning::before {
	background: #ffce00;
}

.badge.bg-secondary::before {
	background: #6c757d;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Lato", sans-serif;
	color: var(--black);
	margin-bottom: 15px;
	font-weight: 800;
}

h1 {
	font-size: 64px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 36px;
}

h4 {
	font-size: 24px;
	font-weight: 600;
}

h5 {
	font-size: 18px;
	font-weight: 600;
}

a {
	text-decoration: none;
}

p {
	margin-bottom: 15px;
}

.btn:focus {
	box-shadow: 0 0 0 0rem black;
}

button {
	background: none;
	border: none;
	padding: 0;
}

i {
	font-size: 16px;
}

.rtl .form-select {
	background-position-x: 10px !important;
}

.btn-custom {
	background: var(--primary);
	font-family: "Jost", sans-serif;
	text-transform: capitalize;
	display: inline-block;
	color: var(--white);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	height: 50px;
	width: 160px;
	line-height: 1;
	border-radius: 50px;
	transition: 0.4s;
}

.btn-custom i {
	margin-right: 5px;
}

.btn-custom:hover {
	background: var(--secondary);
}

a.btn-custom {
	padding: 17px;
	color: var(--white);
}

.form-check label {
	cursor: pointer;
	color: var(--fontColor);
}

.form-check .form-check-input {
	border-radius: 5px;
	background: var(--white);
	border: 2px solid var(--borderColor);
	cursor: pointer;
	margin-top: 5px;
}

.form-check .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.form-check .form-check-input:focus {
	box-shadow: 0 0 0 0rem var(--black);
}

.rtl .form-check .form-check-input {
	float: right;
	margin-left: 0.5em;
}

video::-webkit-media-controls {
	display: none;
}

.header-text {
	margin-bottom: 70px;
}

.header-text h5 {
	text-transform: capitalize;
	color: var(--primary);
	position: relative;
	display: inline-block;
	font-size: 16px;
	padding-left: 15px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.header-text h5::before {
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 30px;
	position: absolute;
	left: 0;
	top: -5px;
	background: #e8f1fc;
	z-index: -1;
}

.header-text h3,
.header-text h2 {
	text-transform: capitalize;
	margin-bottom: 15px;
}

.header-text p {
	max-width: 700px;
}

.rtl .header-text h5 {
	padding-left: 0;
	padding-right: 15px;
}

.rtl .header-text h5::before {
	left: auto;
	right: 0;
}

.heading {
	margin-bottom: 15px;
}

.heading .cart-box {
	position: relative;
	width: 50px;
	height: 50px;
	text-align: center;
}

.heading .cart-box i {
	font-size: 24px;
	color: var(--primary);
}

.heading .cart-box .count {
	background: var(--primary);
	min-width: 18px;
	height: 18px;
	border-radius: 50px;
	color: var(--white);
	position: absolute;
	top: 0;
	right: 1px;
	font-size: 11px;
	font-weight: 400;
	padding-top: 1px;
	text-align: center;
}

.food-items {
	min-height: 100vh;
	padding: 50px 0;
	background: var(--bgLight);
}

.food-items .categories {
	margin: 15px 0;
	padding: 15px 0;
	display: flex;
	overflow: auto !important;
}

.food-items .categories .tab {
	color: var(--primary);
	background: var(--white);
	padding: 8px 20px;
	border-radius: 100px;
	margin-right: 5px;
	font-weight: 400;
	transition: 0.4s;
}

.food-items .categories .tab:hover, .food-items .categories .tab.active {
	background: var(--primary);
	color: var(--white);
}

.food-items .input-group {
	max-width: 100%;
}

.food-items .input-group .form-control {
	border: none;
	height: 50px;
	font-size: 16px;
	padding: 15px 15px 15px 50px;
	background: var(--white);
	caret-color: var(--primary);
	border: 1px solid var(--white);
	border-radius: 100px !important;
	transition: 0.4s;
}

.food-items .input-group .form-control:focus {
	color: var(--fontColor);
	background-color: var(--white);
	border-color: var(--white);
	outline: 0;
	box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.food-items .input-group .form-control::-moz-placeholder {
	text-transform: capitalize;
}

.food-items .input-group .form-control:-ms-input-placeholder {
	text-transform: capitalize;
}

.food-items .input-group .form-control::placeholder {
	text-transform: capitalize;
}

.food-items .input-group button {
	height: 42px;
	width: 42px;
	background: var(--white);
	border-radius: 80px !important;
	position: absolute;
	left: 4px;
	top: 4px;
	transition: 0.4s;
	z-index: 4;
}

.food-items .input-group button i {
	font-size: 16px;
	color: var(--primary);
}

.food-items .menu-box {
	background: var(--white);
	border-radius: 10px;
	position: relative;
	height: 100%;
}

.food-items .menu-box .img-box {
	overflow: hidden;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	padding: 10px;
	position: relative;
}

.food-items .menu-box .img-box .count {
	position: absolute;
	right: 10px;
	top: 10px;
	background: var(--primary);
	color: var(--white);
	min-width: 20px;
	height: 20px;
	border-radius: 50px;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.food-items .menu-box .text-box {
	padding: 10px;
	text-transform: capitalize;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.food-items .menu-box .text-box h5,
.food-items .menu-box .text-box p {
	margin-bottom: 5px;
}

.food-items .menu-box .text-box a {
	margin-bottom: 5px;
	color: var(--fontColor);
	transition: 0.4s;
	display: contents !important;
}

.food-items .menu-box .text-box a:hover {
	color: var(--primary);
}

.food-items .menu-box .text-box .price {
	margin-top: 5px;
}

.food-items .menu-box .cart-btn {
	background: var(--primary);
	color: var(--white);
	width: 40px;
	height: 30px;
	border-radius: 8px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.food-items .menu-box .cart-btn i {
	font-size: 14px;
}

.rtl .food-items .menu-box .cart-btn {
	right: auto;
	left: 10px;
}

.rtl .food-items .menu-box .img-box .count {
	right: auto;
	left: 10px;
}

.cart-items {
	min-height: 100vh;
	background: var(--bgLight);
	padding: 50px 0;
}

.cart-items .cart-menu-box {
	background: var(--white);
	border-radius: 10px;
	position: relative;
	display: flex;
}

.cart-items .cart-menu-box .img-box {
	overflow: hidden;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 10px;
	width: 100px;
}

.cart-items .cart-menu-box .text-box {
	width: calc(100% - 100px);
	padding: 10px;
	text-transform: capitalize;
}

.cart-items .cart-menu-box .text-box h5,
.cart-items .cart-menu-box .text-box p {
	margin-bottom: 5px;
}

.cart-items .cart-menu-box .remove-btn {
	background: var(--primary);
	color: var(--white);
	width: 40px;
	height: 30px;
	border-radius: 8px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.cart-items .cart-menu-box .remove-btn i {
	font-size: 14px;
}

.cart-items .quantity {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 5px;
	border-radius: 100px;
	width: 105px;
	border: 2px solid var(--bgLight);
	overflow: hidden;
}

.cart-items .quantity .btn-inc-dec {
	width: 35px;
	height: 30px;
	border-radius: 0px;
	background: var(--white);
	color: var(--primary);
	font-size: 18px;
}

.cart-items .quantity .form-control {
	width: 35px;
	height: 30px;
	margin: 0 0px;
	background: var(--white);
	border-radius: 0px;
	border: none;
	color: var(--fontColor);
	text-align: center;
	font-size: 12px;
}

.cart-items .quantity .form-control::-moz-placeholder {
	color: var(--white);
}

.cart-items .quantity .form-control:-ms-input-placeholder {
	color: var(--white);
}

.cart-items .quantity .form-control::placeholder {
	color: var(--white);
}

.cart-items .quantity .form-control:focus {
	box-shadow: 0 0 0 0rem var(--black);
}

.cart-items .promo-code {
	margin-top: 30px;
	max-width: 100%;
}

.cart-items .promo-code .form-control {
	border: none;
	height: 50px;
	font-size: 16px;
	padding: 15px 85px 15px 15px;
	background: var(--white);
	caret-color: var(--primary);
	border: 1px solid var(--white);
	border-radius: 100px !important;
	transition: 0.4s;
}

.cart-items .promo-code .form-control:focus {
	color: var(--fontColor);
	background-color: var(--white);
	border-color: var(--white);
	outline: 0;
	box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.cart-items .promo-code .form-control::-moz-placeholder {
	text-transform: capitalize;
}

.cart-items .promo-code .form-control:-ms-input-placeholder {
	text-transform: capitalize;
}

.cart-items .promo-code .form-control::placeholder {
	text-transform: capitalize;
}

.cart-items .promo-code button {
	height: 42px;
	width: 80px;
	background: var(--primary);
	color: var(--white);
	border-radius: 80px !important;
	position: absolute;
	left: auto;
	right: 4px;
	top: 4px;
	transition: 0.4s;
	z-index: 4;
}

.cart-items .promo-code button i {
	font-size: 16px;
	color: var(--primary);
}

.cart-items .estimation-area p {
	border-bottom: 1px solid var(--borderColor);
	padding-bottom: 15px;
}

.cart-items .estimation-area p:last-child {
	border-bottom: 0px;
}

.cart-items .estimation-area p span {
	float: right;
	font-weight: 500;
}

.cart-items .estimation-area p.total {
	font-size: 18px;
	font-weight: 500;
	color: var(--black);
}

.rtl .cart-items .cart-menu-box .remove-btn {
	right: auto;
	left: 10px;
}

.rtl .cart-items .estimation-area p span {
	float: left;
}

.rtl .cart-items .promo-code button {
	right: auto;
	left: 4px;
}

.rtl .cart-items .promo-code .form-control {
	padding: 15px 15px 15px 85px;
}

.menu-details-section {
	min-height: 100vh;
	padding: 50px 0;
	background: var(--bgLight);
}

.checkout-section {
	background: var(--bgLight);
	padding: 50px 0;
	min-height: 100vh;
}

.checkout-section form .input-box label {
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.checkout-section form .input-box .form-select,
.checkout-section form .input-box .form-control {
	height: 45px;
	border-radius: 100px;
	background-color: var(--white);
	border: 1px solid var(--white);
	padding: 10px;
	padding-left: 15px;
	font-weight: normal;
	caret-color: var(--primary);
	color: var(--fontColor);
}

.checkout-section form .input-box .form-select:focus,
.checkout-section form .input-box .form-control:focus {
	color: var(--fontColor);
	box-shadow: 0 0 0 0rem var(--white);
	border: 1px solid var(--white);
}

.checkout-section form .input-box .form-select::-moz-placeholder, .checkout-section form .input-box .form-control::-moz-placeholder {
	color: var(--fontColor);
}

.checkout-section form .input-box .form-select:-ms-input-placeholder, .checkout-section form .input-box .form-control:-ms-input-placeholder {
	color: var(--fontColor);
}

.checkout-section form .input-box .form-select::placeholder,
.checkout-section form .input-box .form-control::placeholder {
	color: var(--fontColor);
}

.checkout-section form .input-box .form-select {
	background-image: url(../images/downward-arrow.png);
}

.checkout-section form .input-box .form-select option {
	background: var(--white);
	color: var(--fontColor);
}

.checkout-section form .input-box textarea.form-control {
	height: 150px;
	border-radius: 15px;
}

.checkout-section .order-summary .cart-menu-box {
	background: var(--white);
	border-radius: 10px;
	margin-bottom: 10px;
	position: relative;
	display: flex;
}

.checkout-section .order-summary .cart-menu-box .img-box {
	overflow: hidden;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 10px;
	width: 100px;
}

.checkout-section .order-summary .cart-menu-box .text-box {
	width: calc(100% - 100px);
	padding: 10px;
	text-transform: capitalize;
}

.checkout-section .order-summary .cart-menu-box .text-box h5,
.checkout-section .order-summary .cart-menu-box .text-box p {
	margin-bottom: 5px;
}

.checkout-section .order-summary .quantity {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 5px;
	border-radius: 100px;
	width: 105px;
	border: 2px solid var(--bgLight);
	overflow: hidden;
}

.checkout-section .order-summary .quantity .btn-inc-dec {
	width: 35px;
	height: 30px;
	border-radius: 0px;
	background: var(--white);
	color: var(--primary);
	font-size: 18px;
}

.checkout-section .order-summary .quantity .form-control {
	width: 35px;
	height: 30px;
	margin: 0 0px;
	background: var(--white);
	border-radius: 0px;
	border: none;
	color: var(--fontColor);
	text-align: center;
	font-size: 12px;
}

.checkout-section .order-summary .quantity .form-control::-moz-placeholder {
	color: var(--white);
}

.checkout-section .order-summary .quantity .form-control:-ms-input-placeholder {
	color: var(--white);
}

.checkout-section .order-summary .quantity .form-control::placeholder {
	color: var(--white);
}

.checkout-section .order-summary .quantity .form-control:focus {
	box-shadow: 0 0 0 0rem var(--black);
}

.checkout-section .order-summary .estimation-area p {
	border-bottom: 1px solid var(--borderColor);
	padding-bottom: 15px;
}

.checkout-section .order-summary .estimation-area p:last-child {
	border-bottom: 0px;
}

.checkout-section .order-summary .estimation-area p span {
	float: right;
	font-weight: 500;
}

.checkout-section .order-summary .estimation-area p.total {
	font-size: 18px;
	font-weight: 500;
	color: var(--black);
}

.checkout-section .payment-box h5 {
	text-transform: capitalize;
	font-size: 16px;
	margin-bottom: 30px;
}

.checkout-section .payment-box .btn-primary {
	margin-bottom: 0;
}

.checkout-section .payment-box .btn-check + .btn-primary {
	background: var(--white);
	border: 2px solid var(--bgLight);
	border-radius: 10px;
	padding: 5px;
	color: var(--fontColor);
	position: relative;
	transition: 0.4s;
}

.checkout-section .payment-box .btn-check + .btn-primary .check {
	position: absolute;
	left: 12px;
	top: 12px;
	opacity: 0;
	width: 14px;
	height: 14px;
	border-radius: 100px;
	background: var(--primary);
}

.checkout-section .payment-box .btn-check + .btn-primary::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.4);
	top: 0;
	left: 0;
}

.checkout-section .payment-box label img {
	border-radius: 6px;
}

.checkout-section .payment-box .btn-check:checked + .btn-primary {
	background: var(--white) !important;
	border: 2px solid var(--primary);
}

.checkout-section .payment-box .btn-check:checked + .btn-primary .check {
	opacity: 1;
}

.checkout-section .payment-box .btn-check:checked + .btn-primary::after {
	background: none;
}

.checkout-section .payment-box .btn-check:focus + .btn-primary,
.checkout-section .payment-box .btn-primary:focus {
	color: var(--white);
	background-color: var(--white);
	border-color: var(--primary);
	box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.checkout-section .payment-box .payment-options {
	overflow-x: hidden;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar {
	width: 3px;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.4);
	border-radius: 100px;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.6);
	border-radius: 6px;
}

.profile-setting .payout::-webkit-scrollbar {
	width: 3px;
}

.profile-setting .payout::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.4);
	border-radius: 100px;
}

.profile-setting .payout::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 6px;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar-thumb:hover {
	background: var(--primary);
}

.rtl .checkout-section .side-bar .side-box ul li span {
	float: left;
}

.rtl .checkout-section .payment-box .btn-check + .btn-primary .check {
	position: absolute;
	left: auto;
	right: 15px;
	top: 15px;
}

.rtl .checkout-section .order-summary .estimation-area p span {
	float: left;
}

.modal .modal-content {
	background: var(--white);
	border-radius: 5px;
	border: none;
}

.modal .modal-content .modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	text-transform: capitalize;
}

.modal .modal-content .modal-header .close-btn i {
	color: var(--fontColor);
	transition: 0.4s;
}

.modal .modal-content .modal-header .close-btn i:hover {
	color: var(--primary);
}

.modal .modal-content .modal-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
	padding: 15px;
}

.navbar.active {
	background: var(--white);
	box-shadow: var(--shadow2);
}

.navbar .navbar-brand img {
	width: 160px;
}

.navbar .container {
	position: relative;
}

.navbar .navbar-nav {
	margin: auto;
}

.navbar .navbar-toggler {
	position: absolute;
	right: 15px;
	top: 5px;
	background: var(--primary);
	color: var(--white);
	width: 40px;
	height: 40px;
	border-radius: 2px;
}

.navbar .navbar-toggler i {
	font-size: 16px;
	color: var(--white);
}

.navbar .navbar-toggler:focus {
	box-shadow: 0 0 0 0rem;
}

.navbar .nav-item {
	margin: 0 15px;
}

.navbar .nav-item .nav-link {
	color: var(--fontColor);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	padding: 10px 5px;
	position: relative;
	transition: 0.4s;
}

.navbar .nav-item .nav-link::before {
	content: "";
	position: absolute;
	background: var(--primary);
	left: -10px;
	bottom: 0;
	top: 0;
	height: 8px;
	width: 8px;
	border-radius: 100px;
	z-index: -1;
	margin: auto;
	opacity: 0;
	transition: 0.4s;
}

.navbar .nav-item .nav-link.active, .navbar .nav-item .nav-link.active::before, .navbar .nav-item .nav-link:hover, .navbar .nav-item .nav-link:hover::before {
	opacity: 1;
}

.navbar .navbar-text {
	display: flex;
}

.navbar .navbar-text .btn-custom {
	width: 114px;
	height: 37px;
	padding: 9px;
}

.navbar .profile {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.navbar .profile img {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	border: 4px solid transparent;
	outline: 1px solid var(--borderColor);
}

.navbar .user-panel {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 0;
}

.navbar .user-panel:hover .user-dropdown {
	opacity: 1;
	visibility: visible;
	top: 54px;
}

.navbar .user-panel .user-dropdown {
	background: var(--white);
	box-shadow: var(--shadow);
	width: 200px;
	overflow: hidden;
	padding-top: 0;
	padding-left: 0;
	position: absolute;
	right: 0;
	top: 64px;
	border-radius: 5px;
	visibility: hidden;
	transition: 0.4s;
	opacity: 0;
	z-index: 3;
}

.navbar .user-panel .user-dropdown li {
	border-bottom: 1px solid var(--bgLight);
	list-style: none;
}

.navbar .user-panel .user-dropdown li a {
	background: var(--white);
	color: var(--fontColor);
	font-size: 14px;
	font-weight: 400;
	padding: 10px;
	display: flex;
	transform: 0.4s;
}

.navbar .user-panel .user-dropdown li a:active, .navbar .user-panel .user-dropdown li a:focus, .navbar .user-panel .user-dropdown li a:hover {
	background: var(--bgLight);
}

.navbar .user-panel .user-dropdown li a:last-child {
	border-bottom: none;
}

.navbar .user-panel .user-dropdown li a i {
	color: var(--primary);
	margin: 0 5px;
	font-size: 14px;
	position: relative;
	top: 1px;
}

.navbar .notification-panel {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 0px 0;
}

.navbar .notification-panel:hover .notification-dropdown {
	visibility: visible;
	opacity: 1;
	top: 54px;
}

.navbar .notification-panel .dropdown-toggle {
	width: 40px;
	height: 40px;
	border-radius: 2px;
	position: relative;
	margin-right: 15px;
	padding-top: 4px;
}

.navbar .notification-panel .dropdown-toggle i {
	color: var(--primary);
	font-size: 24px;
}

.navbar .notification-panel .dropdown-toggle::after {
	display: none;
}

.navbar .notification-panel .dropdown-toggle .count {
	background: var(--primary);
	min-width: 18px;
	height: 18px;
	border-radius: 50px;
	color: var(--white);
	position: absolute;
	top: 1px;
	right: 1px;
	font-size: 11px;
	font-weight: 500;
	padding-top: 1px;
}

.navbar .notification-panel .dropdown-box {
	overflow-y: scroll;
	width: 100%;
	height: 100%;
	max-height: 278px;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar {
	width: 0;
	height: 100%;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-track {
	background: var(--black);
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb {
	background: var(--black);
	border-radius: 5px;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
	background: var(--primary);
}

.navbar .notification-panel .notification-dropdown {
	background: var(--white);
	box-shadow: var(--shadow);
	width: 290px;
	max-height: 324px;
	overflow: hidden;
	padding-bottom: 40px;
	padding-top: 0;
	padding-left: 0;
	position: absolute;
	right: -40px;
	top: 64px;
	border-radius: 5px;
	visibility: hidden;
	transition: 0.4s;
	opacity: 0;
	z-index: 10;
}

.navbar .notification-panel .notification-dropdown li {
	border-bottom: 1px solid var(--bgLight);
}

.navbar .notification-panel .notification-dropdown li a {
	padding: 10px 10px 10px 15px;
	display: flex;
	color: var(--fontColor);
	white-space: normal;
	transition: 0.4s;
}

.navbar .notification-panel .notification-dropdown li a:active, .navbar .notification-panel .notification-dropdown li a:focus, .navbar .notification-panel .notification-dropdown li a:hover {
	background: var(--bgLight);
}

.navbar .notification-panel .notification-dropdown li a i {
	background: var(--primary);
	border-radius: 2px;
	margin-top: 5px;
	padding: 4px;
	width: 30px;
	height: 30px;
	text-align: center;
	margin-right: 10px;
	color: var(--white);
	font-size: 16px;
}

.navbar .notification-panel .notification-dropdown li a .text {
	width: calc(100% - 40px);
}

.navbar .notification-panel .notification-dropdown li a .text p {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 5px;
}

.navbar .notification-panel .notification-dropdown li a .text .time {
	font-size: 12px;
	font-weight: 500;
	color: var(--primary);
}

.navbar .notification-panel .notification-dropdown .clear-all {
	background: var(--white);
	font-weight: 600;
	font-size: 14px;
	text-transform: capitalize;
	border-top: 1px solid var(--bgLight);
	text-align: center;
	padding: 10px 10px 11px 15px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.navbar .notification-panel .notification-dropdown .clear-all a {
	color: var(--primary);
	transition: 0.4s;
}

.navbar .notification-panel .notification-dropdown .clear-all a:hover {
	color: var(--primary);
}

.rtl .navbar .navbar-nav {
	margin-right: auto;
	margin-left: auto;
}

.rtl .navbar .navbar-toggler {
	right: auto;
	left: 15px;
}

.rtl .navbar .navbar-brand {
	margin-right: 0;
}

.rtl .navbar .nav-item .nav-link::before {
	left: auto;
	right: -10px;
}

.rtl .navbar .notification-panel .dropdown-toggle {
	margin-right: 0;
	margin-left: 15px;
}

.rtl .navbar .notification-panel .dropdown-toggle .count {
	right: auto;
	left: 1px;
}

.rtl .navbar .user-panel .user-dropdown {
	right: auto;
	left: 0;
}

.rtl .navbar .notification-panel .notification-dropdown {
	right: auto;
	left: -40px;
}

.rtl .navbar .notification-panel .notification-dropdown li a i {
	margin-right: 0;
	margin-left: 10px;
}

.home-section {
	height: 100vh;
	background: var(--white);
	background-size: cover;
	background-position: center top;
	position: relative;
	z-index: 1;
}

.home-section .text-box h2,
.home-section .text-box h3,
.home-section .text-box h4 {
	text-transform: uppercase;
}

.home-section .text-box h1 {
	font-size: 80px;
	text-transform: uppercase;
}

.home-section .text-box h5 {
	color: var(--primary);
	text-transform: capitalize;
}

.home-section .img-box {
	position: relative;
	overflow: hidden;
	height: 540px;
	width: 100%;
	float: right;
	border-bottom-right-radius: 350px;
	border-bottom-left-radius: 300px;
	border-bottom: 20px solid var(--white);
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
}

.home-section .img-box img {
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
	bottom: -5px;
	right: 0;
	left: 0;
	margin: auto;
}

.home-section .shape {
	position: absolute;
	top: 0;
	left: -100px;
	z-index: -1;
}

.about-section {
	padding: 100px 0 100px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.about-section:after {
	content: "";
	height: 700px;
	width: 700px;
	position: absolute;
	z-index: 0;
	top: 200px;
	right: -400px;
	border-radius: 50%;
	border: solid 150px var(--bgLight);
	z-index: -1;
}

.about-section .img-box {
	position: relative;
}

.about-section .img-box img {
	width: 500px;
	border-radius: 0px;
	border: 15px solid var(--white);
	box-shadow: var(--shadow);
	border-radius: 5px;
	transform: rotate(3deg);
	float: right;
	margin-right: 50px;
}

.about-section .img-box .img-2 {
	width: 250px;
	float: left;
	margin-top: -100px;
	transform: rotate(-3deg);
}

.rtl .about-section .img-box img {
	margin-right: 0;
}

.feature-section {
	background: var(--bgLight);
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.feature-section .feature-box {
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: 5px;
	padding: 50px 30px;
	text-align: center;
	height: 100%;
}

.feature-section .feature-box .icon-box {
	margin-bottom: 30px;
}

.feature-section .feature-box .icon-box img {
	width: 64px;
}

.feature-section .feature-box p {
	margin-bottom: 0;
}

.feature-section .alert {
	margin-bottom: 0;
	padding: 0;
}

.feature-section .alert p {
	margin-bottom: 0;
	color: var(--primary);
}

.working-process {
	padding: 100px 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}

.working-process::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	z-index: -1;
}

.working-process .process-box {
	display: flex;
	margin-bottom: 50px;
}

.working-process .process-box .icon-box {
	background: var(--white);
	box-shadow: var(--shadow);
	width: 60px;
	height: 60px;
	border-radius: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.working-process .process-box .icon-box i {
	font-size: 24px;
	color: var(--primary);
}

.working-process .process-box .text-box {
	width: calc(100% - 80px);
	padding-left: 15px;
}

.working-process .img-box {
	text-align: center;
	position: relative;
}

.working-process .img-box img {
	width: 300px;
}

.working-process .img-box video {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 38px;
}

.rtl .working-process .process-box .text-box {
	padding-left: 0;
	padding-right: 15px;
}

.plan-section {
	padding: 100px 0;
	background: var(--bgLight);
}

.plan-section .plan-box {
	position: relative;
	background: var(--white);
	overflow: hidden;
	border-radius: 5px;
	box-shadow: var(--shadow);
}

.plan-section .plan-box h1 span {
	font-size: 16px;
	color: var(--fontColor);
	font-family: "Jost", sans-serif;
	font-weight: 400 !important;
}

.plan-section .plan-box .top-area {
	padding: 30px;
}

.plan-section .plan-box ul {
	padding-left: 0;
	list-style: none;
}

.plan-section .plan-box ul li {
	margin-bottom: 15px;
	border-bottom: 1px solid var(--bgLight);
	padding: 0 30px 15px 30px;
}

.plan-section .plan-box ul li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.plan-section .plan-box ul li i {
	color: var(--primary);
	margin: 0 5px;
	font-size: 16px;
}

.plan-section .plan-box .feature {
	background: var(--primary);
	color: var(--white);
	position: absolute;
	right: -15px;
	top: 38px;
	transform: rotate(-90deg);
	text-transform: uppercase;
	font-size: 14px;
	width: 120px;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
	border-bottom-left-radius: 50px;
	border-top-left-radius: 50px;
}

.plan-section .plan-box .btn-custom {
	border-radius: 0;
	height: 60px;
	padding: 22px 0;
}

.rtl .plan-section .plan-box .feature {
	right: auto;
	left: -15px;
}

.testimonial-section {
	padding: 100px 0;
	background: var(--white);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.testimonial-section:after {
	content: "";
	height: 700px;
	width: 700px;
	position: absolute;
	z-index: 0;
	top: 200px;
	left: -400px;
	border-radius: 50%;
	border: solid 150px var(--bgLight);
	z-index: -1;
}

.testimonial-section .header-text {
	width: 372px;
}

.testimonial-section .header-text h2,
.testimonial-section .header-text h3 {
	line-height: 1.4;
}

.testimonial-section .review-box {
	background: var(--white);
	box-shadow: var(--shadow);
	padding: 30px;
	border-radius: 10px;
}

.testimonial-section .review-box .user-box {
	margin-top: 30px;
	display: flex;
	align-items: center;
}

.testimonial-section .review-box .user-box .img {
	width: 80px;
}

.testimonial-section .review-box .user-box .text {
	width: calc(100% - 80px);
	padding-left: 15px;
}

.testimonial-section .review-box .user-box .title {
	font-size: 14px;
}

.testimonial-section .review-box .user-box .organization {
	color: var(--primary);
}

.testimonial-section .review-box .user-box h5 {
	margin-bottom: 10px;
}

.testimonial-section .review-box p {
	font-style: italic;
}

.testimonial-section .review-box .rating {
	margin-bottom: 20px;
}

.testimonial-section .review-box .rating i {
	color: var(--gold);
}

.testimonial-section .review-box img {
	width: 80px;
	height: 80px;
	border-radius: 80px;
	border: 6px solid var(--bgLight);
}

.testimonial-section .testimonials {
	position: relative;
}

.testimonial-section .owl-nav {
	position: absolute;
	width: auto;
	justify-content: space-between;
	display: flex !important;
	left: -438px;
	bottom: 100px;
}

.testimonial-section .owl-nav .owl-next,
.testimonial-section .owl-nav .owl-prev {
	background: var(--primary) !important;
	width: 45px;
	height: 45px;
	border-radius: 100px;
	color: var(--white) !important;
	box-shadow: var(--shadow);
	margin-right: 15px;
	transition: 0.4s;
}

.testimonial-section .owl-nav .owl-next:hover,
.testimonial-section .owl-nav .owl-prev:hover {
	background: var(--primary) !important;
	color: var(--white) !important;
}

.testimonial-section .owl-nav .owl-next span,
.testimonial-section .owl-nav .owl-prev span {
	position: relative;
	top: -2px;
}

.testimonial-section .owl-nav .owl-next {
	margin-right: 0;
}

.testimonial-section .owl-carousel .owl-item {
	padding: 15px;
}

.testimonial-section .owl-dots {
	display: none;
	text-align: center;
}

.testimonial-section .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	background: var(--borderColor);
	margin: 0 5px;
	border-radius: 10px;
	transition: 0.4s;
}

.testimonial-section .owl-dots .owl-dot.active {
	background: var(--primary);
	width: 20px;
}

.rtl .testimonial-section .testimonials {
	direction: ltr;
}

.rtl .testimonial-section .testimonials .review-box {
	direction: rtl;
}

.rtl .testimonial-section .testimonials .review-box .user-box .text {
	padding-left: 0;
	padding-right: 15px;
}

.rtl .testimonial-section .owl-nav {
	left: auto;
	right: -438px;
}

.blog-section {
	background: var(--bgLight);
	padding: 100px 0;
}

.blog-section .blog-box {
	overflow: hidden;
	height: 100%;
}

.blog-section .blog-box .img-box img {
	z-index: 0;
	width: 100%;
	border-radius: 5px;
}

.blog-section .blog-box .title {
	font-family: "Lato", sans-serif;
	color: var(--black);
	font-size: 18px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 10px;
	transition: 0.4s;
}

.blog-section .blog-box .title:hover {
	color: var(--primary);
}

.blog-section .blog-box .date-author {
	color: var(--primary);
	margin-bottom: 15px;
}

.blog-section .blog-box .read-more {
	color: var(--fontColor);
	text-transform: capitalize;
	font-weight: 500;
	transition: 0.3s;
}

.blog-section .blog-box .read-more i {
	font-size: 14px;
	position: relative;
	top: 2px;
	left: 0;
	transition: 0.2s;
}

.blog-section .blog-box .read-more:hover {
	color: var(--primary);
}

.blog-section .blog-box .read-more:hover i {
	left: 5px;
	color: var(--primary);
}

.blog-section .blog-box .text-box {
	position: relative;
	padding-top: 20px;
}

.blog-page {
	background: var(--white);
}

.rtl .blog-section .blog-box .date {
	right: auto;
	left: 30px;
}

.rtl .blog-section .blog-box .read-more i {
	transform: rotate(180deg);
	top: -1px;
}

.blog-details {
	padding: 100px 0;
	background: var(--white);
}

.blog-details .blog-box {
	margin-bottom: 50px;
	border-radius: 5px;
	background: var(--white);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.blog-details .blog-box .text-box {
	position: relative;
	padding: 20px;
}

.blog-details .blog-box .title {
	font-family: "Lato", sans-serif;
	color: var(--black);
	font-size: 24px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 15px;
}

.blog-details .blog-box .date-author {
	color: var(--primary);
	margin-bottom: 15px;
}

.blog-details .blog-box .special-quote {
	background: var(--bgLight);
	padding: 15px;
	margin-bottom: 15px;
	border-left: 3px solid var(--primary);
	font-style: italic;
	color: var(--black);
}

.blog-details #shareBlock {
	margin-bottom: 50px;
	background: var(--white);
	font-size: 24px;
	font-family: "Jost", sans-serif;
	color: var(--black);
	border-radius: 20px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	font-weight: 600;
}

.blog-details #shareBlock h4 {
	margin-bottom: 0;
	font-family: "Jost", sans-serif;
}

.blog-details #shareBlock .btn {
	background: none;
	border: none;
	padding: 5px 8px;
}

.blog-details #shareBlock .btn i {
	font-size: 20px;
}

.blog-details .side-bar .side-box {
	background: var(--white);
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 5px;
	box-shadow: var(--shadow);
}

.blog-details .side-bar .side-box h4 {
	text-transform: capitalize;
	margin-bottom: 20px;
}

.blog-details .side-bar .side-box .links {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

.blog-details .side-bar .side-box .links li {
	margin-bottom: 10px;
	border-bottom: 1px solid var(--borderColor);
	padding-bottom: 10px;
}

.blog-details .side-bar .side-box .links li a {
	color: var(--fontColor);
	text-transform: capitalize;
	transition: 0.4s;
}

.blog-details .side-bar .side-box .links li a:hover {
	color: var(--primary);
}

.blog-details .side-bar .side-box .links li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.blog-details .side-bar .side-box .tag-item label {
	background: var(--bgLight);
	margin: 0 10px 10px 0;
	font-size: 16px;
	text-transform: capitalize;
	color: var(--fontColor);
	border: 1px solid var(--bgLight);
	border-radius: 3px;
}

.blog-details .side-bar .side-box .tag-item .btn-check:checked + .btn-primary {
	background: var(--primary) !important;
	color: #fff;
	border: 1px solid var(--primary);
}

.blog-details .side-bar .side-box .tag-item .btn-check:focus + .btn-primary,
.blog-details .side-bar .side-box .tag-item .btn-primary:focus {
	color: #fff;
	background-color: #fff;
	border-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.blog-details .side-bar .side-box .blog-box {
	display: flex;
	margin-bottom: 30px;
	padding: 0;
	box-shadow: none;
}

.blog-details .side-bar .side-box .blog-box .title {
	font-family: "Lato", sans-serif;
	color: var(--black);
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 15px;
	transition: 0.4s;
}

.blog-details .side-bar .side-box .blog-box .title:hover {
	color: var(--primary);
}

.blog-details .side-bar .side-box .blog-box .date {
	display: block;
	font-size: 14px;
	text-transform: capitalize;
	color: var(--primary);
	margin-bottom: 5px;
}

.blog-details .side-bar .side-box .blog-box .img-box img {
	height: 80px;
	width: 120px;
	border-radius: 5px;
}

.blog-details .side-bar .side-box .blog-box .img-box .category {
	top: 10px;
	right: 10px;
}

.blog-details .side-bar .side-box .blog-box .text-box {
	width: calc(100% - 120px);
	overflow: hidden;
	padding: 0;
	padding-left: 15px;
}

.blog-details .side-bar .side-box .blog-box .text-box .date-author {
	margin-top: 0;
}

.blog-details .side-bar .side-box .blog-box .text-box a {
	margin-bottom: 0;
}

.blog-details .side-bar .side-box .blog-box:last-child {
	margin-bottom: 0;
}

.blog-details .side-bar .search-box {
	padding: 0;
	background: none;
	box-shadow: none;
	margin-bottom: 40px;
}

.blog-details .side-bar .input-group {
	max-width: 100%;
}

.blog-details .side-bar .input-group .form-control {
	border: none;
	height: 54px;
	font-size: 16px;
	padding: 20px;
	box-shadow: var(--shadow);
	background: var(--white);
	caret-color: var(--primary);
	border: 1px solid var(--white);
	border-radius: 5px !important;
	transition: 0.4s;
}

.blog-details .side-bar .input-group .form-control:focus {
	color: var(--fontColor);
	background-color: var(--white);
	border-color: var(--primary);
	outline: 0;
	box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.blog-details .side-bar .input-group .form-control::-moz-placeholder {
	text-transform: capitalize;
}

.blog-details .side-bar .input-group .form-control:-ms-input-placeholder {
	text-transform: capitalize;
}

.blog-details .side-bar .input-group .form-control::placeholder {
	text-transform: capitalize;
}

.blog-details .side-bar .input-group button {
	height: 46px;
	width: 46px;
	background: var(--primary);
	border-radius: 5px;
	position: absolute;
	right: 4px;
	top: 4px;
	transition: 0.4s;
	border-top-left-radius: 5px !important;
	border-bottom-left-radius: 5px !important;
	z-index: 4;
}

.blog-details .side-bar .input-group button i {
	font-size: 16px;
	color: var(--white);
}

.rtl .blog-details .side-bar .side-box h5 {
	padding-left: 0;
	padding-right: 15px;
}

.rtl .blog-details .side-bar .side-box h5::before {
	left: auto;
	right: 0;
}

.rtl .blog-details .side-bar .side-box .blog-box .text-box {
	padding-left: 0;
	padding-right: 15px;
}

.rtl .blog-details .side-bar .input-group button {
	right: auto;
	left: 2px;
	border-top-left-radius: 5px !important;
	border-bottom-left-radius: 5px !important;
}

.rtl .blog-details .side-bar .side-box .tag-item label {
	background: var(--bgLight);
	margin: 0 0 10px 10px;
	font-size: 16px;
	text-transform: capitalize;
	color: var(--fontColor);
	border: 1px solid var(--bgLight);
	border-radius: 3px;
}

.rtl .blog-details .blog-box .special-quote {
	border-left: none;
	border-right: 2px solid var(--primary);
}

.qr-code-section {
	padding: 100px 0;
}

.qr-code-section .qr-box {
	margin-top: 30px;
	width: 150px;
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: 5px;
	margin-right: 15px;
}

.qr-code-section .qr-box img {
	width: 100%;
	height: 100%;
}

.qr-code-section .img-box {
	position: relative;
	width: 100%;
	height: 100%;
}

.qr-code-section .img-box .img-1 {
	width: 300px;
	float: right;
}

.qr-code-section .header-text {
	margin-bottom: 30px;
}

.faq-section {
	padding: 100px 0;
	overflow-x: hidden;
	background: var(--white);
}

.faq-section .accordion-item {
	background: var(--white);
	box-shadow: var(--shadow);
	margin-bottom: 25px;
	border-radius: 5px;
	border: none;
}

.faq-section .accordion-button {
	background: var(--white);
	border: none;
	border-radius: 5px !important;
	padding-left: 0;
	font-size: 18px;
	font-weight: 500;
	padding: 30px;
	padding-right: 70px;
	font-family: "Jost", sans-serif;
	color: var(--black);
	cursor: pointer;
	transition: 0.4s;
}

.faq-section .accordion-button:focus {
	z-index: 3;
	border-color: var(--borderColor);
	outline: 0;
	box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.faq-section .accordion-button::after {
	border-radius: 5px;
	background-image: url(../images/plus.png) !important;
	background-size: contain;
	position: absolute;
	right: 25px;
	height: 16px;
	width: 16px;
	background-position: center;
}

.faq-section .accordion-body {
	padding: 30px;
	padding-top: 0;
	border-radius: 5px;
}

.faq-section .accordion-button:not(.collapsed) {
	box-shadow: none;
	color: var(--primary);
}

.faq-section .accordion-button:not(.collapsed)::after {
	background-image: url(../images/minus.png);
}

.rtl .faq-section .accordion-button {
	padding-right: 30px;
	padding-left: 70px;
	text-align: right;
}

.rtl .faq-section .accordion-button::after {
	right: auto;
	left: 25px;
}

.contact-section {
	padding: 100px 0;
	background: var(--white);
}

.contact-section .info-wrapper {
	margin-bottom: 100px;
}

.contact-section .info-box {
	background: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 50px 30px;
	height: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.contact-section .info-box:after {
	content: "";
	height: 300px;
	width: 300px;
	position: absolute;
	z-index: 0;
	top: -200px;
	left: -100px;
	border-radius: 50%;
	border: solid 50px var(--bgLight);
	z-index: -1;
}

.contact-section .info-box .icon img {
	width: 48px;
	margin-bottom: 30px;
}

.contact-section .info-box .text p {
	margin-bottom: 0;
}

.contact-section .info-box .text h4 {
	margin-bottom: 10px;
}

.contact-section form .input-box label {
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.contact-section form .input-box .form-select,
.contact-section form .input-box .form-control {
	height: 50px;
	border-radius: 5px;
	background-color: var(--bgLight);
	border: 1px solid var(--bgLight);
	padding: 8px;
	padding-left: 15px;
	font-weight: normal;
	caret-color: var(--primary);
	color: var(--fontColor);
}

.contact-section form .input-box .form-select:focus,
.contact-section form .input-box .form-control:focus {
	color: var(--fontColor);
	box-shadow: 0 0 0 0rem var(--white);
	border: 1px solid var(--primary);
}

.contact-section form .input-box .form-select::-moz-placeholder, .contact-section form .input-box .form-control::-moz-placeholder {
	color: var(--fontColor);
}

.contact-section form .input-box .form-select:-ms-input-placeholder, .contact-section form .input-box .form-control:-ms-input-placeholder {
	color: var(--fontColor);
}

.contact-section form .input-box .form-select::placeholder,
.contact-section form .input-box .form-control::placeholder {
	color: var(--fontColor);
}

.contact-section form .input-box .form-select {
	background-image: url(../images/downward-arrow.png);
}

.contact-section form .input-box .form-select option {
	background: var(--white);
	color: var(--fontColor);
}

.contact-section form .input-box textarea.form-control {
	height: 150px;
	border-radius: 5px;
}

.contact-section .social-links a {
	background: var(--primary);
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 100px;
	padding-top: 8px;
	margin-right: 10px;
	text-align: center;
	color: var(--white);
}

.contact-section .social-links a i {
	font-size: 13px;
}

.rtl .contact-section .contact-info .info-box img {
	margin-right: 0;
	margin-left: 15px;
}

.banner-section {
	background: var(--bgLight);
	padding: 170px 0 90px 0;
	position: relative;
	z-index: 1;
}

.banner-section::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.banner-section h3 {
	text-transform: capitalize;
	color: var(--secondary);
}

.banner-section .breadcrumb-item {
	color: var(--secondary);
	transition: 0.4s;
	text-transform: capitalize;
}

.banner-section .breadcrumb-item:hover, .banner-section .breadcrumb-item.active {
	color: var(--primary);
}

.banner-section .breadcrumb-item:hover a, .banner-section .breadcrumb-item.active a {
	color: var(--primary);
	transition: 0.4s;
}

.banner-section .breadcrumb-item a {
	color: var(--secondary);
}

.banner-section .breadcrumb-item + .breadcrumb-item::before {
	float: left;
	padding-right: 0.5rem;
	color: var(--secondary);
	content: var(--bs-breadcrumb-divider, "-");
}

.rtl .banner-section::before {
	transform: rotateY(180deg);
}

.rtl .banner-section .breadcrumb-item + .breadcrumb-item::before {
	float: right;
	padding: 0 0.5rem;
	content: var(--bs-breadcrumb-divider, "-");
}

.login-section {
	padding: 100px 0;
	position: relative;
}

.login-section form {
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: 10px;
	padding: 50px;
	z-index: 1;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.login-section form:after {
	content: "";
	height: 300px;
	width: 350px;
	position: absolute;
	bottom: -200px;
	right: -150px;
	border-radius: 50%;
	border: solid 50px var(--bgLight);
	z-index: -1;
}

.login-section form h3 {
	text-transform: capitalize;
	margin-bottom: 0;
}

.login-section form .input-box label {
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.login-section form .input-box .form-select,
.login-section form .input-box .form-control {
	height: 55px;
	border-radius: 5px;
	background-color: var(--bgLight);
	border: 1px solid var(--bgLight);
	padding: 10px 15px;
	font-weight: normal;
	font-size: 16px;
	caret-color: var(--primary);
	color: var(--fontColor);
}

.login-section form .input-box .form-select:focus,
.login-section form .input-box .form-control:focus {
	color: var(--fontColor);
	box-shadow: 0 0 0 0rem var(--white);
	border: 1px solid var(--primary);
}

.login-section form .input-box .form-select::-moz-placeholder, .login-section form .input-box .form-control::-moz-placeholder {
	color: var(--fontColor);
}

.login-section form .input-box .form-select:-ms-input-placeholder, .login-section form .input-box .form-control:-ms-input-placeholder {
	color: var(--fontColor);
}

.login-section form .input-box .form-select::placeholder,
.login-section form .input-box .form-control::placeholder {
	color: var(--fontColor);
}

.login-section form .input-box .form-select {
	background-image: url(../images/downward-arrow.png);
}

.login-section form .input-box .form-select option {
	background: var(--white);
	color: var(--black);
}

.login-section form .input-box textarea.form-control {
	height: 150px;
	border-radius: 10px;
}

.login-section form .links {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.login-section form .links a {
	color: var(--primary);
}

.login-section form .links a:hover {
	color: var(--primary);
}

.login-section form .bottom {
	margin-top: 20px;
	color: var(--fontColor);
}

.login-section form .bottom a {
	color: var(--primary);
}

.login-section form .bottom a:hover {
	color: var(--primary);
}

.pagination {
	font-size: 14px;
	margin-top: 50px;
}

.pagination .page-link {
	color: var(--fontColor);
	font-family: "Jost", sans-serif;
	font-size: 14px;
	background: var(--white);
	border: 1px solid var(--white);
	box-shadow: var(--shadow);
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination .page-link i {
	font-size: 16px;
	padding-top: 2px;
}

.pagination .page-item {
	margin: 0 5px;
}

.pagination .page-item.disabled .page-link,
.pagination .page-item.disabled:hover .page-link {
	background: var(--white);
	border-color: var(--white);
	color: var(--fontColor);
}

.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.pagination .page-link:focus {
	box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
	border-radius: 50px;
}

.rtl .pagination .page-link i {
	transform: rotate(180deg);
}

.footer-section {
	background-color: var(--bgLight);
	position: relative;
	padding-top: 100px;
	z-index: 1;
}

.footer-section .navbar-brand {
	margin-bottom: 20px;
	display: inline-block;
}

.footer-section .navbar-brand img {
	width: 140px;
}

.footer-section .footer-box {
	color: var(--fontColor);
}

.footer-section .footer-box .company-bio {
	color: var(--fontColor);
	margin-bottom: 30px;
}

.footer-section .footer-box img {
	border-radius: 5px;
}

.footer-section ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	max-width: 250px;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: var(--fontColor);
	transition: 0.4s;
}

.footer-section ul li a:hover {
	color: var(--primary);
}

.footer-section ul li i {
	display: inline-block;
	width: 20px;
	color: var(--primary);
}

.footer-section h4 {
	text-transform: capitalize;
	color: var(--black);
	position: relative;
	display: inline-block;
	padding-left: 15px;
	font-size: 18px;
	position: relative;
	margin-bottom: 30px;
	margin-top: 18px;
}

.footer-section h4::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 8px;
	position: absolute;
	left: 0;
	top: 10px;
	background: var(--primary);
}

.footer-section .social-links a {
	background: var(--primary);
	display: inline-block;
	width: 35px;
	height: 35px;
	border-radius: 50px;
	padding-top: 5px;
	margin-right: 5px;
	text-align: center;
	color: var(--white);
}

.footer-section .social-links a i {
	font-size: 13px;
}

.footer-section .social-links a.facebook {
	background: #3b5998;
}

.footer-section .social-links a.twitter {
	background: #55acee;
}

.footer-section .social-links a.linkedin {
	background: #1565c0;
}

.footer-section .social-links a.youtube {
	background: #d71e18;
}

.footer-section .input-group {
	max-width: 250px;
}

.footer-section .input-group .form-control {
	border: none;
	height: 50px;
	font-size: 16px;
	padding: 15px;
	background: var(--white);
	caret-color: var(--primary);
	border: 1px solid var(--white);
	border-radius: 5px !important;
	transition: 0.4s;
}

.footer-section .input-group .form-control:focus {
	color: var(--fontColor);
	background-color: var(--white);
	border-color: var(--white);
	outline: 0;
	box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.footer-section .input-group .form-control::-moz-placeholder {
	text-transform: capitalize;
}

.footer-section .input-group .form-control:-ms-input-placeholder {
	text-transform: capitalize;
}

.footer-section .input-group .form-control::placeholder {
	text-transform: capitalize;
}

.footer-section .input-group button {
	height: 42px;
	width: 42px;
	position: absolute;
	background: var(--white);
	color: var(--primary);
	right: 4px;
	top: 4px;
	transition: 0.4s;
	border-top-left-radius: 5px !important;
	border-bottom-left-radius: 5px !important;
	border-radius: 50px !important;
	z-index: 4;
}

.footer-section .input-group button i {
	font-size: 16px;
}

.footer-section .copyright {
	margin-top: 50px;
	padding: 25px 0;
	border-top: 1px solid var(--borderColor);
	color: var(--fontColor);
}

.footer-section .copyright a {
	color: var(--primary);
	margin: 0 7.5px;
	font-size: 16px;
	transition: 0.4s;
}

.footer-section .copyright a:hover {
	color: var(--primary);
}

.rtl .footer-section .navbar-brand {
	margin-right: 0;
}

.rtl .footer-section .social-links a {
	margin-right: 0;
	margin-left: 10px;
}

.rtl .footer-section h4 {
	padding-left: 0;
	padding-right: 15px;
}

.rtl .footer-section h4::before {
	left: auto;
	right: 0;
}

.rtl .footer-section .input-group button {
	right: auto;
	left: 4px;
}

.scroll-up {
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 12;
}

.scroll-up span {
	height: 45px;
	width: 45px;
	background: var(--primary);
	box-shadow: var(--shadow);
	border-radius: 100px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-up i {
	color: #fff;
}

.rtl .scroll-up {
	right: auto;
	left: 50px;
}

.search-bar {
	background: var(--white);
	background-size: cover;
	box-shadow: var(--shadow2);
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.search-bar form .input-box label {
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.search-bar form .input-box .form-select,
.search-bar form .input-box .form-control {
	height: 50px;
	border-radius: 5px;
	background-color: var(--bgLight);
	border: 2px solid var(--bgLight);
	padding: 10px 15px;
	font-weight: normal;
	font-size: 16px;
	caret-color: var(--primary);
	color: var(--fontColor);
}

.search-bar form .input-box .form-select:focus,
.search-bar form .input-box .form-control:focus {
	color: var(--fontColor);
	box-shadow: 0 0 0 0rem var(--white);
	border: 2px solid var(--primary);
}

.search-bar form .input-box .form-select::-moz-placeholder, .search-bar form .input-box .form-control::-moz-placeholder {
	color: var(--fontColor);
}

.search-bar form .input-box .form-select:-ms-input-placeholder, .search-bar form .input-box .form-control:-ms-input-placeholder {
	color: var(--fontColor);
}

.search-bar form .input-box .form-select::placeholder,
.search-bar form .input-box .form-control::placeholder {
	color: var(--fontColor);
}

.search-bar form .input-box .form-select {
	background-image: url(../images/downward-arrow.png);
}

.search-bar form .input-box .form-select option {
	background: var(--white);
	color: var(--fontColor);
}

.search-bar form .input-box textarea.form-control {
	height: 150px;
	border-radius: 0;
}

.search-bar .btn-custom {
	height: 50px;
	background: var(--primary);
}

.dashboard-wrapper {
	display: flex;
	width: 100%;
	align-items: stretch;
	overflow: hidden;
}

#sidebar {
	background: var(--white);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	position: fixed;
	width: 300px;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1031;
	transition: 0.4s;
}

#sidebar.active {
	left: -310px;
}

#sidebar::-webkit-scrollbar {
	width: 5px;
	height: 100%;
}

#sidebar::-webkit-scrollbar-track {
	background: var(--white);
}

#sidebar::-webkit-scrollbar-thumb {
	background: var(--borderColor);
	border-radius: 3px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

#sidebar::-webkit-scrollbar-thumb:hover {
	background: var(--primary);
}

#sidebar .sidebar-top {
	padding: 15px 20px;
	border-bottom: 1px solid var(--borderColor);
	position: relative;
}

#sidebar .sidebar-top .navbar-brand img {
	width: 180px;
}

#sidebar .sidebar-top .sidebar-toggler {
	position: absolute;
	right: 20px;
	top: 15px;
	background: var(--primary);
	color: var(--white);
	width: 35px;
	height: 35px;
	border-radius: 50px;
}

#sidebar .sidebar-top .sidebar-toggler i {
	font-size: 16px;
}

#sidebar .sidebar-top .sidebar-toggler:focus {
	box-shadow: 0 0 0 0rem;
}

#sidebar ul.main {
	margin-top: 20px;
	max-height: 89vh;
}

#sidebar ul.main::-webkit-scrollbar {
	width: 5px;
	height: 100%;
}

#sidebar ul.main::-webkit-scrollbar-track {
	background: var(--white);
}

#sidebar ul.main::-webkit-scrollbar-thumb {
	background: var(--borderColor);
	border-radius: 3px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

#sidebar ul.main::-webkit-scrollbar-thumb:hover {
	background: var(--primary);
}

#sidebar ul {
	list-style: none;
	padding-left: 0;
	padding: 20px;
	padding-top: 0;
	overflow-y: auto;
}

#sidebar ul li {
	margin-bottom: 10px;
}

#sidebar ul li a {
	position: relative;
	color: var(--fontColor);
	text-transform: capitalize;
	font-weight: 500;
	width: 100%;
	display: block;
	border-radius: 50px;
	padding: 10px 15px 10px 20px;
	font-family: "Jost", sans-serif;
	font-size: 16px;
	transition: 0.4s;
}

#sidebar ul li a i {
	width: 30px;
	text-align: left;
	position: relative;
	color: var(--primary);
	top: 0;
	transition: 0.4s;
}

#sidebar ul li a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 96%;
	border-radius: 10px;
	background: var(--primary);
	top: 0;
	bottom: 0;
	left: -24px;
	margin: auto;
	transition: 0.4s;
}

#sidebar ul li a.active, #sidebar ul li a:hover {
	background: var(--primary);
	color: var(--white);
}

#sidebar ul li a.active i, #sidebar ul li a:hover i {
	color: var(--white);
}

#sidebar ul li a.active::before, #sidebar ul li a:hover::before {
	width: 8px;
}

#sidebar .dropdownCollapsible ul {
	height: 100%;
	padding: 0;
	overflow: initial;
	background: var(--bgLight);
	margin-top: 10px;
	margin-left: 20px;
	border-radius: 22px;
}

#sidebar .dropdownCollapsible ul li a::before {
	width: 0;
}

.rtl #sidebar {
	left: auto;
	right: 0;
}

.rtl #sidebar.active {
	right: -310px;
}

.rtl #sidebar ul li a i {
	text-align: right;
}

.rtl #sidebar ul li a::before {
	left: auto;
	right: -24px;
}

.rtl #sidebar .sidebar-top .sidebar-toggler {
	right: auto;
	left: 20px;
}

.rtl #sidebar .wallet-box h5 span {
	float: left;
}

.rtl #sidebar .wallet-box .tag {
	right: auto;
	left: 20px;
}

.rtl #sidebar .wallet-box ul li span {
	float: left;
}

#content {
	width: calc(100% - 300px);
	margin-left: auto;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	transition: 0.4s;
}

#content .overlay {
	background: var(--bgLight);
	padding: 15px 0;
	min-height: 100vh;
}

#content.active {
	width: 100% !important;
}

#content .dashboard-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

#content .dashboard-heading h2,
#content .dashboard-heading h3 {
	margin-bottom: 0;
	text-transform: capitalize;
	font-size: 36px;
}

#content .dashboard-heading .btn-custom {
	width: auto;
	height: auto;
	padding: 15px 20px;
}

#content .navbar {
	background: var(--white);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	padding: 10px;
	height: 80px;
	margin: 15px 20px;
	border-radius: 10px;
}

#content .navbar .navbar-brand {
	display: none;
}

#content .navbar .sidebar-toggler {
	position: relative;
	background: var(--primary);
	color: var(--white);
	width: 40px;
	height: 40px;
	border-radius: 50px;
}

#content .navbar .sidebar-toggler i {
	font-size: 16px;
}

#content .navbar .sidebar-toggler:focus {
	box-shadow: 0 0 0 0rem;
}

#content .navbar .navbar-text {
	display: flex;
}

#content .navbar .navbar-text .btn-custom {
	width: 120px;
	height: 40px;
	padding: 9px;
}

#content .navbar .profile {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

#content .navbar .profile img {
	width: 40px;
	height: 40px;
	border-radius: 100px;
}

#content .navbar .user-panel {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 0;
}

#content .navbar .user-panel:hover .user-dropdown {
	opacity: 1;
	visibility: visible;
	top: 54px;
}

#content .navbar .user-panel .user-dropdown {
	background: var(--white);
	width: 200px;
	overflow: hidden;
	padding-top: 0;
	padding-left: 0;
	position: absolute;
	right: 0;
	top: 64px;
	border-radius: 5px;
	visibility: hidden;
	transition: 0.4s;
	opacity: 0;
	z-index: 3;
}

#content .navbar .user-panel .user-dropdown li {
	border-bottom: 1px solid var(--bgLight);
	list-style: none;
}

#content .navbar .user-panel .user-dropdown li a {
	background: var(--white);
	color: var(--fontColor);
	font-size: 14px;
	font-weight: 400;
	padding: 10px;
	display: flex;
	transform: 0.4s;
}

#content .navbar .user-panel .user-dropdown li a:active, #content .navbar .user-panel .user-dropdown li a:focus, #content .navbar .user-panel .user-dropdown li a:hover {
	background: var(--bgLight);
}

#content .navbar .user-panel .user-dropdown li a i {
	color: var(--primary);
	margin: 0 5px;
	margin-top: -2px;
	font-size: 15px;
}

#content .navbar .notification-panel {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 0px 0;
}

#content .navbar .notification-panel:hover .notification-dropdown {
	visibility: visible;
	opacity: 1;
	top: 54px;
}

#content .navbar .notification-panel .dropdown-toggle {
	width: 40px;
	height: 40px;
	border-radius: 2px;
	position: relative;
	margin-right: 15px;
	padding-top: 4px;
}

#content .navbar .notification-panel .dropdown-toggle i {
	color: var(--primary);
	font-size: 24px;
}

#content .navbar .notification-panel .dropdown-toggle::after {
	display: none;
}

#content .navbar .notification-panel .dropdown-toggle .count {
	background: var(--primary);
	min-width: 18px;
	height: 18px;
	border-radius: 50px;
	color: var(--white);
	position: absolute;
	top: 1px;
	right: 1px;
	font-size: 11px;
	font-weight: 400;
	padding-top: 1px;
}

#content .navbar .notification-panel .dropdown-box {
	overflow-y: scroll;
	width: 100%;
	height: 100%;
	max-height: 278px;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar {
	width: 0;
	height: 100%;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-track {
	background: var(--black);
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb {
	background: var(--black);
	border-radius: 5px;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
	background: var(--primary);
}

#content .navbar .notification-panel .notification-dropdown {
	background: var(--white);
	box-shadow: var(--shadow);
	width: 290px;
	max-height: 324px;
	overflow: hidden;
	padding-bottom: 40px;
	padding-top: 0;
	padding-left: 0;
	position: absolute;
	right: -40px;
	top: 64px;
	border-radius: 5px;
	visibility: hidden;
	transition: 0.4s;
	opacity: 0;
	z-index: 10;
}

#content .navbar .notification-panel .notification-dropdown li {
	border-bottom: 1px solid var(--bgLight);
}

#content .navbar .notification-panel .notification-dropdown li a {
	padding: 10px 10px 10px 15px;
	display: flex;
	color: var(--fontColor);
	white-space: normal;
	transition: 0.4s;
}

#content .navbar .notification-panel .notification-dropdown li a:active, #content .navbar .notification-panel .notification-dropdown li a:focus, #content .navbar .notification-panel .notification-dropdown li a:hover {
	background: var(--bgLight);
}

#content .navbar .notification-panel .notification-dropdown li a i {
	background: var(--primary);
	border-radius: 2px;
	margin-top: 5px;
	padding: 4px;
	width: 30px;
	height: 30px;
	text-align: center;
	margin-right: 10px;
	color: var(--white);
	font-size: 16px;
}

#content .navbar .notification-panel .notification-dropdown li a .text {
	width: calc(100% - 40px);
}

#content .navbar .notification-panel .notification-dropdown li a .text p {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 5px;
}

#content .navbar .notification-panel .notification-dropdown li a .text .time {
	font-size: 12px;
	font-weight: 500;
	color: var(--primary);
}

#content .navbar .notification-panel .notification-dropdown .clear-all {
	background: var(--white);
	font-weight: 600;
	font-size: 14px;
	text-transform: capitalize;
	border-top: 1px solid var(--bgLight);
	text-align: center;
	padding: 10px 10px 11px 15px;
	position: absolute;
	bottom: 0;
	left: 0;
}

#content .navbar .notification-panel .notification-dropdown .clear-all a {
	color: var(--primary);
	transition: 0.4s;
}

#content .navbar .notification-panel .notification-dropdown .clear-all a:hover {
	color: var(--primary);
}

#content .main {
	padding: 8px;
}

#content .dashboard-box-wrapper .box:nth-child(1) .dashboard-box i {
	color: #ff6379;
}

#content .dashboard-box-wrapper .box:nth-child(2) .dashboard-box i {
	color: #ffce00;
}

#content .dashboard-box-wrapper .box:nth-child(3) .dashboard-box i {
	color: #59c8ff;
}

#content .dashboard-box-wrapper .box:nth-child(4) .dashboard-box i {
	color: var(--primary);
}

#content .dashboard-box {
	background-color: var(--white);
	box-shadow: var(--shadow2);
	position: relative;
	border-radius: 10px;
	padding: 30px;
	z-index: 1;
}

#content .dashboard-box::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	background-size: contain;
	background-position: bottom right;
	background-repeat: no-repeat;
	z-index: -1;
}

#content .dashboard-box h3 {
	margin-bottom: 0;
	font-size: 36px;
}

#content .dashboard-box i {
	font-size: 32px;
	color: var(--primary);
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	margin: auto;
}

#content .table-responsive {
	box-shadow: var(--shadow2);
	border-radius: 10px;
}

#content .table {
	color: var(--fontColor);
	background: var(--white);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	margin-bottom: 0;
	border-radius: 10px;
}

#content .table tbody > tr:nth-of-type(even) > * {
	--bs-table-accent-bg: var(--white);
	color: var(--fontColor);
}

#content .table tbody > tr:nth-of-type(odd) > * {
	--bs-table-accent-bg: var(--white);
	color: var(--fontColor);
}

#content .table thead {
	background: var(--primary);
	background: var(--bgLight);
	color: var(--black);
	font-weight: 600;
	text-transform: capitalize;
}

#content .table tbody {
	border: none;
}

#content .table tr {
	border: none;
}

#content .table tr th {
	font-weight: 600;
	border: none !important;
	vertical-align: middle;
	padding: 15px 20px;
	font-size: 16px;
}

#content .table tr th:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

#content .table tr th:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

#content .table tr td {
	padding: 20px;
	color: var(--fontColor);
	vertical-align: middle;
	border: none !important;
	border-bottom: 1px solid var(--bgLight) !important;
	margin: 5px !important;
	font-size: 16px;
}

#content .table tr td span.currency {
	display: flex;
}

#content .table tr td span.currency img {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

#content .table tr td:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

#content .table tr td:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

#content .table .sidebar-dropdown-items .dropdown-menu {
	border-radius: 5px;
	background: var(--white);
	border: none;
	box-shadow: var(--shadow2);
}

#content .table .sidebar-dropdown-items .dropdown-item {
	color: var(--fontColor);
}

#content .table .sidebar-dropdown-items .dropdown-item:hover,
#content .table .sidebar-dropdown-items .dropdown-item:active {
	color: var(--white);
	text-decoration: none;
	background-color: var(--primary);
}

#content .table .sidebar-dropdown-items .dropdown-item:hover i,
#content .table .sidebar-dropdown-items .dropdown-item:active i {
	color: var(--white);
}

#content .table .sidebar-dropdown-items .dropdown-item i {
	color: var(--primary);
	width: 22px;
}

#content .table .sidebar-dropdown-items .dropdown-toggle {
	background: var(--primary);
	height: 30px;
	width: 30px;
	border-radius: 50px;
	color: var(--white);
	position: relative;
	padding: 0px;
	transition: 0.4s;
}

#content .table .sidebar-dropdown-items .dropdown-toggle::after {
	display: none;
}

.rtl #content {
	margin-left: 0;
	margin-right: auto;
}

.rtl #content .navbar .navbar-brand {
	margin-right: 0;
}

.rtl #content .navbar .notification-panel .dropdown-toggle {
	margin-right: 0;
	margin-left: 15px;
}

.rtl #content .navbar .notification-panel .dropdown-toggle .count {
	right: auto;
	left: 1px;
}

.rtl #content .navbar .user-panel .user-dropdown {
	right: auto;
	left: 0;
}

.rtl #content .navbar .notification-panel .notification-dropdown {
	right: auto;
	left: -62px;
}

.rtl #content .navbar .notification-panel .notification-dropdown li a i {
	margin-right: 0;
	margin-left: 10px;
}

.rtl #content .search-bar .input-group button {
	left: auto;
	right: 0;
	padding-left: 0;
	padding-right: 19px;
}

.rtl #content .search-bar .input-group .form-control {
	padding-left: 20px;
	padding-right: 50px;
}

.rtl #content .table tr td.company-logo img {
	margin-right: 0;
	margin-left: 15px;
}

.rtl #content .table tr th:first-child,
.rtl #content .table tr th:last-child {
	border-radius: 0;
}

.rtl #content .dashboard-box {
	background-position: left;
}

.rtl #content .dashboard-box i {
	right: auto;
	left: 50px;
}

.rtl #content .coin-box-wrapper .input-group button {
	margin-left: 0;
	margin-right: 5px;
}

.profile-setting .sidebar-wrapper {
	background: var(--white);
	box-shadow: var(--shadow2);
	border-radius: 10px;
	padding: 20px;
}

.profile-setting .sidebar-wrapper .profile {
	display: flex;
	align-items: center;
}

.profile-setting .sidebar-wrapper .profile .img {
	position: relative;
	margin-right: 20px;
	height: 120px;
	width: 120px;
}

.profile-setting .sidebar-wrapper .profile .img img {
	border-radius: 120px;
}

.profile-setting .sidebar-wrapper .profile .text {
	width: calc(100% - 120px);
}

.profile-setting .sidebar-wrapper .profile .name {
	font-size: 20px;
	margin-bottom: 5px;
}

.profile-setting .sidebar-wrapper .upload-img {
	padding: 8px 12px;
	border-radius: 50px;
	position: absolute;
	bottom: 10px;
	right: 0;
	background: var(--primary);
	transition: 0.4s;
	color: var(--white);
}

.profile-setting .sidebar-wrapper .upload-img i {
	font-size: 16px;
}

.profile-setting .sidebar-wrapper .upload-img:hover {
	color: var(--white);
}

.profile-setting .sidebar-wrapper .upload-img input {
	opacity: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	cursor: pointer !important;
}

.profile-setting .sidebar-wrapper .profile-navigator {
	margin-top: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab {
	text-align: left;
	color: var(--fontColor);
	text-transform: capitalize;
	font-weight: 500;
	width: 100%;
	display: block;
	border-radius: 50px;
	padding: 10px 0 10px 0;
	font-family: "Jost", sans-serif;
	font-size: 16px;
	transition: 0.4s;
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab i {
	width: 30px;
	text-align: left;
	position: relative;
	color: var(--fontColor);
	top: 0;
	transition: 0.4s;
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab.active, .profile-setting .sidebar-wrapper .profile-navigator button.tab:hover {
	color: var(--primary);
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab.active i, .profile-setting .sidebar-wrapper .profile-navigator button.tab:hover i {
	color: var(--primary);
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab.active::before, .profile-setting .sidebar-wrapper .profile-navigator button.tab:hover::before {
	width: 8px;
}

.profile-setting .content {
	background: var(--white);
	padding: 20px;
	border-radius: 10px;
	box-shadow: var(--shadow2);
	opacity: 0;
	visibility: hidden;
	display: none;
}

.profile-setting .content.active {
	opacity: 1;
	visibility: visible;
	display: block;
}

.profile-setting form .input-box label {
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.profile-setting form .input-box .form-select,
.profile-setting form .input-box .form-control {
	height: 50px;
	border-radius: 5px;
	background-color: var(--bgLight);
	border: 2px solid var(--bgLight);
	padding: 10px;
	padding-left: 15px;
	font-weight: normal;
	caret-color: var(--primary);
	color: var(--fontColor);
}

.profile-setting form .input-box .form-select:focus,
.profile-setting form .input-box .form-control:focus {
	color: var(--fontColor);
	box-shadow: 0 0 0 0rem var(--white);
	border: 2px solid var(--primary);
}

.profile-setting form .input-box .form-select::-moz-placeholder, .profile-setting form .input-box .form-control::-moz-placeholder {
	color: var(--fontColor);
}

.profile-setting form .input-box .form-select:-ms-input-placeholder, .profile-setting form .input-box .form-control:-ms-input-placeholder {
	color: var(--fontColor);
}

.profile-setting form .input-box .form-select::placeholder,
.profile-setting form .input-box .form-control::placeholder {
	color: var(--fontColor);
}

.profile-setting form .input-box .form-select {
	background-image: url(../images/downward-arrow.png);
}

.profile-setting form .input-box .form-select option {
	background: var(--white);
	color: var(--fontColor);
}

.profile-setting form .input-box textarea.form-control {
	height: 150px;
	border-radius: 5px;
}


.profile-setting .select2-container--default.select2-container--focus .select2-selection--multiple,
.profile-setting .select2-container--default .select2-selection--multiple {
	border: none;
	padding: 0;
	overflow: hidden;
	overflow-y: auto;
	border-radius: 5px;
	background-color: var(--bgLight);
}

.profile-setting .select2-container .select2-search--inline .select2-search__field {
	/*min-height: 50px;*/
	width: 100% !important;
	border-radius: 5px;
	background-color: var(--bgLight);
	background-image: url(../images/downward-arrow.png);
	background-repeat: no-repeat;
	background-position: center right;
	border: 2px solid var(--bgLight);
	padding: 13px 15px 33px 15px;
	margin: 0;
	font-weight: 400;
	caret-color: var(--primary);
	color: var(--fontColor);
	font-family: "Jost", sans-serif;
}

.profile-setting .select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline;
	list-style: none;
	padding: 0;
	position: absolute;
	top: 8px;
	left: 4px;
	/*display: flex;*/
}

.profile-setting form .attach-file {
	position: relative;
}

.profile-setting form .attach-file span.prev {
	position: absolute;
	left: 4px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 40px;
	width: 105px;
	background: var(--primary);
	text-align: center;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 500;
	padding: 7px;
	border-radius: 5px;
}

.profile-setting .input-group-btn .btn-danger {
	width: 20px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	position: absolute;
	top: -15px;
	right: -15px;
	z-index: 3;
}

.profile-setting .alert {
	background: var(--bgLight);
	border-radius: 5px;
}

.profile-setting .alert i {
	color: var(--primary);
}

.rtl .profile-setting .sidebar-wrapper .profile .img {
	margin-right: 0;
	margin-left: 20px;
}

.rtl .profile-setting .sidebar-wrapper .sidebar a i {
	margin-right: 0;
	margin-left: 15px;
}

.rtl .profile-setting .sidebar-wrapper .upload-img {
	right: auto;
	left: 0;
}

.rtl .profile-setting .sidebar-wrapper .profile-navigator button.tab {
	text-align: right;
}

.rtl .profile-setting .sidebar-wrapper .profile-navigator button.tab i {
	text-align: right;
}

.rtl .profile-setting form .attach-file span.prev {
	left: auto;
	right: 0;
	border-radius: 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.support-ticket-section {
	background: var(--bgLight);
}

.support-ticket-section .inbox-wrapper {
	background: var(--white);
	box-shadow: var(--shadow2);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.support-ticket-section .inbox-wrapper .top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	border-bottom: 1px solid var(--bgLight);
}

.support-ticket-section .inbox-wrapper .top-bar .user {
	width: 60px;
	height: 60px;
	border-radius: 100px;
	margin-right: 10px;
}

.support-ticket-section .inbox-wrapper .top-bar .name {
	font-family: "Jost", sans-serif;
	font-size: 18px;
}

.support-ticket-section .inbox-wrapper .top-bar .close-btn {
	width: 35px;
	height: 35px;
	border-radius: 3px;
	background: var(--primary);
	border: none;
	color: var(--white);
	box-shadow: var(--shadow);
	transition: 0.4s;
}

.support-ticket-section .inbox-wrapper .top-bar .close-btn:hover {
	background: var(--primary);
	color: var(--white);
}

.support-ticket-section .inbox-wrapper .chats {
	padding: 30px 15px 10px 15px;
	height: 395px;
	overflow-y: auto;
	position: relative;
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar {
	width: 4px;
	height: 100%;
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar-track {
	background: var(--white);
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar-thumb {
	background: var(--borderColor);
	border-radius: 5px;
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
	background: var(--primary);
}

.support-ticket-section .inbox-wrapper .chats .chat-box {
	display: flex;
	justify-content: end;
	margin-bottom: 20px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .img {
	margin-left: 10px;
	min-width: 35px;
	min-height: 35px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .img img {
	width: 35px;
	height: 35px;
	border-radius: 35px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text {
	padding: 10px;
	background: var(--bgLight);
	border-radius: 3px;
	float: right;
	margin-bottom: 5px;
	max-width: 300px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text p {
	margin-bottom: 0;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .name {
	text-align: right;
	margin-bottom: 5px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .time {
	font-size: 12px;
	display: inline-block;
	width: 100%;
	text-align: right;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .attachment {
	display: block;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .attachment img {
	max-width: 100px;
	border-radius: 3px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .file {
	color: var(--primary);
	margin-bottom: 5px;
	text-align: right;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .file a {
	color: var(--primary);
	display: inline-block;
	margin-right: 5px;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side {
	justify-content: start;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .img {
	margin-left: 0;
	margin-right: 10px;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .text {
	float: left;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .time {
	text-align: left;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .file {
	text-align: left;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .name {
	text-align: left;
}

.support-ticket-section .inbox-wrapper .img-preview {
	background: var(--bgLight);
	display: inline-block;
	position: relative;
	left: 0px;
	bottom: 5px;
	max-width: 100px;
	border-radius: 3px;
}

.support-ticket-section .inbox-wrapper .img-preview img {
	width: 100%;
	height: auto;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.support-ticket-section .inbox-wrapper .img-preview .img-info {
	padding: 0 5px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.support-ticket-section .inbox-wrapper .img-preview .img-info span {
	font-size: 12px;
}

.support-ticket-section .inbox-wrapper .img-preview .img-info span.size {
	color: var(--gray);
	font-size: 10px;
}

.support-ticket-section .inbox-wrapper .img-preview button.delete {
	position: absolute;
	right: -10px;
	top: -10px;
	background: var(--bgLight);
	width: 20px;
	height: 20px;
	border-radius: 20px;
	text-align: center;
	border: none;
}

.support-ticket-section .inbox-wrapper .img-preview button.delete i {
	font-size: 14px;
	color: var(--secondary);
	padding-bottom: 3px;
}

.support-ticket-section .inbox-wrapper .typing-area {
	background: var(--white);
	border-top: 1px solid var(--bgLight);
	padding: 20px;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group {
	border-radius: 3px;
	overflow: hidden;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .form-control {
	height: 45px;
	background: var(--bgLight);
	border-radius: 0;
	border: none;
	font-size: 13px;
	color: var(--gray);
	padding: 7px;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .form-control:focus {
	box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
	border: none;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn {
	position: relative;
	background: var(--bgLight);
	border: none;
	width: 40px;
	height: 100%;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	text-align: center;
	color: var(--gray);
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn i {
	transition: 0.4s;
	position: relative;
	color: var(--primary);
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn:hover i {
	color: var(--primary);
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn .form-control {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group button {
	width: 50px;
	border: none;
	background: var(--primary);
	border: none;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group button i {
	color: var(--white);
	font-size: 16px;
	transition: 0.4s;
}

.rtl .support-ticket-section .inbox-wrapper .top-bar .user {
	margin-right: 0;
	margin-left: 10px;
}

.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .img {
	margin-left: 0;
	margin-right: 10px;
}

.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text {
	float: left;
}

.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text,
.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .time,
.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .name,
.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .file {
	text-align: left;
}

.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .img {
	margin-right: 0;
	margin-left: 10px;
}

.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .text {
	float: right;
}

.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .text,
.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .time,
.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .name,
.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .file {
	text-align: right;
}

.not-found {
	height: 100vh;
}

.not-found .img-box {
	max-width: 400px;
	margin: auto;
	margin-bottom: 50px;
}

.modal .modal-content {
	background: var(--white);
	border-radius: 5px;
	border: none;
}

.modal .modal-content .modal-header {
	border-bottom: 1px solid var(--bgLight);
}

.modal .modal-content .modal-header .close-btn i {
	color: var(--fontColor);
	transition: 0.4s;
}

.modal .modal-content .modal-header .close-btn i:hover {
	color: var(--primary);
}

.modal .modal-content .modal-footer {
	border-top: 1px solid var(--bgLight);
}

.modal .btn-custom {
	height: auto;
	width: auto;
	padding: 15px 20px;
}

.modal form .input-box label {
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.modal form .input-box .form-select,
.modal form .input-box .form-control {
	height: 50px;
	border-radius: 5px;
	background-color: var(--bgLight);
	border: 2px solid var(--bgLight);
	padding: 8px;
	padding-left: 15px;
	font-weight: normal;
	caret-color: var(--primary);
	color: var(--fontColor);
}

.modal form .input-box .form-select:focus,
.modal form .input-box .form-control:focus {
	color: var(--fontColor);
	box-shadow: 0 0 0 0rem var(--white);
	border: 2px solid var(--primary);
}

.modal form .input-box .form-select::-moz-placeholder, .modal form .input-box .form-control::-moz-placeholder {
	color: var(--fontColor);
}

.modal form .input-box .form-select:-ms-input-placeholder, .modal form .input-box .form-control:-ms-input-placeholder {
	color: var(--fontColor);
}

.modal form .input-box .form-select::placeholder,
.modal form .input-box .form-control::placeholder {
	color: var(--fontColor);
}

.modal form .input-box .form-select {
	background-image: url(../images/downward-arrow.png);
}

.modal form .input-box .form-select option {
	background: var(--white);
	color: var(--fontColor);
}

.modal form .input-box textarea.form-control {
	height: 150px;
	border-radius: 5px;
}

@media (max-width: 1199px) {
	.home-section .shape {
		display: none;
	}

}

@media (max-width: 991px) {
	.navbar {
		background: var(--white);
	}

	.navbar .navbar-text {
		position: absolute;
		right: 70px;
		top: -3px;
	}

	.navbar .nav-item .nav-link {
		padding: 13px 0px 7px;
	}

	.navbar .nav-item .nav-link::before {
		width: 0;
	}

	.navbar .notification-panel .notification-dropdown {
		left: auto;
		right: -95px;
	}

	.navbar .user-panel .user-dropdown {
		left: auto;
		right: -55px;
	}

	.rtl .navbar .navbar-text {
		right: auto;
		left: 70px;
	}

	.rtl .navbar .notification-panel .notification-dropdown {
		right: auto;
		left: -95px;
	}

	.rtl .navbar .user-panel .user-dropdown {
		right: auto;
		left: -55px;
	}

	.home-section {
		height: 100%;
		padding-top: 150px;
		padding-bottom: 50px;
	}

	.newsletter-section,
	.get-appointment-section {
		background-size: cover;
		padding: 150px 0;
		text-align: center;
	}

	.newsletter-section .img-box,
	.get-appointment-section .img-box {
		display: none;
	}

	.newsletter-section .input-group,
	.get-appointment-section .input-group {
		margin: auto;
	}

	#content .navbar .navbar-text {
		position: absolute;
		right: 15px;
		top: 12px;
	}

	#content .navbar .notification-panel .notification-dropdown {
		left: auto;
		right: -55px;
	}

	#content .navbar .user-panel .user-dropdown {
		left: auto;
		right: -15px;
	}

	.rtl #content .navbar .navbar-text {
		right: auto;
		left: 15px;
	}

	.rtl #content .navbar .notification-panel .notification-dropdown {
		right: auto;
		left: -55px;
	}

	.rtl #content .navbar .user-panel .user-dropdown {
		right: auto;
		left: -15px;
	}
}

@media (max-width: 767px) {
	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 24px;
	}

	.home-section {
		height: 100%;
		padding-top: 150px;
		padding-bottom: 50px;
	}

	.home-section .text-box h1 {
		font-size: 42px;
	}

	.home-section .img-box {
		height: 400px;
	}

	.about-section .img-box img {
		margin-right: 0;
	}

	.testimonial-section .client-img .shape {
		right: 0;
	}

	.login-section {
		padding-top: 50px;
	}

	.login-section form {
		padding: 20px;
	}

	.login-section form .bottom,
	.login-section form .links {
		font-size: 16px;
	}

	.login-section .img-box {
		display: none;
	}

	.qr-code-section {
		text-align: center;
	}

	.qr-code-section .qr-box {
		margin-top: 30px;
		margin: auto;
	}

	#sidebar {
		left: -310px;
		position: fixed;
		overflow-y: auto;
	}

	#sidebar.active {
		left: 0;
	}

	#sidebar .level-box {
		display: none;
	}

	.rtl #sidebar {
		right: -310px;
	}

	.rtl #sidebar.active {
		right: 0;
	}

	#sidebar ul {
		overflow: initial;
		height: auto;
	}

	#sidebar ul.main {
		overflow: initial;
		height: auto;
		max-height: initial;
		padding-bottom: 20px;
	}

	#content {
		width: 100%;
	}

	#content .dashboard-heading h2,
	#content .dashboard-heading h3 {
		font-size: 24px;
	}

	#content .table-responsive {
		border-radius: 10px;
	}

	#content .table thead {
		display: none;
	}

	#content .table tbody tr {
		display: block;
	}

	#content .table tbody tr td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: none !important;
		margin: 0 !important;
		padding: 10px 15px;
		font-weight: 300;
	}

	#content .table tbody tr td::before {
		content: attr(data-label);
		color: var(--black);
		font-weight: 600;
	}

	#content .table tbody > tr:nth-of-type(even) > * {
		--bs-table-accent-bg: var(--bgLight2) !important;
	}

	#content .table tr td:first-child {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	#content .table tr td:last-child {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
}

@media (max-width: 575px) {
	.navbar {
		padding: 15px 0;
	}

	.navbar .navbar-brand img {
		width: 130px;
	}

	.home-section .img-box {
		height: 275px;
	}

	.blog-details #shareBlock {
		display: block;
	}

	.blog-details #shareBlock .btn {
		padding: 5px;
	}

	.testimonial-section .header-text {
		width: 100%;
	}

	.testimonial-section .review-box {
		padding: 15px;
	}
}

.login-section .input-group-text {
	display: flex;
	align-items: center;
	padding: 0.0rem 0.0rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	background-color: #e9ecef;
	border: 1px solid var(--primary);
	border-radius: 0.25rem;
}

#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning {
	fill: #fff !important;
}


[v-cloak] {
	display: none;
}


.btn-modify {
	background: var(--primary);
	font-family: "Jost", sans-serif;
	text-align: center;
	text-transform: capitalize;
	display: inline-block;
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	height: auto;
	width: auto;
	padding: 10px 20px;
	line-height: 1;
	border-radius: 5px;
	transition: 0.4s;
}

.btn2 {
	background: var(--secondary);
}

a:hover {
	color: #fff;
}

.bd-callout-primary {
	border-left-color: var(--primary) !important;
}

.bd-callout {
	padding: 1.25rem;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
	border: 1px solid whitesmoke;
	border-left-width: 0.25rem;
	border-radius: 0.25rem;
	background: #fff;
}

.fa-3x {
	font-size: 13px !important;
}

.form-check-inline {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	padding-left: 0;
	margin-right: 0.75rem;
}

.payout .form-check-input {
	display: none;
}

.form-check-inline .form-check-input {
	position: static;
	margin-top: 0;
	margin-right: 0.3125rem;
	margin-left: 0;
}

.main-content .card-body form label {
	font-size: 14px;
}

.payout input:checked ~ .form-check-label {
	opacity: 1;
	border-color: var(--primary);
}

.payout label.form-check-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0.6;
	border: 2px solid transparent;
	transition: all .2s ease;
}

.payout label.form-check-label img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	overflow: hidden;
	padding: 2px;
}

.plan-section {
	padding: 100px 0;
	background: var(--bgLight);
}

.plan-section .header-text {
	margin-bottom: 50px;
}

.plan-section .nav-pills {
	background: var(--white);
	box-shadow: var(--shadow);
	display: inline-block;
	border-radius: 100px;
	margin-bottom: 30px;
	padding: 0 6px;
}

.plan-section .nav-pills .btn-custom {
	width: auto;
	height: auto;
	padding: 12px 25px;
	margin: 8px 2px;
	background: var(--bgLight);
	color: var(--black);
	font-weight: 500;
}

.plan-section .nav-pills .btn-custom.active {
	background: var(--primary);
	color: var(--white);
}

.plan-section .plan-box {
	position: relative;
	background: var(--white);
	overflow: hidden;
	border-radius: 5px;
	box-shadow: var(--shadow);
}

.plan-section .plan-box h1 span {
	font-size: 16px;
	color: var(--fontColor);
	font-family: "Jost", sans-serif;
	font-weight: 400 !important;
}

.plan-section .plan-box .top-area {
	padding: 30px;
}

.plan-section .plan-box .text-primary {
	color: var(--primary) !important;
	font-weight: 500;
}

.plan-section .plan-box ul {
	padding-left: 0;
	list-style: none;
}

.plan-section .plan-box ul li {
	margin-bottom: 15px;
	border-bottom: 1px solid var(--bgLight);
	padding: 0 30px 15px 30px;
}

.plan-section .plan-box ul li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.plan-section .plan-box ul li i {
	color: var(--primary);
	margin: 0 5px;
	font-size: 16px;
}

.plan-section .plan-box .feature {
	background: var(--primary);
	color: var(--white);
	position: absolute;
	right: -15px;
	top: 38px;
	transform: rotate(-90deg);
	text-transform: uppercase;
	font-size: 14px;
	width: 120px;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
	border-bottom-left-radius: 50px;
	border-top-left-radius: 50px;
}

.plan-section .plan-box .btn-custom {
	border-radius: 0;
	height: 60px;
}

.rtl .plan-section .plan-box .feature {
	right: auto;
	left: -15px;
}

.input-group-prepend.width-50 {
	width: 53% !important;
}

.color-fff {
	background-color: #FFFFFF !important;
}

.color-primary {
	color: var(--primary) !important;
}

.selectgroup {
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.w-100 {
	width: 100% !important;
}

.selectgroup-item {
	-ms-flex-positive: 1;
	flex-grow: 1;
	position: relative;
}

.selectgroup-item + .selectgroup-item {
	margin-left: -1px;
}

input[type=radio] {
	box-sizing: border-box;
	padding: 0;
}

.selectgroup-input {
	opacity: 0;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

.selectgroup-item:not(:first-child) .selectgroup-button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.selectgroup-button {
	background-color: #fdfdff;
	border-color: #e4e6fc;
	border-width: 1px;
	border-style: solid;
	display: block;
	text-align: center;
	padding: 0 1rem;
	height: 35px;
	position: relative;
	cursor: pointer;
	border-radius: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 13px;
	min-width: 2.375rem;
	line-height: 36px;
}

.selectgroup-input:focus + .selectgroup-button, .selectgroup-input:checked + .selectgroup-button {
	background-color: var(--primary);
	color: #fff;
	z-index: 1;
}

.selectgroup-item:not(:last-child) .selectgroup-button {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.image-input {
	position: relative;
	width: 100%;
	min-height: 300px;
	background: #f0f8ff;
}

.image-input #image-label, .image-input #favicon-label, .image-input #adminLogo-label, .image-input #meta_image-label, .image-input #instruction_image-label, .image-input #form_image-label {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 70px 100px;
	z-index: 5;
	opacity: 0.3;
	cursor: pointer;
	background-color: #fff;
	font-size: 25px;
	border: 2px dashed #000;
	margin: auto;
	text-align: center;
}

.image-input #image, .image-input #adminLogo, .image-input #favicon, .image-input #meta_image, .image-input #instruction_image, .image-input #form_image {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	cursor: pointer;
}

.image-input .preview-image {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 150px;
}

.job-section .filter-area .input-box .select2 {
	width: calc(100% - 0px) !important;
	margin-left: auto;
}

.job-section .filter-area .input-box .select2-container--default .select2-selection--single {
	height: 45px;
	background: var(--bgLight);
	border: 1px solid var(--bgLight);
}

.job-section .filter-area .input-box .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 45px;
	padding-left: 15px;
	color: var(--fontColor);
}

/*.color-dynamic {*/
/*	background-color: #dddddd;*/
/*}*/

.idance .classes-details ul.timetable {
	margin: 0 0 22px;
	padding: 0;
}

.idance .classes-details ul.timetable li {
	list-style: none;
	font-size: 15px;
	color: #7f7f7f;
}

idance .timetable {
	max-width: 900px;
	margin: 0 auto;
}

.idance .timetable-item {
	border: 1px solid #d8e3eb;
	padding: 15px;
	margin-top: 20px;
	position: relative;
	display: block;
}

@media (min-width: 768px) {
	.idance .timetable-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.idance .timetable-item-img {
	overflow: hidden;
	height: 100px;
	display: none;
}

.idance .timetable-item-img img {
	height: 100%;
}

@media (min-width: 768px) {
	.idance .timetable-item-img {
		display: block;
	}
}

.idance .timetable-item-main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
	margin-top: 12px;
}

@media (min-width: 768px) {
	.idance .timetable-item-main {
		margin-top: 0;
		padding-left: 15px;
	}
}

.idance .timetable-item-time {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 4px;
}

.idance .timetable-item-name {
	font-size: 14px;
	margin-bottom: 19px;
}

.idance .btn-book {
	padding: 6px 30px;
	width: 100%;
}

.idance .timetable-item-like {
	position: absolute;
	top: 3px;
	right: 3px;
	font-size: 20px;
	cursor: pointer;
}

.idance .timetable-item-like .fa-heart-o {
	display: block;
	color: #b7b7b7;
}

.idance .timetable-item-like .fa-heart {
	display: none;
	color: #f15465;
}

.idance .timetable-item-like:hover .fa-heart {
	display: block;
}

.idance .timetable-item-like:hover .fa-heart-o {
	display: none;
}

.idance .timetable-item-like-count {
	font-size: 12px;
	text-align: center;
	padding-top: 5px;
	color: #7f7f7f;
}

.idance .timetable-item-book {
	width: 200px;
}

.idance .timetable-item-book .btn {
	width: 100%;
}

.idance .schedule .nav-tabs {
	border-bottom: 2px solid var(--primary);
}

.idance .schedule .nav-link {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
	color: #3d3d3d;
	font-weight: 500;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	border-radius: 2px 2px 0 0;
	padding-left: 0;
	padding-right: 0;
	cursor: pointer;
}

@media (min-width: 768px) {
	.idance .schedule .nav-link {
		font-size: 16px;
	}
}

.idance .schedule .nav-link.active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.idance .schedule .nav-link.active:focus {
	border-color: var(--primary);
}

.idance .schedule .nav-link:hover:not(.active) {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.idance .schedule .tab-pane {
	padding-top: 10px;
}

.custom-badge {
	padding: 5px 9px !important;
}

.custom-badge {
	display: inline-block;
	color: #fff;
	padding: 4px 10px;
	font-size: 75%;
	text-align: center;
	vertical-align: baseline;
	border-radius: 2px;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.color-info {
	background-color: #2c9fd3 !important;
}

.color-base {
	background-color: var(--primary) !important;
}

.menu-details-box {
	background: var(--white);
	border-radius: 10px;
	position: relative;
	text-align: center;
}

.menu-details-box .img-box {
	overflow: hidden;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	padding: 15px;
}

.menu-details-box .text-box {
	padding: 15px;
	text-transform: capitalize;
}

.menu-details-box .text-box h5,
.menu-details-box .text-box p {
	margin-bottom: 5px;
}

.menu-details-box .text-box .price {
	color: var(--primary);
}

.menu-details-box .quantity {
	margin: auto;
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 5px;
	border-radius: 100px;
	width: 120px;
	border: 2px solid var(--bgLight);
	overflow: hidden;
}

.menu-details-box .quantity .btn-inc-dec {
	width: 40px;
	height: 40px;
	border-radius: 0px;
	background: var(--white);
	color: var(--primary);
	font-size: 18px;
}

.menu-details-box .quantity .form-control {
	width: 40px;
	height: 40px;
	margin: 0 0px;
	background: var(--white);
	border-radius: 0px;
	border: none;
	color: var(--fontColor);
	text-align: center;
	font-size: 12px;
}

.menu-details-box .quantity .form-control::-moz-placeholder {
	color: var(--white);
}

.menu-details-box .quantity .form-control::placeholder {
	color: var(--white);
}

.menu-details-box .quantity .form-control:focus {
	box-shadow: 0 0 0 0rem var(--black);
}

.menu-details-box .tag-item label {
	background: var(--white);
	margin: 0 5px 5px 0;
	font-size: 14px;
	text-transform: capitalize;
	color: var(--fontColor);
	border: 1px solid var(--white);
	border-radius: 8px;
}

.menu-details-box .tag-item .btn-check:checked + .btn-primary {
	background: var(--primary) !important;
	color: var(--white);
	border: 1px solid var(--primary);
}

.menu-details-box .tag-item .btn-check:focus + .btn-primary,
.menu-details-box .tag-item .btn-primary:focus {
	color: var(--white);
	background-color: var(--white);
	border-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.menu-details-box .check-radio-box-wrapper {
	text-align: left;
	margin-top: 15px;
}

.menu-details-box .check-radio-box-wrapper .form-check {
	margin-bottom: 8px;
}

.menu-details-box .check-radio-box-wrapper label {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu-details-box .check-radio-box-wrapper label img {
	width: 40px;
	height: 40px;
	-o-object-fit: cover;
	object-fit: cover;
}

.menu-details-box .form-check-with-img .form-check-input {
	margin-top: 12px;
}

.menu-details-box .bottom-area {
	position: sticky;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
	background: #fff;
	padding: 15px 0;
	border-top: 1px solid var(--bgLight);
}

.rtl .menu-details-box .check-radio-box-wrapper {
	text-align: right;
}

.rtl .menu-details-box .form-check {
	padding-left: 0;
}

.color-danger {
	background-color: #ff2a27;
}

.color-success {
	background-color: #26cc8c;
}

.custom-a {
	color: var(--fontColor) !important;
}

.custom-a:hover {
	background-color: transparent !important;
	color: var(--fontColor) !important;
	text-decoration: none !important;
}

.is-open {
	background: var(--primary);
	width: 65px;
	height: 65px;
	border-radius: 50px;
	text-align: center;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 50px;
	left: 30px;
	z-index: 12;
}

.is-open h4 {
	font-family: "Rouge Script", cursive;
	font-size: 24px;
	color: var(--black);
	position: relative;
	margin-bottom: 0;
	text-transform: capitalize;
}

.is-open::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	border-radius: 100px;
	width: 100%;
	height: 100%;
	background: transparent;
	border: 1px solid var(--primary);
	animation: circleAvatar 3s infinite;
}

@keyframes circleAvatar {
	0% {
		width: 100%;
		height: 100%;
	}
	50% {
		width: 130%;
		height: 130%;
	}
	100% {
		width: 100%;
		height: 100%;
	}
}

.heading {
	margin-bottom: 15px;
}

.heading .back-btn {
	margin-bottom: 15px;
	height: 35px;
	margin-right: 15px;
}

.heading .back-btn i {
	font-size: 24px;
	color: var(--primary);
}

.heading .checkout-box,
.heading .cart-box {
	position: relative;
	width: 50px;
	height: 50px;
	text-align: center;
}

.heading .checkout-box i,
.heading .cart-box i {
	font-size: 24px;
	color: var(--primary);
}

.heading .checkout-box .count,
.heading .cart-box .count {
	background: var(--primary);
	min-width: 18px;
	height: 18px;
	border-radius: 50px;
	color: var(--white);
	position: absolute;
	top: 0;
	right: 1px;
	font-size: 11px;
	font-weight: 400;
	padding-top: 1px;
	text-align: center;
}

.rtl .heading .back-btn {
	margin-right: 0px;
	margin-left: 15px;
	transform: rotateY(180deg);
}

.sidebar-dropdown-items .dropdown-toggle {
	background: var(--primary);
	height: 30px;
	width: 55px;
	border-radius: 50px;
	color: var(--white);
	position: relative;
	padding: 0px;
	transition: 0.4s;
}

.color-warning {
	background-color: #ff9800 !important;
}

.color-purple {
	background-color: var(--secondary) !important;
}

.form-check-input:checked {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.custom-card {
	background-color: antiquewhite !important;
}

.identity-confirmation .table-parent {
	height: 70vh;
	overflow-y: auto;
}

.identity-confirmation .form-check .form-check-input {
	cursor: pointer;
}


.identity-confirmation .form-check .form-check-input {
	background-repeat: no-repeat;
	border-radius: 10px;
	background-image: url(../images/circle.png);
	background-size: 12px;
}

.identity-confirmation .form-check .form-check-input:checked {
	background-image: url(../images/circle2.png);
}

a.disabled {
	pointer-events: none !important;
}

.payout {
	overflow-y: scroll;
	max-height: 315px;
}

i.fal.fa-check-circle.fa-2x.text-success {
	color: #27ae60 !important;
}

.privacy-policy {
	padding: 100px 0 100px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.privacy-policy::before {
	content: "";
	height: 700px;
	width: 700px;
	position: absolute;
	z-index: 0;
	bottom: -300px;
	right: -400px;
	border-radius: 50%;
	border: solid 150px var(--bgLight);
	z-index: -1;
}

.privacy-policy::after {
	content: "";
	height: 700px;
	width: 700px;
	position: absolute;
	z-index: 0;
	top: -300px;
	left: -400px;
	border-radius: 50%;
	border: solid 150px var(--bgLight);
	z-index: -1;
}

@media screen and (max-width: 1600px) {
	#content .dashboard-box i {
		font-size: 32px;
		color: var(--primary);
		position: absolute;
		right: 18px !important;
		top: 50%;
		transform: translateY(-15%) !important;
		margin: auto;
	}

	#content .dashboard-box h3 {
		margin-bottom: 0;
		font-size: 26px;
	}
}

.doc-content {
	margin: 40px 0;
	-webkit-box-shadow: 0 0 10px #e6f0fa;
	box-shadow: 0 0 10px #e6f0fa;
	padding: 40px;

	background-color: #fff;
}

.padding {
	padding-bottom: 30px;
}

.plan-page {
	background-color: white !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: var(--primary) !important;
	border: 1px solid var(--primary) !important;
	color: #FFFFFF !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #FFFFFF !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	background-color: transparent !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	border-right: 0 !important;
}

.btn-base-color {
	color: #fff;
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.card-box {
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: 10px;
	padding: 20px;
}
.qr-card-box {
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	height: 100%;
}
.qr-card-box  img {
	max-width: 100%;
	width: 200px;
}

