@import url("fontawesome.css");
:root {
	/*
		--theme-color1: #635bff;
		--theme-color1-hover: color-mix(in srgb, var(--theme-color1) 85%, black);
	*/
	--theme-color-light: #ffffff;
	--theme-color1-hover: color-mix(in srgb, var(--theme-color1) 85%, black);
	--theme-color-dark: #050B20;
	--theme-color-gray: #F6F6F6;
	--theme-color2: #00B67A;
	--theme-color3: #faf7f2;
	--bg-1: #f4f4f4;
	--text-color: #202d59;
	--text-color2: #616670;
	--headings-color: #050B20;
	--link-color: var(--headings-color);
	--link-hover-color: var(--headings-color);
	--title-font:'DM-Sans', Hevetica, Arial, sans-serif;
	--text-font:'DM-Sans', Hevetica, Arial, sans-serif;
	--title-font2:'DM-Sans', Hevetica, Arial, sans-serif;
	--body-font-size: 14px;
	--body-line-height: 22px;
	--body-font-weight: 400;
	--line-height-heading-h1: 1.2em;
	--line-height-heading: 54px;
	--line-height-heading-small: 1.35em;
	--h1-font-size: 42px;
	--h2-font-size: 26px;
	--h3-font-size: 20px;
	--h4-font-size: 24px;
	--h5-font-size: 22px;
	--h6-font-size: 20px;
	--h1-font-weight: 600;
	--h2-font-weight: 600;
	--h3-font-weight: 600;
	--h4-font-weight: 600;
	--h5-font-weight: 600;
	--h6-font-weight: 600;
	--sec-title-subtitle-font-size: 14px;
	--sec-title-subtitle-color: var(--headings-color);
	--sec-title-subtitle-
	--sec-title-subtitle-font-weight: 700;
	--sec-title-subtitle-line-height: 20px;
	--sec-title-color: var(--headings-color);
	--sec-title-font-size: var(--h2-font-size);
	--sec-title-font-family: var(--title-font);
	--sec-title-font-weight: var(--h2-font-weight);
	--theme-light-background: #F2F3F5;
	--theme-light-background-text-color: var(--headings-color);
	--theme-black: #131313;
	--container-width: 1230px;
	--small-container-width: 1000px;
	--large-container-width: 1430px;
	--container-pt: 120px;
	--container-pb: 120px;
	--bs-border-radius: 0.43rem;
	--bs-border-radius-sm: 5px;
	--bs-border-radius-lg: 10px;
	--bs-border-radius-xl: 18px;
	--bs-border-radius-xxl: 2rem;
	--bs-border-radius-2xl: var(--bs-border-radius-xxl);
	--bs-border-radius-pill: 50rem;
	--bs-box-shadow: 0px 1px 4px 0px rgba(133, 146, 173, 0.2);
	--bs-box-shadow-sm: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
	--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
/*
	* typography.scss
	* -----------------------------------------------
*/
::-moz-selection {
	background: var(--theme-color-dark);
	color: #fff;
	text-shadow: none;
}
::selection {
	background: var(--theme-color-dark);
	color: #fff;
	text-shadow: none;
}
:active,
:focus {
	outline: none !important;
}
::-webkit-input-placeholder {
	color: #7c858c;
}
::-moz-input-placeholder {
	color: #7c858c;
}
::-ms-input-placeholder {
	color: #7c858c;
}
html, body {
	height: 100%;
	margin: 0;
}
a,
a:focus,
a:active {
	-webkit-tap-highlight-color: transparent;
	outline: none;
}
body {
	-webkit-tap-highlight-color: transparent;
	outline: none;
	background-attachment: fixed;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	counter-reset: my-sec-counter;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	color: #202d59;
	font-size: var(--body-font-size);
	font-weight: var(--body-font-weight);
	line-height: var(--body-line-height);
	display: flex;
	flex-direction: column;
}
main {
	flex: 1; 
}
p,
.text {
	color: var(--text-color);
	font-size: var(--body-font-size);
	font-weight: var(--body-font-weight);
	line-height: var(--body-line-height);
}
.logo img {
    max-width:200px;
    max-height: 60px;
}
.fw-bold, b, strong{font-weight: 600;}
/* -------- Headings ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #202d59;
	font-family: var(--title-font);
	position: relative;
	line-height: var(--line-height-heading-);
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
	font-weight: normal;
	line-height: 1;
	color: var(--headings-color);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
	font-weight: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
}
h1 {
	font-size: var(--h1-font-size);
	font-weight: var(--h1-font-weight);
	line-height: var(--line-height-heading-h1);
	letter-spacing: -2px;
}
h2 {
	font-size: var(--h2-font-size);
	font-weight: var(--h2-font-weight);
	line-height: var(--line-height-heading);
	letter-spacing: -1px;
}
h3 {
	font-size: var(--h3-font-size);
	font-weight: var(--h3-font-weight);
	line-height: 35px;
}
h4 {
	font-size: var(--h4-font-size);
	font-weight: var(--h4-font-weight);
	line-height: var(--line-height-heading-small);
	letter-spacing: 0.15px;
	letter-spacing: -0.3px;
}
h5 {
	font-size: var(--h5-font-size);
	font-weight: var(--h5-font-weight);
	line-height: var(--line-height-heading-small);
}
h6 {
	font-size: var(--h6-font-size);
	font-weight: var(--h6-font-weight);
	line-height: var(--line-height-heading-small);
}
/* -------- Body Text ---------- */
table p {
	margin-bottom: 0;
}
p {
	margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover,
p a:not(.button):not(.btn):focus {
}
/* -------- other ---------- */
a {
	text-decoration: none;
	font-weight: var(--body-font-weight);
	cursor: pointer;
}
a:hover,
a:focus {
	text-decoration: none;
	/* outline: none; */
}
a b,
a strong {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a img {
	border: none;
}
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
	margin-bottom: 10px;
}
ol,
ul {
	list-style-position: inside;
	margin: 0;
	padding: 0;
}
b,
strong {
}
iframe {
	border: none !important;
}
.desktop_hide{
	display: none;
}
/*
	* container.scss
	* -----------------------------------------------
*/
.container .container {
	width: 100%;
}
.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
	padding-left: 0;
	padding-right: 0;
}
section>.container,
section>.container-fluid {
	/* padding-top: var(--container-pt); */
	/* padding-bottom: var(--container-pt); */
}
@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: var(--container-width);
	}
}
/*=== Default Form ===*/
.form-control,
.input-text {
	outline: 0;
	border: 1px solid #dee2e6;
	width: 100%;
}
.form-control::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder {
	color: #686a6f;
	opacity: 1;
}
.form-control::-moz-placeholder,
.input-text::-moz-placeholder {
	color: #686a6f;
	opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
	color: #686a6f;
	opacity: 1;
}
.csm_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    color: #fff !important;
    font-size: 10px;
    line-height: 1;
    float: right;
    margin-top: 2px;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
	color: #686a6f;
	opacity: 1;
}
.form-control::placeholder,
.input-text::placeholder {
	color: #686a6f;
	opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
	color: #686a6f;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
	color: #686a6f;
}
textarea.form-control {
	height: auto;
	padding-top: 15px;
	padding-bottom: 15px;
}
/* -------- Dark Theme Styling ---------- */
.dark-layout {
	background-color: var(--theme-color-dark) !important;
	--sec-title-color: var(--theme-color-light);
}
.dark-layout .sticky-header .main-menu .navigation>li>a,
.dark-layout h1,
.dark-layout h2,
.dark-layout h3,
.dark-layout h4,
.dark-layout h5,
.dark-layout h6 {
	color: var(--theme-color-light);
}
.dark-layout .preloader {
	background-color: var(--theme-color-dark);
}
.dark-layout .preloader:after {
	background-image: url(../images/logo.svg);
}
.dark-layout .sticky-header {
	background-color: var(--theme-color-dark);
}
.dark-layout .hidden-bar .upper-box {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links li {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
/*** 
	====================================================================
	Reset
	====================================================================
***/
/*** 
	====================================================================
	Global Settings
	====================================================================
***/
textarea {
	overflow: hidden;
	resize: none;
}
button {
	outline: none !important;
	cursor: pointer;
}
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
ul,
li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
figure.image {
	margin-bottom: 0;
}
.title a {
	color: inherit;
}
.color1 {
	color: var(--theme-color1);
}
.boxcar-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
	z-index: 99;
	background-color: #ffffff;
}
.large-container {
	position: static;
	max-width: var(--large-container-width);
	padding: 0px 15px;
	margin: 0 auto;
	width: 100%;
}
.boxcar-container {
	position: static;
	max-width: var(--container-width);
	padding: 0px 15px;
	margin: 0 auto;
	width: 100%;
}
.small-container {
	position: static;
	max-width: var(--small-container-width);
	padding: 0px 15px;
	margin: 0 auto;
	width: 100%;
}
.bg {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.bg-pattern-1 {
	background-image: url(../images/icons/pattern-1.png);
}
.bg-white {
	background-color: #fff;
}
/*=======================
    Preloader
=======================*/
.preloader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: #ffffff;
}
.preloader:after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150px;
	margin-left: -75px;
	margin-top: -30px;
	height: 50px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-animation: pulse 1s infinite linear;
	animation: pulse 1s infinite linear;
	background-image: url(../images/favicon.png);
	content: "";
}
.preloader:before {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
	color: var(--theme-color-dark);
	font-weight: 600;
	font-size: 14px;
	font-family: var(--title-font);
	letter-spacing: 2px;
	text-transform: uppercase;
	content: "Loading";
	-webkit-transition: none;
	transition: none;
}
/*=======================
	Scroll To Top style
=======================*/
.scroll-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 40px;
	font-size: 14px;
	line-height: 40px;
	color: var(--theme-color-light-text);
	text-align: center;
	cursor: pointer;
	background-color: var(--theme-color1);
	z-index: 100;
	display: none;
	border-radius: 50%;
	margin: 0 auto;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.scroll-to-top:hover {
	background: var(--theme-color3);
	color: #ffffff;
}
/*======================
    Tabs Box
======================*/
.tabs-box {
	position: relative;
}
.tabs-box .tab {
	display: none;
}
.tabs-box .tab.active-tab {
	display: block;
}
/*=======================
    List Styles
=======================*/
.list-style-one {
	position: relative;
}
.list-style-one li {
	position: relative;
	font-size: 14px;
	line-height: 30px;
	color: var(--theme-color-dark);
	margin-right: 50px;
	font-weight: 500;
	margin-bottom: 11px;
	padding-left: 22px;
}
.list-style-one li .icon {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--theme-color1);
}
/*=======================
    List Styles
=======================*/
.list-style-two {
	margin-top: 28px;
}
.list-style-two li {
	font-size: 14px;
	color: var(--text-color);
	position: relative;
	padding-left: 25px;
	margin-bottom: 8px;
}
.list-style-two li .icon {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--theme-color1);
}
/*===========================
    Social Icons Styles
============================*/
.social-icon-one {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.social-icon-one li {
	position: relative;
	margin-left: 20px;
}
.social-icon-one li:first-child {
	margin-left: 0;
}
.social-icon-one li a {
	position: relative;
	display: block;
	font-size: 12px;
	line-height: 30px;
	color: var(--theme-color-dark);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.social-icon-one li a:hover {
	color: var(--theme-color1);
}
/*======================
    Play Buttons
======================*/
.play-btn {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.play-btn .icon {
	position: relative;
	height: 60px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
	color: var(--theme-color1);
	background-color: var(--theme-color-light);
	border: 1px solid var(--theme-color1);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.play-btn .title {
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	padding: 10px 25px;
	text-transform: capitalize;
	padding-left: 30px;
	margin-left: -10px;
	color: var(--theme-color2);
	background: var(--theme-color-gray);
	border-radius: 0px 22px 22px 0px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.play-btn:hover .icon {
	background-color: var(--bg-theme-color1);
	color: var(--theme-color-light);
}
.play-btn:hover .title {
	background-color: var(--bg-theme-color2);
	color: var(--theme-color-light);
}
/*======================
    Media Play Button 
======================*/
.play-now {
	position: relative;
	display: block;
	z-index: 9;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.play-now .icon {
	position: relative;
	display: inline-block;
	height: 85px;
	width: 85px;
	text-align: center;
	line-height: 85px;
	background-color: #ffffff;
	color: var(--bg-theme-color2);
	z-index: 1;
	font-size: 18px;
	display: block;
	border-radius: 50%;
	-webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
	box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.play-now .ripple:before,
.play-now .ripple:after {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 70px;
	width: 70px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
	-webkit-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
	content: "";
}
.play-now .ripple.light {
	-webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
	box-shadow: 0 0 0 0 rgb(255, 255, 255);
}
.play-now .ripple:before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
.play-now .ripple::after {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
@-webkit-keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
		box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
		box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
	}
}
@keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
		box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
		box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
	}
}
/*======================
    Carousel Navs
======================*/
.default-navs .owl-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.default-navs .owl-next,
.default-navs .owl-prev {
	display: block;
	width: 60px;
	height: 60px;
	font-size: 20px;
	font-weight: 700;
	line-height: 58px;
	color: var(--theme-color-dark);
	background: #fff;
	border: 1px solid #E3E3E3;
	text-align: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 50%;
	margin-left: 20px;
}
.default-navs .owl-next:hover,
.default-navs .owl-prev:hover {
	border-color: var(--theme-color1);
}
.default-navs .owl-prev {
	margin-left: 0;
}
.disable-navs .owl-nav {
	display: none;
}
.disable-dots .owl-dots {
	display: none;
}
/*==========================
	Default Tabs
===========================*/
.default-tabs {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}
.default-tabs .tab-buttons {
	position: relative;
	margin-bottom: 30px;
}
.default-tabs .tab-btn {
	position: relative;
	float: left;
	font-weight: 600;
	font-size: 18px;
	padding: 15px 35px;
	color: var(--theme-color1);
	line-height: 20px;
	border-radius: 5px;
	background-color: #ffffff;
	cursor: pointer;
	margin-right: 20px;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.default-tabs .tab-btn:last-child {
	margin-right: 0;
}
.default-tabs .tab-btn.active-btn {
	background: var(--gradient-1);
	color: #ffffff;
}
.default-tabs .tabs-content {
	position: relative;
	width: 100%;
}
/*================================
    Progress Bar
=================================*/
.skills {
	position: relative;
	margin-bottom: 50px;
}
.skills .skill-item {
	position: relative;
	margin-bottom: 25px;
}
.skills .skill-item:last-child {
	margin-bottom: 0px;
}
.skills .skill-item .skill-header {
	position: relative;
	margin-bottom: 0px;
}
.skills .skill-item .skill-header .skill-title {
	font-weight: 600;
	color: var(--theme-color-dark);
	letter-spacing: 0;
	margin-bottom: 10px;
}
.skills .skill-item .skill-bar {
	position: relative;
	width: 100%;
	height: 14px;
	border-radius: 10px;
}
.skills .skill-item .skill-bar .bar-inner {
	position: relative;
	width: 100%;
	height: 14px;
	background: #f2f3f6;
	border-radius: 10px;
}
.skills .skill-item .skill-bar .bar-inner .bar {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 14px;
	width: 0px;
	-webkit-transition: all 3000ms ease;
	transition: all 3000ms ease;
	border-radius: 10px;
	background: var(--bg-theme-color1);
}
.skills .skill-item .skill-bar .bar-inner .skill-percentage {
	position: absolute;
	right: 0;
	bottom: 100%;
	font-weight: 400;
	color: #6f7174;
	line-height: 25px;
	margin-bottom: 10px;
}
.overlay-anim {
	position: relative;
}
.overlay-anim:before {
	background: rgba(255, 255, 255, 0.3);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.overlay-anim:hover:before {
	height: 100%;
	opacity: 0;
	-webkit-transition: all 400ms linear;
	transition: all 400ms linear;
}
.bounce-y {
	-webkit-animation: bounce-y 5s infinite linear;
	animation: bounce-y 5s infinite linear;
}
@-webkit-keyframes bounce-y {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes bounce-y {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.slick-prev,
.slick-next {
	width: 60px;
	height: 50px;
	border: 1px solid #050B20;
	border-radius: 12px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.slick-prev::before,
.slick-next::before {
	content: "\f105";
	color: #050B20;
	font-size: 14px;
	font-family: "Font Awesome 6 Pro";
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.slick-prev:hover,
.slick-next:hover {
	background-color: var(--theme-color1);
}
.slick-prev:hover:before,
.slick-next:hover:before {
	color: #fff;
}
.slick-prev {
	left: -150px;
}
.slick-prev:before {
	content: "\f104";
}
.slick-next {
	right: -150px;
}
.boxcar-title-three {
	margin-bottom: 51px;
}
.boxcar-title-three .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.boxcar-title-three .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
	position: relative;
}
.boxcar-title-three .breadcrumb li::before {
	content: "â€¢";
	position: absolute;
	top: 0;
	right: -14px;
}
.boxcar-title-three .breadcrumb li:last-child {
	margin-right: 0;
}
.boxcar-title-three .breadcrumb li:last-child::before {
	display: none;
}
.boxcar-title-three .breadcrumb li a {
	color: var(--theme-color1);
}
.boxcar-title-three h2 {
	margin-bottom: 36px;
	font-weight: 700;
}
.boxcar-title-three .text {
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
}
.footer-style-one.v1 {
	z-index: -1;
}
.text-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 25px;
}
.text-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 400;
}
.text-box .form_boxes.v3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 14px;
	height: 20px;
}
.text-box .form_boxes.v3 small {
	color: #818181;
}
.text-box .form_boxes.v3 .drop-menu .select {
	padding: 0 0 0 10px;
	font-size: 15px;
	color: var(--theme-color-dark);
}
.text-box .form_boxes.v3 .drop-menu .select i {
	right: -14px;
	top: 1px;
}
.text-box .form_boxes.v3 .drop-menu .dropdown {
	width: 161px;
	left: auto;
	right: 0;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.body {
	background-color: var(--theme-color-dark);
}
.boxcar-wrapper.v2 {
	background-color: unset;
}
.drop-menu.height-auto {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
.drop-menu.height-auto .select {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	line-height: unset;
}
.theme-btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-family: var(--title-font);
}
.theme-btn .btn-title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.theme-btn:hover {
	background: var(--theme-color1-hover) !important;
	border-color: transparent !important;
}
/*Btn Style One*/
.btn-style-one {
	position: relative;
	font-size: 14px;
	line-height: 25px;
	padding: 14px 32px 18px;
	overflow: hidden;
	color: var(--theme-color1);
	border: 1px solid var(--theme-color1);
	background: #f8f5f0;
	text-transform: uppercase;
}
.btn-style-one i {
	position: relative;
	display: block;
	margin-left: 10px;
}
.btn-style-one:hover {
	color: var(--theme-color-light);
}
.theme-btn.small {
	padding: 10px 30px;
	line-height: 20px;
	font-size: 10px;
}
.theme-btn.large {
	padding: 20px 60px;
	line-height: 25px;
}
.image {
	overflow: hidden;
	border-radius: 15px 15px 0 0;
}
.image img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.inner-box:hover .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.boxcar-pricing-section .content-column .inner-column .read-more:hover,
.blog-blockt-two .inner-box .read-more:hover,
.boxcar-pricing-section-two .content-column .inner-column .read-more:hover,
.header-style-v3 .btn .header-btn-two:hover,
.boxcar-pricing-section-three .content-column .inner-column .read-more:hover,
.hheader-style-v4 .btn .header-btn-two:hover,
.boxcar-brand-section-three .content-column .inner-column .boxcar-title .brand-btn:hover,
.boxcar-pricing-section-four .content-column .inner-column .read-more:hover,
.boxcar-inspiration-section-two .right-box-two .uper-box .btn-box .read-more:hover,
.header-style-v1 .header-inner .right-box .header-btn-eight:hover,
.why-choose-us-section .content-column-two .boxcar-title .read-more:hover,
.header-style-v7 .btn .header-btn-two:hover,
.boxcar-pricing-section-five .content-column .inner-column .read-more:hover,
.boxcar-pricing-section-six .content-column .inner-column .read-more:hover,
.cars-section-fifteen .shop-c-box .content-column .inner-column .btn-box .shoping-btn:hover,
.theme-btn-web:hover,
.dealer-ship-section-two .side-bar .message:hover,
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .btn-box .button:hover,
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn:hover,
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn.two:hover,
.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box .side-btn:hover {
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn:hover {
	background: var(--theme-color1-hover) !important;
	border-color: transparent;
	color: #fff;
}
.car-block-two .inner-box .image-box .icon-box:hover {
	background-color: var(--theme-color1);
}
.car-block-two .inner-box .image-box .icon-box:hover svg path {
	fill: #fff;
}
.blog-block .inner-box .content-box .title:hover {
	color: var(--theme-color1);
}
.brand-boxcar-banner-section .content-column .inner-column .btn:hover {
	background: #fff;
	color: #000;
	border-color: transparent;
}
.car-block-six .inner-box .image-box .image {
	border-radius: 0;
}
.boxcar-banner-section-six .content-column .inner-column .btn-box .read-more svg path {
	fill: #000;
}
.dealership-block .inner-box .content-box .read-more svg path {
	fill: var(--theme-color1);
}
.boxcar-banner-section-six .content-column .inner-column .btn-box .read-more:hover svg path,
.dealership-block .inner-box .content-box .read-more:hover svg path {
	fill: #fff;
}
.brand-boxcar-banner-section .content-column .inner-column .btn:hover svg path {
	fill: #111;
}
.testimonial-block-four .inner-box:hover .image img {
	-webkit-transform: unset;
	transform: unset;
}
.team-block-three .inner-box .image {
	border-radius: 15px;
}
.team-block-three .inner-box:hover .image img {
	border-radius: 15px;
}
.blog-block .inner-box .image {
	border-radius: 15px;
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group button:hover,
.boxcar-banner-section-nine .banner-content .form-submit button:hover,
.hheader-style-v4.v10 .btn .header-btn-two:hover {
	color: #fff;
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more:hover svg path {
	fill: #000;
}
.blog-section-five .right-box-two .content-box.two .review:hover,
.cars-section-fifteen .content-sec .content-column .inner-column .content-box.two .review:hover,
.dealer-ship-section-two .inner-column .brand-box .content-box .brand-btn:hover,
.dealer-ship-section-two .inner-column .content-box.two .review:hover,
.inventory-section .inspection-column .inner-column .content-box.two .review:hover {
	background-color: var(--theme-color1);
	color: #fff;
	border-color: transparent;
}
.blog-section-five .right-box-two .content-box.two .review:hover svg path,
.cars-section-fifteen .content-sec .content-column .inner-column .content-box.two .review:hover svg path,
.dealer-ship-section-two .inner-column .brand-box .content-box .brand-btn:hover svg path,
.dealer-ship-section-two .inner-column .content-box.two .review:hover svg path,
.inventory-section .inspection-column .inner-column .content-box.two .review:hover svg path {
	fill: #fff;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn.two:hover svg path {
	fill: #fff;
}
.title>a:hover,
.text>a:hover {
	color: var(--theme-color1);
}
.inventory-section .inspection-column .inner-column .description-sec .des-list li img {
	margin-right: 10px;
}
.inventory-section .side-bar-column.v3 .contact-box-two .btn-box .side-btn.two:hover,
.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box .side-btn.two:hover {
	background-color: transparent !important;
	color: #000;
}
.hheader-style-v4.five .btn .header-btn-two:hover {
	color: #fff;
	border-color: transparent;
}
/*** 
	====================================================================
	Search Popup
	====================================================================
***/
.search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	overflow: hidden;
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
}
.search-popup .search-back-drop {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--theme-color-dark);
	opacity: 0.95;
}
.search-popup .close-search {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 26px;
	color: var(--theme-color-light);
	z-index: 3;
	border-radius: 50%;
	background-color: transparent;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-popup .search-inner {
	position: relative;
	display: block;
	top: 40%;
	height: auto;
	z-index: 1;
	width: calc(100% - 60px);
	max-width: 800px;
	margin: auto;
	opacity: 0;
	-webkit-transform: translateY(-50px);
	transform: translateY(-50px);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.search-popup .form-group {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.search-popup .form-group input[type=search],
.search-popup .form-group input[type=text] {
	position: relative;
	display: block;
	line-height: 20px;
	font-size: 14px;
	width: 100%;
	height: 50px;
	border: 1px solid #e1e6dc;
	padding: 15px 20px;
	color: #707070;
	background: #ffffff;
	border-radius: 5px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-popup .form-group input[type=search]:focus,
.search-popup .form-group input[type=text]:focus {
	border-color: var(--border-theme-color2);
}
.search-popup .form-group button {
	position: absolute;
	right: 5px;
	top: 5px;
	height: 40px;
	width: 40px;
	display: block;
	font-size: 18px;
	color: var(--theme-color-dark);
	line-height: 40px;
	border-radius: 5px;
	font-weight: normal;
	background: #ffffff;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-popup .form-group button:hover {
	color: var(--theme-color-dark);
}
.search-popup textarea::-webkit-input-placeholder,
.search-popup input::-webkit-input-placeholder {
	color: inherit;
}
.search-popup textarea::-moz-placeholder,
.search-popup input::-moz-placeholder {
	color: inherit;
}
.search-popup textarea:-ms-input-placeholder,
.search-popup input:-ms-input-placeholder {
	color: inherit;
}
.search-popup textarea::-ms-input-placeholder,
.search-popup input::-ms-input-placeholder {
	color: inherit;
}
.search-popup textarea::placeholder,
.search-popup input::placeholder {
	color: inherit;
}
.moblie-search-active .search-popup {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
	border-radius: 0%;
}
.moblie-search-active .search-popup .search-inner {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 500ms;
	transition-delay: 500ms;
}
/*** 
	====================================================================
	Main Header
	====================================================================
***/
.header-span {
	position: relative;
	height: 110px;
	display: block;
	width: 100%;
}
.boxcar-header {
	position: relative;
	width: 100%;
	z-index: 999999;
}
.header-top {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.header-top .header-top-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 24px 0 10px;
}
.header-top .top-left {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-top .top-left .info-list {
	color: #ffffff;
	font-size: 14px;
}
.header-top .top-left .info-list span {
	color: #b5cf2b;
	font-size: 14px;
	font-weight: 600;
}
.header-top .top-center {
	margin-left: auto;
	margin-right: auto;
}
.header-top .top-right {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-top .top-right button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #ffffff;
	font-size: 14px;
	background: transparent;
}
.header-top .top-right button span,
.header-top .top-right button img {
	margin-right: 10px;
	display: inline-block;
}
.header-top .top-right button span {
	font-size: 20px;
}
.header-top .top-right button.login-btn {
	margin-left: 72px;
}
.header-top .top-right button.login-btn i {
	font-size: 18px;
	margin-right: 7px;
}
.boxcar-header .header-inner {
	position: relative;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.boxcar-header .header-inner .logo-inner {
	position: relative;
}
.boxcar-header {
	width: 100%;
	z-index: 999;
}
.boxcar-header .logo {
	position: relative;
	display: block;
}
.boxcar-header .logo img {
	max-width: 100%;
	height: auto;
}
.boxcar-header .c-box {
	position: relative;
	left: 0px;
	top: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.boxcar-header .c-box .nav-out-bar {
	position: relative;
	margin-left: 230px;
	margin-right: auto;
}
.main-menu {
	position: relative;
}
@media (max-width: 991.98px) {
	.main-menu {
		display: none;
	}
}
.main-menu .navbar-header {
	display: none;
}
.main-menu .navbar-collapse {
	padding: 0px;
}
.main-menu .navigation {
	position: relative;
	margin: 0px;
}
.main-menu .navigation>li {
	position: relative;
	float: left;
	margin: 0 18px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.main-menu .navigation>li:last-child {
	margin-right: 0;
}
.main-menu .navigation>li>a {
	position: relative;
	display: block;
	text-align: center;
	opacity: 1;
	color: #ffffff;
	font-size: 15px;
	line-height: 30px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.boxcar-header .right-box {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}
.boxcar-header .right-box .header-btn {
	display: inline-block;
	color: #ffffff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 15px;
	padding: 0 5px 0 38px;
	height: 60px;
	line-height: 60px;
	border: 1px solid #fff;
	border-radius: 50px;
}
.boxcar-header .right-box .header-btn span {
	margin-left: 10px;
	position: relative;
	top: -2px;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme-color1);
}
.boxcar-header .right-box .header-btn span i {
	color: #000;
	font-size: 22px;
	font-weight: 900;
	top: 4px;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.boxcar-header .right-box .header-btn:hover {
	background-color: var(--theme-color1);
	border-color: transparent;
}
.boxcar-header .ui-btn-outer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 6px 0;
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	padding-left: 17px;
	position: relative;
	right: 117px;
}
.boxcar-header .ui-btn {
	position: relative;
	display: block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	background: none;
	font-size: 26px;
	color: #ffffff;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.boxcar-header .ui-btn:hover {
	color: var(--theme-color1);
}
.boxcar-header .info-btn {
	position: relative;
	font-size: 14px;
	padding-left: 44px;
	color: #ffffff;
	text-align: left;
	font-weight: 500;
	white-space: nowrap;
	line-height: 20px;
}
.boxcar-header .info-btn small {
	display: block;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--theme-color1);
}
.boxcar-header .info-btn .icon {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
	line-height: 40px;
	height: 40px;
	font-size: 24px;
	line-height: 1em;
	margin-right: 20px;
	padding-right: 20px;
}
.boxcar-header .info-btn:hover {
	color: var(--theme-color-light);
}
/*** 
	====================================================================
    header-style-v1
	====================================================================
***/
.header-style-v1 {
	position: absolute;
}
.header-style-v1.style-two {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
	padding-top: 10px;
}
.header-style-v1.style-two .header-inner {
	padding: 0;
}
.header-style-v1 .btn {
	padding-right: 0;
}
.header-style-v1 .btn .header-btn-two {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-dark);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 50px;
	background-color: var(--theme-color-light);
	text-transform: capitalize;
	display: inline-block;
}
.header-style-v1 .btn .header-btn-two:hover {
	color: #fff;
	background-color: var(--theme-color1);
}
.header-style-v1 .header-inner {
	padding: 28px 0 0;
}
.header-style-v1.home-8 .header-inner {
	padding-top: 60px;
}
@media (max-width: 1440px) {
	.header-style-v1.home-8 .header-inner {
		padding-top: 30px;
	}
}
.header-style-v1 .header-inner .inner-container {
	max-width: 1829px;
	margin: 0 auto;
	padding: 0 15px;
}
.header-style-v1 .header-inner .c-box .logo-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.header-style-v1 .header-inner .c-box .logo-inner .logo {
	margin-right: 62px;
	/* Medium Large devices */
}
@media (max-width: 1399px) {
	.header-style-v1 .header-inner .c-box .logo-inner .logo {
		margin-right: 30px;
	}
}
.header-style-v1 .header-inner .c-box .logo-inner .logo img {
	max-width: 110px;
}
.header-style-v1 .header-inner .c-box .logo-inner .search-btn a {
	color: var(--theme-color-light);
	font-size: 15px;
	display: flex;
}
.header-style-v1 .header-inner .c-box .logo-inner .search-btn a .icon {
	margin-right: 13px;
	margin-top: -2px;
}
.header-style-v1 .header-inner .c-box .nav-out-bar {
	margin-left: auto;
	margin-right: 31px;
	/* Medium Large devices */
}
@media (max-width: 1399px) {
	.header-style-v1 .header-inner .c-box .nav-out-bar {
		margin-left: 20px;
	}
}
@media (max-width: 1399.98px) {
	.header-style-v1 .header-inner .c-box .nav-out-bar .nav {
		display: unset;
	}
}
@media (max-width: 1199.98px) {
	.header-style-v1 .header-inner .c-box .nav-out-bar .nav {
		display: none;
	}
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown i {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 12px;
	margin-left: 8px;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover>.dropdown {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover i {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	padding: 2px 0 5px;
	margin-top: 30px;
	margin-bottom: 0;
	min-width: 243px;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	border-radius: 14px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	padding: 25px 20px;
}
.header-style-v1 .header-inner .mega-menu {
	-webkit-box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li {
	padding: 0;
	margin-bottom: 10px;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child {
	margin-bottom: 0;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a {
	display: block;
	color: #050B20;
	font-size: 15px;
	-webkit-transition: all 220ms linear 0ms;
	transition: all 220ms linear 0ms;
	text-transform: capitalize;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a:hover {
	color: var(--theme-color1);
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child a {
	border-bottom: 0;
}
.header-style-v1 .header-inner .right-box .header-btn-eight {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	text-transform: capitalize;
	display: inline-block;
}
.header-style-v1 .header-inner .right-box .contact-info {
	position: relative;
	padding-left: 50px;
}
.header-style-v1 .header-inner .right-box .contact-info .image {
	position: absolute;
	top: 12px;
	left: 0;
}
.header-style-v1 .header-inner .right-box .contact-info span {
	font-size: 12px;
	color: var(--theme-color-light);
}
.header-style-v1 .header-inner .right-box .contact-info .title {
	color: var(--theme-color-light);
	margin-top: -4px;
	margin-bottom: 0;
}
.header-style-v1 .header-inner .right-box .social-list-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 71px;
	position: relative;
}
.header-style-v1 .header-inner .right-box .social-list-one::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -31px;
	width: 2px;
	height: 50px;
	background-color: #525c5c;
}
.header-style-v1 .header-inner .right-box .social-list-one li {
	margin-right: 48px;
}
.header-style-v1 .header-inner .right-box .social-list-one li:last-child {
	margin-right: 0;
}
.header-style-v1 .header-inner .right-box .social-list-one li a {
	font-size: 24px;
	color: var(--theme-color-light);
}
.header-style-v1 .header-inner .sticky-header {
	background-color: var(--theme-color-v2);
}
.header-style-v1 .header-inner .sticky-header .mobile-navigation {
	display: none;
}
.header-style-v1 .header-inner .sticky-header .main-menu .navigation>li {
	padding: 0;
}
.header-style-v1 .header-inner .sticky-header.fixed-header {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #000;
}
.header-style-v1 .header-inner .sticky-header .main-menu {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v1 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-v1 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: #fff;
}
.header-style-v1 .header-inner .sticky-header .inner-container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 767.98px) {
	.header-style-v1 .header-inner .contact-info {
		display: none;
	}
}
@media (max-width: 575.98px) {
	.header-style-v1 .header-inner .contact-info {
		display: unset;
		width: 232px;
		margin-left: -170px;
	}
}
.header-style-v1 .header-inner .right-box {
	position: relative;
	margin-left: 0;
}
.header-inner .right-box .box-account {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-right: 18px;
	color: var(--theme-color-light);
	font-size: 15px;
}
.boxcar-header.five .header-inner .right-box .box-account {
	color: var(--theme-color-dark);
}
.header-inner .right-box .box-account .icon {
	margin-top: -4px;
}
@media (max-width: 767.98px) {
	.header-style-v1 .header-inner .right-box:before {
		display: none;
	}
}
.header-style-v1 .header-inner .right-box>a {
	font-size: 15px;
	color: var(--theme-color-light);
	margin-right: 18px;
}
.header-style-v1 .header-inner .right-box>a i {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-right: 10px;
}
.header-style-v1.inner-header {
	position: static;
	background-color: var(--theme-color-dark);
}
.header-style-v1.inner-header .header-btn-two {
	background-color: var(--theme-color-dark);
	border: 1px solid var(--theme-color-light);
	color: var(--theme-color-light);
}
/*** 
	====================================================================
    header-style-v3
	====================================================================
***/
.header-style-v3 {
	position: absolute;
}
.header-style-v3 .btn {
	padding-right: 0;
}
.header-style-v3 .btn .header-btn-two {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	text-transform: capitalize;
	display: inline-block;
}
.header-style-v3 .header-inner {
	padding: 13px 0 0;
}
.header-style-v3 .header-inner .inner-container {
	max-width: 1829px;
	margin: 0 auto;
	padding: 0 15px;
}
.header-style-v3 .header-inner .c-box {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header-style-v3 .header-inner .c-box .logo-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.header-style-v3 .header-inner .c-box .logo-inner .menu {
	font-size: 15px;
	color: var(--theme-color-light);
	text-transform: capitalize;
	margin-right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 20px;
}
.header-style-v3 .header-inner .c-box .logo-inner .menu .menu-btn {
	width: 22px;
	margin-right: 10px;
}
.header-style-v3 .header-inner .c-box .logo-inner .menu .menu-btn>span {
	display: block;
	height: 1px;
	background: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.header-style-v3 .header-inner .c-box .logo-inner .menu .menu-btn>span:last-child {
	margin-bottom: 0;
}
.header-style-v3 .header-inner .c-box .logo-inner .menu i {
	margin-right: 13px;
}
.header-style-v3 .header-inner .c-box .logo-inner .logo {
	margin-right: 62px;
}
.header-style-v3 .header-inner .c-box .logo-inner .logo img {
	max-width: 110px;
}
.header-style-v3 .header-inner .c-box .nav-out-bar {
	margin-left: auto;
	margin-right: 31px;
	display: none;
}
@media (max-width: 1399.98px) {
	.header-style-v3 .header-inner .c-box .nav-out-bar {
		margin-left: 157px;
	}
}
@media (max-width: 1399.98px) {
	.header-style-v3 .header-inner .c-box .nav-out-bar .nav {
		display: unset;
	}
}
@media (max-width: 1199.98px) {
	.header-style-v3 .header-inner .c-box .nav-out-bar .nav {
		display: none;
	}
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation li a {
	color: var(--theme-color-dark);
	font-weight: 500;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation li a:hover {
	color: var(--theme-color1);
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown i {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 12px;
	margin-left: 5px;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible;
	margin-top: 17px;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover i {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--theme-color1);
	padding: 2px 0 5px;
	margin-top: 30px;
	margin-bottom: 0;
	min-width: 220px;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
	border-radius: 7px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li {
	padding: 0 18px;
	white-space: nowrap;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a {
	padding: 9px 0 5px;
	display: block;
	color: #fff;
	font-size: 14px;
	border-bottom: 1px solid rgba(251, 251, 251, 0.5);
	-webkit-transition: all 220ms linear 0ms;
	transition: all 220ms linear 0ms;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child a {
	border-bottom: 0;
}
.header-style-v3 .header-inner .main-menu .navigation>li>a {
	color: var(--theme-color-dark);
	font-size: 14px;
}
.header-style-v3 .header-inner .main-menu .navigation>li>a:hover {
	color: var(--theme-color1);
}
.header-style-v3 .header-inner .right-box .search-btn {
	margin-right: 31px;
}
.header-style-v3 .header-inner .right-box .search-btn a {
	color: var(--theme-color-light);
	font-size: 15px;
}
.header-style-v3 .header-inner .right-box .search-btn a i {
	margin-right: 13px;
}
.header-style-v3 .header-inner .right-box .contact-info {
	position: relative;
	padding-left: 50px;
}
.header-style-v3 .header-inner .right-box .contact-info .image {
	position: absolute;
	top: 12px;
	left: 0;
}
.header-style-v3 .header-inner .right-box .contact-info span {
	font-size: 12px;
	color: var(--theme-color-light);
}
.header-style-v3 .header-inner .right-box .contact-info .title {
	color: var(--theme-color-light);
	margin-top: -4px;
	margin-bottom: 0;
}
.header-style-v3 .header-inner .right-box .social-list-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 71px;
	position: relative;
}
.header-style-v3 .header-inner .right-box .social-list-one::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -31px;
	width: 2px;
	height: 50px;
	background-color: #525c5c;
}
.header-style-v3 .header-inner .right-box .social-list-one li {
	margin-right: 48px;
}
.header-style-v3 .header-inner .right-box .social-list-one li:last-child {
	margin-right: 0;
}
.header-style-v3 .header-inner .right-box .social-list-one li a {
	font-size: 24px;
	color: var(--theme-color-light);
}
.header-style-v3 .header-inner .main-menu .navigation>li {
	padding: 0;
	margin: 0 18px;
}
.header-style-v3 .header-inner .main-menu .navigation>li:last-child {
	margin-right: 0;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation li a {
	color: var(--theme-color-light);
	font-size: 15px;
}
.header-style-v3 .header-inner .c-box .nav-out-bar .nav .navigation li a:hover {
	color: var(--theme-color1);
}
.header-style-v3 .header-inner .main-menu .navigation>li>ul>li>a:hover {
	color: var(--theme-color-v2);
}
.header-style-v3 .header-inner .sticky-header {
	background-color: var(--theme-color-v2);
}
.header-style-v3 .header-inner .sticky-header .mobile-navigation {
	display: none;
}
.header-style-v3 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-v3 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: var(--theme-color-v2);
}
.header-style-v3 .header-inner .sticky-header .main-menu .navigation>li {
	padding: 0;
}
.header-style-v3 .header-inner .sticky-header.fixed-header {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #000;
}
.header-style-v3 .header-inner .sticky-header .main-menu {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v3 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-v3 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: #fff;
}
.header-style-v3 .header-inner .sticky-header .inner-container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 767.98px) {
	.header-style-v3 .header-inner .contact-info {
		display: none;
	}
}
@media (max-width: 575.98px) {
	.header-style-v3 .header-inner .contact-info {
		display: unset;
		width: 232px;
		margin-left: -170px;
	}
}
.header-style-v3 .header-inner .right-box {
	position: relative;
}
@media (max-width: 767.98px) {
	.header-style-v3 .header-inner .right-box:before {
		display: none;
	}
}
.header-style-v3 .header-inner .right-box span {
	font-size: 15px;
	color: var(--theme-color-light);
	margin-right: 18px;
}
.header-style-v3 .header-inner .right-box span i {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-right: 10px;
}
/*** 
	====================================================================
    hheader-style-v4
	====================================================================
***/
.hheader-style-v4 {
	position: absolute;
}
.hheader-style-v4.style-two {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
	padding-top: 10px;
}
.hheader-style-v4.style-two .header-inner {
	padding: 0;
}
.hheader-style-v4 .btn {
	padding-right: 0;
}
.hheader-style-v4 .btn .header-btn-two {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	text-transform: capitalize;
	display: inline-block;
}
.hheader-style-v4 .header-inner {
	padding: 28px 0 0;
}
.hheader-style-v4 .header-inner .inner-container {
	max-width: 1829px;
	margin: 0 auto;
	padding: 0 25px;
}
.hheader-style-v4 .header-inner .c-box .logo-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.hheader-style-v4 .header-inner .c-box .logo-inner .logo {
}
.hheader-style-v4 .header-inner .c-box .logo-inner .logo img {
	max-width: 200px;
	max-height: 90px;
}
.box-phone-cus {
	display: flex;
	align-items: center;
	gap: 9px;
}
.box-phone-cus .icon {
	margin-top: -4px;
}
.hheader-style-v4 .header-inner .c-box .logo-inner .search-btn .search {
	color: var(--theme-color-light);
	font-size: 15px;
}
.hheader-style-v4 .header-inner .c-box .logo-inner .search-btn .search i {
	margin-right: 13px;
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar {
	margin-left: auto;
	margin-right: 60px;
}
.hheader-style-v4.style-1 .header-inner .c-box .nav-out-bar {
	margin-right: auto;
}
@media (max-width: 1399.98px) {
	.hheader-style-v4 .header-inner .c-box .nav-out-bar {
		margin-left: 157px;
	}
}
@media (max-width: 1399.98px) {
	.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav {
		display: unset;
	}
}
@media (max-width: 1199.98px) {
	.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav {
		display: none;
	}
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown i {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 12px;
	margin-left: 8px;
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover>.dropdown {
	opacity: 1;
	visibility: visible;
	margin-top: 17px;
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover i {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	padding: 2px 0 5px;
	margin-top: 30px;
	margin-bottom: 0;
	min-width: 243px;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	border-radius: 14px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	padding: 25px 20px;
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li {
	padding: 0;
	margin-bottom: 10px;
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child {
	margin-bottom: 0;
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a {
	display: block;
	color: #050B20;
	font-size: 15px;
	-webkit-transition: all 220ms linear 0ms;
	transition: all 220ms linear 0ms;
	text-transform: capitalize;
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a:hover {
	color: var(--theme-color1);
}
.hheader-style-v4 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child a {
	border-bottom: 0;
}
.hheader-style-v4 .header-inner .right-box .contact-info {
	position: relative;
	padding-left: 50px;
}
.hheader-style-v4 .header-inner .right-box .contact-info .image {
	position: absolute;
	top: 12px;
	left: 0;
}
.hheader-style-v4 .header-inner .right-box .contact-info span {
	font-size: 12px;
	color: var(--theme-color-light);
}
.hheader-style-v4 .header-inner .right-box .contact-info .title {
	color: var(--theme-color-light);
	margin-top: -4px;
	margin-bottom: 0;
}
.hheader-style-v4 .header-inner .right-box .social-list-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 71px;
	position: relative;
}
.hheader-style-v4 .header-inner .right-box .social-list-one::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -31px;
	width: 2px;
	height: 50px;
	background-color: #525c5c;
}
.hheader-style-v4 .header-inner .right-box .social-list-one li {
	margin-right: 48px;
}
.hheader-style-v4 .header-inner .right-box .social-list-one li:last-child {
	margin-right: 0;
}
.hheader-style-v4 .header-inner .right-box .social-list-one li a {
	font-size: 24px;
	color: var(--theme-color-light);
}
.hheader-style-v4 .header-inner .sticky-header {
	background-color: var(--theme-color-v2);
}
.hheader-style-v4 .header-inner .sticky-header .mobile-navigation {
	display: none;
}
.hheader-style-v4 .header-inner .sticky-header .main-menu .navigation>li {
	padding: 0;
}
.hheader-style-v4 .header-inner .sticky-header.fixed-header {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #000;
}
.hheader-style-v4 .header-inner .sticky-header .main-menu {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.hheader-style-v4 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.hheader-style-v4 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: #fff;
}
.hheader-style-v4 .header-inner .sticky-header .inner-container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 767.98px) {
	.hheader-style-v4 .header-inner .contact-info {
		display: none;
	}
}
@media (max-width: 575.98px) {
	.hheader-style-v4 .header-inner .contact-info {
		display: unset;
		width: 232px;
		margin-left: -170px;
	}
}
.hheader-style-v4 .header-inner .right-box {
	position: relative;
}
@media (max-width: 767.98px) {
	.hheader-style-v4 .header-inner .right-box:before {
		display: none;
	}
}
.hheader-style-v4 .header-inner .right-box .user {
	font-size: 15px;
	color: var(--theme-color-light);
	margin-right: 18px;
}
.hheader-style-v4 .header-inner .right-box .user i {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-right: 10px;
}
.hheader-style-v4 .header-inner .right-box .search {
	color: var(--theme-color-light);
	font-size: 15px;
	line-height: 26px;
	margin-right: 31px;
	display: flex;
	gap: 10px;
	font-weight: 500;
}
.hheader-style-v4 .header-inner .right-box .search .icon {
	margin-top: -1px;
}
.hheader-style-v4 .header-inner .right-box .search i {
	margin-right: 13px;
}
.hheader-style-v4.v6 .header-inner {
	padding-top: 13px;
}
.hheader-style-v4.v6 .nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.hheader-style-v4.v6 .c-box {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.hheader-style-v4.v6 .c-box .logo-inner .logo {
	margin-right: 12px;
}
.hheader-style-v4.v6 .c-box .nav-out-bar {
	margin-left: 0;
}
.hheader-style-v4.v6 .main-menu .navigation>li>a {
	color: var(--theme-color-dark);
}
.hheader-style-v4.v10 {
	position: static;
}
.hheader-style-v4.v10 .header-inner {
	padding: 20px 0;
}
.hheader-style-v4.v10 .nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.hheader-style-v4.v10 .c-box {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.hheader-style-v4.v10 .c-box .logo-inner .logo {
	margin-right: 12px;
}
.hheader-style-v4.v10 .c-box .nav-out-bar {
	margin-left: 30px;
}
.hheader-style-v4.v10 .main-menu .navigation>li>a {
	color: var(--theme-color-dark);
}
.hheader-style-v4.v10 .btn .header-btn-two {
	border-color: var(--theme-color-dark);
	color: var(--theme-color-dark);
}
.hheader-style-v4.v10 .right-box .user {
	color: var(--theme-color-dark);
}
.hheader-style-v4.v10 .right-box .user i {
	color: var(--theme-color-dark);
}
.hheader-style-v4.v10 .right-box .search {
	color: var(--theme-color-dark);
	display: flex;
	align-items: center;
}
/*** 
	====================================================================
    header-style-five
	====================================================================
***/
.hheader-style-v4.five {
	position: static;
	background: #fff;
	padding: 15px 0;
}
.hheader-style-v4.five .header-inner {
	padding: 0;
}
.hheader-style-v4.five .btn .header-btn-two {
	color: var(--theme-color-dark);
	border-color: var(--theme-color-dark);
}
.hheader-style-v4.five .c-box .logo-inner .search-btn .search {
	color: var(--theme-color-dark);
}
.hheader-style-v4.five .main-menu .navigation>li>a {
	color: var(--theme-color-dark);
}
.hheader-style-v4.five .right-box .search {
	color: var(--theme-color-dark);
}
.hheader-style-v4.five .right-box .user {
	color: var(--theme-color-dark);
}
.hheader-style-v4.five .right-box .user i {
	color: var(--theme-color-dark);
}
/*** 
	====================================================================
    header-style-v7
	====================================================================
***/
.header-style-v7 .btn {
	padding-right: 0;
}
.header-style-v7 .btn .header-btn-two {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-dark);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 120px;
	border: 1px solid #E1E1E1;
	text-transform: capitalize;
	display: inline-block;
}
.header-style-v7 .header-inner {
	padding: 13px 0 13px;
	border-bottom: 1px solid #e1e1e1;
	margin-bottom: 28px;
}
.header-style-v7 .header-inner .inner-container {
	max-width: 1829px;
	margin: 0 auto;
	padding: 0 15px;
}
.header-style-v7 .header-inner .c-box {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header-style-v7 .header-inner .c-box .logo-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v7 .header-inner .c-box .logo-inner .menu {
	font-size: 15px;
	color: var(--theme-color-dark);
	text-transform: capitalize;
	margin-right: 31px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v7 .header-inner .c-box .logo-inner .menu .menu-btn {
	width: 22px;
	margin-right: 10px;
}
.header-style-v7 .header-inner .c-box .logo-inner .menu .menu-btn>span {
	display: block;
	height: 1px;
	background: var(--theme-color-dark);
	width: 100%;
	margin-bottom: 5px;
}
.header-style-v7 .header-inner .c-box .logo-inner .menu .menu-btn>span:last-child {
	margin-bottom: 0;
}
.header-style-v7 .header-inner .c-box .logo-inner .menu i {
	margin-right: 13px;
}
.header-style-v7 .header-inner .c-box .logo-inner .search {
	color: var(--theme-color-dark);
	font-size: 15px;
	margin-right: 31px;
	display: flex;
	gap: 7px;
}
.header-style-v7 .header-inner .c-box .logo-inner .search .icon {
	margin-top: -2px;
}
.header-style-v7 .header-inner .c-box .logo-inner .search i {
	margin-right: 13px;
}
.header-style-v7 .header-inner .c-box .logo {
	right: -160px;
}
.header-style-v7 .header-inner .c-box .nav-out-bar {
	margin-left: auto;
	margin-right: 31px;
	display: none;
}
@media (max-width: 1399.98px) {
	.header-style-v7 .header-inner .c-box .nav-out-bar {
		margin-left: 157px;
	}
}
@media (max-width: 1399.98px) {
	.header-style-v7 .header-inner .c-box .nav-out-bar .nav {
		display: unset;
	}
}
@media (max-width: 1199.98px) {
	.header-style-v7 .header-inner .c-box .nav-out-bar .nav {
		display: none;
	}
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation li a {
	color: var(--theme-color-dark);
	font-weight: 500;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation li a:hover {
	color: var(--theme-color1);
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown i {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 12px;
	margin-left: 5px;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible;
	margin-top: 17px;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover i {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	padding: 2px 0 5px;
	margin-top: 30px;
	margin-bottom: 0;
	min-width: 220px;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
	border-radius: 7px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li {
	padding: 0 18px;
	white-space: nowrap;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a {
	padding: 9px 0 5px;
	display: block;
	color: #fff;
	font-size: 14px;
	border-bottom: 1px solid rgba(251, 251, 251, 0.5);
	-webkit-transition: all 220ms linear 0ms;
	transition: all 220ms linear 0ms;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child a {
	border-bottom: 0;
}
.header-style-v7 .header-inner .main-menu .navigation>li>a {
	color: var(--theme-color-dark);
	font-size: 14px;
}
.header-style-v7 .header-inner .main-menu .navigation>li>a:hover {
	color: var(--theme-color1);
}
.header-style-v7 .header-inner .right-box .search-btn {
	margin-right: 31px;
}
.header-style-v7 .header-inner .right-box .search-btn a {
	color: var(--theme-color-dark);
	font-size: 15px;
	display: flex;
	gap: 10px;
}
.header-style-v7 .header-inner .right-box .search-btn a i {
	margin-right: 13px;
}
.header-style-v7 .header-inner .right-box .contact-info {
	position: relative;
	padding-left: 50px;
}
.header-style-v7 .header-inner .right-box .contact-info .image {
	position: absolute;
	top: 12px;
	left: 0;
}
.header-style-v7 .header-inner .right-box .contact-info span {
	font-size: 12px;
	color: var(--theme-color-light);
}
.header-style-v7 .header-inner .right-box .contact-info .title {
	color: var(--theme-color-light);
	margin-top: -4px;
	margin-bottom: 0;
}
.header-style-v7 .header-inner .right-box .social-list-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 71px;
	position: relative;
}
.header-style-v7 .header-inner .right-box .social-list-one::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -31px;
	width: 2px;
	height: 50px;
	background-color: #525c5c;
}
.header-style-v7 .header-inner .right-box .social-list-one li {
	margin-right: 48px;
}
.header-style-v7 .header-inner .right-box .social-list-one li:last-child {
	margin-right: 0;
}
.header-style-v7 .header-inner .right-box .social-list-one li a {
	font-size: 24px;
	color: var(--theme-color-light);
}
.header-style-v7 .header-inner .main-menu .navigation>li {
	padding: 0;
	margin: 0 18px;
}
.header-style-v7 .header-inner .main-menu .navigation>li:last-child {
	margin-right: 0;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation li a {
	color: var(--theme-color-light);
	font-size: 15px;
}
.header-style-v7 .header-inner .c-box .nav-out-bar .nav .navigation li a:hover {
	color: var(--theme-color1);
}
.header-style-v7 .header-inner .main-menu .navigation>li>ul>li>a:hover {
	color: var(--theme-color-v2);
}
.header-style-v7 .header-inner .sticky-header {
	background-color: var(--theme-color-v2);
}
.header-style-v7 .header-inner .sticky-header .mobile-navigation {
	display: none;
}
.header-style-v7 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-v7 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: var(--theme-color-v2);
}
.header-style-v7 .header-inner .sticky-header .main-menu .navigation>li {
	padding: 0;
}
.header-style-v7 .header-inner .sticky-header.fixed-header {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #000;
}
.header-style-v7 .header-inner .sticky-header .main-menu {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v7 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-v7 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: #fff;
}
.header-style-v7 .header-inner .sticky-header .inner-container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 767.98px) {
	.header-style-v7 .header-inner .contact-info {
		display: none;
	}
}
@media (max-width: 575.98px) {
	.header-style-v7 .header-inner .contact-info {
		display: unset;
		width: 232px;
		margin-left: -170px;
	}
}
.header-style-v7 .header-inner .right-box {
	position: relative;
}
@media (max-width: 767.98px) {
	.header-style-v7 .header-inner .right-box:before {
		display: none;
	}
}
.header-style-v7 .header-inner .right-box .icon {
	/* font-size: 15px;
		color: var(--theme-color-light);
	margin-right: 18px; */
	margin-top: -2px;
}
.header-style-v7 .header-inner .right-box span i {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-right: 10px;
}
/*** 
	====================================================================
    header-style-v9
	====================================================================
***/
.header-style-v9 {
	position: absolute;
}
.header-style-v9 .btn {
	padding-right: 0;
}
.header-style-v9 .btn .header-btn-two {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 120px;
	border: 1px solid #E1E1E1;
	text-transform: capitalize;
	display: inline-block;
}
.header-style-v9 .header-inner {
	padding: 13px 0 13px;
}
.header-style-v9 .header-inner .inner-container {
	max-width: 1829px;
	margin: 0 auto;
	padding: 0 15px;
}
.header-style-v9 .header-inner .c-box {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header-style-v9 .header-inner .c-box .logo-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v9 .header-inner .c-box .logo-inner .menu {
	font-size: 15px;
	color: var(--theme-color-dark);
	text-transform: capitalize;
	margin-right: 31px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v9 .header-inner .c-box .logo-inner .menu .menu-btn {
	width: 22px;
	margin-right: 10px;
}
.header-style-v9 .header-inner .c-box .logo-inner .menu .menu-btn>span {
	display: block;
	height: 1px;
	background: var(--theme-color-dark);
	width: 100%;
	margin-bottom: 5px;
}
.header-style-v9 .header-inner .c-box .logo-inner .menu .menu-btn>span:last-child {
	margin-bottom: 0;
}
.header-style-v9 .header-inner .c-box .logo-inner .menu i {
	margin-right: 13px;
}
.header-style-v9 .header-inner .c-box .logo-inner .search {
	color: var(--theme-color-dark);
	font-size: 15px;
	margin-right: 31px;
}
.header-style-v9 .header-inner .c-box .logo-inner .search i {
	margin-right: 13px;
}
.header-style-v9 .header-inner .c-box .logo {
	left: 95px;
}
.header-style-v9 .header-inner .c-box .nav-out-bar {
	margin: 0;
}
@media (max-width: 1399.98px) {
	.header-style-v9 .header-inner .c-box .nav-out-bar .nav {
		display: unset;
	}
}
@media (max-width: 1199.98px) {
	.header-style-v9 .header-inner .c-box .nav-out-bar .nav {
		display: none;
	}
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation>li>a {
	color: #fff;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation>li>a:hover {
	color: #fff !important;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown i {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 12px;
	margin-left: 5px;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover>.dropdown {
	opacity: 1;
	visibility: visible;
	margin-top: 17px;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover i {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	padding: 15px 10px;
	margin-top: 30px;
	margin-bottom: 0;
	min-width: 220px;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
	border-radius: 7px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li {
	padding: 0 18px;
	white-space: nowrap;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a {
	padding: 9px 0 5px;
	display: block;
	color: #000;
	font-size: 14px;
	border-bottom: 1px solid rgba(251, 251, 251, 0.5);
	-webkit-transition: all 220ms linear 0ms;
	transition: all 220ms linear 0ms;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a:hover {
	color: var(--theme-color1);
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child a {
	border-bottom: 0;
}
.header-style-v9 .header-inner .main-menu .navigation>li>a {
	color: var(--theme-color-dark);
	font-size: 14px;
}
.header-style-v9 .header-inner .main-menu .navigation>li>a:hover {
	color: var(--theme-color1);
}
.header-style-v9 .header-inner .right-box>a {
	font-size: 15px;
	color: var(--theme-color-light);
	margin-right: 18px;
}
.header-style-v9 .header-inner .right-box>a i {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-right: 10px;
}
.header-style-v9 .header-inner .right-box .search-btn {
	margin-right: 31px;
}
.header-style-v9 .header-inner .right-box .search-btn a {
	color: var(--theme-color-light);
	font-size: 15px;
}
.header-style-v9 .header-inner .right-box .search-btn a i {
	margin-right: 13px;
}
.header-style-v9 .header-inner .right-box .contact-info {
	position: relative;
	padding-left: 50px;
}
.header-style-v9 .header-inner .right-box .contact-info .image {
	position: absolute;
	top: 12px;
	left: 0;
}
.header-style-v9 .header-inner .right-box .contact-info span {
	font-size: 12px;
	color: var(--theme-color-light);
}
.header-style-v9 .header-inner .right-box .contact-info .title {
	color: var(--theme-color-light);
	margin-top: -4px;
	margin-bottom: 0;
}
.header-style-v9 .header-inner .right-box .social-list-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 71px;
	position: relative;
}
.header-style-v9 .header-inner .right-box .social-list-one::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -31px;
	width: 2px;
	height: 50px;
	background-color: #525c5c;
}
.header-style-v9 .header-inner .right-box .social-list-one li {
	margin-right: 48px;
}
.header-style-v9 .header-inner .right-box .social-list-one li:last-child {
	margin-right: 0;
}
.header-style-v9 .header-inner .right-box .social-list-one li a {
	font-size: 24px;
	color: var(--theme-color-light);
}
.header-style-v9 .header-inner .main-menu .navigation>li {
	padding: 0;
	margin: 0 18px;
}
.header-style-v9 .header-inner .main-menu .navigation>li:last-child {
	margin-right: 0;
}
.header-style-v9 .header-inner .c-box .nav-out-bar .nav .navigation li a:hover {
	color: var(--theme-color1);
}
.header-style-v9 .header-inner .main-menu .navigation>li>ul>li>a:hover {
	color: var(--theme-color-v2);
}
.header-style-v9 .header-inner .sticky-header {
	background-color: var(--theme-color-v2);
}
.header-style-v9 .header-inner .sticky-header .mobile-navigation {
	display: none;
}
.header-style-v9 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-v9 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: var(--theme-color-v2);
}
.header-style-v9 .header-inner .sticky-header .main-menu .navigation>li {
	padding: 0;
}
.header-style-v9 .header-inner .sticky-header.fixed-header {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #000;
}
.header-style-v9 .header-inner .sticky-header .main-menu {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-v9 .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-v9 .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: #fff;
}
.header-style-v9 .header-inner .sticky-header .inner-container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 767.98px) {
	.header-style-v9 .header-inner .contact-info {
		display: none;
	}
}
@media (max-width: 575.98px) {
	.header-style-v9 .header-inner .contact-info {
		display: unset;
		width: 232px;
		margin-left: -170px;
	}
}
.header-style-v9 .header-inner .right-box {
	position: relative;
	width: 50%;
}
.header-style-v7 .header-inner .right-box {
	width: 50%;
}
@media (max-width: 767.98px) {
	.header-style-v9 .header-inner .right-box:before {
		display: none;
	}
}
@media (max-width: 1440px) {
	/* .header-style-v9 .header-inner .right-box {
		width: auto;
		}
		.header-style-v9 .header-inner .c-box .logo {
		left: -33px;
	} */
}
.header-style-v9 .header-inner .right-box span {
	font-size: 15px;
	color: var(--theme-color-light);
	margin-right: 18px;
}
.header-style-v9 .header-inner .right-box span i {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-right: 10px;
}
/*** 
	====================================================================
    header-style-ten
	====================================================================
***/
.header-style-ten {
	background-color: var(--theme-color-dark);
}
.header-style-ten.style-two {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
	padding-top: 10px;
}
.header-style-ten.style-two .header-inner {
	padding: 0;
}
.header-style-ten .btn {
	padding-right: 0;
}
.header-style-ten .btn .header-btn-two {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-dark);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 50px;
	background-color: var(--theme-color-light);
	text-transform: capitalize;
	display: inline-block;
}
.header-style-ten .btn .header-btn-two:hover {
	color: #fff;
	background-color: var(--theme-color1);
}
.header-style-ten .header-inner {
	padding: 28px 0;
}
.header-style-ten .header-inner .inner-container {
	max-width: 1829px;
	margin: 0 auto;
	padding: 0 15px;
}
.header-style-ten .header-inner .c-box .logo-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.header-style-ten .header-inner .c-box .logo-inner .logo {
	margin-right: 132px;
}
.header-style-ten .header-inner .c-box .logo-inner .logo img {
	max-width: 110px;
}
.header-style-ten .header-inner .c-box .logo-inner .search-btn a {
	color: var(--theme-color-light);
	font-size: 15px;
}
.header-style-ten .header-inner .c-box .logo-inner .search-btn a i {
	margin-right: 13px;
}
.header-style-ten .header-inner .c-box .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-ten .header-inner .c-box .btn-box .menu-btn .button {
	color: var(--theme-color-light);
	margin-right: 34px;
}
.header-style-ten .header-inner .c-box .nav-out-bar {
	margin-left: auto;
	margin-right: 31px;
}
@media (max-width: 1399.98px) {
	.header-style-ten .header-inner .c-box .nav-out-bar {
		margin-left: 157px;
	}
}
@media (max-width: 1399.98px) {
	.header-style-ten .header-inner .c-box .nav-out-bar .nav {
		display: unset;
	}
}
@media (max-width: 1199.98px) {
	.header-style-ten .header-inner .c-box .nav-out-bar .nav {
		display: none;
	}
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown i {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 12px;
	margin-left: 8px;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover>.dropdown {
	opacity: 1;
	visibility: visible;
	margin-top: 17px;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown:hover i {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	padding: 2px 0 5px;
	margin-top: 30px;
	margin-bottom: 0;
	min-width: 220px;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	border-radius: 14px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	padding: 25px 20px;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li {
	padding: 0;
	margin-bottom: 10px;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child {
	margin-bottom: 0;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a {
	display: block;
	color: #050B20;
	font-size: 15px;
	-webkit-transition: all 220ms linear 0ms;
	transition: all 220ms linear 0ms;
	text-transform: capitalize;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li a:hover {
	color: var(--theme-color1);
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown li:last-child a {
	border-bottom: 0;
}
.header-style-ten .header-inner .right-box .header-btn-eight {
	height: 46px;
	line-height: 46px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-size: 15px;
	padding: 0 26px;
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	text-transform: capitalize;
	display: inline-block;
}
.header-style-ten .header-inner .right-box .contact-info {
	position: relative;
	padding-left: 50px;
}
.header-style-ten .header-inner .right-box .contact-info .image {
	position: absolute;
	top: 12px;
	left: 0;
}
.header-style-ten .header-inner .right-box .contact-info span {
	font-size: 12px;
	color: var(--theme-color-light);
}
.header-style-ten .header-inner .right-box .contact-info .title {
	color: var(--theme-color-light);
	margin-top: -4px;
	margin-bottom: 0;
}
.header-style-ten .header-inner .right-box .social-list-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 71px;
	position: relative;
}
.header-style-ten .header-inner .right-box .social-list-one::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -31px;
	width: 2px;
	height: 50px;
	background-color: #525c5c;
}
.header-style-ten .header-inner .right-box .social-list-one li {
	margin-right: 48px;
}
.header-style-ten .header-inner .right-box .social-list-one li:last-child {
	margin-right: 0;
}
.header-style-ten .header-inner .right-box .social-list-one li a {
	font-size: 24px;
	color: var(--theme-color-light);
}
.header-style-ten .header-inner .sticky-header {
	background-color: var(--theme-color-v2);
}
.header-style-ten .header-inner .sticky-header .mobile-navigation {
	display: none;
}
.header-style-ten .header-inner .sticky-header .main-menu .navigation>li {
	padding: 0;
}
.header-style-ten .header-inner .sticky-header.fixed-header {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #000;
}
.header-style-ten .header-inner .sticky-header .main-menu {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-style-ten .header-inner .sticky-header .main-menu .navigation>li.current>a,
.header-style-ten .header-inner .sticky-header .main-menu .navigation>li:hover>a {
	color: #fff;
}
.header-style-ten .header-inner .sticky-header .inner-container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 767.98px) {
	.header-style-ten .header-inner .contact-info {
		display: none;
	}
}
@media (max-width: 575.98px) {
	.header-style-ten .header-inner .contact-info {
		display: unset;
		width: 232px;
		margin-left: -170px;
	}
}
.header-style-ten .header-inner .right-box {
	position: relative;
}
@media (max-width: 767.98px) {
	.header-style-ten .header-inner .right-box:before {
		display: none;
	}
}
.header-style-ten .header-inner .right-box>a {
	font-size: 15px;
	color: var(--theme-color-light);
	margin-right: 18px;
}
.header-style-ten .header-inner .right-box>a i {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-right: 10px;
}
/*** 
	====================================================================
	Sticky Header
	====================================================================
***/
.sticky-header {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	left: 0px;
	top: 0px;
	width: 100%;
	padding: 0px 0px;
	z-index: 99999;
	background: #000;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.sticky-header .inner-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.sticky-header.fixed-header {
	opacity: 1;
	z-index: 9999;
	visibility: visible;
}
.sticky-header .logo {
	padding: 10px 0;
}
.sticky-header .logo img {
	max-height: 40px;
}
.sticky-header .nav-out-bar {
	position: relative;
	background: none;
	margin-left: auto;
}
.sticky-header .main-menu .navigation>li {
	margin: 0;
	margin-left: 60px;
	padding: 20px 0;
}
.sticky-header .main-menu .navigation>li>a {
	color: #fff;
}
.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li:hover>a {
	color: var(--theme-color1);
}
.sticky-header .right-box,
.sticky-header .navbar-header {
	display: none;
}
/* Small devices */
@media (max-width: 767px) {
	.search-btn {
		display: none;
	}
}
.mega-menu {
	position: absolute;
	top: 100%;
	left: -100px;
	width: 800px;
	background-color: #fff;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding: 40px 52px 29px 46px;
	opacity: 0;
	gap: 83px;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	/* margin-top: 20px; */
	z-index: 9999;
}
.mega-menu:before {
	content: "";
	position: absolute;
	bottom: calc(100% - 6px);
	left: 120px;
	border-top: 10px solid #fff;
	border-right: 10px solid transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.header-default .mega-menu {
	top: 140%;
}
.header-default .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown {
	top: 140%;
}
.mega-menu .mega-column h3 {
	color: #202124;
	font-size: 14px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 15px;
}
.mega-menu .mega-column ul li {
	margin-bottom: 12px;
}
.mega-menu .mega-column ul li:last-child {
	margin-bottom: 0;
}
.mega-menu .mega-column ul li a {
	display: inline-block;
	color: #050B20;
	font-size: 15px;
	text-align: left;
}
.mega-menu .mega-column ul li a:hover {
	color: var(--theme-color1);
}
.main-menu .navigation>li:hover>.mega-menu {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}
.header-style-v1.style-two {
	padding: 0;
}
.header-style-v1.style-two .main-menu .navigation>li {
	padding: 30px 0;
}
.main-menu .navigation>li>span {
	position: relative;
	display: block;
	text-align: center;
	opacity: 1;
	color: #ffffff;
	font-size: 15px;
	line-height: 30px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.mm-navbar_sticky {
	margin-right: 30px;
}
.mm-panels>.mm-panel .mm-listview {
	padding-right: 30px;
}
.hheader-style-v4.five .main-menu .navigation>li>span,
.hheader-style-v4.v6 .main-menu .navigation>li>span,
.hheader-style-v4.v10 .main-menu .navigation>li>span {
	color: #000;
}
.hheader-style-v4.v10 .right-box .user:hover {
	color: var(--theme-color1);
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one .dropdown {
	left: auto;
	right: 0;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one{
	left: auto;
	right: 30px;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one .dropdown.deep {
	left: 100%;
	top: 10px;
	margin-left: 10px;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one .dropdown.deep:before {
	display: none;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one .dropdown li a {
	position: relative;
}
.header-style-v1 .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one .dropdown li a i {
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
/*** 
	====================================================================
	Mobile Menu
	====================================================================
***/
.mm-panels {
	max-width: 470px;
	--mm-color-background: #fff;
	--mm-color-text-dimmed: #979797;
	--mm-color-border: rgba(255, 255, 255, 0.1);
	--mm-listitem-size: 50px;
	/* Extra small devices */
}
@media (max-width: 414px) {
	.mm-panels {
		width: 100%;
	}
}
.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
	color: #979797;
}
.mm-menu li {
	padding: 0 20px;
	display: block;
}
.mm-menu .mm-listitem:after {
	display: none;
}
.mm-menu li.current>a {
	color: #ffffff;
	background-color: var(--bg-1);
	border-radius: 14px;
	color: var(
	--theme-color1);
}
.mm-btn:after,
.mm-btn:before {
	border-color: #ffffff;
	border-width: 1.5px;
	height: 6px;
	width: 6px;
}
.mm-panels .mm-counter {
	position: absolute;
	right: 45px;
	top: 50%;
	text-indent: 0;
	display: block;
	margin-top: -10px;
	background-color: rgba(255, 167, 55, 0.8);
	height: 20px;
	width: 20px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	line-height: 22px;
	font-size: 12px;
	font-weight: 600;
	padding: 0;
}
#toggle-user-sidebar {
	margin-left: 20px;
}
#toggle-user-sidebar .thumb {
	display: block;
	height: 30px;
	width: 30px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
}
.mm-menu_fullscreen.mm-menu_position-bottom {
	top: 0;
	background: transparent;
}
.mm-navbar_sticky {
	border-bottom: 1px solid #E1E1E1;
	padding: 0;
	padding-bottom: 20px;
	margin-bottom: 30px;
	padding-top: 20px;
	margin-right: 30px;
}
.mm-listview {
	padding-top: 20px;
}
.mm-menu li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.mobile-navigation .flaticon-menu-1:before {
	-webkit-transition: all 100ms ease;
	transition: all 100ms ease;
}
.mm-wrapper_opened .mobile-navigation .flaticon-menu-1:before {
	content: "\f175";
	font-size: 18px;
	line-height: 30px;
	display: block;
}
.mm-add-listing {
	margin-top: 87px;
	border: transparent;
	display: none;
}
.mm-add-listing .theme-btn {
	border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	color: #ffffff !important;
	height: 60px;
	border-radius: 10px;
}
.mm-add-listing .mm-listitem__text {
	padding: 0;
}
.mm-add-listing .contact-info {
	position: relative;
	padding: 18px 0;
	display: block;
}
.mm-add-listing .phone-num {
	position: relative;
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 13px;
	color: #7E7E7E;
}
.mm-add-listing .phone-num span {
	display: block;
}
.mm-add-listing .phone-num a {
	color: #ffffff;
}
.mm-add-listing .address {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 30px;
	color: #7E7E7E;
}
.mm-add-listing .email {
	font-size: 14px;
	line-height: 30px;
	color: #7E7E7E !important;
}
.mm-add-listing .social-links {
	position: relative;
	display: block;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mm-add-listing .social-links a {
	font-size: 14px;
	line-height: 14px;
	text-transform: capitalize;
	color: #7E7E7E;
	margin-right: 37px;
}
.mm-panel:after {
	height: 10px;
}
.mobile-navigation a {
	color: #fff;
}
/* Large devices */
@media (max-width: 1199px) {
	.header-style-v1 .header-inner .right-box {
		margin-left: auto;
	}
}
.mm-navbar__title>span {
	color: #050B20;
	font-size: 20px;
	font-weight: 500;
}
.mm-navbar__title {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.mm-listitem__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #050B20;
	font-size: 18px;
	font-weight: 500;
}
.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
	color: #050B20;
}
.mm-panels>.mm-panel li>a i {
	display: none;
}
.mm-panels>.mm-panel .mm-btn::after,
.mm-panels>.mm-panel .mm-btn::before {
	border-color: #050B20;
}
.mm-panels>.mm-panel .mm-listview {
	padding-top: 0;
}
.mm-panels>.mm-panel {
	padding: 0px 30px 30px;
}
.mm-menu li {
	padding: 0;
}
.mm-navbar__title {
	padding: 0;
}
.mm-menu_fullscreen {
	max-width: 470px;
	width: 470px;
	min-width: 470px;
	/* Extra small devices */
}
@media (max-width: 414px) {
	.mm-menu_fullscreen {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
}
/* Large devices */
@media (max-width: 1199px) {
	header {
		padding: 20px 0 !important;
	}
}
.mm-panels>.mm-panel.mega-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	height: 100vh;
	width: auto;
}
.mm-panels>.mm-panel.mega-menu .mega-column {
	width: 100%;
}
.mm-panels>.mm-panel.mega-menu .mega-column ul {
	padding: 0 20px;
	margin-bottom: 20px;
}
.mm-panels>.mm-panel.mega-menu .mega-column ul li {
	margin-bottom: 20px;
}
.mobile-navigation {
	width: 24px;
	margin-left: 20px;
	cursor: pointer;
	top: 0;
	display: none;
	/* Large devices */
}
@media (max-width: 1199px) {
	.mobile-navigation {
		display: inline-block;
	}
}
.mobile-navigation a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	font-size: 26px;
}
.mm-wrapper__blocker {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: rgba(0, 0, 0, 0.5);
}
/*** 
	====================================================================
	Section Title
	====================================================================
***/
.boxcar-title {
	position: relative;
	margin-bottom: 41px;
}
.boxcar-title.white h2 {
	color: #fff;
}
.boxcar-title.white p {
	color: #fff;
}
.boxcar-title h2 {
	font-family: var(--title-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--theme-color-dark);
	text-transform: capitalize;
	line-height: 45px;
}
@media (max-width: 991px) {
	.boxcar-title h2 {
		font-size: 30px;
		line-height: 35px;
	}
	.compare-products .box-empty {
		display: none;
	}
}
.boxcar-title .text {
	margin-top: 23px;
}
.boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.boxcar-title .btn-title svg {
	margin-left: 9px;
	position: relative;
	top: -4px;
}
.boxcar-title.light .text,
.boxcar-title.light h2,
.boxcar-title.light h1 {
	color: --theme-color-light-text;
}
.boxcar-title.light .sub-title {
	color: var(--theme-color-light);
	letter-spacing: 1.5px;
}
/*** 
	====================================================================
	banner section
	====================================================================
***/
.boxcar-banner-section-v1 {
	background-image: url(../images/banner/banner-page1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	position: relative;
	/* Small devices */
}
@media (max-width: 767px) {
	.boxcar-banner-section-v1 {
		height: unset;
		padding: 50px 0;
	}
}
.boxcar-banner-section-v1 .banner-content {
	width: 924px;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	/* Medium devices */
	/* Small devices */
}
@media (max-width: 991px) {
	.boxcar-banner-section-v1 .banner-content {
		width: calc(100% - 30px);
	}
}
@media (max-width: 767px) {
	.boxcar-banner-section-v1 .banner-content {
		-webkit-transform: unset;
		transform: unset;
		position: static;
		padding: 0;
	}
}
.boxcar-banner-section-v1 .banner-content>span {
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 30px;
	/* Medium devices */
}
@media (max-width: 991px) {
	.boxcar-banner-section-v1 .banner-content>span {
		margin-bottom: 12px;
	}
}
.boxcar-banner-section-v1 .banner-content h2 {
	color: #fff;
	font-size: 70px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 48px;
	/* Small devices */
}
@media (max-width: 767px) {
	.boxcar-banner-section-v1 .banner-content h2 {
		font-size: 46px;
		line-height: 58px;
	}
}
.boxcar-banner-section-v1 .banner-content .form-tabs-list {
	margin-bottom: 22px;
}
.boxcar-banner-section-v1 .banner-content .form-tabs-list li {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	margin-right: 26px;
	cursor: pointer;
	position: relative;
	padding-bottom: 3px;
}
.boxcar-banner-section-v1 .banner-content .form-tabs-list li:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.boxcar-banner-section-v1 .banner-content .form-tabs-list li.current:before {
	opacity: 1;
	visibility: visible;
}
.boxcar-banner-section-v1 .banner-content .form-tabs-list li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-v1 .banner-content .form-tab-pane {
	margin-bottom: 60px;
	display: none;
}
.boxcar-banner-section-v1 .banner-content .form-tab-pane.current {
	display: block;
}
.boxcar-banner-section-v1 .banner-content .form-tab-pane form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	padding: 0 10px;
	height: 76px;
	/* Small devices */
}
@media (max-width: 767px) {
	.boxcar-banner-section-v1 .banner-content .form-tab-pane form {
		display: block;
		height: unset;
		border-radius: 0;
		padding: 0;
	}
}
.boxcar-banner-section-v1 .banner-content .form-tab-pane form .form_boxes {
	width: 25%;
	height: 76px;
	/* Small devices */
}
@media (max-width: 767px) {
	.boxcar-banner-section-v1 .banner-content .form-tab-pane form .form_boxes {
		width: 100%;
	}
}
.boxcar-banner-section-v1 .banner-content .form-submit {
	margin-left: auto;
	/* Medium devices */
	/* Small devices */
}
@media (max-width: 991px) {
	.boxcar-banner-section-v1 .banner-content .form-submit {
		width: 25%;
		position: relative;
		right: 25px;
	}
}
@media (max-width: 767px) {
	.boxcar-banner-section-v1 .banner-content .form-submit {
		width: 100%;
		right: 0;
	}
}
.boxcar-banner-section-v1 .banner-content .form-submit button {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: 56px;
	line-height: 56px;
	padding: 0 30px;
	border-radius: 30px;
	background-color: #635bff;
	/* Small devices */
}
.boxcar-banner-section-v1 .banner-content .form-submit button i {
	position: relative;
	margin-right: 7px;
	top: 2px;
}
@media (max-width: 767px) {
	.boxcar-banner-section-v1 .banner-content .form-submit button {
		width: 100%;
		border-radius: 0;
	}
}
.boxcar-banner-section-v1 .banner-content .form-tab-content>span {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 31px;
}
.boxcar-banner-section-v1 .banner-content .form-tab-content .model-links li {
	display: inline-block;
	margin-right: 6px;
	/* Medium devices */
}
@media (max-width: 991px) {
	.boxcar-banner-section-v1 .banner-content .form-tab-content .model-links li {
		margin-bottom: 12px;
	}
}
.boxcar-banner-section-v1 .banner-content .form-tab-content .model-links li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-v1 .banner-content .form-tab-content .model-links li a {
	background: rgba(255, 255, 255, 0.2);
	display: inline-block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: 44px;
	line-height: 44px;
	padding: 0 30px;
	border-radius: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.boxcar-banner-section-v1 .banner-content .form-tab-content .model-links li a:hover {
	background-color: #FFFFFF4F;
}
.boxcar-banner-section-v1 .banner-content .form-tab-content .model-links li a i {
	font-size: 24px;
	line-height: 24px;
	margin-right: 10px;
	margin-top: 2px;
}
.boxcar-banner-section-v1.banner-style-three {
	background-image: url(../images/banner/banner-hp3.jpg);
}
.boxcar-banner-section-v1.banner-style-three:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.4;
}
.banner-style-three .banner-content-three .form-tab-content {
	position: relative;
	z-index: 5;
}
.boxcar-banner-section-v1.banner-style-three .banner-content-three {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 99;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.boxcar-banner-section-v1.banner-style-three .banner-content-three .banner-content {
	position: static;
	-webkit-transform: unset;
	transform: unset;
	text-align: left;
	margin: unset;
}
.boxcar-banner-section-v1.banner-style-three .form-tab-pane form {
	border-radius: 15px;
}
.boxcar-banner-section-v1.banner-style-three .drop-menu .dropdown {
	border-radius: 15px;
}
/*** 
	====================================================================
	banner section two
	====================================================================
***/
.boxcar-banner-section-two {
	position: relative;
}
.boxcar-banner-section-two .banner-slider {
	position: relative;
}
.boxcar-banner-section-two .banner-slider .banner-slide {
	position: relative;
	z-index: 9;
}
.boxcar-banner-section-two .banner-slider .banner-slide:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.4;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	z-index: 99;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box .sub-title {
	font-size: 40px;
	font-weight: 700;
	color: var(--theme-color-light);
	margin-bottom: 21px;
	display: inline-block;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box .sub-title small {
	position: relative;
	top: -2px;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	margin-left: 12px;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box h1 {
	font-size: 70px;
	color: var(--theme-color-light);
	font-weight: 700;
	line-height: normal;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 27px;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box ul li {
	position: relative;
	color: var(--theme-color-light);
	padding-left: 28px;
	margin-right: 30px;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box ul li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box ul li i {
	position: absolute;
	top: 3px;
	left: 0;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box .banner-btn {
	padding: 17px 26px 15px;
	background-color: var(--theme-color-light);
	font-family: var(--title-font);
	border: 1px solid var(--theme-color-light);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	border-radius: 12px;
}
.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box .banner-btn svg {
	position: relative;
	top: -1px;
	fill: var(--theme-color-dark);
	width: 14px;
	height: 14px;
	margin-left: 11px;
}
.boxcar-banner-section-two .banner-thumbs {
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100%;
	z-index: 99;
}
.boxcar-banner-section-two .banner-thumbs .banner-slider-thumbs .banner-slide-thumb {
	display: inline-block;
	float: none;
	margin-right: 30px;
	font-size: 14px;
	font-weight: 500;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
.boxcar-banner-section-two .banner-thumbs .banner-slider-thumbs .banner-slide-thumb.slick-current {
	border-color: #fff;
}
/*** 
	====================================================================
	banner section four
	====================================================================
***/
.boxcar-banner-section-four {
	position: relative;
	/* height: 100vh; */
}
@media (max-width: 1550px) {
	.boxcar-banner-section-four {
		height: 100vh;
	}
}
.boxcar-banner-section-four .banner-slider-v4 {
	position: relative;
	height: 100%;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-track,
.boxcar-banner-section-four .banner-slider-v4 .slick-list {
	height: 100%;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-track .banner-slide,
.boxcar-banner-section-four .banner-slider-v4 .slick-list .banner-slide {
	height: 100%;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-track .banner-slide>img,
.boxcar-banner-section-four .banner-slider-v4 .slick-list .banner-slide>img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-dots {
	bottom: 70px;
	left: 14vw;
	-webkit-transform: unset;
	transform: unset;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: 65px;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-dots li {
	width: auto;
	height: auto;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-dots li button {
	width: 20px;
	height: 4px;
	background: #fff;
	border-radius: 30px;
	padding: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-dots li.slick-active button {
	width: 35px;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-prev,
.boxcar-banner-section-four .banner-slider-v4 .slick-next {
	bottom: 60px;
	top: auto;
	-webkit-transform: unset;
	transform: unset;
	z-index: 99;
	left: 13vw;
	right: auto;
	border-color: #fff;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-prev:before,
.boxcar-banner-section-four .banner-slider-v4 .slick-next:before {
	color: #fff;
	font-size: 20px;
}
.boxcar-banner-section-four .banner-slider-v4 .slick-next {
	margin-left: 210px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide {
	position: relative;
	z-index: 9;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.4;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	z-index: 99;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box .sub-title {
	font-size: 40px;
	font-weight: 700;
	color: var(--theme-color-light);
	margin-bottom: 21px;
	display: inline-block;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box .sub-title small {
	position: relative;
	top: -2px;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	margin-left: 12px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box h1 {
	font-size: 70px;
	color: var(--theme-color-light);
	font-weight: 700;
	line-height: normal;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 27px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box ul li {
	position: relative;
	color: var(--theme-color-light);
	padding-left: 28px;
	margin-right: 30px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box ul li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box ul li img {
	position: absolute;
	top: 3px;
	left: 0;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box .banner-btn {
	padding: 17px 26px 15px;
	background-color: var(--theme-color-light);
	font-family: var(--title-font);
	border: 1px solid var(--theme-color-light);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	border-radius: 12px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box .banner-btn svg {
	position: relative;
	top: -1px;
	fill: var(--theme-color-dark);
	width: 14px;
	height: 14px;
	margin-left: 11px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box {
	position: absolute;
	bottom: -274px;
	right: 60px;
	border-radius: 14px;
	width: 360px;
	padding: 60px;
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(7.5px);
	backdrop-filter: blur(7.5px);
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .items {
	margin-bottom: 54px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .items:last-child {
	margin-bottom: 0;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .items i {
	display: block;
	color: #fff;
	font-size: 30px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .items span {
	color: var(--theme-color-light);
	font-size: 15px;
	display: inline-block;
	margin: 12px 0 -1px;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .items .title {
	font-size: 20px;
	font-weight: 500;
	color: var(--theme-color-light);
	margin-bottom: 0;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .btn-box .btn {
	font-family: var(--title-font);
	font-weight: 500;
	font-size: 15px;
	background-color: var(--theme-color-light);
	padding: 20px 73px 19px;
	display: inline-block;
}
.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .btn-box .btn svg {
	position: relative;
	top: -2px;
	margin-left: 9px;
}
/*** 
	====================================================================
	banner section five
	====================================================================
***/
.boxcar-banner-section-five {
	position: relative;
	padding-bottom: 0;
	padding-top: 100px;
	height: unset;
	position: relative;
	z-index: 1;
	margin-bottom: -180px;
}
.boxcar-banner-section-five:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: calc(100% - 220px);
	background: var(--bg-1);
	z-index: -1;
}
.boxcar-banner-section-five .image-column {
	margin-top: -120px;
}
.boxcar-banner-section-five .banner-content {
	width: 924px;
	margin: 0 auto;
	text-align: center;
	margin: auto;
	border-radius: 50px;
}
.boxcar-banner-section-five .banner-content>span {
	display: block;
	color: var(--theme-color-dark);
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 30px;
}
.boxcar-banner-section-five .banner-content h2 {
	color: var(--theme-color-dark);
	font-size: 70px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 48px;
}
.boxcar-banner-section-five .banner-content .form-tabs-list {
	margin-bottom: 22px;
}
.boxcar-banner-section-five .banner-content .form-tabs-list li {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	margin-right: 26px;
	cursor: pointer;
	position: relative;
	padding-bottom: 3px;
}
.boxcar-banner-section-five .banner-content .form-tabs-list li:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.boxcar-banner-section-five .banner-content .form-tabs-list li.current:before {
	opacity: 1;
	visibility: visible;
}
.boxcar-banner-section-five .banner-content .form-tabs-list li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-five .banner-content .form-tab-pane {
	margin-bottom: 60px;
	display: none;
}
.boxcar-banner-section-five .banner-content .form-tab-pane.current {
	display: block;
}
.boxcar-banner-section-five .banner-content .form-tab-pane form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	padding: 0 10px;
	height: 76px;
}
.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes {
	width: 23%;
	height: 76px;
	position: relative;
}
.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes:nth-child(4):before {
	display: none;
}
.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 36px;
	background: #e1e1e1;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.boxcar-banner-section-five .banner-content .form-submit {
	margin-left: auto;
}
.boxcar-banner-section-five .banner-content .form-submit button {
	color: var(--theme-color-light-text);
	font-size: 20px;
	font-weight: 500;
	width: 56px;
	height: 56px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme-color1);
	padding-top: 3px;
}
.boxcar-banner-section-five .banner-content .form-tab-content>span {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 31px;
}
.boxcar-banner-section-five .banner-content .form-tab-content .model-links li {
	display: inline-block;
	margin-right: 6px;
}
.boxcar-banner-section-five .banner-content .form-tab-content .model-links li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-five .banner-content .form-tab-content .model-links li a {
	background: rgba(255, 255, 255, 0.2);
	display: inline-block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: 44px;
	line-height: 44px;
	padding: 0 30px;
	border-radius: 30px;
}
.boxcar-banner-section-five .banner-content .form-tab-content .model-links li a img {
	margin-right: 5px;
}
.boxcar-banner-section-five.banner-style-three {
	background-image: url(../images/banner/banner-hp3.jpg);
}
.boxcar-banner-section-five.banner-style-three:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.4;
}
.boxcar-banner-section-five.banner-style-three .banner-content-three {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 99;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.boxcar-banner-section-five.banner-style-three .banner-content-three .banner-content {
	position: static;
	-webkit-transform: unset;
	transform: unset;
	text-align: left;
	margin: unset;
}
.boxcar-banner-section-five.banner-style-three .form-tab-pane form {
	border-radius: 15px;
}
.boxcar-banner-section-five.banner-style-three .drop-menu .dropdown {
	border-radius: 15px;
}
/*** 
	====================================================================
	banner section six
	====================================================================
***/
.boxcar-banner-section-six {
	position: relative;
}
.boxcar-banner-section-six::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 946px;
	height: 820px;
	background-image: url(../images/resource/banner-six.png);
}
.boxcar-banner-section-six .content-column .inner-column {
	padding: 252px 0 254px;
}
.boxcar-banner-section-six .content-column .inner-column span {
	color: var(--theme-color-dark);
	margin-bottom: 23px;
	display: inline-block;
}
.boxcar-banner-section-six .content-column .inner-column h1 {
	font-size: 70px;
	font-weight: 700;
	margin-bottom: 41px;
}
.boxcar-banner-section-six .content-column .inner-column .btn-box {
	margin-bottom: 63px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.boxcar-banner-section-six .content-column .inner-column .btn-box .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 14px 26px 12px;
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	display: inline-block;
	color: var(--theme-color-dark);
	margin-right: 30px;
}
.boxcar-banner-section-six .content-column .inner-column .btn-box .read-more:last-child {
	margin-right: 0;
}
.boxcar-banner-section-six .content-column .inner-column .btn-box .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-dark);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.boxcar-banner-section-six .content-column .inner-column .btn-box .read-more:hover {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
}
.boxcar-banner-section-six .content-column .inner-column .right-box .boxcar-title {
	margin-bottom: 23px;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .boxcar-title h6 {
	font-size: 14px;
	color: var(--theme-color-dark);
	font-weight: 500;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .service-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .service-list li {
	margin-right: 10px;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .service-list li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .service-list li a {
	font-weight: 500;
	color: var(--theme-color-dark);
	padding: 7px 30px 7px;
	border-radius: 50px;
	border: 1px solid var(--Border, #E1E1E1);
	display: inline-block;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .service-list li a i {
	color: #000;
	font-size: 24px;
	margin-right: 11px;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	top: 5px;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .service-list li a:hover {
	background: var(--theme-color1);
	color: #fff;
	border-color: transparent;
}
.boxcar-banner-section-six .content-column .inner-column .right-box .service-list li a:hover i {
	color: #fff;
}
/*** 
	====================================================================
	banner section seven
	====================================================================
***/
.boxcar-banner-section-seven {
	position: relative;
}
.boxcar-banner-section-seven.v10 .banner-slider-v7 .slick-prev {
	left: 5vw;
}
.boxcar-banner-section-seven.v10 .banner-slider-v7 .slick-next {
	right: 5vw;
}
.boxcar-banner-section-seven.v10 .large-container {
	max-width: 1829px;
	padding: 0 15px;
}
.boxcar-banner-section-seven.v10 .form-tab-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
.boxcar-banner-section-seven.v10 .form-submit {
	margin-left: auto;
}
.boxcar-banner-section-seven.v10 .form-submit button {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: 56px;
	line-height: 56px;
	padding: 0 30px;
	border-radius: 14px;
	border: 1px solid #fff;
	background: transparent;
}
.boxcar-banner-section-seven.v10 .form-submit button i {
	position: relative;
	margin-right: 7px;
	top: 2px;
}
.boxcar-banner-section-seven.v10 form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #050B20;
	border-radius: 14px 14px 0px 0px;
	padding: 10px 20px;
}
.boxcar-banner-section-seven.v10 form .form_boxes {
	width: 20%;
	height: 76px;
	position: relative;
}
.boxcar-banner-section-seven.v10 form .form_boxes:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 36px;
	background: #fff;
	opacity: 0.2;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.boxcar-banner-section-seven.v10 form .form_boxes:nth-child(4):before {
	display: none;
}
.boxcar-banner-section-seven.v10 form .drop-menu .select {
	color: #fff;
}
.boxcar-banner-section-seven .banner-slider-v7 {
	position: relative;
}
.boxcar-banner-section-seven .banner-slider-v7 .slick-prev,
.boxcar-banner-section-seven .banner-slider-v7 .slick-next {
	width: 60px;
	height: 40px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 99;
	border: 0;
}
.boxcar-banner-section-seven .banner-slider-v7 .slick-prev:before,
.boxcar-banner-section-seven .banner-slider-v7 .slick-next:before {
	color: #fff;
}
.boxcar-banner-section-seven .banner-slider-v7 .slick-prev {
	left: 8vw;
}
.boxcar-banner-section-seven .banner-slider-v7 .slick-next {
	right: 8vw;
}
.boxcar-banner-section-seven .banner-slider-v7 img {
	width: 100%;
	border-radius: 14px;
}
.boxcar-banner-section-seven .banner-slider-v7 .banner-slide {
	position: relative;
	z-index: 9;
}
.boxcar-banner-section-seven .banner-slider-v7 .banner-slide:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.3;
	border-radius: 14px;
}
.boxcar-banner-section-seven .banner-slider-v7 .banner-slide .right-box {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	z-index: 99;
}
.boxcar-banner-section-seven .banner-slider-v7 .banner-slide .right-box .content-box {
	text-align: center;
}
.boxcar-banner-section-seven .banner-slider-v7 .banner-slide .right-box .content-box .sub-title {
	color: var(--theme-color-light);
	margin-bottom: 19px;
	display: inline-block;
}
.boxcar-banner-section-seven .banner-slider-v7 .banner-slide .right-box .content-box h1 {
	font-size: 70px;
	color: var(--theme-color-light);
	font-weight: 700;
	line-height: normal;
}
/*** 
	====================================================================
	banner section homepage 8
	====================================================================
***/
.boxcar-banner-section-v8 {
	background-image: url(../images/background/banner-v8.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	position: relative;
	border-radius: 32px;
	margin: 30px 30px 0px;
}
@media (max-width: 1440px) {
	.boxcar-banner-section-v8 {
		margin: 0;
		border-radius: 0;
	}
}
.boxcar-banner-section-v8 .boxcar-container {
	height: 100%;
}
.boxcar-banner-section-v8 .banner-content-v8 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.boxcar-banner-section-v8 .banner-content-v8 h2 {
	color: #fff;
	font-size: 52px;
	font-weight: 500;
	margin-bottom: 50px;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form {
	max-width: 448px;
	background: #fff;
	border-radius: 14px;
	padding: 30px;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-tabs-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 1px solid #050B20;
	border-radius: 14px;
	height: 53px;
	line-height: 53px;
	margin-bottom: 20px;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-tabs-list li {
	width: 50%;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-tabs-list li.current {
	border-radius: 14px 0px 0px 14px;
	background-color: #050B20;
	color: #fff;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-tabs-list li:last-child.current {
	border-radius: 0 14px 14px 0;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-tab-pane {
	display: none;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-tab-pane.current {
	display: block;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-tab-pane form .form_boxes {
	width: 100%;
	height: 76px;
	margin-bottom: 20px;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .drop-menu {
	border: 1px solid #e1e1e1;
	border-radius: 14px;
	padding: 7px 15px;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .drop-menu .dropdown {
	border-radius: 14px;
	padding: 15px;
	z-index: 9;
	margin: 0;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .drop-menu>label {
	display: block;
	color: #818181;
	font-size: 13px;
	font-weight: 400;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .drop-menu .select {
	padding: 0;
	height: unset;
	line-height: unset;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .drop-menu .select i {
	right: 0;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-submit {
	margin-left: auto;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-submit button {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: 56px;
	line-height: 56px;
	padding: 0 30px;
	width: 100%;
	border-radius: 30px;
	background-color: #635bff;
}
.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form .form-submit button i {
	position: relative;
	margin-right: 7px;
	top: 2px;
}
/*** 
	====================================================================
	banner section
	====================================================================
***/
.boxcar-banner-section-nine {
	background-image: url(../images/banner/banner-page9.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	position: relative;
}
.boxcar-banner-section-nine:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.4;
}
.boxcar-banner-section-nine .drop-menu.active .select>span,
.boxcar-banner-section-nine .drop-menu.active .select i,
.boxcar-banner-section-nine .drop-menu .dropdown li:hover {
	color: #fff;
}
.boxcar-banner-section-nine .banner-content {
	width: 924px;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.boxcar-banner-section-nine .banner-content .content-box {
	margin-top: 166px;
	position: relative;
}
.boxcar-banner-section-nine .banner-content .content-box span {
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 30px;
}
.boxcar-banner-section-nine .banner-content .content-box h2 {
	color: #fff;
	font-size: 70px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 55px;
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box {
	margin-bottom: 63px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 14px 26px 12px;
	border-radius: 50px;
	border: 1px solid var(--theme-color-light);
	display: inline-block;
	color: var(--theme-color-light);
	margin-right: 30px;
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more:last-child {
	margin-right: 0;
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-dark);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more:hover {
	background-color: var(--theme-color-light);
	color: var(--theme-color-dark);
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more.active {
	background-color: var(--theme-color-light);
	color: var(--theme-color-dark);
}
.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more.active svg {
	color: var(--theme-color-dark) !important;
}
.boxcar-banner-section-nine .banner-content .form-tabs-list {
	margin-bottom: 22px;
}
.boxcar-banner-section-nine .banner-content .form-tabs-list li {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	margin-right: 26px;
	cursor: pointer;
	position: relative;
	padding-bottom: 3px;
}
.boxcar-banner-section-nine .banner-content .form-tabs-list li:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.boxcar-banner-section-nine .banner-content .form-tabs-list li.current:before {
	opacity: 1;
	visibility: visible;
}
.boxcar-banner-section-nine .banner-content .form-tabs-list li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-nine .banner-content .form-tab-pane {
	display: none;
}
.boxcar-banner-section-nine .banner-content .form-tab-pane.current {
	display: block;
}
.boxcar-banner-section-nine .banner-content .form-tab-pane form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50px;
	padding: 0 10px;
	height: 76px;
	border: 1px solid var(--White, #FFF);
	background: rgba(255, 255, 255, 0.05);
	-webkit-backdrop-filter: blur(7.5px);
	backdrop-filter: blur(7.5px);
}
.boxcar-banner-section-nine .banner-content .form-tab-pane form .form_boxes {
	width: 19%;
	height: 76px;
}
.boxcar-banner-section-nine .banner-content .form-submit {
	margin-left: auto;
}
.boxcar-banner-section-nine .banner-content .form-submit button {
	color: var(--theme-color-dark);
	font-size: 15px;
	font-weight: 500;
	height: 56px;
	line-height: 56px;
	padding: 0 30px;
	border-radius: 30px;
	background-color: var(--theme-color-light);
}
.boxcar-banner-section-nine .banner-content .form-submit button i {
	position: relative;
	margin-right: 7px;
	top: 2px;
}
.boxcar-banner-section-nine .banner-content .form-tab-content>span {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 31px;
}
.boxcar-banner-section-nine .banner-content .form-tab-content .model-links li {
	display: inline-block;
	margin-right: 6px;
}
.boxcar-banner-section-nine .banner-content .form-tab-content .model-links li:last-child {
	margin-right: 0;
}
.boxcar-banner-section-nine .banner-content .form-tab-content .model-links li a {
	background: rgba(255, 255, 255, 0.2);
	display: inline-block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: 44px;
	line-height: 44px;
	padding: 0 30px;
	border-radius: 30px;
}
.boxcar-banner-section-nine .banner-content .form-tab-content .model-links li a img {
	margin-right: 5px;
}
.boxcar-banner-section-nine .drop-menu .select {
	color: var(--theme-color-light);
}
.boxcar-banner-section-nine.banner-style-three {
	background-image: url(../images/banner/banner-hp3.jpg);
}
.boxcar-banner-section-nine.banner-style-three:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.4;
}
.boxcar-banner-section-nine.banner-style-three .banner-content-three {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 99;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.boxcar-banner-section-nine.banner-style-three .banner-content-three .banner-content {
	position: static;
	-webkit-transform: unset;
	transform: unset;
	text-align: left;
	margin: unset;
}
.boxcar-banner-section-nine.banner-style-three .form-tab-pane form {
	border-radius: 15px;
}
.boxcar-banner-section-nine.banner-style-three .drop-menu .dropdown {
	border-radius: 15px;
}
.banner-slider-v4 {
	position: relative;
}
/*** 
	====================================================================
	googel-maps-Section
	====================================================================
***/
.googel-map-section {
	position: relative;
}
.googel-map-section .right-box .goole-iframe iframe {
	width: 100%;
	height: 473px;
}
/*** 
	====================================================================
    brand section
	====================================================================
***/
.boxcar-brand-section {
	position: relative;
	padding: 120px 0;
	/* Medium devices */
}
.bg-1 {
	background-color: rgba(249, 251, 252, 1);
}
.bg-2 {
	background-color: rgba(223, 223, 223, 1);
}
.section-radius-top {
	border-top-left-radius: 80px;
	border-top-right-radius: 80px;
	margin-top: -80px;
	overflow: hidden;
}
.section-radius-bottom {
	margin-bottom: -80px;
	border-bottom-left-radius: 80px;
	border-bottom-right-radius: 80px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
@media (max-width: 991px) {
	.boxcar-brand-section {
		padding: 90px 0;
	}
	.section-radius-top {
		border-top-left-radius: 40px;
		border-top-right-radius: 40px;
	}
	.section-radius-bottom {
		border-bottom-left-radius: 40px;
		border-bottom-right-radius: 40px;
	}
}
.cars-block .inner-box {
	text-align: center;
	padding: 0 40px 0 39px;
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	height: 180px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	/* Medium devices */
}
.cars-block.style-1 .inner-box {
	background-color: #fff;
}
@media (max-width: 991px) {
	.cars-block .inner-box {
		margin-bottom: 24px;
	}
}
.cars-block .inner-box:hover {
	border-color: var(--theme-color1);
}
.cars-block .inner-box .image-box {
	margin-bottom: 0;
	height: 100px;
}
.cars-block .inner-box .content-box .title {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 27px;
}
.boxcar-brand-section.v7::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1162px;
	height: 500px;
	border-radius: 14px;
	background: var(--bg-1, #F9FBFC);
}
/*** 
	====================================================================
    brand section two
	====================================================================
***/
.boxcar-brand-section-two {
	position: relative;
	padding: 120px 0;
}
.cars-block-two .inner-box {
	text-align: center;
	padding: 45px 40px 20px 39px;
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.cars-block-two .inner-box:hover {
	border-color: var(--theme-color-dark);
	background-color: rgba(249, 251, 252, 1);
}
.cars-block-two .inner-box:hover .image-box {
	background-color: var(--theme-color-dark);
}
.cars-block-two:not(.style-svg) .inner-box:hover .image-box svg path {
	fill: var(--theme-color-light);
}
.cars-block-two.style-svg .inner-box:hover .image-box svg path {
	stroke: var(--theme-color-light);
}
.cars-block-two .inner-box .image-box {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	margin: 0 auto 0;
	background-color: #F9FBFC;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: 12px;
}
.cars-block-two .inner-box .image-box svg path {}
.cars-block-two .inner-box .content-box .title {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 27px;
}
/*** 
	====================================================================
    brand banner section
	====================================================================
***/
.brand-boxcar-banner-section {
	position: relative;
	padding: 211px 0 167px;
	background-image: url(../images/background/child.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 9;
}
.brand-boxcar-banner-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #050B20;
	opacity: 0.3;
	z-index: -1;
}
.brand-boxcar-banner-section .content-column .inner-column .title {
	font-size: 70px;
	color: var(--theme-color-light);
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 28px;
}
.brand-boxcar-banner-section .content-column .inner-column .btn {
	padding: 20px 87px 18px;
	line-height: 26px;
	color: var(--theme-color-light);
	border-radius: 12px;
	border: 1px solid var(--White, #FFF);
}
.brand-boxcar-banner-section .content-column .inner-column .btn svg {
	fill: var(--theme-color-light);
	margin-left: 10px;
	position: relative;
	top: -3px;
}
/*** 
	====================================================================
    brand section-three
	====================================================================
***/
.boxcar-brand-section-three {
	position: relative;
}
.boxcar-brand-section-three .right-box {
	padding: 80px 152px 87px;
	border-radius: 14px;
	background: var(--bg-1, #F9FBFC);
}
.boxcar-brand-section-three .content-column .inner-column {
	max-width: 470px;
	margin-top: 140px;
}
.boxcar-brand-section-three .content-column .inner-column .boxcar-title {
	margin-bottom: 0;
}
.boxcar-brand-section-three .content-column .inner-column .boxcar-title h2 {
	margin-bottom: 13px;
}
.boxcar-brand-section-three .content-column .inner-column .boxcar-title .text {
	margin-top: 13px;
	margin-bottom: 50px;
}
.boxcar-brand-section-three .content-column .inner-column .boxcar-title .brand-btn {
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	font-family: var(--title=font);
	color: var(--theme-color-light-text);
	background-color: var(--theme-color1);
	display: inline-block;
	padding: 13px 26px 11px;
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color1);
}
.boxcar-brand-section-three .content-column .inner-column .boxcar-title .brand-btn svg {
	position: relative;
	top: -2px;
	margin-left: 11px;
}
.boxcar-brand-section-three .image-column .inner-column .image-box {
	text-align: right;
}
/*** 
	====================================================================
    boxcar-brand-section-four
	====================================================================
***/
.boxcar-brand-section-four {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 768px) {
	.respo_hide {
		display:none!important;
	}
	.boxcar-brand-section-four {
		padding-top: 180px;
	}
	.hheader-style-v4 .header-inner .c-box .logo-inner .logo img {
		max-width: 150px;
		max-height: 90px;
	}
}
.boxcar-brand-section-four .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* -ms-flex-wrap: wrap;
	flex-wrap: wrap; */
	overflow-x: auto;
}
.brand-block-four {
	margin-right: 15px;
}
.brand-block-four:last-child {
	margin-right: 0;
}
.brand-block-four .inner-box {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--White, #FFF);
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 140px;
	padding: 30px 0;
}
.brand-block-four .inner-box:hover {
	background: var(--bg-1, #F9FBFC);
}
.brand-block-four .inner-box .icon-box {
	min-height: 40px;
	max-height: 40px;
}
.brand-block-four .inner-box .icon-box i {
	color: #000;
	font-size: 40px;
}
.brand-block-four .inner-box .title {
	margin-top: 15px;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}
/*** 
	====================================================================
    brand section five
	====================================================================
***/
.boxcar-brand-section-five {
	position: relative;
	padding: 120px 0;
}
.boxcar-brand-section-five .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.cars-block-five {
	margin-right: 66px;
}
.cars-block-five:last-child {
	margin-right: 0;
}
.cars-block-five .inner-box {
	text-align: center;
}
.cars-block-five .inner-box .image-box {
	margin-bottom: 0;
	height: 70px;
}
.cars-block-five .inner-box .content-box .title {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 27px;
	text-transform: capitalize;
}
/*** 
	====================================================================
    brand section six
	====================================================================
***/
.boxcar-brand-section-six {
	position: relative;
	padding: 120px 0;
}
.boxcar-brand-section-six .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: auto;
}
.boxcar-brand-section-six .right-box::-webkit-scrollbar {
	width: 1px;
}
.boxcar-brand-section-six .right-box::-webkit-scrollbar-thumb {
	background: transparent;
}
@media (max-width: 1400px) {
	.boxcar-brand-section-six .right-box {
		margin-right: -15px;
		padding-right: 15px;
	}
}
.cars-block-six {
	margin-right: 20px;
}
.cars-block-six:last-child {
	margin-right: 0;
}
.cars-block-six .inner-box {
	text-align: center;
	padding: 45px 0 20px;
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 138px;
}
.cars-block-six.home-8 .inner-box {
	padding: 0;
	height: 127px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.cars-block-six.home-8:not(:last-child) {
	margin-right: 14px;
}
.cars-block-six.home-8 .inner-box .title {
	margin-bottom: 0;
}
.cars-block-six .inner-box:hover {
	background: var(--bg-1, #F9FBFC);
}
.cars-block-six .inner-box .image-box {
	margin-bottom: 12px;
}
.cars-block-six .inner-box .image-box svg {
	fill: var(--theme-color-dark);
}
.cars-block-six.home-8 .inner-box .image-box svg {
	fill: none;
}
.cars-block-six .inner-box .content-box .title {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 27px;
}
/*** 
	====================================================================
    why choose section
	====================================================================
***/
.why-choose-us-section {
	position: relative;
	padding: 120px 0 64px;
}
.why-choose-us-section .content-column .boxcar-title h2 {
	line-height: 45px;
}
.why-choose-us-section .content-column-two .boxcar-title .text {
	margin-bottom: 56px;
}
.why-choose-us-section .content-column-two .boxcar-title .read-more {
	padding: 14px 25px 12px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, var(--theme-color1));
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	font-family: var(--title-font);
	color: var(--theme-color-light);
}
.why-choose-us-section .content-column-two .boxcar-title .read-more svg {
	position: relative;
	top: -2px;
	margin-left: 7px;
}
.choose-us-block {
	margin-bottom: 56px;
}
.choose-us-block .inner-box .icon-box {
	margin-bottom: 24px;
}
.choose-us-block .inner-box .content-box .title {
	font-weight: 500;
	margin-bottom: 17px;
}
.choose-us-block .inner-box .content-box .text {
	padding-right: 65px;
	font-size: 15px;
	line-height: 26px;
}
.why-choose-us-section.v2 .boxcar-container {
	max-width: 990px;
}
/*** 
	====================================================================
    why choose section tow
	====================================================================
	}
***/
.why-choose-us-section-two {
	position: relative;
	padding: 120px 0 64px;
	border-radius: 14px;
	background: var(--bg-1, #F9FBFC);
}
.why-choose-us-section-two .boxcar-container {
	max-width: 1800px;
}
.why-choose-us-section-two .right-box {
	max-width: 1430px;
	margin: 0 auto;
}
/*** 
	====================================================================
    why choose section three
	====================================================================
***/
.why-choose-us-section-three {
	position: relative;
	padding: 120px 0;
}
.why-choose-us-section-three .content-column .boxcar-title h2 {
	line-height: 45px;
}
.why-choose-us-section-three .right-box {
	border-radius: 14px;
	background: #f4f4f4;
	padding: 120px 150px 64px;
}
/*** 
	====================================================================
    why choose section
	====================================================================
***/
.why-choose-us-section-four {
	position: relative;
	padding: 120px 0 64px;
}
.why-choose-us-section-four::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1162px;
	height: 620px;
	border-radius: 14px;
	background: var(--bg-1, #F9FBFC);
}
.why-choose-us-section-four .content-column .boxcar-title h2 {
	line-height: 45px;
}
.choose-us-block-four {
	margin-bottom: 56px;
}
.choose-us-block-four .inner-box {
	padding: 50px 41px 43px;
	border-radius: 14px;
	background: var(--theme-color-light);
	-webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.choose-us-block-four .inner-box .icon-box {
	margin-bottom: 24px;
}
.choose-us-block-four .inner-box .content-box .title {
	font-weight: 500;
	margin-bottom: 17px;
}
.choose-us-block-four .inner-box .content-box .text {
	font-size: 15px;
	line-height: 26px;
}
/*** 
	====================================================================
    why choose section five
	====================================================================
***/
.why-choose-us-section-five {
	position: relative;
	padding: 120px 0 64px;
	background-color: var(--theme-color1);
}
.why-choose-us-section-five .content-column .boxcar-title h2 {
	line-height: 45px;
}
.why-choose-us-section-five .content-column-two .boxcar-title .text {
	margin-bottom: 56px;
}
.why-choose-us-section-five .content-column-two .boxcar-title .read-more {
	padding: 14px 25px 12px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, var(--theme-color1));
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	font-family: var(--title-font);
	color: var(--theme-color-light);
}
.why-choose-us-section-five .content-column-two .boxcar-title .read-more svg {
	position: relative;
	top: -2px;
	margin-left: 7px;
}
.choose-us-block-five {
	margin-bottom: 56px;
}
.choose-us-block-five .inner-box .icon-box {
	margin-bottom: 24px;
}
.choose-us-block-five .inner-box .content-box .title {
	font-weight: 500;
	margin-bottom: 17px;
	color: var(--theme-color-light);
}
.choose-us-block-five .inner-box .content-box .text {
	padding-right: 65px;
	font-size: 15px;
	line-height: 26px;
	color: var(--theme-color-light);
}
/* Small devices */
@media (max-width: 767px) {
	.blog-blockt-two {
		margin-bottom: 25px;
	}
	.blog-blockt-two:last-child {
		margin-bottom: 0;
	}
}
/*** 
	====================================================================
    testimonial section
	====================================================================
***/
.boxcar-testimonial-section {
	position: relative;
	padding: 120px 0;
	background: #F9FBFC;
}
.boxcar-testimonial-section .image-column .inner-column .image-box .image {
	/* Medium devices */
}
@media (max-width: 991px) {
	.boxcar-testimonial-section .image-column .inner-column .image-box .image {
		margin-bottom: 30px;
	}
	.boxcar-testimonial-section .image-column .inner-column .image-box .image a {
		display: block;
	}
}
.boxcar-testimonial-section .image-column .inner-column .image-box .image img {
	border-radius: 10px;
}
.boxcar-testimonial-section .content-column .inner-column {
	margin-top: 109px;
	margin-left: 120px;
	/* Large devices */
}
@media (max-width: 1199px) {
	.boxcar-testimonial-section .content-column .inner-column {
		margin-top: 0;
		margin-left: 0;
	}
}
.boxcar-testimonial-section .content-column .inner-column .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 10px;
}
.boxcar-testimonial-section .content-column .inner-column .rating li {
	color: #E1C03F;
	font-size: 14px;
	margin-right: 9px;
}
.boxcar-testimonial-section .content-column .inner-column .rating span {
	width: 37px;
	height: 26px;
	line-height: 26px;
	background-color: #E1C03F;
	color: var(--theme-color-light);
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	border-radius: 50px;
}
.boxcar-testimonial-section .content-column .inner-column .title {
	font-size: 18px;
	font-weight: 500;
	line-height: 32px;
	margin-bottom: -3px;
}
.boxcar-testimonial-section .content-column .inner-column span {
	font-size: 14px;
	line-height: 24px;
}
.boxcar-testimonial-section .content-column .inner-column .text {
	font-size: 26px;
	font-weight: 500;
	line-height: 42px;
	margin-top: 39px;
	margin-right: 80px;
}
/*** 
	====================================================================
    testimonial section two
	====================================================================
***/
.testimonila-section-two {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 991px) {
	.testimonila-section-two {
		padding: 90px 0px;
	}
}
.testimonila-section-two .content-column .inner-column .boxcar-title {
	margin-bottom: 43px;
}
.testimonila-section-two .content-column .inner-column .content-box span {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 13px;
	display: inline-block;
}
.testimonila-section-two .content-column .inner-column .content-box .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.testimonila-section-two .content-column .inner-column .content-box .rating li {
	width: 37.5px;
	height: 37.5px;
	text-align: center;
	line-height: 37.5px;
	font-size: 25px;
	background-color: var(--theme-color2);
	color: var(--theme-color-light);
	margin-right: 3px;
}
.testimonila-section-two .content-column .inner-column .content-box .rating li:last-child {
	margin-right: 0;
}
.testimonila-section-two .content-column .inner-column .content-box small {
	font-size: 15px;
	margin-bottom: 18px;
	display: inline-block;
}
.testimonila-section-two .content-column .inner-column .content-box sub {
	display: block;
	font-size: 24px;
	font-weight: 500;
	text-transform: capitalize;
}
.testimonila-section-two .content-column .inner-column .content-box sub i {
	color: var(--theme-color2);
	margin-right: 2px;
}
.testimonila-section-two .slider-column .inner-column .rating-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}
.testimonila-section-two .slider-column .inner-column .rating-area span {
	color: #6C6C83;
	margin-left: 20px;
}
.testimonila-section-two .slider-column .inner-column .rating-area span i {
	margin-right: 7px;
}
.testimonila-section-two .slider-column .inner-column .rating-area .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.testimonila-section-two .slider-column .inner-column .rating-area .rating li {
	color: var(--theme-color-light);
	width: 18.75px;
	height: 18.75px;
	background-color: #00B67A;
	line-height: 18.75px;
	font-size: 12px;
	margin-left: 1px;
	text-align: center;
}
.testimonila-section-two .slider-column .inner-column .auther-info .name {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}
.testimonila-section-two .slider-column .inner-column .auther-info .designation {
	font-size: 14px;
}
.testimonila-section-two .slider-column .inner-column .auther-info .text {
	margin-top: 46px;
	font-size: 24px;
	line-height: 42px;
	font-weight: 500;
}
.testimonila-section-two .testi-two-slider {
	margin-bottom: 30px;
}
.testimonila-section-two .testi-two-thumb-slide {
	margin-right: 0;
	position: relative;
	cursor: pointer;
}
.testimonila-section-two .testi-two-thumb-slide:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #635bff;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.testimonila-section-two .testi-two-thumb-slide.slick-current:before {
	opacity: 1;
	visibility: visible;
}
.testimonila-section-two .testi-two-thumb-slide.slick-current>img {
	opacity: 1;
}
.testimonila-section-two .testi-two-thumb-slide>img {
	border-radius: 50%;
	padding: 10px;
	opacity: 0.5;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
/*** 
	====================================================================
    testimonial section three
	====================================================================
***/
.boxcar-testimonial-section-three {
	position: relative;
}
.boxcar-testimonial-section-three .right-box {
	background-color: var(--theme-color1);
	border-radius: 14px;
	padding: 110px 150px;
}
.boxcar-testimonial-section-three .content-column .inner-column {
	margin-top: 47px;
}
.boxcar-testimonial-section-three .content-column .inner-column .boxcar-title {
	margin-bottom: 0px;
}
.boxcar-testimonial-section-three .content-column .inner-column .boxcar-title h2 {
	margin-bottom: 13px;
}
.boxcar-testimonial-section-three .content-column .inner-column .boxcar-title .text {
	margin-top: 13px;
	padding-right: 130px;
}
.testimonial-block-three .inner-box {
	background-color: var(--theme-color-light);
	text-align: center;
	padding: 34px 0 40px;
	border-radius: 14px;
}
.testimonial-block-three .inner-box .content-box span {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 13px;
	display: inline-block;
}
.testimonial-block-three .inner-box .content-box .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.testimonial-block-three .inner-box .content-box .rating li {
	width: 37.5px;
	height: 37.5px;
	text-align: center;
	line-height: 37.5px;
	font-size: 25px;
	background-color: var(--theme-color2);
	color: var(--theme-color-light);
	margin-right: 3px;
}
.testimonial-block-three .inner-box .content-box .rating li:last-child {
	margin-right: 0;
}
.testimonial-block-three .inner-box .content-box small {
	font-size: 15px;
	margin-bottom: 10px;
	display: inline-block;
}
.testimonial-block-three .inner-box.v2 {
	padding-bottom: 24px;
}
.testimonial-block-three .inner-box.v3 {
	padding-bottom: 23px;
}
/*** 
	====================================================================
    testimonial section four
	====================================================================
***/
.boxcar-testimonial-section-four {
	position: relative;
	padding: 120px 0;
}
.boxcar-testimonial-section-four .boxcar-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.boxcar-testimonial-section-four .right-box {
	border-radius: 14px;
	background: var(--bg-1, #F9FBFC);
	padding: 120px 150px 150px;
}
.boxcar-testimonial-section-four .stories-slider .slick-prev {
	left: 15px;
	top: auto;
	bottom: -50px;
	width: 60px;
	height: 40px;
	border: 1px solid #050B20;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.boxcar-testimonial-section-four .stories-slider .slick-prev::before {
	content: "\f105";
	color: #050B20;
	font-size: 14px;
	font-family: "Font Awesome 6 Pro";
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.boxcar-testimonial-section-four .stories-slider .slick-next {
	right: auto;
	left: 95px;
	top: auto;
	bottom: -50px;
}
.testimonial-block-four {
	padding: 0 15px;
	padding-bottom: 60px;
}
.testimonial-block-four .inner-box {
	position: relative;
	border-radius: 14px;
	background: var(--theme-color-light);
	padding: 31px 41px 26px;
}
.testimonial-block-four .inner-box .icon {
	position: absolute;
	top: 30px;
	right: 49px;
}
.testimonial-block-four .inner-box .title {
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 34px;
}
.testimonial-block-four .inner-box .text {
	font-size: 15px;
	line-height: 30px;
	margin-bottom: 42px;
}
.testimonial-block-four .inner-box .auther-info {
	position: relative;
	padding: 9px 0 10px 76px;
}
.testimonial-block-four .inner-box .auther-info .image {
	position: absolute;
	top: 0;
	left: 0;
}
.testimonial-block-four .inner-box .auther-info .image img {
	border-radius: 50%;
}
.testimonial-block-four .inner-box .auther-info .name {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
	line-height: 17px;
}
.testimonial-block-four .inner-box .auther-info span {
	font-size: 14px;
}
.boxcar-testimonial-section-four.v7 .right-box {
	border-radius: 0;
	background-color: unset;
	padding: 0;
}
.boxcar-testimonial-section-four.v7 .testimonial-block-four .inner-box {
	background: #EBF7FE;
	-webkit-box-shadow: unset;
	box-shadow: unset;
}
.boxcar-testimonial-section-four.v8 .slick-next,
.boxcar-testimonial-section-four.v8 .slick-prev {
	display: none !important;
}
.boxcar-testimonial-section-four.v8 .right-box {
	border-radius: 0;
	background-color: var(--theme-color-dark);
	border-radius: 14px;
}
.boxcar-testimonial-section-four.v8 .testimonial-block-four {
	padding-bottom: 0;
}
.boxcar-testimonial-section-four.v8 .testimonial-block-four .inner-box {
	background: var(--theme-color-light);
	-webkit-box-shadow: unset;
	box-shadow: unset;
}
/*** 
	====================================================================
    pricing section
	====================================================================
***/
.boxcar-pricing-section {
	position: relative;
	padding: 120px 0;
}
.boxcar-pricing-section .image-column {
	margin-bottom: 20px;
}
.boxcar-pricing-section .image-column .inner-column {
	height: 100%;
}
.boxcar-pricing-section .image-column .inner-column .image-box {
	position: relative;
	height: 100%;
}
.boxcar-pricing-section .image-column .inner-column .image-box .image {
	height: 100%;
}
.boxcar-pricing-section .image-column .inner-column .image-box .image a {
	height: 100%;
	display: block;
}
.boxcar-pricing-section .image-column .inner-column .image-box .image img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 14px 0 0 14px;
	width: 100%;
	/* Medium devices */
}
@media (max-width: 991px) {
	.boxcar-pricing-section .image-column .inner-column .image-box .image img {
		border-radius: 0;
	}
}
.boxcar-pricing-section .image-column .inner-column .image-box .play-now {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background-color: var(--theme-color-light);
	color: var(--theme-color-dark);
	border-radius: 50%;
	text-align: center;
	line-height: 90px;
	font-size: 20px;
}
.boxcar-pricing-section .content-column .inner-column {
	background: var(--bg-2, #EEF1FB);
	padding: 105px 130px 119px;
	height: 100%;
	/* Medium Large devices */
	/* Small devices */
}
@media (max-width: 1399px) {
	.boxcar-pricing-section .content-column .inner-column {
		padding: 70px;
	}
}
@media (max-width: 767px) {
	.boxcar-pricing-section .content-column .inner-column {
		padding: 40px;
	}
}
.boxcar-pricing-section .content-column .inner-column .boxcar-title {
	margin-bottom: 43px;
}
.boxcar-pricing-section .content-column .inner-column .boxcar-title h2 {
	line-height: 55px;
	margin-bottom: 4px;
}
.boxcar-pricing-section .content-column .inner-column .boxcar-title .text {
	margin-top: 1px;
}
.boxcar-pricing-section .content-column .inner-column .list-style-one {
	margin-bottom: 50px;
}
.boxcar-pricing-section .content-column .inner-column .list-style-one li {
	position: relative;
	padding-left: 34px;
	margin-right: 0;
}
.boxcar-pricing-section .content-column .inner-column .list-style-one li i {
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	background-color: var(--theme-color-light);
	border-radius: 60%;
	font-size: 8px;
}
.boxcar-pricing-section .content-column .inner-column .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 13px 23px 10px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, var(--theme-color1));
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	color: var(--theme-color-light);
}
.boxcar-pricing-section .content-column .inner-column .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
/*** 
	====================================================================
    pricing section two
	====================================================================
***/
.boxcar-pricing-section-two {
	position: relative;
	padding: 120px 0;
}
.boxcar-pricing-section-two .image-column .inner-column .image-box {
	position: relative;
}
.boxcar-pricing-section-two .image-column .inner-column .image-box .image img {
	border-radius: 10px;
	width: 100%;
	height: 633px;
	-o-object-fit: cover;
	object-fit: cover;
}
.boxcar-pricing-section-two .content-column .inner-column {
	padding: 150px 0px 119px;
	height: 100%;
}
.boxcar-pricing-section-two .content-column .inner-column .boxcar-title {
	margin-bottom: 40px;
}
.boxcar-pricing-section-two .content-column .inner-column .boxcar-title h2 {
	line-height: 55px;
	margin-bottom: 27px;
}
.boxcar-pricing-section-two .content-column .inner-column .boxcar-title .text {
	margin-top: 0px;
}
.boxcar-pricing-section-two .content-column .inner-column .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 15px 27px 14px;
	border-radius: 12px;
	background: var(--color-secondary, var(--theme-color-dark));
	display: inline-block;
	color: var(--theme-color-light);
}
.boxcar-pricing-section-two .content-column .inner-column .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.boxcar-pricing-section-two.v2 .content-column .inner-column .read-more {
	background-color: var(--theme-color1);
}
/*** 
	====================================================================
    pricing section-three
	====================================================================
***/
.boxcar-pricing-section-three {
	position: relative;
	padding: 120px 0;
	background: var(--bg-1, #F9FBFC);
}
.boxcar-pricing-section-three .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.boxcar-pricing-section-three .image-column .inner-column .image-box {
	position: relative;
}
.boxcar-pricing-section-three .image-column .inner-column .image-box .image img {
	border-radius: 14px;
	width: 100%;
}
.boxcar-pricing-section-three .image-column .inner-column .image-box .play-now {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background-color: var(--theme-color-light);
	color: var(--theme-color-dark);
	border-radius: 50%;
	text-align: center;
	line-height: 90px;
	font-size: 20px;
}
.boxcar-pricing-section-three .content-column .inner-column {
	padding: 0 0px 0 117px;
	height: 100%;
}
.boxcar-pricing-section-three .content-column .inner-column .boxcar-title {
	margin-bottom: 25px;
}
.boxcar-pricing-section-three .content-column .inner-column .boxcar-title h2 {
	line-height: 55px;
	margin-bottom: 5px;
}
.boxcar-pricing-section-three .content-column .inner-column .boxcar-title .text {
	margin-top: 1px;
}
.boxcar-pricing-section-three .content-column .inner-column .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 13px 23px 10px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, var(--theme-color1));
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	color: var(--theme-color-light);
}
.boxcar-pricing-section-three .content-column .inner-column .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
/*** 
	====================================================================
    pricing section four
	====================================================================
***/
.boxcar-pricing-section-four {
	position: relative;
	padding: 120px 0;
}
.boxcar-pricing-section-four.style-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 38%;
	background-color: rgba(249, 251, 252, 1);
	border-top-right-radius: 14px;
	border-bottom-right-radius: 14px;
}
@media (max-width: 991px) {
	.boxcar-pricing-section-four.style-bg::before {
		content: none;
	}
	/* .boxcar-pricing-section-four {
		padding-top: 0px;
		padding-bottom: 0px;
	} */
}
.boxcar-pricing-section-four .image-column .inner-column .image-box {
	position: relative;
}
.boxcar-pricing-section-four .image-column .inner-column .image-box .image img {
	border-radius: 14px;
	width: 100%;
}
.boxcar-pricing-section-four .image-column .inner-column .image-box .play-now {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background-color: var(--theme-color-light);
	color: var(--theme-color-dark);
	border-radius: 50%;
	text-align: center;
	line-height: 90px;
	font-size: 20px;
}
.boxcar-pricing-section-four .content-column .inner-column {
	padding: 68px 0 80px 92px;
	height: 100%;
}
.boxcar-pricing-section-four .content-column .inner-column .boxcar-title {
	margin-bottom: 43px;
}
.boxcar-pricing-section-four .content-column .inner-column .boxcar-title h2 {
	line-height: 55px;
	margin-bottom: 4px;
}
.boxcar-pricing-section-four .content-column .inner-column .boxcar-title .text {
	margin-top: 1px;
}
.boxcar-pricing-section-four .content-column .inner-column .list-style-one {
	margin-bottom: 50px;
}
.boxcar-pricing-section-four .content-column .inner-column .list-style-one li {
	position: relative;
	padding-left: 34px;
	margin-right: 0;
}
.boxcar-pricing-section-four .content-column .inner-column .list-style-one li i {
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	background-color: #EEF1FB;
	border-radius: 60%;
	font-size: 8px;
}
.boxcar-pricing-section-four .content-column .inner-column .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 13px 23px 10px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, var(--theme-color1));
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	color: var(--theme-color-light);
}
.boxcar-pricing-section-four .content-column .inner-column .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.boxcar-pricing-section-four.v7 .content-column .inner-column {
	padding-left: 124px;
	padding-top: 32px;
}
.boxcar-pricing-section-four.v7 .image-column .image-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
}
.boxcar-pricing-section-four.v7 .image-column .image-box .image-2 {
	margin-bottom: 0;
}
.boxcar-pricing-section-four.v7 .image-column .image-box .image-2 img {
	border-radius: 14px;
}
.boxcar-pricing-section-four.v7 .image-column .image-box .image {
	margin-right: 35px;
}
.boxcar-pricing-section-four.v7 .image-column .image-box .image img {
	border-radius: 14px;
}
.boxcar-pricing-section-four.v9 .image-column .inner-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
}
.boxcar-pricing-section-four.v9 .image-column .inner-column .image-box .image-2 {
	margin-top: 73px;
	margin-left: 61px;
	margin-bottom: 0;
}
.boxcar-pricing-section-four.v9 .image-column .inner-column .image-box .image-2 img {
	border-radius: 14px;
}
.boxcar-pricing-section-four.v9 .image-column .inner-column .image-box .image-3 {
	margin-left: 66px;
	margin-bottom: 0;
}
.boxcar-pricing-section-four.v9 .image-column .inner-column .image-box .image-3 img {
	border-radius: 14px;
}
.boxcar-pricing-section-four.v9 .content-column .inner-column {
	padding: 56px 0 94px 123px;
}
/*** 
	====================================================================
    pricing section-five
	====================================================================
***/
.boxcar-pricing-section-five {
	position: relative;
	background: var(--bg-1, #F9FBFC);
}
.boxcar-pricing-section-five .image-column .inner-column .image-box {
	position: relative;
}
.boxcar-pricing-section-five .image-column .inner-column .image-box .image {
	border-radius: 0;
}
.boxcar-pricing-section-five .image-column .inner-column .image-box .image img {
	width: 100%;
	height: 600px;
	-o-object-fit: cover;
	object-fit: cover;
}
.boxcar-pricing-section-five .content-column .inner-column {
	padding: 151px 190px 0 154px;
	height: 100%;
	background-color: var(--theme-color-dark);
}
.boxcar-pricing-section-five .content-column .inner-column .boxcar-title {
	margin-bottom: 25px;
}
.boxcar-pricing-section-five .content-column .inner-column .boxcar-title h2 {
	line-height: 55px;
	margin-bottom: 27px;
}
.boxcar-pricing-section-five .content-column .inner-column .boxcar-title .text {
	margin-bottom: 40px;
}
.boxcar-pricing-section-five .content-column .inner-column .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 13px 23px 10px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, var(--theme-color1));
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	color: var(--theme-color-light);
}
.boxcar-pricing-section-five .content-column .inner-column .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
/*** 
	====================================================================
    pricing section six
	====================================================================
***/
.boxcar-pricing-section-six {
	position: relative;
	padding: 120px 0;
}
.boxcar-pricing-section-six .image-column .inner-column .image-box {
	position: relative;
}
.boxcar-pricing-section-six .image-column .inner-column .image-box .image img {
	border-radius: 10px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	height: 500px;
}
.boxcar-pricing-section-six .content-column .inner-column {
	padding: 69px 0px 80px 124px;
	height: 100%;
}
.boxcar-pricing-section-six .content-column .inner-column .boxcar-title {
	margin-bottom: 20px;
}
.boxcar-pricing-section-six .content-column .inner-column .boxcar-title h2 {
	line-height: 55px;
	margin-bottom: 8px;
}
.boxcar-pricing-section-six .content-column .inner-column .boxcar-title .text {
	margin-top: 0px;
}
.boxcar-pricing-section-six .content-column .inner-column .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 60px;
}
.boxcar-pricing-section-six .content-column .inner-column .btn-box .btn-two {
	font-size: 15px;
	font-style: normal;
	display: inline-block;
	font-weight: 500;
	line-height: 28px;
	color: var(--theme-color-dark);
	border-radius: 60px;
	padding: 7px 29px 7px;
	border: 1px solid var(--theme-color-dark);
	margin-right: 20px;
}
.boxcar-pricing-section-six .content-column .inner-column .btn-box .btn-two:last-child {
	margin-right: 0;
}
.boxcar-pricing-section-six .content-column .inner-column .btn-box .btn-two svg {
	fill: var(--theme-color-dark);
	width: 26px;
	height: 26px;
	margin-right: 8px;
}
.boxcar-pricing-section-six .content-column .inner-column .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 15px 27px 14px;
	border-radius: 12px;
	background: var(--color-secondary, var(--theme-color-dark));
	display: inline-block;
	color: var(--theme-color-light);
}
.boxcar-pricing-section-six .content-column .inner-column .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
/*** 
	====================================================================
    pricing section seven
	====================================================================
***/
.boxcar-pricing-section-seven {
	position: relative;
	padding: 120px 0;
	background-color: var(--theme-color-light);
	position: relative;
	border-radius: 80px;
}
.pricing-block-seven .inner-box {
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	background: var(--theme-color-light);
	padding: 28px 29px 29px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.pricing-block-seven .inner-box:hover {
	background-color: var(--theme-color1);
}
.pricing-block-seven .inner-box:hover .title {
	color: var(--theme-color-light);
}
.pricing-block-seven .inner-box:hover .plan {
	color: var(--theme-color-light);
}
.pricing-block-seven .inner-box:hover .text {
	color: var(--theme-color-light);
}
.pricing-block-seven .inner-box:hover .pricing-list li {
	color: var(--theme-color-light);
}
.pricing-block-seven .inner-box:hover .pricing-list li i {
	background-color: var(--theme-color-light);
}
.pricing-block-seven .inner-box .title {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 0;
}
.pricing-block-seven .inner-box .title span {
	font-size: 15px;
	font-weight: 400;
}
.pricing-block-seven .inner-box .plan {
	font-size: 20px;
	font-weight: 500;
}
.pricing-block-seven .inner-box .text {
	font-size: 14px;
	line-height: 28px;
	margin-top: 4px;
	margin-bottom: 29px;
}
.pricing-block-seven .inner-box .pricing-list {
	margin-bottom: 28px;
}
.pricing-block-seven .inner-box .pricing-list li {
	position: relative;
	font-size: 15px;
	color: var(--theme-color-dark);
	padding-left: 35px;
	margin-bottom: 12px;
}
.pricing-block-seven .inner-box .pricing-list li:last-child {
	margin-bottom: 0;
}
.pricing-block-seven .inner-box .pricing-list li i {
	position: absolute;
	top: 1px;
	left: 0;
	font-size: 7px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border-radius: 50%;
	background-color: #e9f2ff;
	color: var(--theme-color1);
}
.pricing-block-seven .inner-box .pricing-btn {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	border-radius: 8px;
	border: 1px solid #635bff;
	background: var(--theme-color-light);
	width: 100%;
	height: 54px;
	text-align: center;
	line-height: 54px;
	display: inline-block;
}
.pricing-block-seven .inner-box .pricing-btn svg {
	position: relative;
	top: -2px;
	margin-left: 9px;
}
/*** 
	====================================================================
    shop section
	====================================================================
***/
.cars-section {
	position: relative;
	padding: 120px 0;
}
.cars-section .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section .nav-tabs {
	margin-bottom: 34px;
	/* Small devices */
}
@media (max-width: 767px) {
	.cars-section .nav-tabs li {
		width: 100%;
		margin-bottom: 15px;
	}
	.cars-section .nav-tabs li button {
		margin-right: 0;
		text-align: left;
	}
}
.cars-section .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.shop-cars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* Small devices */
}
@media (max-width: 767px) {
	.shop-cars {
		display: block;
	}
}
.shop-cars .cars-list {
	margin-right: 114px;
	/* Large devices */
	/* Medium devices */
}
@media (max-width: 1199px) {
	.shop-cars .cars-list {
		margin-right: 40px;
	}
}
@media (max-width: 991px) {
	.shop-cars .cars-list {
		margin-right: 20px;
	}
}
.shop-cars .cars-list:last-child {
	margin-right: 0;
}
.shop-cars .cars-list li a {
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 45px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.shop-cars .cars-list li a:hover {
	color: var(--theme-color1);
	text-decoration: underline;
}
/*** 
	====================================================================
    shop section two
	====================================================================
***/
.cars-section-two {
	position: relative;
	padding: 120px 0 160px;
	background: var(--color-primary, var(--theme-color-dark));
}
.cars-section-two .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-light));
}
.cars-section-two .nav-tabs {
	margin-bottom: 50px;
	border-bottom: 1px solid #363c4c;
}
.cars-section-two .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-light);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	background-color: unset;
	position: relative;
}
.cars-section-two .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-two .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-two {
	margin: 0 15px;
}
.car-block-two .inner-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 15px;
	overflow: hidden;
}
.car-block-two .inner-box .image-box {
	position: relative;
	/* display: inline-block; */
}
.car-block-two .inner-box .image-box .image {
	height: 100%;
	border-radius: 0;
	/* overflow: hidden; */
}
.car-block-two .inner-box .image-box .image img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 767px) {
	.car-block-two .inner-box .image-box .image img {
		width: 100%;
	}
}
.car-block-two .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-two .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-two .inner-box .content-box {
	position: relative;
	background-color: #161d30;
	padding: 25px 30px 22px;
	flex-grow: 1;
}
.car-block-two .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-light);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-two .inner-box .content-box .text {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-bottom: 37px;
}
.car-block-two .inner-box .content-box ul {
	margin-bottom: 34px;
}
.car-block-two .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-light);
	font-size: 14px;
	/* padding-left: 30px; */
	line-height: 17px;
	margin-bottom: 21px;
	display: flex;
	align-items: center;
	gap: 10px
}
.car-block-two .inner-box .content-box ul li i {
	font-size: 20px;
}
.car-block-two .inner-box .content-box ul li:last-child {
	margin-bottom: 0;
}
.car-block-two .inner-box .content-box ul li img {
	position: absolute;
	top: 0;
	left: 0;
}
.car-block-two .inner-box .content-box .btn-box span {
	color: var(--theme-color-light);
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-two .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-light);
	line-height: 30px;
}
.car-block-two .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 23px;
	right: 20px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-family: var(--title-font);
}
.car-block-two .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
/*** 
	====================================================================
    shop section three
	====================================================================
***/
.cars-section-three {
	position: relative;
	padding: 120px 0 160px;
}
.cars-section-three .boxcar-title {
	margin-bottom: 32px;
}
.cars-section-three .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-three .nav-tabs {
	margin-bottom: 34px;
	flex-wrap: nowrap;
}
.cars-section-three .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section-three .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-three .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-three {
	margin: 0 14px;
}
.car-block-three .inner-box .image-box {
	position: relative;
	display: inline-block;
	width: 100%;
}
.car-block-three .inner-box .image-box .image {
	width: 100%;
	border-radius: 15px 15px 0px 0px;
}
.car-block-three .inner-box .image-box .image img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.car-block-three .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light-text);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-three .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-three .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-three .inner-box .content-box {
	position: relative;
	border-radius: 0 0 14px 14px;
	border: 1px solid var(--Border, #E1E1E1);
	border-top: 0;
	padding: 15px 27px 11px;
	margin-top: -9px;
}
.box-car .inner-box:hover {
	box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.05);
}
.box-car.car-block-nine .inner-box:hover {
	box-shadow: unset;
}
.box-car .content-box .title a {
	position: relative;
}
.box-car .content-box .title a::before {
	content: "";
	width: 0;
	height: 1px;
	bottom: 0px;
	position: absolute;
	left: auto;
	right: 0;
	z-index: 1;
	-webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
	-o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
	transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
	background: var(--theme-color-dark);
}
.box-car .inner-box:hover .content-box .title a::before {
	width: 100%;
	left: 0;
	right: auto;
}
.box-car .content-box .title a:hover:before {
	background: var(--theme-color1);
}
.car-block-three .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-three .inner-box .content-box .text {
	color: var(--theme-color-dark);
	font-size: 14px;
	margin-bottom: 20px;
	padding-bottom: 13px;
	border-bottom: 1px solid #e1e1e1;
	white-space: nowrap;
}
.car-block-three .inner-box .content-box ul {
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #e1e1e1;
}
.car-block-three .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-dark);
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-right: 32px;
}
.car-block-three .inner-box .content-box ul li:last-child {
	margin-right: 0;
}
.car-block-three .inner-box .content-box ul li img {
	width: 18px;
	margin-bottom: 7px;
}
.car-block-three .inner-box .content-box .btn-box span {
	color: var(--theme-color-dark);
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-three .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-dark);
	line-height: 30px;
}
.car-block-three .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 11px;
	right: 30px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	font-family: var(--title-font);
}
.car-block-three .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
/*** 
	====================================================================
    shop section four
	====================================================================
***/
.cars-section-four {
	position: relative;
	padding: 120px 0 90px;
}
.cars-section-four .inner-container {
	max-width: 1829px;
	margin: 0 auto;
	padding: 0 15px;
}
.cars-section-four .boxcar-title {
	margin-bottom: 32px;
}
.cars-section-four .boxcar-title .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.cars-section-four .boxcar-title .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
}
.cars-section-four .boxcar-title .breadcrumb li:last-child {
	margin-right: 0;
}
.cars-section-four .boxcar-title .breadcrumb li a {
	color: var(--theme-color1);
}
.cars-section-four .boxcar-title h2 {
	margin-bottom: 41px;
}
.cars-section-four .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-four .lower-sec .text {
	font-size: 15px;
}
.cars-section-four .nav-tabs {
	margin-bottom: 34px;
	flex-wrap: nowrap;
}
.cars-section-four .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
	background-color: transparent;
}
.cars-section-four .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-four .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.cars-section-four .pagination-sec {
	margin-top: 30px;
	text-align: center;
}
.cars-section-four .pagination-sec .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.cars-section-four .pagination-sec .pagination li:first-child a,
.cars-section-four .pagination-sec .pagination li:last-child a {
	border: 1px solid #e1e1e1;
	width: 60px;
	font-size: 30px;
	line-height: 35px;
}
.cars-section-four .pagination-sec .pagination li a {
	font-size: 15px;
	margin: 0 5px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	text-align: center;
	font-weight: 500;
	padding: 0;
	line-height: 40px;
	border: 0;
	color: var(--theme-color-dark);
}
.cars-section-four .pagination-sec .pagination li a:hover {
	background-color: #f9fbfc;
}
.cars-section-four .pagination-sec .text {
	font-size: 14px;
	margin-top: 19px;
}
.cars-section-four .form-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 57px;
}
.cars-section-four .form-box .form_boxes .drop-menu {
	border: 1px solid #e1e1e1;
	border-radius: 120px;
	height: unset;
	margin-right: 10px;
}
.cars-section-four .form-box .form_boxes .drop-menu:active {
	border-color: var(--theme-color-dark);
}
.cars-section-four .form-box .form_boxes .drop-menu .dropdown {
	background-color: var(--theme-color-light);
	-webkit-box-shadow: 30px 30px 60px 0px rgba(0, 0, 1, 0.05);
	box-shadow: 30px 30px 60px 0px rgba(0, 0, 1, 0.05);
}
.cars-section-four .form-box .form_boxes .drop-menu .select {
	padding: 0 35px 0 25px;
	height: 48px;
	line-height: 48px;
}
.cars-section-four .form-box .form_boxes .drop-menu .select span {
	font-size: 15px;
}
.cars-section-four .form-box .form_boxes .drop-menu .select span i {
	right: -11px;
}
.car-block-four {
	margin-bottom: 30px;
}
.car-block-four .inner-box .image-box {
	position: relative;
	/* display: inline-block; */
	width: 100%;
}
.car-block-four .inner-box .image-box .image {
	border-radius: 15px 15px 0px 0px;
	width: 100%;
	background: #f3f3f3;
	/* min-height: 250px; */
}
.car-block-four .inner-box .image-box .image img {
	width: 100%;
}
.car-block-four .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-four .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-four .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-four .inner-box .content-box {
	position: relative;
	border-radius: 0 0 14px 14px;
	border: 1px solid var(--Border, #E1E1E1);
	border-top: 0;
	padding: 15px 27px 11px;
}
.car-block-four.style-bg .inner-box .content-box {
	background-color: #fff;
}
.car-block-four .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-four .inner-box .content-box .text {
	color: var(--theme-color-dark);
	font-size: 14px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #e1e1e1;
}
.car-block-four .inner-box .content-box ul {
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px dashed #e1e1e1;
	width: 100%;
}
.car-block-four .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-dark);
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}
.car-block-four .inner-box .content-box ul li:last-child {
	margin-right: 0;
}
.car-block-four .inner-box .content-box ul li img {
	width: 18px;
	margin-bottom: 7px;
}
.car-block-four .inner-box .content-box .btn-box span {
	color: var(--theme-color-dark);
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-four .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-dark);
	line-height: 30px;
}
.car-block-four .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 11px;
	right: 30px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	font-family: var(--title-font);
}
.car-block-four .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
/*** 
	====================================================================
    shop section five
	====================================================================
***/
.cars-section-five {
	position: relative;
	padding: 120px 0 160px;
	background-color: var(--theme-color-dark);
}
.cars-section-five .boxcar-title {
	margin-bottom: 32px;
}
.cars-section-five .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-five .slick-prev,
.cars-section-five .slick-next {
	border-color: var(--theme-color-light);
}
.cars-section-five .slick-prev::before,
.cars-section-five .slick-next::before {
	color: var(--theme-color-light);
}
.cars-section-five .nav-tabs {
	margin-bottom: 34px;
	border-bottom: 1px solid #2d3345;
}
.cars-section-five .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-light);
	border-top: 0;
	background-color: unset;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section-five .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-five .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-five {
	margin: 0 15px;
}
.car-block-five .inner-box .image-box {
	position: relative;
	display: inline-block;
}
.car-block-five .inner-box .image-box .image img {
	border-radius: 15px 15px 0 0;
}
.car-block-five .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-five .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-five .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-five .inner-box .content-box {
	position: relative;
	border-radius: 0 0 14px 14px;
	background-color: #161c30;
	border-top: 0;
	padding: 15px 27px 11px;
	margin-top: -9px;
}
.car-block-five .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-light);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-five .inner-box .content-box .text {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-bottom: 20px;
	padding-bottom: 13px;
	border-bottom: 1px solid #2d3345;
}
.car-block-five .inner-box .content-box ul {
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #2d3345;
}
.car-block-five .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-light);
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-right: 42px;
}
.car-block-five .inner-box .content-box ul li:last-child {
	margin-right: 0;
}
.car-block-five .inner-box .content-box ul li i {
	width: 18px;
	margin-bottom: 7px;
}
.car-block-five .inner-box .content-box .btn-box span {
	color: var(--theme-color-light);
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-five .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-light);
	line-height: 30px;
}
.car-block-five .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 11px;
	right: 30px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-family: var(--title-font);
}
.car-block-five .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
	fill: var(--theme-color-light);
}
/*** 
	====================================================================
    shop section six
	====================================================================
***/
.cars-section-six {
	position: relative;
	padding: 120px 0 160px;
}
.cars-section-six .slick-list {
	/* overflow: unset; */
}
.cars-section-six .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-six .nav-tabs {
	margin-bottom: 50px;
	border-bottom: 1px solid #e1e1e1;
}
.cars-section-six .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	background-color: unset;
	position: relative;
}
.cars-section-six .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-six .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-six {
	margin: 0 15px;
}
.car-block-six .inner-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 15px;
	overflow: hidden;
}
.car-block-six .inner-box .image-box {
	position: relative;
	width: 50%;
}
.car-block-six .inner-box .image-box .image {
	height: 100%;
}
.car-block-six .inner-box .image-box .image img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}
.car-block-six .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-six .inner-box .content-box {
	width: 50%;
	position: relative;
	background-color: #161d30;
	padding: 35px 31px 35px;
}
.car-block-six .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-light);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-six .inner-box .content-box .text {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-bottom: 24px;
}
.car-block-six .inner-box .content-box ul {
	margin-bottom: 21px;
}
.car-block-six .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-light);
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 21px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.car-block-six .inner-box .content-box ul li i {
	font-size: 18px;
}
.car-block-six .inner-box .content-box ul li:last-child {
	margin-bottom: 0;
}
.car-block-six .inner-box .content-box ul li img {
	position: absolute;
	top: 0;
	left: 0;
}
.car-block-six .inner-box .content-box .btn-box span {
	color: var(--theme-color-light);
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-six .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-light);
	line-height: 30px;
}
.car-block-six .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 36px;
	right: 20px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-family: var(--title-font);
}
.car-block-six .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
.car-block-six .inner-box .content-box.v2 {
	background-color: #735043;
}
.car-block-six .inner-box .content-box.v3 {
	background: var(--color-secondary, var(--theme-color1));
}
.car-block-six .inner-box .content-box.v4 {
	background-color: #373948;
}
.car-slider,
.cars-section-five .cars-section-seven .car-slider-three {
	padding-bottom: 30px;
}
.car-slider .slick-prev,
.car-slider .slick-next,
.cars-section-five .cars-section-seven .car-slider-three .slick-prev,
.cars-section-five .cars-section-seven .car-slider-three .slick-next {
	top: auto;
	bottom: -50px;
	-webkit-transform: unset;
	transform: unset;
	border-color: #fff;
}
.cus-slider .slick-prev,
.cus-slider .slick-next {
	top: auto;
	bottom: -50px;
	-webkit-transform: unset;
	transform: unset;
}
.car-slider .slick-prev:before,
.car-slider .slick-next:before,
.cars-section-five .cars-section-seven .car-slider-three .slick-prev:before,
.cars-section-five .cars-section-seven .car-slider-three .slick-next:before {
	color: #fff;
}
.car-slider .slick-prev:hover,
.car-slider .slick-next:hover,
.cars-section-five .cars-section-seven .car-slider-three .slick-prev:hover,
.cars-section-five .cars-section-seven .car-slider-three .slick-next:hover {
	background-color: #fff;
}
.car-slider .slick-prev:hover:before,
.car-slider .slick-next:hover:before,
.cars-section-five .cars-section-seven .car-slider-three .slick-prev:hover:before,
.cars-section-five .cars-section-seven .car-slider-three .slick-next:hover:before {
	color: #000;
}
.car-slider .slick-prev,
.cars-section-five .cars-section-seven .car-slider-three .slick-prev,
.cus-slider .slick-prev {
	left: 15px;
}
.car-slider .slick-next,
.cars-section-five .cars-section-seven .car-slider-three .slick-next,
.cus-slider .slick-next {
	right: auto;
	left: 95px;
}
.car-slider-three {
	padding-bottom: 30px;
}
.slider-layout-1 {
	width: calc(100vw - ((100vw - 1400px) / 2));
	margin-right: unset !important;
	max-width: 100%;
	margin-left: auto;
}
.car-slider-three .slick-prev,
.car-slider-three .slick-next {
	top: auto;
	bottom: -50px;
	-webkit-transform: unset;
	transform: unset;
}
.car-slider-three .slick-prev {
	left: 15px;
}
.car-slider-three .slick-next {
	right: auto;
	left: 95px;
}
.car-slider.style-1 .slick-prev,
.car-slider.style-1 .slick-next {
	border-color: #050B20;
	color: #050B20;
}
.car-slider.style-1 .slick-prev::before,
.car-slider.style-1 .slick-next::before {
	color: #050B20;
}
.car-slider.style-1 .slick-prev:hover,
.car-slider.style-1 .slick-next:hover {
	background-color: #050B20;
}
.car-slider.style-1 .slick-prev:hover::before,
.car-slider.style-1 .slick-next:hover::before {
	color: #fff;
	opacity: 1;
}
.car-slider .slick-list,
.car-slider-three .slick-list {
	padding-bottom: 30px;
	margin-bottom: -30px;
}
/*** 
	====================================================================
    shop section seven
	====================================================================
***/
.cars-section-seven {
	position: relative;
	padding: 120px 0 160px;
}
.cars-section-seven .car-slider-three .slick-next,
.cars-section-seven .car-slider-three .slick-prev {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-left: -35px;
}
.cars-section-seven .car-slider-three .slick-next {
	margin-left: 40px;
}
.cars-section-seven .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-seven .nav-tabs {
	margin-bottom: 34px;
	border-bottom: 1px solid #2d3345;
}
.cars-section-seven .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-light);
	border-top: 0;
	background-color: unset;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section-seven .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-seven .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-seven {
	margin: 0 15px;
}
.car-block-seven .inner-box .image-box {
	position: relative;
	display: inline-block;
}
.car-block-seven .inner-box .image-box .image img {
	border-radius: 15px 15px 0 0;
}
.car-block-seven .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-seven .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-seven .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-seven .inner-box .content-box {
	position: relative;
	border-radius: 0 0 14px 14px;
	background-color: #161c30;
	border-top: 0;
	padding: 15px 27px 11px;
	margin-top: -9px;
}
.car-block-seven .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-light);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-seven .inner-box .content-box .text {
	color: var(--theme-color-light);
	font-size: 14px;
	margin-bottom: 20px;
	padding-bottom: 13px;
	border-bottom: 1px solid #2d3345;
}
.car-block-seven .inner-box .content-box ul {
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #2d3345;
}
.car-block-seven .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-light);
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-right: 42px;
}
.car-block-seven .inner-box .content-box ul li:last-child {
	margin-right: 0;
}
.car-block-seven .inner-box .content-box ul li img {
	width: 18px;
	margin-bottom: 7px;
}
.car-block-seven .inner-box .content-box .btn-box span {
	color: var(--theme-color-light);
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-seven .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-light);
	line-height: 30px;
}
.car-block-seven .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 11px;
	right: 30px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-light);
	font-family: var(--title-font);
}
.car-block-seven .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
	fill: var(--theme-color-light);
}
/*** 
	====================================================================
    shop section eight
	====================================================================
***/
.cars-section-eight {
	position: relative;
	padding: 120px 0 160px;
}
.cars-section-eight .car-slider-three .slick-next,
.cars-section-eight .car-slider-three .slick-prev {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-left: -35px;
}
.cars-section-eight .car-slider-three .slick-next {
	margin-left: 40px;
}
.cars-section-eight .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-eight .nav-tabs {
	margin-bottom: 50px;
	border-bottom: 1px solid #e1e1e1;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.cars-section-eight .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	background-color: unset;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section-eight .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-eight .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
/*** 
	====================================================================
    shop section nine
	====================================================================
***/
.cars-section-nine {
	position: relative;
	padding: 120px 0 160px;
}
.cars-section-nine .boxcar-title {
	margin-bottom: 32px;
}
.cars-section-nine .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-nine .nav-tabs {
	margin-bottom: 34px;
}
.cars-section-nine .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section-nine .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-nine .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-nine {
	margin: 0 15px;
}
.car-block-nine .inner-box .image-box {
	position: relative;
	display: inline-block;
	width: 100%;
}
.car-block-nine .inner-box .image-box .image {
	border-radius: 15px;
	overflow: hidden;
}
.car-block-nine .inner-box .image-box .image img {
	border-radius: 14px;
}
.car-block-nine .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-nine .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-nine .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-nine .inner-box .content-box {
	position: relative;
	border-top: 0;
	padding: 15px 0 0;
	margin-top: -9px;
}
.car-block-nine .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-nine .inner-box .content-box .text {
	color: var(--theme-color-dark);
	font-size: 14px;
	margin-bottom: 0;
	padding-bottom: 9px;
}
.car-block-nine .inner-box .content-box ul {
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #e1e1e1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 5px;
}
.car-block-nine .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-dark);
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	width: 50%;
	margin-right: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}
.car-block-nine .inner-box .content-box ul li i {
	font-size: 14px;
}
.car-block-nine .inner-box .content-box ul li:last-child {
	margin-right: 0;
}
.car-block-nine .inner-box .content-box ul li img {
	width: 18px;
	margin-right: 10px;
	position: relative;
	top: 5px;
}
.car-block-nine .inner-box .content-box .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.car-block-nine .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-dark);
	line-height: 30px;
}
.car-block-nine .inner-box .content-box .btn-box .details {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	font-family: var(--title-font);
}
.car-block-nine .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
/*** 
	====================================================================
    shop section ten
	====================================================================
***/
.cars-section-ten {
	position: relative;
	padding: 120px 0 160px;
}
.cars-section-ten .right-box {
	padding: 120px 150px 160px;
	border-radius: 14px;
	background: #F9FBFC;
}
.cars-section-ten .boxcar-title {
	margin-bottom: 32px;
}
.cars-section-ten .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-ten .nav-tabs {
	margin-bottom: 34px;
	flex-wrap: nowrap;
}
.cars-section-ten .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
	background: transparent;
}
.cars-section-ten .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-ten .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-ten {
	margin: 0 15px;
}
.car-block-ten .inner-box {
	background-color: var(--theme-color-light);
	border-radius: 15px;
}
.car-block-ten .inner-box .image-box {
	position: relative;
	/* display: inline-block; */
}
.car-block-ten .inner-box .image-box .image img {
	border-radius: 15px 15px 0 0;
}
.car-block-ten .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 1px 14px 1px 14px;
	border-radius: 50px;
}
.car-block-ten .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-ten .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-ten .inner-box .content-box {
	position: relative;
	border-radius: 0 0 14px 14px;
	border: 1px solid var(--Border, #E1E1E1);
	border-top: 0;
	padding: 15px 27px 14px;
}
.car-block-ten .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	line-height: 24px;
	margin-bottom: 5px;
}
.car-block-ten .inner-box .content-box ul {
	margin-bottom: 2px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.car-block-ten .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-dark);
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 10px;
}
.car-block-ten .inner-box .content-box ul li:first-child {
	padding-left: 0;
}
.car-block-ten .inner-box .content-box ul li:first-child::before {
	display: none;
}
.car-block-ten .inner-box .content-box ul li::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 10px;
	background-color: #ABAAAA;
}
.car-block-ten .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-dark);
	line-height: 30px;
	display: inline-block;
	margin-bottom: 6px;
}
.car-block-ten .inner-box .content-box .btn-box .details {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	font-family: var(--title-font);
}
.car-block-ten .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
/*** 
	====================================================================
    shop section eleven
	====================================================================
***/
.cars-section-eleven {
	position: relative;
	padding: 120px 0 90px;
}
.cars-section-eleven .boxcar-title {
	margin-bottom: 32px;
}
.cars-section-eleven .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-eleven .nav-tabs {
	margin-bottom: 34px;
}
.cars-section-eleven .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section-eleven .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-eleven .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-eleven {
	margin-bottom: 30px;
}
.car-block-eleven .inner-box .image-box {
	position: relative;
	/* display: inline-block; */
}
.car-block-eleven .inner-box .image-box .image img {
	border-radius: 14px 14px 0 0;
}
.car-block-eleven .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-eleven .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-eleven .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-eleven .inner-box .content-box {
	position: relative;
	border-radius: 0 0 14px 14px;
	border: 1px solid var(--Border, #E1E1E1);
	border-top: 0;
	padding: 15px 27px 11px;
}
.car-block-eleven .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-eleven .inner-box .content-box .text {
	color: var(--theme-color-dark);
	font-size: 14px;
	margin-bottom: 0;
	padding-bottom: 9px;
}
.car-block-eleven .inner-box .content-box ul {
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #e1e1e1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 5px;
}
.car-block-eleven .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-dark);
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	width: 50%;
	margin-right: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}
.car-block-eleven .inner-box .content-box ul li i {
	font-size: 14px;
}
.car-block-eleven .inner-box .content-box ul li:last-child {
	margin-right: 0;
}
.car-block-eleven .inner-box .content-box ul li img {
	width: 18px;
	margin-right: 10px;
	position: relative;
	top: 5px;
}
.car-block-eleven .inner-box .content-box .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.car-block-eleven .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-dark);
	line-height: 30px;
}
.car-block-eleven .inner-box .content-box .btn-box .details {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	font-family: var(--title-font);
}
.car-block-eleven .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
/*** 
	====================================================================
    shop section twelve
	====================================================================
***/
.cars-section-twelve {
	position: relative;
	padding: 120px 0 160px;
}
.cars-section-twelve .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.cars-section-twelve .nav-tabs {
	margin-bottom: 34px;
	border-bottom: 1px solid #2d3345;
}
.cars-section-twelve .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-light);
	border-top: 0;
	background-color: unset;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
}
.cars-section-twelve .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-twelve .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.car-block-twelve {
	margin: 0 15px;
}
.car-block-twelve .inner-box .image-box {
	position: relative;
	display: inline-block;
}
.car-block-twelve .inner-box .image-box .image img {
	border-radius: 15px 15px 0 0;
}
.car-block-twelve .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 6px 14px 6px;
	border-radius: 50px;
}
.car-block-twelve .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-twelve .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-twelve .inner-box .content-box {
	position: relative;
	border-radius: 0 0 14px 14px;
	border: 1px solid var(--Border, #E1E1E1);
	border-top: 0;
	padding: 15px 27px 11px;
	margin-top: -9px;
}
.car-block-twelve .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	line-height: 24px;
	margin-bottom: 0;
}
.car-block-twelve .inner-box .content-box .text {
	color: var(--theme-color-dark);
	font-size: 14px;
	margin-bottom: 20px;
	padding-bottom: 13px;
	border-bottom: 1px solid #e1e1e1;
}
.car-block-twelve .inner-box .content-box ul {
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #e1e1e1;
}
.car-block-twelve .inner-box .content-box ul li {
	position: relative;
	color: var(--theme-color-dark);
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-right: 42px;
}
.car-block-twelve .inner-box .content-box ul li:last-child {
	margin-right: 0;
}
.car-block-twelve .inner-box .content-box ul li img {
	width: 18px;
	margin-bottom: 7px;
}
.car-block-twelve .inner-box .content-box .btn-box span {
	color: var(--theme-color-dark);
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-twelve .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-dark);
	line-height: 30px;
}
.car-block-twelve .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 11px;
	right: 30px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	font-family: var(--title-font);
}
.car-block-twelve .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
	fill: var(--theme-color1);
}
/*** 
	====================================================================
    shop section thirteen
	====================================================================
***/
.cars-section-thirteen {
	position: relative;
	padding: 60px 0 100px;
	border-radius: 80px;
}
.cars-section-thirteen .boxcar-title-three {
	margin-bottom: 51px;
}
.cars-section-thirteen .boxcar-title-three .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.cars-section-thirteen .boxcar-title-three .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
}
.cars-section-thirteen .boxcar-title-three .breadcrumb li:last-child {
	margin-right: 0;
}
.cars-section-thirteen .boxcar-title-three .breadcrumb li a {
	color: var(--theme-color1);
}
.cars-section-thirteen .boxcar-title-three .service-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.cars-section-thirteen .boxcar-title-three .service-list li {
	margin-right: 10px;
}
.cars-section-thirteen .boxcar-title-three .service-list li:last-child {
	margin-right: 0;
}
.cars-section-thirteen .boxcar-title-three .service-list li a {
	font-size: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 50px;
	padding: 13px 25px 11px;
	display: inline-block;
}
.cars-section-thirteen .boxcar-title-three .service-list li a:hover {
	background-color: #e9f2ff;
	border-color: #e9f2ff;
}
.cars-section-thirteen .boxcar-title-three h2 {
	margin-bottom: 21px;
}
.cars-section-thirteen .pagination-sec {
	margin-top: 60px;
	text-align: center;
}
.cars-section-thirteen .pagination-sec .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	flex-wrap: wrap;
}
.cars-section-thirteen .pagination-sec .pagination li:first-child a,
.cars-section-thirteen .pagination-sec .pagination li:last-child a {
	border: 1px solid #e1e1e1;
	width: 60px;
	font-size: 30px;
	line-height: 35px;
}
.cars-section-thirteen .pagination-sec .pagination li a {
	font-size: 15px;
	margin: 0 5px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	text-align: center;
	font-weight: 500;
	padding: 0;
	line-height: 40px;
	border: 0;
	color: var(--theme-color-dark);
}
.cars-section-thirteen .pagination-sec .pagination li a:hover {
	background-color: #f9fbfc;
}
.cars-section-thirteen .pagination-sec .text {
	font-size: 14px;
	margin-top: 19px;
}
.service-block-thirteen {
	margin-bottom: 30px;
}
.service-block-thirteen .inner-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.service-block-thirteen .inner-box .image-box .image {
	border-radius: 14px 0 0 14px;
	overflow: hidden;
}
@media (max-width: 991px) {
	.service-block-thirteen .inner-box .image-box .image {
		border-radius: 14px;
	}
}
.service-block-thirteen .inner-box .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 1px solid #E1E1E1;
	border-left: 0;
	border-radius: 0 14px 14px 0;
	padding: 42px 30px 10px;
}
.service-block-thirteen .inner-box .right-box .content-box .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 0;
}
.service-block-thirteen .inner-box .right-box .content-box .text {
	margin-bottom: 34px;
	font-size: 15px;
}
.service-block-thirteen .inner-box .right-box .content-box .inspection-sec {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 47px;
	gap: 30px;
	flex-wrap: wrap;
}
@media (max-width: 991px) {
	.service-block-thirteen .inner-box .right-box .content-box .inspection-sec {
		margin-bottom: 30px;
		gap: 20px
	}
}
.service-block-thirteen .inner-box .right-box .content-box .inspection-sec .inspection-box {
	position: relative;
	/* margin-right: 30px; */
	display: flex;
	gap: 12px;
}
.service-block-thirteen .inner-box .right-box .content-box .inspection-sec .inspection-box:last-child {
	margin-right: 0;
}
.service-block-thirteen .inner-box .right-box .content-box .inspection-sec .inspection-box img {
	position: absolute;
	top: 8px;
	left: 0;
}
.service-block-thirteen .inner-box .right-box .content-box .inspection-sec .inspection-box span {
	display: block;
	color: #818181;
	font-size: 15px;
	margin-bottom: -4px;
}
.service-block-thirteen .inner-box .right-box .content-box .inspection-sec .inspection-box small {
	color: var(--theme-color-dark);
	font-size: 15px;
	font-weight: 500;
}
.service-block-thirteen .inner-box .right-box .content-box .ul-cotent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.service-block-thirteen .inner-box .right-box .content-box .ul-cotent li {
	/* margin-right: 10px; */
}
.service-block-thirteen .inner-box .right-box .content-box .ul-cotent li:last-child {
	margin-right: 0;
}
.service-block-thirteen .inner-box .right-box .content-box .ul-cotent li a {
	font-size: 15px;
	border: 1px solid #E1E1E1;
	border-radius: 50px;
	padding: 6px 20px;
	display: inline-flex;
}
.service-block-thirteen .inner-box .right-box .content-box-two {
	position: relative;
	text-align: right;
	margin-top: 15px;
	margin-left: 51px;
}
.service-block-thirteen .inner-box .right-box .content-box-two::before {
	content: "";
	position: absolute;
	top: -6px;
	left: -31px;
	width: 1px;
	height: 220px;
	background-color: #e1e1e1;
}
.service-block-thirteen .inner-box .right-box .content-box-two .icon-box {
	margin-bottom: 47px;
	display: inline-flex;
	align-items: center;
}
@media (max-width: 991px) {
	.service-block-thirteen .inner-box .right-box .content-box-two .icon-box {
		margin-bottom: 30px;
	}
}
.service-block-thirteen .inner-box .right-box .content-box-two .icon-box span {
	font-size: 15px;
	margin-right: 9px;
	display: inline-block;
	margin-bottom: 0;
}
.service-block-thirteen .inner-box .right-box .content-box-two .title {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 2px;
}
.service-block-thirteen .inner-box .right-box .content-box-two span {
	font-size: 15px;
	display: inline-block;
	margin-bottom: 20px;
}
.service-block-thirteen .inner-box .right-box .content-box-two .button {
	display: block;
	color: var(--theme-color1);
	font-weight: 500;
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	padding: 13px 25px 11px;
}
.service-block-thirteen .inner-box .right-box .content-box-two .button:hover {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
}
.service-block-thirteen .inner-box .right-box .content-box-two .button:hover svg {
	fill: var(--theme-color-light);
}
.service-block-thirteen .inner-box .right-box .content-box-two .button svg {
	position: relative;
	top: -2px;
	margin-left: 11px;
}
/*** 
	====================================================================
    shop section fourten
	====================================================================
***/
.cars-section-fourteen {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
}
.cars-section-fourteen .side-bar {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--White, #FFF);
	padding: 15px 0 0;
}
.categories-box {
	padding: 0 19px 7px;
	border-bottom: 1px solid #e1e1e1;
	/* Hide the browser's default checkbox */
	/* Create a custom checkbox */
	/* When the checkbox is checked, add a blue background */
	/* Create the checkmark/indicator (hidden when not checked) */
	/* Show the checkmark when checked */
	/* Style the checkmark/indicator */
}
.categories-box .title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
}
.categories-box .contain {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 8px;
	cursor: pointer;
	font-size: 15px;
	color: var(--theme-color-dark);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.categories-box .contain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.categories-box .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	border: 1px solid rgb(225, 225, 225);
	border-radius: 5px;
}
.categories-box .contain input:checked~.checkmark {
	background-color: var(--theme-color-dark);
}
.categories-box .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.categories-box .contain input:checked~.checkmark:after {
	display: block;
}
.categories-box .contain .checkmark:after {
	left: 6px;
	top: 3px;
	width: 7px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.price-box {
	padding: 15px 19px 0;
}
.price-box .title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
}
.price-box form {
	width: 100%;
	margin: 0;
}
.price-box form .form-column {
	padding-right: 20px;
}
.price-box form .form-column.v2 {
	padding-right: 0;
	padding-left: 20px;
}
.price-box form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.price-box form .form_boxes textarea {
	width: 100%;
	height: 200px;
}
.price-box form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.price-box form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.price-box form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.price-box form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.price-box form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.price-box form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.price-box form .form_boxes .drop-menu {
	height: unset;
}
.price-box form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.price-box form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.car-block-fourteen {
	margin-bottom: 30px;
}
.car-block-fourteen .inner-box {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 17px 30px 30px;
	text-align: center;
}
.car-block-fourteen .inner-box .image-box {
	margin-bottom: 30px;
}
.car-block-fourteen .inner-box .content-box .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 4px;
}
.car-block-fourteen .inner-box .content-box .rating li {
	font-size: 12px;
	color: var(--theme-color1);
	margin-right: 4px;
}
.car-block-fourteen .inner-box .content-box .rating li:last-child {
	margin-right: 0;
}
.car-block-fourteen .inner-box .content-box .text {
	font-weight: 500;
	color: var(--theme-color-dark);
	margin-bottom: 7px;
	text-align: start;
}
.car-block-fourteen .inner-box .content-box .title {
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 24px;
}
.car-block-fourteen .inner-box .content-box .title del {
	font-size: 14px;
	padding-right: 10px;
}
.car-block-fourteen .inner-box .content-box .shoping-btn {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	border-radius: 8px;
	border: 1px solid var(--color-secondary, #635bff);
	background: var(--theme-color-light);
	height: 54px;
	line-height: 54px;
	width: 100%;
	display: inline-block;
	text-align: center;
}
.car-block-fourteen .inner-box .content-box .shoping-btn i {
	margin-right: 11px;
}
.car-block-fourteen .inner-box .content-box .shoping-btn:hover {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
}
/*** 
	====================================================================
    shop section fifteen
	====================================================================
***/
.cars-section-fifteen {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 0;
	border-radius: 80px;
}
.cars-section-fifteen .cars-section-fourteen.v1 {
	margin-top: 0;
	padding: 120px 0 160px;
}
.cars-section-fifteen .cars-section-fourteen.v1 .car-block-fourteen {
	margin: 0 15px;
}
.cars-section-fifteen .right-box.one {
	margin-bottom: 104px;
}
.cars-section-fifteen .nav-tabs {
	margin-bottom: 34px;
	border: 0;
	display: unset;
	margin-bottom: 0;
}
.cars-section-fifteen .nav-tabs .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
	position: relative;
	margin-bottom: 19px;
}
.cars-section-fifteen .nav-tabs .nav-link:hover {
	border-color: transparent;
}
.cars-section-fifteen .nav-tabs .nav-link.active {
	color: var(--theme-color1);
}
.cars-section-fifteen .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column h2 {
	font-weight: 700;
	margin-bottom: 12px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .price {
	font-size: 26px;
	font-weight: 500;
	color: var(--theme-color-dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 19px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .price del {
	font-size: 15px;
	margin-left: 10px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column small {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 17px;
	display: inline-block;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column small i {
	font-size: 10px;
	color: var(--theme-color1);
	width: 18px;
	height: 18px;
	background-color: rgba(64, 95, 242, 0.15);
	line-height: 18px;
	text-align: center;
	border-radius: 50px;
	position: relative;
	top: -1px;
	margin-right: 7px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 21px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .btn-box {
	margin-bottom: 22px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .btn-box .shoping-btn {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-light);
	border-radius: 8px;
	border: 1px solid var(--color-secondary, #635bff);
	background: var(--theme-color1);
	height: 54px;
	line-height: 54px;
	padding: 0 78px;
	display: inline-block;
	text-align: center;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .btn-box .shoping-btn i {
	margin-right: 11px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .list li {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: -2px;
}
.cars-section-fifteen .shop-c-box .content-column .inner-column .list li span {
	width: 111px;
	display: inline-block;
}
.cars-section-fifteen .content-sec {
	padding-top: 120px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 23px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .text {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .text.two {
	margin-bottom: 24px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .des-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 38px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .des-list li {
	margin-right: 18px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .des-list li:last-child {
	margin-right: 0;
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .des-list li span {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-dark);
	padding: 14px 26px 12px;
	border-radius: 12px;
	background: var(--bg-2, #EEF1FB);
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .des-list li span img {
	margin-right: 10px;
	position: relative;
	top: -1px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .des-list .two span {
	background: var(--bg-3, #E9F2FF);
}
.cars-section-fifteen .content-sec .content-column .inner-column .description-sec .des-list .three span {
	background: var(--bg-4, #FFE9F3);
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .title {
	margin-bottom: 23px;
	font-weight: 500;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .auther-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 14px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .auther-name span {
	font-size: 14px;
	font-weight: 500;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: var(--theme-color-dark);
	border-radius: 50%;
	text-align: center;
	color: var(--theme-color-light);
	display: inline-block;
	margin-right: 12px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .auther-name .name {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	margin-right: 17px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .auther-name small {
	font-size: 14px;
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .rating-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .rating-list .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .rating-list .list li {
	font-size: 10px;
	margin-right: 4px;
	color: var(--theme-color1);
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .rating-list .list li:last-child {
	margin-right: 0;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .rating-list span {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-left: 12px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .reviews .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	max-width: 849px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .image-box {
	margin-top: 23px;
	margin-bottom: 20px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .image-box img {
	border-radius: 12px;
	margin-right: 14px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .image-box img:last-child {
	margin-right: 0;
}
.cars-section-fifteen .content-sec .content-column .inner-column .btn-box .like-btn {
	font-size: 15px;
	color: #818181;
	margin-right: 28px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .btn-box .like-btn i {
	margin-right: 10px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .btn-box .like-btn:hover {
	color: var(--theme-color1);
}
.cars-section-fifteen .content-sec .content-column .inner-column .content-box.two {
	margin-top: 29px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 60px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .content-box.two .text {
	margin-bottom: 27px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .content-box.two .review {
	font-size: 15px;
	color: var(--theme-color1);
	font-weight: 500;
	height: 54px;
	line-height: 54px;
	padding: 0 38px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, #635bff);
	background: var(--White, #FFF);
	display: inline-block;
	margin-top: 30px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .content-box.two .review svg {
	margin-left: 10px;
	position: relative;
	top: -1px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec {
	margin-top: 52px;
	margin-bottom: 20px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .text {
	margin-bottom: 30px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list {
	width: 330px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list .list-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list .list-box span {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list .list-box .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list .list-box .list li {
	font-size: 12px;
	color: var(--theme-color1);
	margin-right: 4px;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list .list-box .list li:last-child {
	margin-right: 0;
}
.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list.two {
	margin-right: 144px;
}
.cars-section-fifteen .content-sec .content-column .inner-column form {
	width: 100%;
	margin: 0;
	margin-left: -12px;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes textarea {
	width: 100%;
	height: 200px;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes .drop-menu {
	height: unset;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.cars-section-fifteen .content-sec .content-column .inner-column form .form_boxes.v2 {
	padding-top: 14px;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .theme-btn {
	background: #635bff;
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	padding: 0 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.cars-section-fifteen .content-sec .content-column .inner-column form .theme-btn svg {
	margin-left: 10px;
}
/*** 
	====================================================================
    boxcar-customers-section
	====================================================================
***/
.boxcar-customers-section .car-slider-three {
	padding-bottom: 0;
}
.boxcar-customers-section .car-slider-three .slick-prev,
.boxcar-customers-section .car-slider-three .slick-next {
	bottom: auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 40px;
	height: 30px;
}
.boxcar-customers-section .car-slider-three .slick-prev {
	left: -50px;
}
.boxcar-customers-section .car-slider-three .slick-next {
	right: -50px;
	left: auto;
}
.cars-section-four.v1 {
	padding: 52px 0 120px;
	background-color: var(--theme-color-light);
}
.cars-section-four.v1 .text-box.v1 {
	margin-bottom: 11px;
}
.cars-section-four.v1 .boxcar-title-three {
	margin-bottom: 0;
	position: relative;
	z-index: 12;
}
.cars-section-four.v1 .boxcar-title-three h2 {
	margin-bottom: 21px;
}
.cars-section-four.v1.v2 .boxcar-title-three {
	margin-bottom: 51px;
}
.cars-section-ten.v8 {
	padding: 120px 0;
}
.cars-section-four.v1.v5 {
	padding: 0;
}
.cars-section-four.v1.v5 .text-box.v2 .form_boxes.v3 {
	margin-right: 57px;
}
.cars-section-four.v1.v5 .map-column #map {
	position: fixed;
	height: 100%;
	right: 0;
	bottom: 0;
}
.cars-section-four.v1.v5 .map-column .inner-column {
	position: relative;
	margin-right: -52px;
}
.cars-section-four.v1.v5 .map-column .inner-column .goole-iframe iframe {
	width: 100%;
	height: 1133px;
	border-radius: 0 80px 0 0;
}
.cars-section-four.v1.v5 .map-column .inner-column .car-block-ten {
	position: absolute;
	top: 178px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.cars-section-four.v1.v5 .map-column .inner-column .car-block-ten .inner-box {
	width: 329px;
	margin: auto;
	border-radius: 14px;
}
.cars-section-four.v1.v5 .map-column .inner-column .car-block-ten .inner-box .content-box {
	padding-bottom: 15px;
}
.cars-section-four.v1.v5 .right-box {
	padding: 30px 20px 20px 40px;
}
.cars-section-four.v1.v5 .right-box .car-block-ten {
	margin: 0 0 30px;
}
.cars-section-four.v1.v5 .right-box .car-block-ten .inner-box .image-box {
	width: 100%;
}
.cars-section-four.v1.v5 .right-box .car-block-ten .inner-box .image-box .image img {
	width: 100%;
}
.cars-section-four.v1.v5 .pagination-sec.v1 {
	margin-top: 60px;
}
.cars-section-four.v1.v5 .map-column.two .inner-column .goole-iframe iframe {
	height: 1250px;
}
.car-block-forteen {
	margin-bottom: 30px;
}
.car-block-forteen:last-child {
	margin-bottom: 0;
}
.car-block-forteen .inner-box {
	background-color: var(--theme-color-light);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.car-block-forteen .inner-box .image-box {
	position: relative;
	display: inline-block;
}
.car-block-forteen .inner-box .image-box .image {
	border-radius: 15px 0 0 15px;
}
@media (max-width: 1399px) {
	.car-block-forteen .inner-box .image-box .image {
		border-radius: 15px 15px 0 0;
	}
}
.car-block-forteen .inner-box .image-box .image img {
	height: 288px;
}
.car-block-forteen .inner-box .image-box span {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	background-color: var(--theme-color1);
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 1px 14px 1px 14px;
	border-radius: 50px;
}
.car-block-forteen .inner-box .image-box .icon-box {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: var(--theme-color-light);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}
.car-block-forteen .inner-box .image-box.two span {
	background-color: #3D923A;
}
.car-block-forteen .inner-box .content-box {
	position: relative;
	border-radius: 0 15px 15px 0;
	border: 1px solid var(--Border, #E1E1E1);
	border-left: 0;
	padding: 23px 30px 13px;
	height: 100%;
	width: calc(100% - 330px);
}
.car-block-forteen .inner-box .content-box .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	line-height: 24px;
	margin-bottom: 5px;
}
.car-block-forteen .inner-box .content-box .text {
	margin-bottom: 14px;
	font-size: 14px;
}
.car-block-forteen .inner-box .content-box ul li {
	position: relative;
	/* padding-left: 28px; */
	padding-bottom: 11px;
	display: flex;
	gap: 10px;
}
.car-block-forteen .inner-box .content-box ul li img {
	position: absolute;
	top: 4px;
	left: 0;
}
.car-block-forteen .inner-box .content-box .btn-box span {
	font-size: 14px;
	display: block;
	margin-bottom: -2px;
}
.car-block-forteen .inner-box .content-box .btn-box small {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-dark);
	line-height: 30px;
	display: inline-block;
	margin-bottom: 6px;
}
.car-block-forteen .inner-box .content-box .btn-box .details {
	position: absolute;
	bottom: 19px;
	right: 35px;
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-dark);
	font-family: var(--title-font);
}
.car-block-forteen .inner-box .content-box .btn-box .details svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
.ui-widget.ui-widget-content {
	background-color: #E1E1E1;
	height: 3px;
	margin-bottom: 30px;
	border: 0;
}
.ui-slider-horizontal .ui-slider-handle {
	width: 29px;
	height: 29px;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	position: relative;
}
.ui-slider-horizontal .ui-slider-handle:before {
	content: "";
	position: absolute;
	top: -13px;
	left: 0;
	width: 29px;
	height: 29px;
	background-image: url(../images/icons/next.png);
	background-repeat: no-repeat;
}
.ui-slider-horizontal .ui-slider-range {
	background-color: #050B20;
}
.cars-section-fifteen .inner-column {
	position: relative;
}
.cars-section-fifteen .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.shop-single-thumbs-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
}
.shop-single-thumbs-slider .shop-single-thumb {
	width: 100%;
	height: 90px;
	text-align: center;
	margin-bottom: 10px;
	line-height: 90px;
}
.shop-single-thumbs-slider .shop-single-thumb .thumb-img {
	border: 1px solid #e1e1e1;
	height: 90px;
	width: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 14px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.shop-single-thumbs-slider .shop-single-thumb.slick-active.slick-current .thumb-img {
	border-color: #050B20;
}
.shop-single-product-slider {
	width: 643px;
	border: 1px solid #E1E1E1;
	border-radius: 14px;
	margin-left: 115px;
	padding: 70px 0px;
}
.compare-products {
	overflow: auto;
}
@media (max-width: 1024px) {
	.shop-single-product-slider {
		padding: 0;
	}
}
.shop-single-product-slider .shop-single-product-slide {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.number {
	width: 140px;
	border: 1px solid #E1E1E1;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 20px;
}
.number .minus,
.number .plus {
	cursor: pointer;
}
.number input {
	width: 80px;
	text-align: center;
	outline: none;
}
/* ===================== PAYMENT OPTIONS =================== */
.payment-options {
	padding: 30px;
	border: 1px solid #E1E1E1;
	border-radius: 14px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.payment-options .shipp input[type=radio] {
	display: none;
}
.payment-options .shipp input[type=radio]+label span {
	display: inline-block;
	width: 20px;
	height: 20px;
	position: relative;
	margin-right: 10px;
	border: 1px solid #e1e1e1;
	border-radius: 50%;
	top: 4px;
}
.payment-options .shipp input[type=radio]:checked+label span {
	border: 3px solid #050B20;
}
.payment-options .shipp>label small {
	display: inline-block;
	color: #222222;
	font-size: 15px;
	font-weight: 500;
}
.payment-options ul li {
	margin-bottom: 15px;
}
.payment-options ul li:last-child {
	margin-bottom: 0;
}
.payment-options ul li .shipp+p {
	font-size: 13px;
	color: #050B20;
	line-height: 24px;
	margin-top: 15px;
}
/* .payment-options ul li .shipp+p:before {
	content: "";
	position: absolute;
	top: -5px;
	left: 30px;
	border-top: 10px solid #807aff;
	border-right: 10px solid transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
} */
.payment-options .shipp+img {
	margin-left: 60px;
	margin-top: 14px;
}
.form-submit .theme-btn {
	background: var(--theme-color1);
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	padding: 0 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* Shop Order Page Style */
.order_complete_message {
	position: relative;
	margin-bottom: 70px;
}
.order_complete_message .icon {
	border-radius: 50%;
	font-size: 30px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 25px;
	width: 80px;
	background-color: #E9F2FF;
}
.order_complete_message .icon span {
	color: #635bff;
}
.order_complete_message .title {
	font-size: 30px;
	font-weight: 500;
	line-height: 45px;
	margin-bottom: 10px;
}
.order_complete_message .para {
	color: #041e42;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 26px;
}
.order_complete_message .shop_order_box {
	position: relative;
}
.order_complete_message .shop_order_box .order_details {
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 6px;
	padding: 40px 50px 20px;
}
.order_complete_message .shop_order_box .order_details .title {
	font-size: 20px;
	line-height: 29px;
	letter-spacing: 0em;
}
.order_complete_message .shop_order_box .order_details .od_content .product_name_qnt,
.order_complete_message .shop_order_box .order_details .order_sidebar_widget .product_name_qnt {
	color: #041e42;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
}
.order_complete_message .shop_order_box .order_details .order_details .od_content .product_name_qnt span,
.order_complete_message .shop_order_box .order_details .order_sidebar_widget .product_name_qnt span {
	color: #041e42;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
}
.order_complete_message .shop_order_box .order_details .od_content .subtitle p {
	color: #041e42;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 35px;
}
.order_complete_message .shop_order_box .order_details .od_content .subtitle span {
	color: #041e42;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 35px;
}
.order_complete_message .shop_order_box .order_details .od_content .subtitle .free_shipping {
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0em;
}
.order_complete_message .shop_order_box .order_details .od_content .subtitle .fwn_bd_color {
	color: #041e42;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 35px;
}
.order_complete_message .order_list_raw {
	background-color: #fff;
	border: 1px dashed #626974;
	border-radius: 6px;
	margin-bottom: 30px;
	padding: 35px 40px 35px;
}
.order_complete_message .order_list_raw ul {
	margin-bottom: 0;
}
.order_complete_message .order_list_raw ul li {
	margin-right: 80px;
	text-align: left;
}
.order_complete_message .order_list_raw ul li:last-child {
	margin-right: 0;
}
.order_complete_message .order_list_raw ul li h5 {
	font-style: normal;
	line-height: 28px;
	margin-bottom: 0;
}
.order_complete_message .order_list_raw ul li p {
	color: #041e42;
	font-style: normal;
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 5px;
}
.order_complete_message .order_sidebar_widget .product_name_qnt {
	margin-bottom: 15px;
}
.order_complete_message .list_last_content .para {
	color: #000000;
	font-family: Jost;
	font-size: 15px;
	font-weight: 500;
	line-height: 22px;
	letter-spacing: 0em;
}
.order_list_raw {
	background: #E9F2FF;
	border: 2px dashed #635bff;
	padding: 36px 100px;
	border-radius: 8px;
}
.order_list_raw ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.order_list_raw li {
	text-align: left;
	width: 24%;
}
.order_list_raw li p {
	color: #050B20;
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
}
.order_list_raw li h5 {
	color: #050B20;
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 0;
}
.order_details {
	border: 1px solid #E1E1E1;
	padding: 50px;
	border-radius: 14px;
	margin-top: 50px;
	margin-bottom: 80px;
}
.order_details>h4 {
	color: #050B20;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	text-transform: capitalize;
}
.order_details .od_content ul li {
	border-bottom: 1px solid #E9E9E9;
	padding: 12px 0;
}
.order_details .od_content ul li.no-border {
	border: 0;
}
.order_details .od_content ul li.no-border p {
	margin-bottom: 10px;
}
.order_details .od_content ul li.no-border p:last-child {
	margin-bottom: 0;
}
.order_details .od_content ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.order_details .od_content ul li p {
	font-size: 15px;
	font-weight: 500;
	color: #050B20;
	margin-bottom: 0;
}
.order_details .od_content ul li p a {
	display: inline-block;
	color: #635bff;
	font-size: 14px;
	font-weight: 400;
}
.order_details .od_content ul li span {
	color: #050B20;
	font-size: 15px;
	font-weight: 500;
}
.cart-page {
	padding: 70px 0 100px;
}
.cart-table {
	padding-right: 40px;
}
.cart-table table {
	width: 100%;
}
.cart-table table thead {
	background: #E9F2FF;
}
.cart-table table thead th {
	padding: 20px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #635bff;
}
.cart-table table thead th:first-child {
	border-radius: 14px 0 0 14px;
}
.cart-table table thead th:last-child {
	border-radius: 0 14px 14px 0;
}
.cart-table table .number {
	height: 54px;
}
.cart-table table tr td {
	padding: 20px;
	border-bottom: 1px solid #ECEDF2;
}
.cart-table table tr .remove-cart-item {
	display: inline-block;
	border: 1px solid #E1E1E1;
	border-radius: 14px;
	width: 40px;
	height: 40px;
	background-color: #F9FBFC;
	text-align: center;
	line-height: 40px;
}
.cart-table .shop-cart-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.cart-table .shop-cart-product .shop-product-cart-img {
	width: 120px;
	height: 105px;
	border-radius: 14px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 20px;
}
.cart-table .shop-cart-product .shop-product-cart-img>img {}
.cart-table .shop-cart-product .shop-product-cart-info h3 {
	max-width: 170px;
	color: #050B20;
	font-size: 14px;
	line-height: 26px;
	font-weight: 500;
	margin-bottom: 0;
}
.cart-table-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 10px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.cart-table-bottom .coupan-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.cart-table-bottom .coupan-form input {
	border: 1px solid #E1E1E1;
	border-radius: 14px;
	height: 55px;
	padding: 0 20px;
	color: #050B20;
	width: 270px;
	margin-right: 20px;
	font-size: 15px;
}
.theme-btn-web {
	background: #635bff;
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	padding: 0 26px;
	display: inline-block;
}
.theme-btn-web:hover {
	color: #fff;
}
.theme-btn-web img {
	margin-left: 7px;
}
.cart-totals {
	border: 1px solid #E1E1E1;
	padding: 25px;
	border-radius: 14px;
}
.cart-totals h3 {
	color: #050B20;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 30px;
}
.cart-totals .theme-btn-web {
	text-align: center;
	width: 100%;
	display: block;
	margin-top: 30px;
}
.cart-totals table {
	width: 100%;
}
.cart-totals table th {
	color: #050B20;
	font-size: 15px;
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
	font-weight: 400;
}
.cart-totals table td {
	color: #050B20;
	font-size: 15px;
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
	text-align: right;
	font-weight: 500;
}
.cart-totals table tr:first-child th,
.cart-totals table tr:first-child td {
	padding-top: 0;
}
.cart-totals table tr:last-child th,
.cart-totals table tr:last-child td {
	padding-bottom: 0;
	border-bottom: 0;
}
.compare-section {
	padding: 80px 0 190px;
}
.compare-section .compare-products table {
	width: 100%;
}
.compare-section .compare-products table thead th {
	width: 25%;
	padding: 15px 10px;
}
.compare-section .compare-products table tbody th {
	color: #050B20;
	font-size: 15px;
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
	font-weight: 400;
}
.compare-section .compare-products table tbody th img {
	margin-right: 5px;
	position: relative;
	top: -1px;
}
.compare-section .compare-products table tbody td {
	color: #050B20;
	font-size: 15px;
	padding: 10px 0;
	font-weight: 500;
	border-bottom: 1px solid #E1E1E1;
}
.compare-section .compare-products table tbody tr:last-child th,
.compare-section .compare-products table tbody tr:last-child td {
	border-bottom: 0;
	padding-bottom: 0;
}
.compare-section .compare-product-img {
	position: relative;
}
.compare-section .compare-product-img>img {
	width: 100%;
	border-radius: 14px;
}
.compare-section .compare-product-img .remove-pro {
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 20px;
	border-radius: 14px;
	width: 40px;
	height: 40px;
	background-color: #fff;
	text-align: center;
	line-height: 40px;
}
.cluster-visible {
	text-align: center;
	font-size: 14px !important;
	color: #FFFFFF !important;
	font-weight: 500 !important;
	border-radius: 50%;
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	background-color: #1967D2;
	border: 7px solid rgba(25, 103, 210, 0.2);
	-webkit-box-shadow: 0 7px 30px rgba(33, 33, 33, 0.3);
	box-shadow: 0 7px 30px rgba(33, 33, 33, 0.3);
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	background-clip: content-box;
}
.map-marker-container {
	position: absolute;
	-webkit-transform: translate3d(-50%, -100%, 0);
	transform: translate3d(-50%, -100%, 0);
}
.marker-container {
	position: relative;
	top: -5px;
	width: 120px;
	height: 40px;
	z-index: 1;
	border-radius: 50%;
	cursor: pointer;
	-webkit-perspective: 1000;
}
.face {
	position: absolute;
	background: #fff;
	padding: 15px 20px;
	border-radius: 120px;
	-webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	text-align: center;
	border-radius: 50%;
	z-index: 100;
	background: #fff;
	font-size: 15px;
	color: #050B20;
	font-weight: 500;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	background-clip: content-box;
}
.face>div {
	background-image: url(images/resource/company-logo/3-1.png);
	position: absolute;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.map-marker-container:hover .marker-container .marker-card,
.clicked .marker-container .marker-card,
.map-marker-container.clicked .marker-card {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
#singleListingMap .marker-container {
	cursor: default;
}
.map-marker-container[data-marker_id="0"] .marker-arrow:before {
	border-color: #4cbfd8 transparent transparent;
}
.map-marker-container[data-marker_id="1"] .marker-arrow:before {
	border-color: #ff8480 transparent transparent;
}
.map-marker-container[data-marker_id="2"] .marker-arrow:before {
	border-color: #8c689d transparent transparent;
}
.map-marker-container[data-marker_id="3"] .marker-arrow:before {
	border-color: #35c2a5 transparent transparent;
}
.map-marker-container[data-marker_id="4"] .marker-arrow:before {
	border-color: #ff8480 transparent transparent;
}
.map-marker-container[data-marker_id="5"] .marker-arrow:before {
	border-color: #ffb874 transparent transparent;
}
.map-marker-container[data-marker_id="6"] .marker-arrow:before {
	border-color: #ff007a transparent transparent;
}
.map-marker-container[data-marker_id="0"] .face {
	background-color: #4cbfd8;
}
.map-marker-container[data-marker_id="1"] .face {
	background-color: #ff8480;
}
.map-marker-container[data-marker_id="2"] .face {
	background-color: #8c689d;
}
.map-marker-container[data-marker_id="3"] .face {
	background-color: #35c2a5;
}
.map-marker-container[data-marker_id="4"] .face {
	background-color: #ff8480;
}
.map-marker-container[data-marker_id="5"] .face {
	background-color: #ffb874;
}
.map-marker-container[data-marker_id="6"] .face {
	background-color: #ff007a;
}
.marker-card {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	position: absolute;
	z-index: 1;
	background: #fff;
	width: 120px;
	height: 40px;
	border-radius: 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 15px;
	font-weight: 500;
}
.map-listing-item .image-box img {
	width: 100%;
	border-radius: 14px 14px 0 0;
}
.map-listing-item .content {
	background: #fff;
	padding: 20px;
	border-radius: 0 0 14px 14px;
}
.map-listing-item .content h3 {
	margin: 0;
	color: #050B20;
	font-size: 18px;
	font-weight: 500;
	line-height: 32px;
}
.map-listing-item .content .job-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.map-listing-item .content .job-info li {
	color: #050B20;
	font-size: 14px;
	padding: 0 10px;
}
.map-listing-item .content .job-info li:first-child {
	padding-left: 0;
}
.map-listing-item .content .job-info li:last-child {
	padding-right: 0;
}
/*** 
	====================================================================
    galler-section section
	====================================================================
***/
.car-galler-section {
	position: relative;
	padding: 120px 0;
}
.car-galler-section .boxcar-title .btn-title {
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	font-family: var(--title-font);
	color: var(--color-primary, var(--theme-color-dark));
}
.galler-block {
	margin-bottom: 30px;
}
.galler-block .inner-box {
	position: relative;
}
.galler-block .inner-box:hover .image-box .image {
	border-radius: 14px;
}
.galler-block .inner-box:hover .image-box .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.galler-block .inner-box .image-box .image {
	border-radius: 14px;
	overflow: hidden;
}
.galler-block .inner-box .image-box .image img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.galler-block .inner-box .content-box {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background-color: var(--theme-color-light);
	padding: 7px 30px 9px;
	border-radius: 50px;
}
.galler-block .inner-box .content-box .title {
	font-size: 15px;
	font-weight: 500;
}
.galler-block .inner-box .content-box .title span {
	margin-left: 7px;
	display: inline-block;
}
/*** 
	====================================================================
    customer section
	====================================================================
***/
.boxcar-customers-section {
	position: relative;
	padding: 120px 0 100px;
	background-color: #F9FBFC;
}
.boxcar-customers-section .boxcar-title {
	margin-top: 11px;
}
.boxcar-customers-section .boxcar-title .text {
	font-size: 15px;
	position: absolute;
	top: -8px;
	right: 0;
}
.customer-block {
	margin: 20px 15px;
}
.customer-block .inner-box {
	border-radius: 14px;
	background-color: var(--theme-color-light);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.08);
	padding: 25px 30px 30px;
}
.customer-block .inner-box .rating-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 7px;
}
.customer-block .inner-box .rating-area span {
	color: #6C6C83;
	margin-left: 20px;
}
.customer-block .inner-box .rating-area span i {
	margin-right: 7px;
}
.customer-block .inner-box .rating-area .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.customer-block .inner-box .rating-area .rating li {
	color: var(--theme-color-light);
	width: 18.75px;
	height: 18.75px;
	background-color: #00B67A;
	line-height: 18.75px;
	font-size: 12px;
	margin-left: 1px;
	text-align: center;
}
.customer-block .inner-box .title {
	font-weight: 500;
	margin-bottom: 3px;
	font-size: 14px;
	line-height: 28px;
}
.customer-block .inner-box .text {
	font-size: 14px;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*** 
	====================================================================
    customer section two
	====================================================================
***/
.boxcar-customers-section-two {
	position: relative;
	padding: 120px 0 50px;
}
.boxcar-customers-section-two .boxcar-title {
	margin-top: 11px;
}
.boxcar-customers-section-two .boxcar-title .text {
	font-size: 15px;
	position: absolute;
	top: -8px;
	right: 0;
}
.customer-block-two {
	margin: 20px 15px;
}
.customer-block-two .inner-box {
	border-radius: 14px;
	background: var(--bg-1, #F9FBFC);
	padding: 25px 30px 30px;
}
.customer-block-two .inner-box .rating-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 7px;
}
.customer-block-two .inner-box .rating-area span {
	color: #6C6C83;
	margin-left: 20px;
}
.customer-block-two .inner-box .rating-area span i {
	margin-right: 7px;
}
.customer-block-two .inner-box .rating-area .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.customer-block-two .inner-box .rating-area .rating li {
	color: var(--theme-color-light);
	width: 18.75px;
	height: 18.75px;
	background-color: #00B67A;
	line-height: 18.75px;
	font-size: 12px;
	margin-left: 1px;
	text-align: center;
}
.customer-block-two .inner-box .title {
	font-weight: 500;
	margin-bottom: 3px;
	font-size: 14px;
	line-height: 28px;
}
.customer-block-two .inner-box .text {
	font-size: 14px;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*** 
	====================================================================
    Fun Fact Section
	====================================================================
***/
.boxcar-fun-fact-section {
	position: relative;
}
.boxcar-fun-fact-section .fact-counter {
	border-bottom: 1px solid #e1e1e1;
	padding: 55px 156px 29px;
}
.counter-block {
	position: relative;
	margin-bottom: 30px;
}
.counter-block .inner {
	text-align: center;
	position: relative;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.counter-block .inner:hover .icon {
	background-color: #ffffff;
	color: var(--bg-theme-color1);
	border-radius: 50%;
}
.counter-block .content {
	position: relative;
}
@media (max-width: 575.98px) {
	.counter-block .content {
		padding-left: 0;
		text-align: center;
	}
}
.counter-block .icon {
	position: absolute;
	left: 35px;
	top: 5px;
	color: var(--theme-color1);
	font-size: 48px;
	line-height: 1em;
	border-radius: 5px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
@media (max-width: 575.98px) {
	.counter-block .icon {
		position: relative;
		left: 0;
		top: 0;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		margin-bottom: 10px;
	}
}
.counter-block .widget-counter {
	font-size: 38px;
	line-height: 58px;
	font-weight: 600;
	font-family: var(--title-font);
	color: var(--theme-color-dark);
	letter-spacing: -1.92px;
	margin-bottom: 1px;
}
.counter-block .widget-counter .count-text {
	font-size: 38px;
	line-height: 58px;
	font-weight: 600;
	font-family: var(--title-font);
	color: var(--theme-color-dark);
}
.counter-block .counter-title {
	font-size: 15px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 0;
	text-transform: uppercase;
}
/*** 
	====================================================================
    Fun Fact Section
	====================================================================
***/
.boxcar-fun-fact-section-two {
	position: relative;
}
.boxcar-fun-fact-section-two .fact-counter {
	border-radius: 14px;
	background: #EEF1FB;
	padding: 104px 158px 79px;
}
.counter-block-two {
	position: relative;
	margin-bottom: 30px;
}
.counter-block-two .inner {
	text-align: center;
	position: relative;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.counter-block-two .inner:hover .icon {
	background-color: #ffffff;
	color: var(--bg-theme-color1);
	border-radius: 50%;
}
.counter-block-two .content {
	position: relative;
}
@media (max-width: 575.98px) {
	.counter-block-two .content {
		padding-left: 0;
		text-align: center;
	}
}
.counter-block-two .widget-counter {
	font-size: 38px;
	line-height: 58px;
	font-weight: 600;
	font-family: var(--title-font);
	color: var(--theme-color1);
	letter-spacing: -1.92px;
	margin-bottom: 1px;
}
.counter-block-two .widget-counter .count-text {
	font-size: 38px;
	line-height: 58px;
	font-weight: 600;
	font-family: var(--title-font);
	color: var(--theme-color1);
}
.counter-block-two .counter-title {
	font-size: 15px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 0;
	color: var(--theme-color1);
	text-transform: uppercase;
}
/*** 
	====================================================================
    Fun Fact Section
	====================================================================
***/
.boxcar-fun-fact-section-three {
	position: relative;
	border-bottom: 1px solid #e1e1e1;
	padding: 55px 156px 29px;
}
/*** 
	====================================================================
    news-letter-section
	====================================================================
***/
.news-letter-section {
	position: relative;
	padding: 120px 0;
}
.news-letter-section .image-column .inner-column {
	background: #3551D7;
	padding: 53px 66px 52px 25px;
}
.news-letter-section .form-column .inner-column {
	background: var(--theme-color1);
	padding: 81px 0 81px 255px;
}
.news-letter-section .form-column .inner-column .boxcar-title {
	margin-bottom: 31px;
}
.news-letter-section .form-column .inner-column .boxcar-title h2 {
	margin-bottom: 2px;
}
.news-letter-section .form-column .inner-column .boxcar-title .text {
	margin-top: 9px;
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group {
	position: relative;
	display: inline-block;
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group input {
	width: 567px;
	height: 80px;
	border-radius: 12px;
	background: #3551D7;
	padding: 0 36px;
	font-size: 15px;
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group input::-webkit-input-placeholder {
	color: var(--theme-color-light);
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group input::-moz-placeholder {
	color: var(--theme-color-light);
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group input:-ms-input-placeholder {
	color: var(--theme-color-light);
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group input::-ms-input-placeholder {
	color: var(--theme-color-light);
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group input::placeholder {
	color: var(--theme-color-light);
}
.news-letter-section .form-column .inner-column .subscribe-form .form-group button {
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 15px;
	color: var(--theme-color1);
	background-color: var(--theme-color-light);
	padding: 19px 43px 17px;
	border-radius: 14px;
	text-transform: capitalize;
}
/*** 
	====================================================================
    service section
	====================================================================
***/
.boxcar-service-section {
	position: relative;
	padding: 120px 0;
}
.boxcar-service-section .right-box {
	position: relative;
	border-radius: 14px;
	background: #F5F7FE;
	padding: 98px 151px 110px;
}
.boxcar-service-section .content-column .inner-column .title {
	font-weight: 700;
	line-height: 55px;
	text-transform: capitalize;
	margin-bottom: 27px;
}
.boxcar-service-section .content-column .inner-column .text {
	margin-bottom: 40px;
	font-size: 15px;
}
.boxcar-service-section .content-column .inner-column .store {
	position: relative;
	background-color: #161d30;
	display: inline-block;
	padding: 6px 40px 11px 81px;
	border-radius: 14px;
}
.boxcar-service-section .content-column .inner-column .store img {
	position: absolute;
	top: 15px;
	left: 20px;
}
.boxcar-service-section .content-column .inner-column .store span {
	color: var(--theme-color-light);
	font-size: 13px;
	display: block;
}
.boxcar-service-section .content-column .inner-column .store .title {
	position: relative;
	font-size: 15px;
	color: var(--theme-color-light);
	font-weight: 500;
	margin-top: -4px;
	margin-bottom: 0;
	line-height: 20px;
}
.boxcar-service-section .content-column .inner-column .store .title::before {
	content: "";
	position: absolute;
	top: -15px;
	left: -21px;
	width: 1px;
	height: 31px;
	background-color: #505463;
}
.boxcar-service-section .content-column .inner-column .store.two {
	padding-right: 60px;
	margin-left: 25px;
}
.boxcar-service-section .image-column .inner-column .image-box {
	position: absolute;
	bottom: 0;
	right: 0;
}
.boxcar-service-section.v7 .right-box {
	background-color: unset;
	padding: 0;
}
.boxcar-service-section.v7 .right-box .content-column .inner-column {
	margin-top: 147px;
	margin-right: 115px;
}
.boxcar-service-section.v7 .right-box .image-column .image-box {
	position: static;
}
.boxcar-service-section.v7 .right-box .image-column .image-box img {
	border-radius: 14px;
}
/*** 
	====================================================================
    service section two
	====================================================================
***/
.boxcar-service-section-two {
	position: relative;
	padding: 120px 0;
}
.boxcar-service-section-two .right-box {
	position: relative;
	border-radius: 14px;
	background-color: var(--theme-color1);
	padding: 98px 151px 110px;
}
.boxcar-service-section-two .content-column .inner-column .title {
	font-weight: 700;
	line-height: 55px;
	text-transform: capitalize;
	margin-bottom: 27px;
	color: var(--theme-color-light);
}
.boxcar-service-section-two .content-column .inner-column .text {
	margin-bottom: 40px;
	font-size: 15px;
	color: var(--theme-color-light);
}
.boxcar-service-section-two .content-column .inner-column .store {
	position: relative;
	background-color: var(--theme-color-light);
	display: inline-block;
	padding: 6px 40px 11px 81px;
	border-radius: 14px;
}
.boxcar-service-section-two .content-column .inner-column .store img {
	position: absolute;
	top: 15px;
	left: 20px;
}
.boxcar-service-section-two .content-column .inner-column .store span {
	color: var(--theme-color1);
	font-size: 13px;
	display: block;
}
.boxcar-service-section-two .content-column .inner-column .store .title {
	position: relative;
	font-size: 15px;
	color: var(--theme-color1);
	font-weight: 500;
	margin-top: -4px;
	margin-bottom: 0;
	line-height: 20px;
}
.boxcar-service-section-two .content-column .inner-column .store .title::before {
	content: "";
	position: absolute;
	top: -15px;
	left: -21px;
	width: 1px;
	height: 31px;
	background-color: var(--theme-color1);
}
.boxcar-service-section-two .content-column .inner-column .store.two {
	padding-right: 60px;
	margin-left: 25px;
}
.boxcar-service-section-two .image-column .inner-column .image-box {
	position: absolute;
	bottom: 0;
	right: 0;
}
/*** 
	====================================================================
    service section three
	====================================================================
***/
.services-section-three {
	position: relative;
	padding: 120px 0 160px;
}
.services-section-three .slick-prev,
.services-section-three .slick-next {
	left: 15px;
	top: auto;
	bottom: -30px;
	-webkit-transform: unset;
	transform: unset;
}
.services-section-three .slick-prev:hover,
.services-section-three .slick-next:hover {
	background-color: var(--theme-color-dark);
}
.services-section-three .slick-next {
	right: auto;
	left: 95px;
}
.service-block-three {
	margin: 0 15px 50px;
}
.service-block-three .inner-box {
	border-radius: 14px;
	background: var(--theme-color-light);
	-webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.service-block-three .inner-box .image-box .image img {
	border-radius: 14px 14px 0 0;
}
.service-block-three .inner-box .content-box {
	padding: 24px 30px 21px;
}
.service-block-three .inner-box .content-box .title {
	font-weight: 500;
	margin-bottom: 5px;
}
.service-block-three .inner-box .content-box .text {
	font-size: 15px;
	margin-bottom: 15px;
}
.service-block-three .inner-box .content-box .ser-btn {
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
}
.service-block-three .inner-box .content-box .ser-btn svg {
	margin-left: 9px;
	position: relative;
	top: -1px;
}
/*** 
	====================================================================
    service inner-section
	====================================================================
***/
.services-inner-section {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
}
.services-inner-section .boxcar-pricing-section-two.v2 .content-column .inner-column {
	max-width: 600px;
}
.services-inner-section .why-choose-us-section.v3 {
	padding: 0;
}
.services-inner-section .why-choose-us-section.v3 .right-box {
	padding: 120px 150px 64px;
	background-color: #F9FBFC;
	border-radius: 14px;
	margin: 0 -150px;
}
.services-inner-section .calculater-sec .content-column .inner-column {
	width: 100%;
	height: 100%;
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	background: #F9FBFC;
	padding: 51px 47px 52px;
}
.services-inner-section .calculater-sec .content-column .inner-column .boxcar-title {
	padding-left: 13px;
}
.services-inner-section .calculater-sec .content-column .inner-column .boxcar-title p {
	font-size: 15px;
	max-width: 685px;
	color: var(--theme-color-dark);
}
.services-inner-section .calculater-sec .content-column .inner-column .text {
	line-height: 24px;
	color: var(--theme-color-dark);
	font-size: 14px;
	padding: 23px 13px 0;
}
.services-inner-section .calculater-sec .content-column form {
	width: 100%;
	margin: 0;
}
.services-inner-section .calculater-sec .content-column form .form_boxes {
	border-radius: 12px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--color-white, #FFF);
	border-radius: 12px;
	padding: 7px 15px;
	margin-bottom: 30px;
}
.services-inner-section .calculater-sec .content-column form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 13px;
	font-weight: 400;
}
.services-inner-section .calculater-sec .content-column form .form_boxes .drop-menu {
	height: unset;
}
.services-inner-section .calculater-sec .content-column form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.services-inner-section .calculater-sec .content-column form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	background-color: var(--theme-color-light);
	-webkit-box-shadow: 30px 30px 60px 0px rgba(0, 0, 1, 0.05);
	box-shadow: 30px 30px 60px 0px rgba(0, 0, 1, 0.05);
}
.services-inner-section .calculater-sec .content-column form .form_boxes.v2 {
	height: 220px;
}
.services-inner-section .calculater-sec .content-column form .theme-btn {
	background: #635bff;
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 26px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.services-inner-section .calculater-sec .content-column form .theme-btn svg {
	margin-left: 10px;
}
.services-inner-section .calculater-sec .content-column form .theme-btn.v2 {
	width: 100%;
}
.services-inner-section .calculater-sec .timing-block {
	padding-left: 64px;
}
.services-inner-section .calculater-sec .timing-block .inner-box {
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	background: var(--theme-color-light);
	padding: 23px 29px 20px;
}
.services-inner-section .calculater-sec .timing-block .inner-box .title {
	font-weight: 500;
	margin-bottom: 17px;
}
.services-inner-section .calculater-sec .timing-block .inner-box .timing-list li {
	font-size: 15px;
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 13px;
}
.services-inner-section .calculater-sec .timing-block .inner-box .timing-list li:last-child {
	margin-bottom: 0;
}
.services-inner-section .calculater-sec .timing-block .inner-box .timing-list li span {
	font-weight: 400;
}
/*** 
	====================================================================
    map-section
	====================================================================
***/
.map-section {
	position: relative;
}
.map-section .goole-iframe iframe {
	width: 100%;
	height: 698px;
}
.map-section .map-box {
	position: absolute;
	top: 97px;
	background-color: var(--theme-color-light);
	-webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	border-radius: 14px;
	width: 448px;
	padding: 38px 50px 30px;
}
.map-section .map-box .title {
	font-weight: 700;
	margin-bottom: 9px;
}
.map-section .map-box .text {
	font-size: 15px;
	margin-bottom: 30px;
}
.map-section .map-box .btn-two {
	font-size: 15px;
	font-style: normal;
	display: inline-block;
	font-weight: 500;
	line-height: 28px;
	color: var(--theme-color-dark);
	border-radius: 60px;
	padding: 7px 29px 7px;
	border: 1px solid var(--theme-color-dark);
	margin-right: 20px;
}
.map-section .map-box .btn-two:last-child {
	margin-right: 0;
}
.map-section .map-box .btn-two svg {
	fill: var(--theme-color-dark);
	width: 26px;
	height: 26px;
	margin-right: 8px;
}
.map-section .map-box .shaduel-list {
	margin-top: 29px;
}
.map-section .map-box .shaduel-list li {
	font-size: 15px;
	line-height: 35px;
}
/*** 
	====================================================================
    vehicles section
	====================================================================
***/
.vehicles-section {
	position: relative;
	padding: 52px 0 60px;
	background-color: var(--theme-color-dark);
}
.vehicles-section .nav-tabs {
	border: 0;
	margin-bottom: 79px;
}
.vehicles-section .nav {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.vehicles-section .nav-tabs .nav-link.active {
	background-color: unset;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 7px 20px 5px;
	border-radius: 50px;
	color: var(--theme-color-light);
	font-weight: 500;
}
.vehicles-section .nav-tabs .nav-link {
	border: 0;
	margin-right: 38px;
	color: var(--theme-color-light);
}
.vehicles-section .nav-tabs .nav-link:last-child {
	margin-right: 0;
}
.vehicles-section .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 15px;
}
.vehicles-section .right-box .vehicle-block {
	padding: 0 40px;
}
.vehicles-section .right-box .vehicle-block:last-child {
	margin-right: 0;
}
.vehicles-section .right-box .vehicle-block .inner-box .image-box {
	margin-bottom: 23px;
}
.vehicles-section .right-box .vehicle-block .inner-box .content-box {
	text-align: center;
}
.vehicles-section .right-box .vehicle-block .inner-box .content-box .title {
	color: #fff;
	font-weight: 500;
	margin-bottom: 0;
}
/*** 
	====================================================================
    vehicles section
	====================================================================
***/
.vehicles-section-two {
	position: relative;
	padding: 120px 0;
}
.vehicles-section-two .boxcar-title {
	margin-bottom: 29px;
}
.vehicles-section-two .nav-tabs {
	border: 0;
	margin-bottom: 79px;
}
.vehicles-section-two .nav {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.vehicles-section-two .nav-tabs .nav-link.active {
	background-color: unset;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 7px 20px 5px;
	border-radius: 50px;
	color: var(--theme-color-light);
	font-weight: 500;
}
.vehicles-section-two .nav-tabs .nav-link {
	border: 0;
	margin-right: 38px;
	color: var(--theme-color-light);
}
.vehicles-section-two .nav-tabs .nav-link:last-child {
	margin-right: 0;
}
.vehicles-section-two .Vehicle-block .inner-box .image-box {
	margin-bottom: 0;
}
.vehicles-section-two .Vehicle-block .inner-box .image-box .image img {
	width: 100%;
}
.vehicles-section-two .Vehicle-block .inner-box .content-box {
	text-align: center;
	position: relative;
	top: -10px;
}
.vehicles-section-two .Vehicle-block .inner-box .content-box .title {
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-bottom: 0;
}
/*** 
	====================================================================
    vehicles section three
	====================================================================
***/
.vehicles-section-three {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
}
.vehicles-section-three .cars-section-four.team {
	padding: 52px 0 0;
}
.vehicles-section-three .cars-section-four.team .boxcar-title {
	margin-bottom: 12px;
}
.vehicles-section-three .cars-section-four.team .boxcar-title h2 {
	margin-bottom: 23px;
}
.vehicles-section-three .boxcar-title {
	margin-bottom: 51px;
	max-width: 445px;
}
.vehicles-section-three .boxcar-title .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.vehicles-section-three .boxcar-title .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
	position: relative;
}
.vehicles-section-three .boxcar-title .breadcrumb li::before {
	content: "/";
	position: absolute;
	top: 0;
	right: -14px;
}
.vehicles-section-three .boxcar-title .breadcrumb li:last-child {
	margin-right: 0;
}
.vehicles-section-three .boxcar-title .breadcrumb li:last-child::before {
	display: none;
}
.vehicles-section-three .boxcar-title .breadcrumb li a {
	color: var(--theme-color1);
}
.vehicles-section-three .boxcar-title h2 {
	margin-bottom: 36px;
}
.vehicles-section-three .boxcar-title .text {
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
}
.vehicles-section-three .right-box .auther-info-box {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--bg-1, #F9FBFC);
	margin: 0 -150px;
	padding: 25px 70px 0;
}
.vehicles-section-three .right-box .auther-info-box .inner-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box {
	max-width: 470px;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .title {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 0;
	line-height: 44px;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box span {
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 15px;
	display: block;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .text {
	margin-bottom: 18px;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .contact-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .contact-info li {
	position: relative;
	padding-left: 36px;
	margin-right: 30px;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .contact-info li:last-child {
	margin-right: 0;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .contact-info li a {
	line-height: 28px;
	font-size: 15px;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .contact-info li a .icon {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 26px;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .btn-box {
	margin-left: 325px;
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .btn-box .button {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 13px 62px 12px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, var(--theme-color1));
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	color: var(--theme-color-light);
}
.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .btn-box .button svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
/*** 
	====================================================================
    team section
	====================================================================
***/
.boxcar-team-section {
	position: relative;
	padding: 120px 0;
}
.boxcar-team-section .pagination-sec {
	text-align: center;
}
.boxcar-team-section .pagination-sec .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.boxcar-team-section .pagination-sec .pagination li:first-child a,
.boxcar-team-section .pagination-sec .pagination li:last-child a {
	border: 1px solid #e1e1e1;
	width: 60px;
	font-size: 30px;
	line-height: 35px;
}
.boxcar-team-section .pagination-sec .pagination li a {
	font-size: 15px;
	margin: 0 5px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	text-align: center;
	font-weight: 500;
	padding: 0;
	line-height: 40px;
	border: 0;
	color: var(--theme-color-dark);
}
.boxcar-team-section .pagination-sec .pagination li a:hover {
	background-color: #f9fbfc;
}
.boxcar-team-section .pagination-sec .text {
	font-size: 14px;
	margin-top: 19px;
}
.boxcar-team-section .boxcar-title {
	margin-bottom: 51px;
}
.boxcar-team-section .boxcar-title .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.boxcar-team-section .boxcar-title .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
	position: relative;
}
.boxcar-team-section .boxcar-title .breadcrumb li::before {
	content: "/";
	position: absolute;
	top: 0;
	right: -14px;
}
.boxcar-team-section .boxcar-title .breadcrumb li:last-child {
	margin-right: 0;
}
.boxcar-team-section .boxcar-title .breadcrumb li:last-child::before {
	display: none;
}
.boxcar-team-section .boxcar-title .breadcrumb li a {
	color: var(--theme-color1);
}
.boxcar-team-section .boxcar-title .service-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.boxcar-team-section .boxcar-title .service-list li {
	margin-right: 10px;
}
.boxcar-team-section .boxcar-title .service-list li:last-child {
	margin-right: 0;
}
.boxcar-team-section .boxcar-title .service-list li a {
	font-size: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 50px;
	padding: 13px 25px 11px;
	display: inline-block;
}
.boxcar-team-section .boxcar-title .service-list li a:hover {
	background-color: #e9f2ff;
	border-color: #e9f2ff;
}
.boxcar-team-section .boxcar-title h2 {
	margin-bottom: 21px;
}
.boxcar-team-section.v1 {
	position: relative;
	background-color: var(--theme-color-light);
	padding: 52px 0 120px;
	border-radius: 80px;
}
.team-block {
	margin-bottom: 60px;
}
.team-block .inner-box:hover .image-box .image {
	border-radius: 14px;
}
.team-block .inner-box:hover .image-box .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.team-block .inner-box:hover .image-box .contact-info {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.team-block .inner-box .image-box {
	position: relative;
}
.team-block .inner-box .image-box .image {
	border-radius: 14px;
	overflow: hidden;
}
.team-block .inner-box .image-box .image img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.team-block .inner-box .image-box .contact-info {
	position: absolute;
	bottom: 0px;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.team-block .inner-box .image-box .contact-info span {
	margin-bottom: 10px;
}
.team-block .inner-box .image-box .contact-info span,
.team-block .inner-box .image-box .contact-info small {
	font-size: 14px;
	display: block;
	line-height: 35px;
	background-color: var(--theme-color-light);
	height: 35px;
	padding: 0 20px;
	border-radius: 50px;
}
.team-block .inner-box .content-box {
	padding-top: 22px;
}
.team-block .inner-box .content-box .title {
	font-weight: 500;
	line-height: 30px;
	font-size: 20px;
	margin-bottom: 3px;
}
.team-block .inner-box .content-box span {
	font-size: 14px;
}
/*** 
	====================================================================
    team section two
	====================================================================
***/
.boxcar-team-section-two {
	position: relative;
	padding: 120px 0;
}
.team-block-two .inner-box:hover .image-box .image {
	border-radius: 14px;
}
.team-block-two .inner-box:hover .image-box .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.team-block-two .inner-box:hover .image-box .contact-info {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.team-block-two .inner-box .image-box {
	position: relative;
}
.team-block-two .inner-box .image-box .image {
	border-radius: 14px;
	overflow: hidden;
}
.team-block-two .inner-box .image-box .image img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.team-block-two .inner-box .image-box .contact-info {
	position: absolute;
	bottom: 0px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.team-block-two .inner-box .image-box .contact-info span {
	margin-bottom: 10px;
}
.team-block-two .inner-box .image-box .contact-info span,
.team-block-two .inner-box .image-box .contact-info small {
	font-size: 14px;
	display: block;
	line-height: 35px;
	background-color: var(--theme-color-light);
	height: 35px;
	padding: 0 20px;
	border-radius: 50px;
}
.team-block-two .inner-box .content-box {
	position: absolute;
	top: 22px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
}
.team-block-two .inner-box .content-box .title {
	font-weight: 500;
	line-height: 30px;
	font-size: 20px;
	margin-bottom: 3px;
}
.team-block-two .inner-box .content-box span {
	font-size: 14px;
	white-space: pre;
}
/*** 
	====================================================================
    team section three
	====================================================================
***/
.boxcar-team-section-three {
	padding: 120px 0 90px;
}
.boxcar-team-section-three .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.team-block-three {
	margin-right: 25px;
	margin-bottom: 30px;
}
.team-block-three:last-child {
	margin-right: 0;
}
.team-block-three .inner-box .image-box {
	position: relative;
}
.team-block-three .inner-box .image-box .content-box {
	position: absolute;
	top: 31px;
	left: 31px;
}
.team-block-three .inner-box .image-box .content-box span {
	font-size: 15px;
	color: var(--theme-color-light);
	margin-bottom: 2px;
	display: inline-block;
}
.team-block-three .inner-box .image-box .content-box .title {
	margin-bottom: 0;
	font-size: 18px;
	color: var(--theme-color-light);
	font-weight: 500;
}
/*** 
	====================================================================
    team section four
	====================================================================
***/
.boxcar-team-section-four {
	position: relative;
	padding: 120px 0;
}
.boxcar-team-section-four .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.team-block-four {
	margin-right: 25px;
}
.team-block-four:last-child {
	margin-right: 0;
}
.team-block-four .inner-box:hover .image-box .image {
	border-radius: 14px;
}
.team-block-four .inner-box:hover .image-box .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.team-block-four .inner-box:hover .image-box .contact-info {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.team-block-four .inner-box .image-box {
	position: relative;
}
.team-block-four .inner-box .image-box .image {
	border-radius: 14px;
	overflow: hidden;
}
.team-block-four .inner-box .image-box .image img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.team-block-four .inner-box .image-box .contact-info {
	position: absolute;
	bottom: 0px;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.team-block-four .inner-box .image-box .contact-info span {
	margin-bottom: 10px;
}
.team-block-four .inner-box .image-box .contact-info span,
.team-block-four .inner-box .image-box .contact-info small {
	font-size: 14px;
	display: block;
	line-height: 35px;
	background-color: var(--theme-color-light);
	height: 35px;
	padding: 0 20px;
	border-radius: 50px;
}
.team-block-four .inner-box .content-box {
	padding-top: 22px;
}
.team-block-four .inner-box .content-box .title {
	font-weight: 500;
	line-height: 30px;
	font-size: 20px;
	margin-bottom: 3px;
}
.team-block-four .inner-box .content-box span {
	font-size: 14px;
}
.boxcar-title .btn-title {
	/* Small devices */
}
@media (max-width: 767px) {
	.boxcar-title .btn-title {
		display: none;
	}
}
.widget-accordion {
	position: relative;
}
.widget-accordion .accordion.block:active {
	background-color: unset;
}
.widget-accordion .block {
	position: relative;
	margin-bottom: 20px;
}
.widget-accordion .block:last-child {
	margin-bottom: 0;
}
@media (max-width: 1199.98px) {
	.widget-accordion .block .acc-btn {
		padding-left: 18px;
	}
}
.widget-accordion .block .acc-btn .icon {
	position: absolute;
	right: 0px;
	top: 0px;
	height: 105px;
	width: 58px;
	font-size: 14px;
	line-height: 105px;
	text-align: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.widget-accordion .block .acc-btn:active {
	color: var(--theme-color-dark);
}
.widget-accordion .block .acc-btn.active {
	/* border: 0; */
	/* padding-bottom: 15px; */
}
.widget-accordion .block .acc-btn.active .icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.widget-accordion .block .acc-content {
	position: relative;
	display: none;
}
.widget-accordion .block .acc-content .content {
	padding: 0px 40px 0;
}
.widget-accordion .block .acc-content .content .text {
	margin-bottom: 0;
	color: var(--text-color);
	text-transform: lowercase;
}
.widget-accordion .block .acc-content.current {
	display: block;
}
.widget-accordion.style-two .block .acc-btn {
	background-color: var(--theme-color-light);
	padding: 20px 20px;
	padding-right: 60px;
	line-height: 30px;
}
.widget-accordion.style-two .block .acc-btn .icon {
	right: 20px;
	top: 20px;
	height: 30px;
	width: 30px;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: var(--theme-color-light);
	background-color: var(--theme-color1);
}
.widget-accordion.style-two .block .acc-btn:active {
	color: var(--theme-color-dark);
}
.widget-accordion.style-two .block .acc-content .content {
	padding: 22px 0px 0;
}
.widget-accordion.style-three .block {
	background-color: var(--theme-color-light);
	border-radius: 10px;
	margin-bottom: 30px;
}
.widget-accordion.style-three .block:last-child {
	margin-bottom: 0;
}
.widget-accordion.style-three .block .acc-btn {
	background-color: var(--theme-color-light);
	padding: 20px 30px;
	font-size: 20px;
	line-height: 30px;
}
.widget-accordion.style-three .block .acc-btn .icon {
	right: 20px;
	top: 20px;
	height: 30px;
	width: 30px;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: var(--theme-color-light);
	background-color: var(--theme-color1);
}
.widget-accordion.style-three .block .acc-btn:active {
	color: var(--theme-color-dark);
}
.widget-accordion.style-three .block .acc-content .content {
	padding: 20px 30px 20px;
}
.widget-accordion.style-four .block {
	background-color: var(--theme-color-light);
	border-bottom: 1px solid var(--theme-color-gray);
	margin-bottom: 0px;
}
.widget-accordion.style-four .block .acc-btn {
	background-color: transparent;
	padding: 20px 0px;
}
.widget-accordion.style-four .block .acc-btn .icon {
	right: 0px;
	top: 20px;
	height: 30px;
	line-height: 30px;
	width: auto;
	color: var(--theme-color1);
	background-color: transparent;
}
.widget-accordion.style-four .block .acc-btn.active {
	color: var(--theme-color2);
	border-radius: 10px 10px 0 0;
}
.widget-accordion.style-four .block .acc-btn.active .icon {
	background-color: var(--theme-color-light);
	color: var(--theme-color1);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.widget-accordion.style-four .block .acc-btn.active .icon:before {
	content: "\f101";
}
.widget-accordion.style-four .block .acc-content .content {
	padding: 0px 0px 20px;
	background-color: var(--theme-color-light);
}
/*** 
	====================================================================
    faq-inner-section
	====================================================================
***/
.faq-inner-section {
	position: relative;
	padding: 120px 0;
	background-color: var(--theme-color-light);
	position: relative;
	border-radius: 80px;
}
.faq-inner-section .faqs-section {
	padding-top: 120px;
}
.faq-inner-section .faqs-section .inner-container {
	max-width: 954px;
	margin: 0 auto;
}
.faq-inner-section .faqs-section .accordion.block.active-block {
	background-color: #F9FBFC;
}
.faq-inner-section .faqs-section .widget-accordion .block .acc-btn {
	font-size: 20px;
	font-family: var(--title-font);
	font-weight: 500;
	text-transform: capitalize;
	color: var(--theme-color-dark);
	border: 0;
}
.faq-inner-section .faqs-section .widget-accordion .block .acc-content .content .text {
	font-size: 15px;
	line-height: 28px;
}
.faq-inner-section .faqs-section .widget-accordion .block .acc-btn {
	background-color: unset;
}
.faq-inner-section .faqs-section .widget-accordion .block.active-block .acc-btn {
	color: var(--theme-color-dark);
}
/*** 
	====================================================================
    tabs-section
	====================================================================
***/
.tabs-section {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
}
.tabs-section .nav-tabs .nav-link {
	background-color: unset;
	border: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 45px;
	color: var(--theme-color-dark);
}
.tabs-section .nav-tabs .nav-link:active {
	color: var(--theme-color1);
}
.tabs-section .nav-link {
	padding-left: 19px !important;
	border-radius: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.tabs-section .nav-link.active {
	border-left: 1px solid var(--theme-color1);
}
.tabs-section .nav {
	position: relative;
	display: unset;
}
.tabs-section .nav::before {
	content: "";
	position: absolute;
	top: 13px;
	left: 0;
	width: 1px;
	height: 211px;
	background-color: #E1E1E1;
}
.tabs-section .nav-tabs .nav-item.show .nav-link,
.tabs-section .nav-tabs .nav-link.active {
	color: var(--theme-color1);
}
.tabs-section .right-box .content-box {
	margin-bottom: 47px;
}
.tabs-section .right-box .content-box:last-child {
	margin-bottom: 0;
}
.tabs-section .right-box .content-box .title {
	font-weight: 500;
	margin-bottom: 17px;
}
.tabs-section .right-box .content-box .text {
	font-size: 15px;
}
.tabs-section .right-box .content-box .text.v2 {
	margin-bottom: 26px;
}
/*** 
	====================================================================
    blog section
	====================================================================
***/
.boxcar-title {
	margin-bottom: 50px;
}
.boxcar-title .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.boxcar-title .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
}
.boxcar-title .breadcrumb li:last-child {
	margin-right: 0;
}
.boxcar-title .breadcrumb li a {
	color: var(--theme-color1);
}
.blog-section {
	position: relative;
	padding: 120px 0 90px;
}
.blog-section .boxcar-title {
	margin-bottom: 50px;
}
.blog-section .boxcar-title .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.blog-section .boxcar-title .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
}
.blog-section .boxcar-title .breadcrumb li:last-child {
	margin-right: 0;
}
.blog-section .boxcar-title .breadcrumb li a {
	color: var(--theme-color1);
}
.blog-section .pagination-sec {
	margin-top: 30px;
	text-align: center;
}
.blog-section .pagination-sec .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.blog-section .pagination-sec .pagination li:first-child a,
.blog-section .pagination-sec .pagination li:last-child a {
	border: 1px solid #e1e1e1;
	width: 60px;
	font-size: 30px;
	line-height: 35px;
}
.blog-section .pagination-sec .pagination li a {
	font-size: 15px;
	margin: 0 5px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	text-align: center;
	font-weight: 500;
	padding: 0;
	line-height: 40px;
	border: 0;
	color: var(--theme-color-dark);
}
.blog-section .pagination-sec .pagination li a:hover {
	background-color: #f9fbfc;
}
.blog-section .pagination-sec .text {
	font-size: 14px;
	margin-top: 19px;
}
.blog-section .nav-tabs {
	margin-bottom: 34px;
}
.blog-section .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
}
.blog-section .nav-tabs .nav-link.active {
	border-bottom: 1px solid var(--theme-color1);
}
.blog-block {
	margin-bottom: 30px;
}
.blog-block .inner-box .image-box {
	position: relative;
}
.blog-block .inner-box .image-box .image img {
	border-radius: 10px;
}
.blog-block .inner-box .image-box .date {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	text-transform: capitalize;
	width: 66px;
	height: 30px;
	line-height: 10px;
	padding: 10px 15px;
	border-radius: 50px;
	background-color: var(--theme-color-light);
	color: var(--theme-color-dark);
}
.blog-block .inner-box .content-box {
	padding: 22px 0 0;
}
.blog-block .inner-box .content-box .post-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 2px;
}
.blog-block .inner-box .content-box .post-info li {
	position: relative;
	font-size: 15px;
	margin-right: 25px;
}
.blog-block .inner-box .content-box .post-info li:last-child {
	margin-right: 0;
}
.blog-block .inner-box .content-box .post-info li:last-child::before {
	display: none;
}
.blog-block .inner-box .content-box .post-info li::before {
	content: "";
	position: absolute;
	top: 11px;
	right: -14px;
	width: 5px;
	height: 5px;
	background-color: #e1e1e1;
	border-radius: 50%;
}
.blog-block .inner-box .content-box .title {
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 0;
}
/*** 
	====================================================================
    blog section two
	====================================================================
***/
.blog-section-two {
	position: relative;
	padding: 120px 0;
}
.blog-blockt-two .inner-box {
	position: relative;
	border-radius: 14px;
	background: var(--bg-3, #E9F2FF);
	padding: 78px 81px 89px;
	/* Large devices */
}
@media (max-width: 1199px) {
	.blog-blockt-two .inner-box {
		padding: 50px 40px;
	}
}
.blog-blockt-two .inner-box .title {
	font-weight: 700;
	line-height: 45px;
}
.blog-blockt-two .inner-box .text {
	margin-bottom: 20px;
	max-width: 455px;
}
.blog-blockt-two .inner-box .read-more {
	padding: 14px 25px 12px;
	border-radius: 12px;
	background: var(--color-secondary, var(--theme-color1));
	display: inline-block;
	font-family: var(--title-font);
	color: var(--theme-color-light-text);
}
.blog-blockt-two .inner-box .read-more svg {
	position: relative;
	top: -2px;
	margin-left: 7px;
}
.blog-blockt-two .inner-box .hover-img {
	position: absolute;
	bottom: 60px;
	right: 60px;
	/* Large devices */
}
@media (max-width: 1199px) {
	.blog-blockt-two .inner-box .hover-img {
		bottom: 30px;
		right: 30px;
	}
}
.blog-blockt-two .inner-box.two {
	background: var(--bg-4, #FFE9F3);
}
.blog-blockt-two .inner-box.two .read-more {
	background-color: var(--theme-color-dark);
}
/*** 
	====================================================================
    blog section three
	====================================================================
***/
.blog-section-three {
	position: relative;
	padding: 120px 0;
}
.blog-blockt-three .inner-box {
	position: relative;
}
.blog-blockt-three .inner-box .hover-img {
	position: relative;
}
.blog-blockt-three .inner-box .hover-img .image {
	position: relative;
}
.blog-blockt-three .inner-box .hover-img .image:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(#050B20), to(rgba(5, 11, 32, 0)));
	background: linear-gradient(180deg, #050B20 0%, rgba(5, 11, 32, 0) 100%);
	opacity: 0.5;
}
.blog-blockt-three .inner-box .hover-img .image {
	border-radius: 14px;
	overflow: hidden;
}
.blog-blockt-three .inner-box .hover-img .image img {
	width: 100%;
}
.blog-blockt-three .inner-box .hover-img .content-box {
	position: absolute;
	top: 77px;
	left: 80px;
}
.blog-blockt-three .inner-box .hover-img .content-box .title {
	font-weight: 700;
	line-height: 45px;
	color: var(--theme-color-light);
}
.blog-blockt-three .inner-box .hover-img .content-box .text {
	margin-bottom: 20px;
	max-width: 455px;
	color: var(--theme-color-light);
}
.blog-blockt-three .inner-box .hover-img .content-box .read-more {
	padding: 14px 25px 12px;
	border-radius: 12px;
	background: var(--theme-color-light);
	display: inline-block;
	font-family: var(--title-font);
	color: var(--theme-color-dark);
}
.blog-blockt-three .inner-box .hover-img .content-box .read-more svg {
	position: relative;
	top: -2px;
	margin-left: 7px;
}
/*** 
	====================================================================
    blog section four
	====================================================================
***/
.blog-section-four {
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
	background-color: var(--theme-color-light);
}
.blog-section-four .boxcar-title {
	margin-bottom: 50px;
}
.blog-section-four .boxcar-title .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
}
.blog-section-four .boxcar-title .breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
}
.blog-section-four .boxcar-title .breadcrumb li:last-child {
	margin-right: 0;
}
.blog-section-four .boxcar-title .breadcrumb li a {
	color: var(--theme-color1);
}
.blog-section-four .pagination-sec {
	margin-top: 30px;
	text-align: center;
}
.blog-section-four .pagination-sec .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.blog-section-four .pagination-sec .pagination li:first-child a,
.blog-section-four .pagination-sec .pagination li:last-child a {
	border: 1px solid #e1e1e1;
	width: 60px;
	font-size: 30px;
	line-height: 35px;
}
.blog-section-four .pagination-sec .pagination li a {
	font-size: 15px;
	margin: 0 5px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	text-align: center;
	font-weight: 500;
	padding: 0;
	line-height: 40px;
	border: 0;
	color: var(--theme-color-dark);
}
.blog-section-four .pagination-sec .pagination li a:hover {
	background-color: #f9fbfc;
}
.blog-section-four .pagination-sec .text {
	font-size: 14px;
	margin-top: 19px;
}
.blog-section-four .sider-bar .categories-sec {
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	padding: 25px 30px 14px;
	margin-bottom: 30px;
}
.blog-section-four .sider-bar .categories-sec .widget-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 12px;
}
.blog-section-four .sider-bar .categories-sec .categories-list li a {
	font-size: 13px;
	line-height: 35px;
	color: var(--theme-color-dark);
}
.blog-section-four .sider-bar .categories-sec .categories-list li a:hover {
	color: var(--theme-color1);
}
.blog-section-four .sider-bar .recent-post-sec {
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	padding: 24px 30px 28px 30px;
	margin-bottom: 30px;
}
.blog-section-four .sider-bar .recent-post-sec .widget-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 22px;
}
.blog-section-four .sider-bar .recent-post-sec .pos-block {
	margin-bottom: 20px;
}
.blog-section-four .sider-bar .recent-post-sec .pos-block:last-child {
	margin-bottom: 0;
}
.blog-section-four .sider-bar .recent-post-sec .pos-block .inner-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog-section-four .sider-bar .recent-post-sec .pos-block .inner-box img {
	border-radius: 5px;
}
.blog-section-four .sider-bar .recent-post-sec .pos-block .inner-box .content-box {
	margin-left: 15px;
}
.blog-section-four .sider-bar .recent-post-sec .pos-block .inner-box .content-box .title {
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 0;
}
.blog-section-four .sider-bar .recent-post-sec .pos-block .inner-box .content-box span {
	font-size: 14px;
	color: var(--theme-color-dark);
	display: inline-block;
}
.blog-section-four .sider-bar .tag-sec {
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	padding: 24px 30px 14px 30px;
}
.blog-section-four .sider-bar .tag-sec .widget-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 24px;
}
.blog-section-four .sider-bar .tag-sec .tag-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog-section-four .sider-bar .tag-sec .tag-list li {
	margin-right: 10px;
	margin-bottom: 10px;
}
.blog-section-four .sider-bar .tag-sec .tag-list li:last-child {
	margin-right: 0;
}
.blog-section-four .sider-bar .tag-sec .tag-list li a {
	font-size: 13px;
	color: var(--theme-color-dark);
	font-weight: 500;
	border-radius: 50px;
	background: #E9F2FF;
	display: inline-block;
	padding: 3px 18px;
}
.blog-section-four .sider-bar .tag-sec .tag-list li a:hover {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
}
.blog-section-four .inner-column-two {
	margin-right: 120px;
}
.blog-block-four {
	margin-bottom: 60px;
}
.blog-block-four:last-child {
	margin-bottom: 30px;
}
.blog-block-four .inner-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog-block-four .inner-box .image-box {
	position: relative;
	max-width: 400px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 400px;
	flex: 0 0 400px;
}
.blog-block-four .inner-box .image-box .image img {
	border-radius: 10px;
}
.blog-block-four .inner-box .image-box .date {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	text-transform: capitalize;
	width: 66px;
	height: 30px;
	line-height: 10px;
	padding: 10px 15px;
	border-radius: 50px;
	background-color: var(--theme-color-light);
	color: var(--theme-color-dark);
}
.blog-block-four .inner-box .content-box {
	margin-left: 75px;
}
.blog-block-four .inner-box .content-box .post-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 2px;
}
.blog-block-four .inner-box .content-box .post-info li {
	position: relative;
	font-size: 15px;
	margin-right: 25px;
}
.blog-block-four .inner-box .content-box .post-info li:last-child {
	margin-right: 0;
}
.blog-block-four .inner-box .content-box .post-info li:last-child::before {
	display: none;
}
.blog-block-four .inner-box .content-box .post-info li::before {
	content: "";
	position: absolute;
	top: 11px;
	right: -14px;
	width: 5px;
	height: 5px;
	background-color: #e1e1e1;
	border-radius: 50%;
}
.blog-block-four .inner-box .content-box .title {
	font-size: 30px;
	font-weight: 500;
	line-height: 45px;
	margin-bottom: 11px;
}
.blog-block-four .inner-box .content-box .text {
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 14px;
}
.blog-block-four .inner-box .content-box .btn-two {
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
}
.blog-block-four .inner-box .content-box .btn-two svg {
	margin-left: 9px;
	position: relative;
	top: -2px;
}
.blog-section.v1 {
	padding-top: 52px;
	border-radius: 80px;
	background-color: var(--theme-color-light);
}
.blog-section-four.v1 .blog-block-four .inner-box {
	display: block;
}
.blog-section-four.v1 .blog-block-four .inner-box .image-box {
	max-width: unset;
}
.blog-section-four.v1 .blog-block-four .inner-box .content-box {
	margin-left: 0;
	padding-top: 22px;
}
/*** 
	====================================================================
    blog section five
	====================================================================
***/
.blog-section-five {
	padding-top: 52px;
	border-radius: 80px;
	background-color: var(--theme-color-light);
}
.blog-section-five .boxcar-title {
	margin-bottom: 30px;
}
.blog-section-five .boxcar-title h2 {
	margin-bottom: 30px;
}
.blog-section-five .post-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 2px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog-section-five .post-info li {
	position: relative;
	font-size: 15px;
	margin-right: 25px;
}
.blog-section-five .post-info li img {
	border-radius: 50px;
	margin-right: 10px;
}
.blog-section-five .post-info li:last-child {
	margin-right: 0;
}
.blog-section-five .post-info li:last-child::before {
	display: none;
}
.blog-section-five .post-info li:first-child {
	margin-right: 0;
}
.blog-section-five .post-info li:first-child::before {
	display: none;
}
.blog-section-five .post-info li::before {
	content: "";
	position: absolute;
	top: 11px;
	right: -14px;
	width: 5px;
	height: 5px;
	background-color: #e1e1e1;
	border-radius: 50%;
}
.blog-section-five .right-box .content-box .outer-image {
	margin-bottom: 44px;
}
.blog-section-five .right-box .content-box .outer-image img {
	border-radius: 14px;
}
.blog-section-five .right-box .content-box .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 21px;
}
.blog-section-five .right-box-two {
	max-width: 924px;
	margin: 0 auto;
	position: relative;
}
.blog-section-five .right-box-two .text {
	font-size: 15px;
	line-height: 28px;
}
.blog-section-five .right-box-two .text.two {
	margin-top: 28px;
	margin-bottom: 60px;
}
.blog-section-five .right-box-two .auther-box {
	position: relative;
	border-radius: 14px;
	background: #E9F2FF;
	padding: 41px 57px 29px;
}
.blog-section-five .right-box-two .auther-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 100%;
	background-color: var(--theme-color1);
	border-radius: 14px 0 0 14px;
}
.blog-section-five .right-box-two .auther-box .text {
	color: var(--theme-color-dark);
	font-size: 15px;
	font-style: italic;
	font-weight: 500;
	margin-bottom: 15px;
}
.blog-section-five .right-box-two .auther-box .name {
	font-size: 17px;
	font-weight: 500;
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two .list-sec {
	margin-top: 52px;
	margin-bottom: 61px;
}
.blog-section-five .right-box-two .list-sec .inner-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.blog-section-five .right-box-two .list-sec .inner-column .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 21px;
}
.blog-section-five .right-box-two .list-sec .inner-column .list {
	margin-right: 96px;
}
.blog-section-five .right-box-two .list-sec .inner-column .list:last-child {
	margin-right: 0;
}
.blog-section-five .right-box-two .list-sec .inner-column .list li {
	position: relative;
	font-size: 15px;
	line-height: 46px;
	color: var(--color-primary, #050B20);
	padding-left: 29px;
}
.blog-section-five .right-box-two .list-sec .inner-column .list li i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
	color: var(--theme-color1);
	font-size: 8px;
	background-color: rgb(233, 242, 255);
}
.blog-section-five .right-box-two .image-sec .image-box .inner-image img {
	border-radius: 14px;
}
.blog-section-five .right-box-two .list-sec-two {
	margin-top: 22px;
	margin-bottom: 60px;
}
.blog-section-five .right-box-two .list-sec-two .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 21px;
}
.blog-section-five .right-box-two .list-sec-two .list-two li {
	position: relative;
	font-size: 15px;
	line-height: 46px;
	color: var(--color-primary, #050B20);
	padding-left: 19px;
}
.blog-section-five .right-box-two .list-sec-two .list-two li:nth-child(2)::before {
	display: none;
}
.blog-section-five .right-box-two .list-sec-two .list-two li::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 5px;
	height: 5px;
	background-color: var(--theme-color-dark);
}
.blog-section-five .right-box-two .social-section {
	border-top: 1px solid #E1E1E1;
	padding: 59px 0 60px;
	border-bottom: 1px solid #E1E1E1;
}
.blog-section-five .right-box-two .social-section .inner-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.blog-section-five .right-box-two .social-section .inner-column .social-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog-section-five .right-box-two .social-section .inner-column .social-icons li {
	font-size: 15px;
}
.blog-section-five .right-box-two .social-section .inner-column .social-icons li a {
	font-size: 14px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
}
.blog-section-five .right-box-two .social-section .inner-column .social-icons li a:hover {
	background-color: #F9FBFC;
}
.blog-section-five .right-box-two .social-section .inner-column .quality-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.blog-section-five .right-box-two .social-section .inner-column .quality-list li {
	margin-right: 10px;
}
.blog-section-five .right-box-two .social-section .inner-column .quality-list li:last-child {
	margin-right: 0;
}
.blog-section-five .right-box-two .social-section .inner-column .quality-list li a {
	padding: 3px 17px;
	border-radius: 50px;
	background-color: #E9F2FF;
	font-size: 13px;
	display: inline-block;
	font-weight: 500;
}
.blog-section-five .right-box-two .social-section .inner-column .quality-list li a:hover {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
}
.blog-section-five .right-box-two .auther-box-two {
	position: relative;
	margin-top: 60px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 60px;
}
.blog-section-five .right-box-two .auther-box-two img {
	position: absolute;
	top: 0;
	left: 0;
}
.blog-section-five .right-box-two .auther-box-two .content-box {
	padding-left: 100px;
	padding-top: 4px;
}
.blog-section-five .right-box-two .auther-box-two .content-box .name {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-dark);
	margin-bottom: -1px;
}
.blog-section-five .right-box-two .auther-box-two .content-box .designation {
	font-size: 14px;
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two .auther-box-two .content-box .text {
	font-size: 15px;
	line-height: 28px;
	margin-top: 15px;
}
.blog-section-five .right-box-two .ruls-sec {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 45px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 44px;
}
.blog-section-five .right-box-two .ruls-sec .content-box .title {
	font-size: 17px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-bottom: 5px;
}
.blog-section-five .right-box-two .ruls-sec .content-box .title i {
	margin-right: 10px;
}
.blog-section-five .right-box-two .ruls-sec .content-box .text {
	font-size: 14px;
	color: var(--theme-color-dark);
	line-height: 28px;
}
.blog-section-five .right-box-two .ruls-sec .content-box.v2 {
	text-align: end;
}
.blog-section-five .right-box-two .ruls-sec .content-box.v2 .title i {
	margin-left: 10px;
	margin-right: 0;
}
.blog-section-five .right-box-two .reviews {
	margin-top: 52px;
}
.blog-section-five .right-box-two .reviews .title {
	margin-bottom: 23px;
	font-weight: 500;
}
.blog-section-five .right-box-two .reviews .auther-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 14px;
}
.blog-section-five .right-box-two .reviews .auther-name span {
	font-size: 14px;
	font-weight: 500;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: var(--theme-color-dark);
	border-radius: 50%;
	text-align: center;
	color: var(--theme-color-light);
	display: inline-block;
	margin-right: 12px;
}
.blog-section-five .right-box-two .reviews .auther-name .name {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	margin-right: 17px;
}
.blog-section-five .right-box-two .reviews .auther-name small {
	font-size: 14px;
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two .reviews .rating-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog-section-five .right-box-two .reviews .rating-list .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.blog-section-five .right-box-two .reviews .rating-list .list li {
	font-size: 10px;
	margin-right: 4px;
	color: var(--theme-color1);
}
.blog-section-five .right-box-two .reviews .rating-list .list li:last-child {
	margin-right: 0;
}
.blog-section-five .right-box-two .reviews .rating-list span {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-left: 12px;
}
.blog-section-five .right-box-two .reviews .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	max-width: 849px;
}
.blog-section-five .right-box-two .image-box {
	margin-top: 23px;
	margin-bottom: 20px;
}
.blog-section-five .right-box-two .image-box img {
	border-radius: 12px;
	margin-right: 14px;
}
.blog-section-five .right-box-two .image-box img:last-child {
	margin-right: 0;
}
.blog-section-five .right-box-two .btn-box .like-btn {
	font-size: 15px;
	color: #818181;
	margin-right: 28px;
}
.blog-section-five .right-box-two .btn-box .like-btn i {
	margin-right: 10px;
}
.blog-section-five .right-box-two .btn-box .like-btn:hover {
	color: var(--theme-color1);
}
.blog-section-five .right-box-two .content-box.two {
	margin-top: 29px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 60px;
}
.blog-section-five .right-box-two .content-box.two .text {
	margin-bottom: 27px;
}
.blog-section-five .right-box-two .content-box.two .review {
	font-size: 15px;
	color: var(--theme-color1);
	font-weight: 500;
	height: 54px;
	line-height: 54px;
	padding: 0 38px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, #635bff);
	background: var(--White, #FFF);
	display: inline-block;
	margin-top: 30px;
}
.blog-section-five .right-box-two .content-box.two .review svg {
	margin-left: 10px;
	position: relative;
	top: -1px;
}
.blog-section-five .right-box-two .Reply-sec {
	margin-top: 52px;
	margin-bottom: 20px;
}
.blog-section-five .right-box-two .Reply-sec .text {
	margin-bottom: 30px;
}
.blog-section-five .right-box-two .Reply-sec .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog-section-five .right-box-two .Reply-sec .right-box .rating-list {
	width: 330px;
}
.blog-section-five .right-box-two .Reply-sec .right-box .rating-list .list-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}
.blog-section-five .right-box-two .Reply-sec .right-box .rating-list .list-box span {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two .Reply-sec .right-box .rating-list .list-box .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.blog-section-five .right-box-two .Reply-sec .right-box .rating-list .list-box .list li {
	font-size: 12px;
	color: var(--theme-color1);
	margin-right: 4px;
}
.blog-section-five .right-box-two .Reply-sec .right-box .rating-list .list-box .list li:last-child {
	margin-right: 0;
}
.blog-section-five .right-box-two .Reply-sec .right-box .rating-list.two {
	margin-right: 144px;
}
.blog-section-five .right-box-two form {
	width: 100%;
	margin: 0;
	margin-left: -12px;
}
.blog-section-five .right-box-two form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.blog-section-five .right-box-two form .form_boxes textarea {
	width: 100%;
	height: 200px;
}
.blog-section-five .right-box-two form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.blog-section-five .right-box-two form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.blog-section-five .right-box-two form .form_boxes .drop-menu {
	height: unset;
}
.blog-section-five .right-box-two form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.blog-section-five .right-box-two form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.blog-section-five .right-box-two form .form_boxes.v2 {
	padding-top: 14px;
}
.blog-section-five .right-box-two form .theme-btn {
	background: #635bff;
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	padding: 0 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog-section-five .right-box-two form .theme-btn svg {
	margin-left: 10px;
}
.widget-accordion {
	position: relative;
}
.widget-accordion .block:active {
	background-color: #151515;
}
.widget-accordion .block {
	position: relative;
	margin-bottom: 20px;
}
.widget-accordion .block:last-child {
	margin-bottom: 0;
}
@media (max-width: 1199.98px) {
	.widget-accordion .block .acc-btn {
		padding-left: 0px;
	}
}
.widget-accordion .block .acc-btn .icon {
	position: absolute;
	right: 0px;
	top: 0px;
	height: 107px;
	width: 58px;
	font-size: 14px;
	line-height: 107px;
	text-align: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.widget-accordion .block .acc-btn:active {
	color: var(--theme-color-dark);
}
.widget-accordion .block .acc-btn.active {
	border: 0;
	/* padding-bottom: 15px; */
}
.widget-accordion .block .acc-btn.active .icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.widget-accordion .block .acc-content {
	position: relative;
	display: none;
}
.widget-accordion .block .acc-content .content {
	padding: 0px 40px 0;
}
.widget-accordion .block .acc-content .content .text {
	margin-bottom: 0;
	color: var(--text-color);
	text-transform: lowercase;
}
.widget-accordion .block .acc-content.current {
	display: block;
}
.widget-accordion.style-two .block .acc-btn {
	background-color: var(--theme-color-light);
	padding: 20px 20px;
	padding-right: 60px;
	line-height: 30px;
}
.widget-accordion.style-two .block .acc-btn .icon {
	right: 20px;
	top: 20px;
	height: 30px;
	width: 30px;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: var(--theme-color-light);
	background-color: var(--theme-color1);
}
.widget-accordion.style-two .block .acc-btn:active {
	color: var(--theme-color-dark);
}
.widget-accordion.style-two .block .acc-content .content {
	padding: 22px 0px 0;
}
.widget-accordion.style-three .block {
	background-color: var(--theme-color-light);
	border-radius: 10px;
	margin-bottom: 30px;
}
.widget-accordion.style-three .block:last-child {
	margin-bottom: 0;
}
.widget-accordion.style-three .block .acc-btn {
	background-color: var(--theme-color-light);
	padding: 20px 30px;
	font-size: 20px;
	line-height: 30px;
}
.widget-accordion.style-three .block .acc-btn .icon {
	right: 20px;
	top: 20px;
	height: 30px;
	width: 30px;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: var(--theme-color-light);
	background-color: var(--theme-color1);
}
.widget-accordion.style-three .block .acc-btn:active {
	color: var(--theme-color-dark);
}
.widget-accordion.style-three .block .acc-content .content {
	padding: 20px 30px 20px;
}
.widget-accordion.style-four .block {
	background-color: var(--theme-color-light);
	border-bottom: 1px solid var(--theme-color-gray);
	margin-bottom: 0px;
}
.widget-accordion.style-four .block .acc-btn {
	background-color: transparent;
	padding: 20px 0px;
}
.widget-accordion.style-four .block .acc-btn .icon {
	right: 0px;
	top: 20px;
	height: 30px;
	line-height: 30px;
	width: auto;
	color: var(--theme-color1);
	background-color: transparent;
}
.widget-accordion.style-four .block .acc-btn.active {
	color: var(--theme-color2);
	border-radius: 10px 10px 0 0;
}
.widget-accordion.style-four .block .acc-btn.active .icon {
	background-color: var(--theme-color-light);
	color: var(--theme-color1);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.widget-accordion.style-four .block .acc-btn.active .icon:before {
	content: "\f101";
}
.widget-accordion.style-four .block .acc-content .content {
	padding: 0px 0px 20px;
	background-color: var(--theme-color-light);
}
/*** 
	====================================================================
    about-inner
	====================================================================
***/
.about-inner-one {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
}
.about-inner-one .upper-box {
	margin-bottom: 110px;
}
.about-inner-one .upper-box .boxcar-title {
	margin-bottom: 51px;
	max-width: 445px;
}
.about-inner-one .upper-box .boxcar-title h2 {
	margin-bottom: 36px;
}
.about-inner-one .upper-box .boxcar-title .text {
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
}
.about-inner-one .upper-box .content-box {
	margin-top: 128px;
}
.about-inner-one .upper-box .content-box .text {
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 26px;
	color: var(--theme-color-dark);
}
.about-inner-one .upper-box .content-box .text:last-child {
	margin-bottom: 0;
}
.about-inner-one .galler-section .exp-block .inner-box .exp-box {
	background-color: var(--theme-color1);
	padding: 31px 32px 114px;
	border-radius: 14px;
}
.about-inner-one .galler-section .exp-block .inner-box .exp-box .title {
	font-size: 52px;
	font-weight: 500;
	color: var(--theme-color-light);
	margin-bottom: 9px;
}
.about-inner-one .galler-section .exp-block .inner-box .exp-box .text {
	font-size: 30px;
	color: var(--theme-color-light);
	font-weight: 700;
	line-height: 45px;
}
.about-inner-one .galler-section .exp-block .inner-box .image-box .image {
	overflow: hidden;
	border-radius: 14px;
}
.about-inner-one .galler-section .exp-block .inner-box {
	display: flex;
	flex-direction: column;
	gap: 27px;
}
@media (max-width: 768px) {
	.about-inner-one .galler-section .exp-block .inner-box {
		flex-direction: row;
		margin-bottom: 30px;
	}
	.about-inner-one .galler-section .exp-block .inner-box .exp-box,
	.about-inner-one .galler-section .exp-block .inner-box .image-box {
		flex-grow: 1;
	}
	.about-inner-one .galler-section .exp-block .inner-box .image-box img,
	.about-inner-one .galler-section .image-block.style-center img,
	.about-inner-one .galler-section .image-box.two img,
	.about-inner-one .galler-section .box-double-img .image-block img {
		width: 100%;
	}
	.about-inner-one .galler-section .box-double-img .image-box,
	.about-inner-one .galler-section .box-double-img .image,
	.about-inner-one .galler-section .box-double-img .image-block img {
		height: 100%;
	}
	.about-inner-one .galler-section .image-block.style-center {
		margin-bottom: 30px;
	}
}
.about-inner-one .galler-section .image-block .image-box .image img {
	border-radius: 14px;
}
.about-inner-one .galler-section .image-block .image-box.two .image {
	margin-bottom: 30px;
}
.about-inner-one .faqs-section {
	position: relative;
	padding: 120px 0 0;
}
.about-inner-one .faqs-section .inner-container {
	max-width: 954px;
	margin: 0 auto;
}
.about-inner-one .faqs-section .accordion.block.active-block {
	background-color: #F9FBFC;
}
.about-inner-one .faqs-section .widget-accordion .block .acc-btn {
	font-size: 20px;
	font-family: var(--title-font);
	font-weight: 500;
	text-transform: capitalize;
	color: var(--theme-color-dark);
	border: 0;
}
.about-inner-one .faqs-section .widget-accordion .block .acc-content .content .text {
	font-size: 15px;
	line-height: 28px;
}
.about-inner-one .faqs-section .widget-accordion .block .acc-btn {
	background-color: unset;
}
.about-inner-one .faqs-section .widget-accordion .block.active-block .acc-btn {
	color: var(--theme-color-dark);
}
.breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 12px;
	color: #616687 !important;
	background: var(--theme-color-shade);
	padding: 10px 15px;
	border-radius: 6px;
}
.breadcrumb li {
	font-size: 15px;
	margin-right: 21px;
	position: relative;
}
.breadcrumb li::before {
	content: "\2022";
	position: absolute;
	top: 0;
	right: -14px;
}
.breadcrumb li:last-child {
	margin-right: 0;
}
.breadcrumb li:last-child::before {
	display: none;
}
.breadcrumb li a {
	color: var(--theme-color1);
}
/*** 
	====================================================================
    error-section
	====================================================================
***/
.error-section {
	padding: 120px 0;
	background-color: var(--theme-color-light);
	position: relative;
	border-radius: 80px;
}
.error-section .right-box {
	text-align: center;
}
.error-section .right-box .content-box {
	position: relative;
	margin-top: -71px;
	z-index: 99;
}
.error-section .right-box .content-box h2 {
	font-size: 40px;
	font-weight: 700;
}
.error-section .right-box .content-box .text {
	font-size: 15px;
	line-height: 28px;
	max-width: 450px;
	margin: 0 auto 30px;
}
.error-section .right-box .content-box .error-btn {
	font-size: 15px;
	font-family: var(--title-font);
	font-weight: 500;
	color: var(--theme-color1);
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	display: inline-block;
	background: var(--theme-color-light);
	padding: 0 26px;
}
.error-section .right-box .content-box .error-btn svg {
	position: relative;
	margin-left: 9px;
	top: -1px;
}
/*** 
	====================================================================
    dashboard section
	====================================================================
***/
.dashboard-widget {
	position: relative;
}
.dashboard-widget .nav-tabs {
	border-bottom: 1px solid #e1e1e1;
	margin: 0 15px 30px;
}
.dashboard-widget .nav-tabs .nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
	border-top: 0;
	background-color: unset;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	margin-right: 32px;
}
.dashboard-widget .nav-tabs .nav-link.active {
	border-bottom: 1px solid var(--theme-color1);
}
.dashboard-widget .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dashboard-widget .side-bar {
	position: relative;
	width: 300px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
	padding: 0 30px;
}
.dashboard-widget .side-bar .nav-list li a {
	color: var(--theme-color-light);
	font-weight: 500;
	font-size: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 14px;
	padding: 14px 91px 14px 19px;
}
.dashboard-widget .side-bar .nav-list li a img {
	margin-right: 14px;
}
.dashboard-widget .side-bar .nav-list li a:hover {
	background: rgba(255, 255, 255, 0.1);
}
.dashboard-widget .content-column {
	width: 100%;
}
.dashboard-widget .content-column .inner-column {
	background-color: var(--theme-color-light);
	padding: 58px 60px 60px;
	margin-right: 30px;
	border-radius: 14px;
}
.dashboard-widget .content-column .inner-column .list-title {
	margin-bottom: 58px;
}
.dashboard-widget .content-column .inner-column .list-title .title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: 0;
	line-height: 46px;
}
.dashboard-widget .content-column .inner-column .list-title .text {
	font-size: 15px;
}
.dashboard-widget .content-column .inner-column .form-box {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 21px 14px 30px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .form-box form {
	width: 100%;
	margin: 0;
}
.dashboard-widget .content-column .inner-column .form-box form .form-column {
	padding-right: 10px;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes.v2 {
	padding-top: 14px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .form-box form .inner-box {
	margin-bottom: 21px;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes textarea {
	width: 100%;
	height: 150px;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes .drop-menu {
	height: unset;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
	text-transform: lowercase;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes .drop-menu .select i {
	right: 0;
	top: -13px;
}
.dashboard-widget .content-column .inner-column .form-box form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.dashboard-widget .content-column .inner-column .form-box form .text {
	margin-top: 12px;
}
.dashboard-widget .content-column .inner-column .form-box form .form-submit {
	text-align: right;
}
.dashboard-widget .content-column .inner-column .form-box form .form-submit .theme-btn {
	color: var(--theme-color-light);
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	padding: 0 26px;
	height: 54px;
	line-height: 54px;
	display: inline-block;
}
.dashboard-widget .content-column .inner-column .form-box form .form-submit .theme-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 21px 29px 30px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .nav-tabs.v2 {
	margin: 0 0 30px;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box {
	margin-right: 57px;
	/* Hide the browser's default checkbox */
	/* Create a custom checkbox */
	/* When the checkbox is checked, add a blue background */
	/* Create the checkmark/indicator (hidden when not checked) */
	/* Show the checkmark when checked */
	/* Style the checkmark/indicator */
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box:last-child {
	margin-right: 0;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box .contain {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 8px;
	cursor: pointer;
	font-size: 15px;
	color: var(--theme-color-dark);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box .contain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	border: 1px solid rgb(225, 225, 225);
	border-radius: 5px;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box .contain input:checked~.checkmark {
	background-color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box .contain input:checked~.checkmark:after {
	display: block;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box .contain .checkmark:after {
	left: 6px;
	top: 3px;
	width: 7px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .btn-box {
	text-align: right;
	margin-top: 17px;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .btn-box .form-btn {
	color: var(--theme-color-light);
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	padding: 0 26px;
	height: 54px;
	line-height: 54px;
	display: inline-block;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec .btn-box .form-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.dashboard-widget .content-column .inner-column .gallery-sec {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 21px 29px 30px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .title {
	font-weight: 500;
	margin-bottom: 13px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .nav-tabs.v2 {
	margin: 0 0 30px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three {
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 21px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-top: 24px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box:hover .content-box {
	opacity: 1;
	visibility: visible;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon li {
	margin-right: 12px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon li:last-child {
	margin-right: 0;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon li a {
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	background: var(--theme-color-light);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box {
	position: relative;
	border-radius: 8px;
	border: 1px dashed var(--color-secondary, #635bff);
	background: var(--bg-3, #E9F2FF);
	width: 190px;
	height: 167px;
	text-align: center;
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box .content-box span {
	display: block;
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-top: 10px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec {
	margin-top: 23px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 21px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-top: 24px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box {
	border-radius: 12px;
	background: var(--bg-1, #F9FBFC);
	text-align: center;
	display: inline-block;
	padding: 40px 54px 48px;
	margin-right: 30px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box span {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-dark);
	margin-bottom: 11px;
	display: inline-block;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon li {
	margin-right: 12px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon li:last-child {
	margin-right: 0;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon li a {
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	background: var(--theme-color-light);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .uplode-box {
	position: relative;
	border-radius: 8px;
	border: 1px dashed var(--color-primary, #050B20);
	background: var(--bg-1, #F9FBFC);
	width: 190px;
	height: 167px;
	text-align: center;
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .uplode-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .uplode-box .content-box span {
	display: block;
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-top: 10px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec {
	margin-top: 23px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form {
	width: 100%;
	margin: 0;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form-column {
	margin: 0 -14px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes.v2 {
	padding-top: 14px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .inner-box {
	margin-bottom: 21px;
	margin-right: -25px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 12px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea {
	width: 100%;
	height: 150px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu {
	height: unset;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
	text-transform: lowercase;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu .select i {
	right: 0;
	top: -13px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .text {
	margin-top: 12px;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form-submit {
	text-align: right;
	padding: 0;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form-submit .theme-btn {
	color: var(--theme-color-light);
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	padding: 0 26px;
	height: 54px;
	line-height: 54px;
	display: inline-block;
}
.dashboard-widget .content-column .inner-column .gallery-sec .form-sec form .form-submit .theme-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.dashboard-widget .content-column .inner-column .map-sec {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 21px 14px 30px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .map-sec .map-box {
	margin-bottom: 21px;
}
.dashboard-widget .content-column .inner-column .map-sec .map-box iframe {
	width: 100%;
	height: 450px;
	border-radius: 30px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two {
	margin-top: 23px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form {
	width: 100%;
	margin: 0;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form-column {
	margin: 0 -14px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes.v2 {
	padding-top: 14px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .inner-box {
	margin-bottom: 21px;
	margin-right: -25px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes textarea {
	width: 100%;
	height: 150px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes .drop-menu {
	height: unset;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
	text-transform: lowercase;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes .drop-menu .select i {
	right: 0;
	top: -13px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .text {
	margin-top: 12px;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form-submit {
	text-align: right;
	padding: 0;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form-submit .theme-btn {
	color: var(--theme-color-light);
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	padding: 0 26px;
	height: 54px;
	line-height: 54px;
	display: inline-block;
}
.dashboard-widget .content-column .inner-column .map-sec .form-sec-two form .form-submit .theme-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
/*** 
	====================================================================
    dashboard section two
	====================================================================
***/
.dashboard-widget-two .side-bar {
	position: relative;
	width: 300px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
	padding: 0 30px;
}
.dashboard-widget-two .side-bar .nav-list li a {
	color: var(--theme-color-light);
	font-weight: 500;
	font-size: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 14px;
	padding: 14px 91px 14px 19px;
}
.dashboard-widget-two .side-bar .nav-list li a img {
	margin-right: 14px;
}
.dashboard-widget-two .side-bar .nav-list li a:hover {
	background: rgba(255, 255, 255, 0.1);
}
.dashboard-widget-two .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dashboard-widget-two .right-box-two {
	border-radius: 14px;
	background: var(--theme-color-light);
	padding: 54px 60px 60px;
	margin-right: 30px;
}
.dashboard-widget-two .right-box-two .title-box {
	margin-bottom: 58px;
}
.dashboard-widget-two .right-box-two .title-box .title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: -4px;
}
.dashboard-widget-two .right-box-two .title-box span {
	font-size: 15px;
	color: #222;
	display: inline-block;
}
.dashboard-widget-two .right-box-two .cars-section-four {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	padding: 30px 30px 28px;
}
.footer-style-one.v2 .footer-bottom {
	border-top: 0;
	max-width: 1603px;
	margin-left: auto;
	padding: 29px 90px 29px 60px;
}
/*** 
	====================================================================
    dashboard section three
	====================================================================
***/
.dashboard-widget-two .side-bar {
	position: relative;
	width: 300px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
	padding: 0 30px;
}
.dashboard-widget-two .side-bar .nav-list li a {
	color: var(--theme-color-light);
	font-weight: 500;
	font-size: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 14px;
	padding: 14px 91px 14px 19px;
}
.dashboard-widget-two .side-bar .nav-list li a img {
	margin-right: 14px;
}
.dashboard-widget-two .side-bar .nav-list li a:hover {
	background: rgba(255, 255, 255, 0.1);
}
.dashboard-widget-two .content-column {
	width: 100%;
}
.dashboard-widget-two .content-column .inner-column {
	background-color: var(--theme-color-light);
	padding: 58px 60px 60px;
	margin-right: 30px;
	border-radius: 14px;
}
.dashboard-widget-two .content-column .inner-column .list-title {
	margin-bottom: 58px;
}
.dashboard-widget-two .content-column .inner-column .list-title .title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: 0;
	line-height: 46px;
}
.dashboard-widget-two .content-column .inner-column .list-title .text {
	font-size: 15px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 21px 29px 30px;
	margin-bottom: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .title {
	font-weight: 500;
	margin-bottom: 13px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .nav-tabs.v2 {
	margin: 0 0 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three {
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 21px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-top: 24px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box:hover .content-box {
	opacity: 1;
	visibility: visible;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon li {
	margin-right: 12px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon li:last-child {
	margin-right: 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box .content-box .social-icon li a {
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	background: var(--theme-color-light);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box {
	position: relative;
	border-radius: 8px;
	border: 1px dashed var(--color-secondary, #635bff);
	background: var(--bg-3, #E9F2FF);
	width: 190px;
	height: 167px;
	text-align: center;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box .content-box span {
	display: block;
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-top: 10px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec {
	margin-top: 23px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 21px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-top: 24px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box {
	border-radius: 12px;
	background: var(--bg-1, #F9FBFC);
	text-align: center;
	display: inline-block;
	padding: 40px 54px 48px;
	margin-right: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box span {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-dark);
	margin-bottom: 11px;
	display: inline-block;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon li {
	margin-right: 12px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon li:last-child {
	margin-right: 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box .social-icon li a {
	border-radius: 14px;
	border: 1px solid var(--theme-color-light);
	background: var(--theme-color-light);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .uplode-box {
	position: relative;
	border-radius: 8px;
	border: 1px dashed var(--color-primary, #050B20);
	background: var(--bg-1, #F9FBFC);
	width: 190px;
	height: 167px;
	text-align: center;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .uplode-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .uplode-box .content-box span {
	display: block;
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-top: 10px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec {
	margin: 23px -14px 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form {
	width: 100%;
	margin: 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes.v2 {
	padding-top: 14px;
	margin-bottom: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .inner-box {
	margin-bottom: 21px;
	margin-right: -25px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea {
	width: 100%;
	height: 150px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu {
	height: unset;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
	text-transform: lowercase;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu .select i {
	right: 0;
	top: -13px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .text {
	margin-top: 12px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form-submit {
	text-align: right;
	padding: 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form-submit .theme-btn {
	color: var(--theme-color-light);
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	padding: 0 26px;
	height: 54px;
	line-height: 54px;
	display: inline-block;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .form-sec form .form-submit .theme-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three.v2 {
	border-bottom: 0;
	padding-bottom: 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two {
	margin: 0 -14px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .map-box {
	margin-bottom: 21px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .map-box iframe {
	width: 100%;
	height: 450px;
	border-radius: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two {
	margin-top: 21px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form {
	width: 100%;
	margin: 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form-column {
	margin: 0 -14px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes.v2 {
	padding-top: 14px;
	margin-bottom: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .inner-box {
	margin-bottom: 21px;
	margin-right: -25px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes textarea {
	width: 100%;
	height: 150px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes .drop-menu {
	height: unset;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
	text-transform: lowercase;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes .drop-menu .select i {
	right: 0;
	top: -13px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .text {
	margin-top: 12px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form-submit {
	text-align: right;
	padding: 0;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form-submit .theme-btn {
	color: var(--theme-color-light);
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	padding: 0 26px;
	height: 54px;
	line-height: 54px;
	display: inline-block;
	margin-right: 15px;
}
.dashboard-widget-two .content-column .inner-column .gallery-sec .map-sec-two .form-sec-two form .form-submit .theme-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.my-listing-table .cart-table table tr td:first-child {
	padding-left: 0;
}
.my-listing-table .shop-product-cart-info {
	max-width: 300px;
}
.my-listing-table .shop-product-cart-info h3 {
	max-width: 100% !important;
}
.my-listing-table .shop-product-cart-info p {
	font-size: 14px;
	color: #050B20;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.my-listing-table .shop-product-cart-info .price {
	margin-top: 10px;
}
.my-listing-table .shop-product-cart-info .price span {
	display: inline-block;
	color: #050B20;
	font-size: 20px;
	font-weight: 700;
}
.my-listing-table .shop-product-cart-info .price del {
	color: #050B20;
	font-size: 14px;
}
.search-table-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}
.search-table-head form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.search-table-head form .text-box {
	margin-left: auto;
	margin-bottom: 0;
}
.search-table-head .search-table-field {
	max-width: 250px;
	position: relative;
}
.search-table-head .search-table-field img {
	position: absolute;
	top: 50%;
	left: 0;
	color: #050B20;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.search-table-head .search-table-field input {
	color: #050B20;
	font-size: 15px;
	padding-left: 25px;
}
.search-table {
	border: 1px solid #E1E1E1;
	border-radius: 14px;
	padding: 30px;
}
.search-table table {
	width: 100%;
}
.search-table table thead th {
	background: #E9F2FF;
	padding: 30px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #635bff;
}
.search-table table thead th:first-child {
	border-radius: 14px 0 0 14px;
}
.search-table table thead th:last-child {
	border-radius: 0 14px 14px 0;
}
.search-table table tbody tr:last-child td {
	border-bottom: 0;
	padding-bottom: 0;
}
.search-table table tbody td {
	color: #050B20;
	padding: 30px 20px;
	font-size: 15px;
	border-bottom: 1px solid #E1E1E1;
}
.search-table table tbody td span {
	display: inline-block;
	position: relative;
	padding: 0 12px;
}
.search-table table tbody td span:first-child {
	padding-left: 0;
}
.search-table table tbody td span:last-child {
	padding-right: 0;
}
.search-table table tbody td span:last-child:before {
	display: none;
}
.search-table table tbody td span:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -4px;
	width: 4px;
	height: 4px;
	background-color: #ABAAAA;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.remove-cart-item {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #F9FBFC;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	border: 1px solid #E1E1E1;
}
/*** 
	====================================================================
	Chat Widget
	====================================================================
***/
.chat-widget .widget-content {
	padding: 0;
}
.chat-widget .card-header {
	padding: 40px 40px 0;
	background: none;
	border-radius: 0;
	border: 0;
}
.chat-widget .search-box-one .form-group input[type=text],
.chat-widget .search-box-one .form-group input[type=search] {
	width: 100%;
}
.chat {
	margin-top: auto;
	margin-bottom: auto;
}
.card {
	border: 1px solid #ECEDF2;
	-webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
	box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
	border-radius: 8px;
}
.card ::-webkit-scrollbar {
	width: 4px;
}
.card ::-webkit-scrollbar-track {
	background: transparent;
}
.card ::-webkit-scrollbar-thumb {
	background-color: #F0F5F7;
	border-radius: 10px;
}
.contacts_body {
	padding: 15px 0px;
	overflow-y: auto;
	white-space: nowrap;
}
.msg_card_body {
	position: relative;
	overflow-y: auto;
	padding: 40px 40px 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.msg_card_body .d-flex {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.msg_card_body .justify-content-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.chat_history {
	position: absolute;
	left: 0;
	top: 0px;
	text-align: center;
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	color: #5c6770;
	background: #fff;
	padding: 30px 0;
}
.msg_card_body .mb-3 {
	margin-bottom: 30px !important;
}
.card-footer {
	padding: 30px 40px 40px;
	border-radius: 0 !important;
	background: none;
	border-top: 1px solid #ECEDF2;
}
.card-footer .form-group {
	position: relative;
}
.card-footer .form-group button {
	position: absolute;
	right: 10px;
	top: 0;
	border-radius: 12px;
	background: #635bff;
	color: #fff;
	border: 0;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.card-footer .form-group button svg {
	margin-left: 10px;
}
.type_msg {
	background-color: transparent !important;
	border: 0 !important;
	color: white !important;
	height: 50px !important;
	overflow-y: auto;
	font-size: 14px;
	color: #696969 !important;
	line-height: 20px;
	padding: 15px 30px;
}
.type_msg:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: 0px !important;
}
.attach_btn {
	border-radius: 15px 0 0 15px !important;
	background-color: rgba(0, 0, 0, 0.3) !important;
	border: 0 !important;
	color: white !important;
	cursor: pointer;
}
.send_btn {
	border-radius: 0 15px 15px 0 !important;
	background-color: rgba(0, 0, 0, 0.3) !important;
	border: 0 !important;
	color: white !important;
	cursor: pointer;
}
.contacts {
	list-style: none;
	padding: 0;
}
.contacts li {
	width: 100% !important;
}
.contacts li:last-child {
	margin-bottom: 0;
}
.contacts li a {
	position: relative;
	display: block;
	padding: 14px 40px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.contacts li.active a,
.contacts li:hover a {
	background: #f9fafc;
}
.user_img {
	height: 50px;
	width: 50px;
	border: 1px solid #dddddd;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
}
.user_img_msg {
	height: 50px;
	width: 50px;
	border: 1px solid #dddddd;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
}
.img_cont {
	position: relative;
	height: 50px;
	width: 50px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
}
.img_cont_msg {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
}
.img_cont_msg img {
	height: 50px;
	width: 50px;
}
.img_cont_msg .name {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: #202124;
	margin-left: 10px;
}
.img_cont_msg .msg_time {
	font-size: 14px;
	line-height: 19px;
	text-align: right;
	color: #696969;
	margin-left: 10px;
}
.reply .img_cont_msg {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.reply .img_cont_msg .msg_time,
.reply .img_cont_msg .name {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	margin-right: 10px;
}
.online_icon {
	position: absolute;
	right: 0;
	top: 0;
	height: 13px;
	width: 13px;
	background-color: #00d664;
	border-radius: 50%;
	border: 2px solid #fafafa;
}
.offline {
	background-color: #ff0000 !important;
}
.user_info {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: 15px;
}
.user_info span {
	font-size: 14px;
	line-height: 22px;
	color: #202124;
	font-weight: 500;
	margin-bottom: 3px;
}
.user_info p {
	font-size: 14px !important;
	color: #5c6770 !important;
	line-height: 1.4em !important;
	margin-bottom: 0 !important;
}
.video_cam {
	margin-left: 50px;
	margin-top: 5px;
}
.video_cam span {
	color: white;
	font-size: 20px;
	cursor: pointer;
	margin-right: 20px;
}
.bd-highlight .info {
	position: absolute;
	right: 40px;
	top: 20px;
	font-size: 14px;
	line-height: 22px;
	color: #696969;
	font-weight: 400;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.bd-highlight .info .count {
	position: relative;
	display: block;
	width: 16.02px;
	height: 14px;
	background: #1967D2;
	border-radius: 50%;
	color: #ffffff;
	line-height: 14px;
	text-align: center;
	font-size: 12px;
	margin-top: 2px;
}
.msg_cotainer {
	position: relative;
	display: block;
	width: auto;
	background: #F0F5F7;
	border-radius: 8px;
	padding: 23px 30px 20px;
	font-size: 14px;
	line-height: 24px;
	color: #696969;
	max-width: 60%;
	margin-bottom: 5px;
}
.reply .msg_cotainer {
	text-align: right;
}
.msg_cotainer_send {
	margin-top: 24px;
	border-radius: 5px;
	background-color: #bdc1c9;
	color: #ffffff;
	font-size: 14px;
	line-height: 24px;
	padding: 8px 18px;
	position: relative;
}
.msg_time_send {
	position: absolute;
	right: 0;
	top: -20px;
	font-size: 14px;
	line-height: 1em;
	color: #5c6770;
}
.chat-widget .msg_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #ECEDF2;
	-webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
	box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
	padding: 20px 40px;
}
.chat-widget .msg_head .btn-box {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.chat-widget .dlt-chat {
	font-size: 14px;
	line-height: 19px;
	text-decoration-line: underline;
	color: #635bff;
	background: transparent;
}
#action_menu_btn {
	position: absolute;
	right: 10px;
	top: 10px;
	color: white;
	cursor: pointer;
	font-size: 20px;
}
.action_menu {
	z-index: 1;
	position: absolute;
	padding: 15px 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border-radius: 15px;
	top: 30px;
	right: 15px;
	display: none;
}
.action_menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.action_menu ul li {
	width: 100%;
	padding: 10px 15px;
	margin-bottom: 5px;
}
.action_menu ul li i {
	padding-right: 10px;
}
.action_menu ul li:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.2);
}
.toggle-contact {
	font-size: 20px;
	margin-left: 20px;
	display: none;
}
.active-chat-contacts .toggle-contact .fa-bars:before {
	content: "\f00d";
}
.ls-widget .widget-title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background: transparent;
	padding: 20px 30px 30px;
	min-height: 60px;
}
.ls-widget .widget-title .chosen-outer {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.widget-title .chosen-single {
	position: relative;
	height: 45px;
	padding: 10px 20px;
	font-size: 14px;
	color: #696969;
	line-height: 25px;
	background: #F0F5F7;
}
.widget-title .chosen-container {
	margin-left: 20px;
}
.widget-title .chosen-container-single .chosen-single div:after {
	color: #696969;
	content: "\f17c";
	font-family: "Flaticon";
	font-size: 10px;
}
.search-box-one {
	position: relative;
}
.search-box-one .form-group {
	position: relative;
	margin-bottom: 0;
}
.search-box-one .form-group input[type=text],
.search-box-one .form-group input[type=search] {
	position: relative;
	display: block;
	max-width: 100%;
	width: 330px;
	height: 45px;
	line-height: 25px;
	padding: 5px 20px;
	padding-left: 54px;
	font-size: 15px;
	color: #696969;
	background: #F0F5F7;
	border-radius: 8px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-box-one .form-group input[type=text]:focus,
.search-box-one .form-group input[type=search]:focus {
	border-color: #1967D2;
}
.search-box-one .form-group .icon {
	position: absolute;
	left: 0;
	top: -3px;
	color: #696969;
	height: 45px;
	width: 54px;
	z-index: 1;
	text-align: center;
	line-height: 45px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.ls-widget .widget-content {
	position: relative;
	padding: 0px 30px 10px;
}
.ls-widget .widget-content p {
	position: relative;
	font-size: 14px;
	line-height: 26px;
	color: #5c6770;
	font-weight: 400;
	margin-bottom: 26px;
}
/* Notification list */
.notification-list {
	position: relative;
}
.notification-list li {
	position: relative;
	padding: 5px 0;
	padding-left: 47px;
	font-size: 15px;
	line-height: 25px;
	color: #696969;
	font-weight: 400;
	min-height: 35px;
	margin-bottom: 25px;
}
.notification-list li strong {
	font-weight: 500;
	color: #202124;
}
.notification-list li .icon {
	position: absolute;
	left: 0;
	top: 0;
	height: 35px;
	width: 35px;
	background: rgba(25, 103, 210, 0.15);
	color: #1967D2;
	text-align: center;
	line-height: 35px;
	border-radius: 50%;
	font-size: 14px;
}
.notification-list li .colored {
	color: #1967D2;
}
.notification-list li.success .icon {
	background: rgba(52, 168, 83, 0.15);
	color: #34a853;
}
.notification-list li.success .colored {
	color: #34a853;
}
.uii-item {
	border-radius: 14px;
	height: 170px;
	position: relative;
	border: 1px solid #E1E1E1;
	padding: 0 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/* Large devices */
}
@media (max-width: 1199px) {
	.uii-item {
		margin-bottom: 30px;
	}
}
.uii-item .ui-icon {
	position: absolute;
	top: 50%;
	right: 30px;
	width: 70px;
	height: 70px;
	background-color: #E9F2FF;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.uii-item .ui-icon.v2 {
	background-color: #FFE9F3;
}
.uii-item .ui-icon.v3 {
	background-color: #EEF1FB;
}
.uii-item .ui-icon.v4 {
	background-color: #F9FBFC;
}
.uii-item>span {
	color: #050B20;
	font-size: 15px;
	margin-bottom: -5px;
}
.uii-item h3 {
	margin: 0;
	color: #050B20;
	font-size: 30px;
	font-weight: 700;
}
.graph-content {
	margin-top: 70px;
	/* Medium devices */
}
@media (max-width: 991px) {
	.graph-content {
		margin-top: 0;
	}
}
.widget-graph {
	border: 1px solid #E1E1E1;
	border-radius: 14px;
	padding: 30px;
	height: 100%;
}
.graph-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-right: 30px;
}
.graph-head>h3 {
	color: #050B20;
	font-size: 18px;
	font-weight: 500;
}
.graph-head .text-box .form_boxes {
	margin-right: 30px;
}
.graph-head .text-box .form_boxes:last-child {
	margin-right: 0;
}
.ls-widget {
	position: relative;
	background: #ffffff;
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	/* Large devices */
}
@media (max-width: 1199px) {
	.ls-widget {
		margin-top: 40px;
	}
}
.ls-widget .widget-title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background: transparent;
	padding: 20px 30px 30px;
	min-height: 60px;
}
.ls-widget .widget-title h4 {
	position: relative;
	font-size: 18px;
	line-height: 30px;
	color: #1b2032;
	font-weight: 500;
	margin-right: 30px;
	margin-bottom: 0;
	padding: 0;
}
.ls-widget .widget-title h4 .icon {
	position: absolute;
	left: 0;
	top: 0px;
	line-height: 30px;
	color: #9fa9b8;
}
.dash-btn {
	display: block;
	border: 1px solid #635bff;
	border-radius: 12px;
	width: 100%;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	height: 54px;
	line-height: 54px;
	color: #635bff;
}
.dash-btn svg {
	margin-left: 10px;
}
.dash-btn svg path {
	fill: #635bff;
}
.dash-btn:hover {
	background-color: #635bff;
	color: #fff;
	border-color: transparent;
}
.dash-btn:hover svg path {
	fill: #fff;
}
.dash-btn-box {
	padding: 0 30px;
	margin-bottom: 30px;
}
/* Medium devices */
@media (max-width: 991px) {
	.dashboard-widget .content-column .inner-column {
		border-radius: 0;
	}
}
/* Extra small devices */
@media (max-width: 575px) {
	.header-style-ten .header-inner {
		padding: 0;
	}
	.search-table table thead th {
		width: 100%;
	}
	.search-table tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		text-align: center;
	}
	.search-table table thead th:first-child {
		border-radius: 0;
	}
	.search-table-head form {
		display: block;
	}
	.search-table table tbody td {
		width: 100%;
	}
}
/*** 
	====================================================================
    contact-us section
	====================================================================
***/
.contact-us-section {
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
	background-color: var(--theme-color-light);
}
.contact-us-section .map-sec {
	margin: 0 -152px;
}
.contact-us-section .map-sec .goole-iframe iframe {
	width: 100%;
	height: 600px;
	border-radius: 10px;
}
.contact-us-section .calculater-sec {
	padding-top: 60px;
}
.contact-us-section .calculater-sec .boxcar-container {
	max-width: 100%;
}
.contact-us-section .calculater-sec .content-column .inner-column {
	width: 100%;
	height: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-right: 38px;
}
.contact-us-section .calculater-sec .content-column .inner-column .boxcar-title {
	margin-bottom: 21px;
	padding-left: 13px;
}
.contact-us-section .calculater-sec .content-column form {
	width: 100%;
	margin: 0;
}
.contact-us-section .calculater-sec .content-column form .form_boxes {
	border-radius: 12px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--color-white, #FFF);
	border-radius: 12px;
	padding: 7px 15px;
	margin-bottom: 30px;
}
.contact-us-section .calculater-sec .content-column form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 13px;
	font-weight: 400;
}
.contact-us-section .calculater-sec .content-column form .form_boxes .drop-menu {
	height: unset;
}
.contact-us-section .calculater-sec .content-column form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.contact-us-section .calculater-sec .content-column form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	background-color: var(--theme-color-light);
	-webkit-box-shadow: 30px 30px 60px 0px rgba(0, 0, 1, 0.05);
	box-shadow: 30px 30px 60px 0px rgba(0, 0, 1, 0.05);
}
.contact-us-section .calculater-sec .content-column form .form_boxes.v2 {
	height: 220px;
}
.contact-us-section .calculater-sec .content-column form .theme-btn {
	background: #635bff;
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 26px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.contact-us-section .calculater-sec .content-column form .theme-btn svg {
	margin-left: 10px;
}
.contact-us-section .calculater-sec .content-column form .theme-btn.v2 {
	width: 100%;
}
.contact-us-section .calculater-sec .contact-column .inner-column {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--White, #FFF);
	padding: 32px 41px 47px;
	margin-left: 38px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .boxcar-title {
	margin-bottom: 38px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .boxcar-title .title {
	font-weight: 500;
}
.contact-us-section .calculater-sec .contact-column .inner-column .boxcar-title .text {
	line-height: 26px;
	margin-top: 0;
}
.contact-us-section .calculater-sec .contact-column .inner-column .content-box {
	padding-left: 36px;
	margin-bottom: 24px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .content-box .title {
	position: relative;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 2px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .content-box .title .icon {
	position: absolute;
	top: 0px;
	left: -36px;
	font-size: 26px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .social-icons {
	margin-top: 26px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .social-icons .title {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 15px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .social-icons .social-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -15px;
}
.contact-us-section .calculater-sec .contact-column .inner-column .social-icons .social-links li a {
	border-radius: 50px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
}
.contact-us-section .calculater-sec .contact-column .inner-column .social-icons .social-links li a:hover {
	background: var(--bg-1, #F9FBFC);
}
.contact-us-section .ofice-section {
	position: relative;
	padding: 120px 0 0;
}
.contact-us-section .ofice-section .ofice-block .inner-box .title {
	font-size: 18px;
	font-weight: 500;
	line-height: 32px;
	margin-bottom: 13px;
}
.contact-us-section .ofice-section .ofice-block .inner-box .text {
	line-height: 26px;
	margin-bottom: 6px;
}
.contact-us-section .ofice-section .ofice-block .inner-box .ofice-btn {
	font-size: 15px;
	font-family: var(--title-font);
	font-weight: 500;
	display: inline-block;
	color: var(--theme-color-dark);
}
.contact-us-section .ofice-section .ofice-block .inner-box .ofice-btn svg {
	margin-left: 9px;
	position: relative;
	top: -2px;
}
.contact-us-section .ofice-section .ofice-block .inner-box .contact-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 22px;
}
.contact-us-section .ofice-section .ofice-block .inner-box .contact-list li {
	position: relative;
	font-size: 15px;
	color: var(--theme-color-dark);
	padding-left: 36px;
	margin-right: 30px;
}
.contact-us-section .ofice-section .ofice-block .inner-box .contact-list li:last-child {
	margin-right: 0;
}
.contact-us-section .ofice-section .ofice-block .inner-box .contact-list li .icon {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 26px;
}
.contact-block .inner-box {
	border-radius: 0px 14px 14px 0px;
	background: #E9F2FF;
	max-width: 450px;
	margin-left: auto;
	padding: 128px 52px 127px;
}
.contact-block .inner-box .content-box {
	margin-bottom: 43px;
}
.contact-block .inner-box .content-box:last-child {
	margin-bottom: 0;
}
.contact-block .inner-box .content-box .title {
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 3px;
}
.contact-block .inner-box .content-box span {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color1);
	line-height: 32px;
	display: block;
}
.contact-us-section.v2 .right-box {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
}
.contact-us-section.v2 .right-box .content-column .inner-column {
	padding: 51px 38px 51px 60px;
}
/*** 
	====================================================================
    inventory section
	====================================================================
***/
.inventory-section {
	position: relative;
	/* padding: 52px 0 120px; */
	/* border-radius: 80px; */
}
.inventory-section .overview-sec.v2 {
	margin-top: 42px;
}
.inventory-section .boxcar-title-three {
	position: relative;
	margin-bottom: 30px;
}
.inventory-section .boxcar-title-three h2 {
	margin-bottom: 0;
}
.inventory-section .boxcar-title-three .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	line-height: 27px;
	margin-bottom: 20px;
	font-weight: 400;
}
.inventory-section .boxcar-title-three .spectes-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
/* .inventory-section .boxcar-title-three .spectes-list li {
	margin-right: 10px;
} */
.inventory-section .boxcar-title-three .spectes-list li:last-child {
	margin-right: 0;
}
.inventory-section .boxcar-title-three .spectes-list li span {
	font-size: 15px;
	color: var(--theme-color1);
	display: inline-block;
	border-radius: 120px;
	background: var(--bg-3, #E9F2FF);
	padding: 7px 20px 5px;
}
.inventory-section .boxcar-title-three .spectes-list li span img {
	margin-right: 10px;
	position: relative;
	top: -2px;
}
.inventory-section .boxcar-title-three .spectes-list.v2 li span {
	background-color: unset;
	color: var(--theme-color-dark);
	border: 1px solid var(--Border, #E1E1E1);
}
.inventory-section .boxcar-title-three .content-box {
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
}
.inventory-section .boxcar-title-three .content-box .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 12px;
}
.inventory-section .boxcar-title-three .content-box .btn-box .share-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 18px;
}
.inventory-section .boxcar-title-three .content-box .btn-box .share-btn:last-child {
	margin-right: 0;
}
.inventory-section .boxcar-title-three .content-box .btn-box .share-btn span {
	font-size: 15px;
	color: var(--theme-color-dark);
	display: inline-block;
	margin-right: 10px;
}
.inventory-section .boxcar-title-three .content-box .btn-box .share-btn .share {
	fill: var(--White, #FFF);
	border: 1px solid #E1E1E1;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	line-height: 32px;
	text-align: center;
	-webkit-filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.05));
	filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.05));
}
.inventory-section .boxcar-title-three .content-box .btn-box.v2 {
	margin-bottom: 0;
}
.inventory-section .boxcar-title-three .content-box .title {
	font-weight: 700;
	margin-bottom: 4px;
}
.inventory-section .boxcar-title-three .content-box span {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-dark);
}
.inventory-section .boxcar-title-three .content-box span i {
	margin-right: 10px;
}
.inventory-section .gallery-sec .slick-next,
.inventory-section .gallery-sec .slick-prev {
	border: 0;
	/* background-color: rgba(143, 143, 153, 0.9); */
}
.inventory-section .gallery-sec .slick-prev::before,
.inventory-section .gallery-sec .slick-next::before {
	color: var(--theme-color-light);
}
.inventory-section .gallery-sec .slick-next {
	right: 10px;
}
.inventory-section .gallery-sec .slick-prev {
	left: 10px;
	z-index: 9;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box {
	position: relative;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .image {
	border-radius: 14px 0px 0px 14px;
	overflow: hidden;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .image img {
	width: 100%;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 100%;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box .video-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box .video-list li {
	margin-right: 10px;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box .video-list li:last-child {
	margin-right: 0;
	margin-left: auto;
	left: auto;
	right: 20px;
	position: relative;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box .video-list li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 15px;
	color: var(--theme-color-dark);
	background-color: var(--theme-color-light);
	padding: 7px 20px 5px;
	border-radius: 12px;
}
.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box .video-list li a img {
	margin-right: 10px;
}
.inventory-section .gallery-sec .image-column-two .inner-column {
	/* margin-bottom: 34px; */
	/* height: 100%; */
}
.inventory-section .gallery-sec .image-column-two .inner-column .image-box {
	position: relative;
	display: inline-block;
}
.inventory-section .gallery-sec .image-column-two .inner-column .image-box:hover .content-box {
	opacity: 1;
	visibility: visible;
}
.inventory-section .gallery-sec .image-column-two .inner-column .image-box .content-box {
	position: absolute;
	bottom: 10px;
	right: 10px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.inventory-section .gallery-sec .image-column-two .inner-column .image-box .content-box .video-list {
	width: 100%;
}
.inventory-section .gallery-sec .image-column-two .inner-column .image-box .content-box .video-list li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 15px;
	color: var(--theme-color-dark);
	background-color: var(--theme-color-light);
	padding: 7px 20px 5px;
	border-radius: 12px;
}
.inventory-section .gallery-sec .image-column-two .inner-column .image-box .content-box .video-list li a img {
	margin-right: 10px;
}
.inventory-section .gallery-sec .image-column-two .inner-column .image-box .content-box .video-list li:last-child {
	margin-left: auto;
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.inventory-section .gallery-sec-two {
	padding: 0 45px;
}
@media (max-width: 1440px) {
	.inventory-section .gallery-sec-two {
		padding: 0 30px;
	}
}
@media (max-width: 991px) {
	.inventory-section .gallery-sec-two {
		padding: 0 15px;
		margin-bottom: 60px;
	}
}
.gallery-sec-two .wrap-slider-gallery {
	border-radius: 14px;
	overflow: hidden;
}
.inventory-section .gallery-sec-two .slick-next {
	right: 40px;
}
.inventory-section .gallery-sec-two .slick-prev {
	left: 40px;
	z-index: 99;
}
.inventory-section .gallery-sec-two .slick-next,
.inventory-section .gallery-sec-two .slick-prev {
	background-color: var(--theme-color1);
	border: 0;
}
.inventory-section .gallery-sec-two .slick-prev::before,
.inventory-section .gallery-sec-two .slick-next::before {
	color: var(--theme-color-light);
}
.inventory-section .gallery-sec-two .image-column {
	margin: 0 15px;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box {
	position: relative;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .image {
	border-radius: 14px;
	overflow: hidden;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .image img {
	width: 100%;
	height: 550px;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 500px) {
	.inventory-section .gallery-sec-two .image-column .inner-column .image-box .image img {
		height: 400px;
	}
	.cars-section-eight .nav-tabs {
		justify-content: flex-start;
		row-gap: 10px;
	}
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .content-box {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 100%;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .content-box .video-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .content-box .video-list li {
	margin-right: 10px;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .content-box .video-list li:last-child {
	margin-right: 0;
	margin-left: auto;
	left: auto;
	right: 20px;
	position: relative;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .content-box .video-list li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 15px;
	color: var(--theme-color-dark);
	background-color: var(--theme-color-light);
	padding: 7px 20px 5px;
	border-radius: 12px;
}
.inventory-section .gallery-sec-two .image-column .inner-column .image-box .content-box .video-list li a img {
	margin-right: 10px;
}
.inventory-section .inspection-column {
	margin-top: 9px;
}
.inventory-section .inspection-column .inner-column .title {
	font-weight: 500;
	font-size: 26px;
	margin-bottom: 27px;
}
.inventory-section .inspection-column .inner-column .overview-sec {
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 26px;
}
.inventory-section .inspection-column .inner-column .overview-sec .content-column .inner-column .list li {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}
.inventory-section .inspection-column .inner-column .overview-sec .content-column .inner-column .list li span {
	font-weight: 400;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 198px;
	display: inline-block;
}
.inventory-section .inspection-column .inner-column .overview-sec .content-column .inner-column .list li span img {
	margin-right: 15px;
	position: relative;
	top: -2px;
}
.inventory-section .inspection-column .inner-column .overview-sec-two {
	margin-top: 52px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 50px;
}
.inventory-section .inspection-column .inner-column .overview-sec-two .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.inventory-section .inspection-column .inner-column .overview-sec-two .list li {
	width: 160px;
	height: 150px;
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	text-align: center;
	padding: 32px 0;
	/* margin-right: 30px; */
}
.boxcar-testimonial-section.home1 .boxcar-title {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.boxcar-testimonial-section.home1 .boxcar-title h2 {
	margin-bottom: 0;
}
.boxcar-testimonial-section.home1 .boxcar-title .text {
	margin-top: 0;
}
@media (max-width: 600px) {
	.compare-section .compare-products table tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		/* -ms-flex-wrap: wrap;
		flex-wrap: wrap; */
	}
	.compare-section .compare-products table tr th,
	.compare-section .compare-products table tr td {
		width: 100%;
		flex-shrink: 0;
	}
}
@media (max-width: 500px) {
	.inventory-section .inspection-column .inner-column .overview-sec-two .list li {
		width: 100%;
	}
}
.inventory-section .inspection-column .inner-column .overview-sec-two .list li:last-child {
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .overview-sec-two .list li img {
	margin-bottom: 8px;
}
.inventory-section .inspection-column .inner-column .overview-sec-two .list li span {
	display: block;
	color: #818181;
	margin-bottom: -2px;
}
.inventory-section .inspection-column .inner-column .overview-sec-two .list li small {
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column .description-sec {
	margin-top: 52px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 50px;
}
.inventory-section .inspection-column .inner-column .description-sec .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 23px;
}
.inventory-section .inspection-column .inner-column .description-sec .text {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column .description-sec .text.two {
	margin-bottom: 24px;
}
.inventory-section .inspection-column .inner-column .description-sec .des-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 38px;
}
.inventory-section .inspection-column .inner-column .description-sec .des-list li {
	margin-right: 18px;
}
.inventory-section .inspection-column .inner-column .description-sec .des-list li:last-child {
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .description-sec .des-list li .item {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-dark);
	padding: 14px 26px 12px;
	border-radius: 12px;
	background: var(--bg-2, #EEF1FB);
}
.inventory-section .inspection-column .inner-column .description-sec .des-list li .item img {
	margin-right: 10px;
	position: relative;
	top: -1px;
}
.inventory-section .inspection-column .inner-column .description-sec .des-list .two .item {
	background: var(--bg-3, #E9F2FF);
}
.inventory-section .inspection-column .inner-column .description-sec .des-list .three .item {
	background: var(--bg-4, #FFE9F3);
}
.inventory-section .inspection-column .inner-column .features-sec {
	margin-top: 52px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 44px;
}
.inventory-section .inspection-column .inner-column .features-sec .list-column .inner-column .title {
	font-size: 18px;
	font-weight: 500;
}
.inventory-section .inspection-column .inner-column .features-sec .list-column .inner-column .feature-list li {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 13px;
}
.inventory-section .inspection-column .inner-column .features-sec .list-column .inner-column .feature-list li:last-child {
	margin-bottom: 0;
}
.inventory-section .inspection-column .inner-column .features-sec .list-column .inner-column .feature-list li i {
	color: var(--theme-color1);
	background-color: var(--bg-1);
	width: 21px;
	height: 21px;
	line-height: 21px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
	margin-right: 10px;
}
.inventory-section .inspection-column .inner-column .features-sec.v2 {
	padding-bottom: 36px;
}
.inventory-section .inspection-column .inner-column .features-sec.v2 .list-column {
	margin-bottom: 30px;
}
.inventory-section .inspection-column .inner-column .faqs-section {
	margin-top: 52px;
}
.inventory-section .inspection-column .inner-column .faqs-section .title {
	font-weight: 500;
	font-size: 26px;
	margin-bottom: 8px;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion {
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 30px;
}
.inventory-section .inspection-column .inner-column .faqs-section .accordion.block {
	border-bottom: 1px solid #E1E1E1;
}
.inventory-section .inspection-column .inner-column .faqs-section .accordion.block.v2 {
	border-bottom: 0;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block:active {
	background-color: unset;
}
.inventory-section .inspection-column .inner-column .faqs-section .accordion.block.active-block {
	background-color: transparent;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block {
	margin-bottom: 0;
	padding-bottom: 7px;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block .acc-btn {
	font-size: 18px;
	font-family: var(--title-font);
	font-weight: 500;
	text-transform: capitalize;
	color: var(--theme-color-dark);
	border: 0;
	padding: 23px 0 15px;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block .acc-content .content {
	padding: 0;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block .acc-btn {
	background-color: unset;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block.active-block .acc-btn {
	color: var(--theme-color-dark);
	background-color: transparent;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block .acc-btn .icon {
	height: 0;
	line-height: 0;
	top: 37px;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block.active-block .acc-btn .icon {
	height: 0;
	line-height: 0;
	top: 37px;
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block.active-block .acc-btn .icon:before {
	content: "\f106";
}
.inventory-section .inspection-column .inner-column .faqs-section .widget-accordion .block .acc-content {
	padding: 0;
}
.inventory-section .inspection-column .inner-column .faqs-section .list-column .inner-column {
	margin-bottom: 13px;
}
.inventory-section .inspection-column .inner-column .faqs-section .list-column .inner-column .spects-list li {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	padding-bottom: 12px;
}
.inventory-section .inspection-column .inner-column .faqs-section .list-column .inner-column .spects-list li:last-child {
	padding-bottom: 0;
}
.inventory-section .inspection-column .inner-column .faqs-section .list-column .inner-column .spects-list li span {
	font-weight: 500;
	width: 207px;
	display: inline-block;
}
.inventory-section .inspection-column .inner-column .location-box {
	margin-top: 52px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 51px;
}
.inventory-section .inspection-column .inner-column .location-box .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 22px;
}
.inventory-section .inspection-column .inner-column .location-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	max-width: 431px;
	margin-bottom: 14px;
}
.inventory-section .inspection-column .inner-column .location-box .brand-btn {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	display: inline-block;
	margin-bottom: 22px;
}
.inventory-section .inspection-column .inner-column .location-box .brand-btn svg {
	margin-left: 9px;
	position: relative;
	top: -1px;
}
.inventory-section .inspection-column .inner-column .location-box iframe {
	width: 100%;
	height: 450px;
	border-radius: 20px;
}
.inventory-section .inspection-column .inner-column .contact-box-three {
	margin-top: 60px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 60px;
	position: relative;
}
.inventory-section .inspection-column .inner-column .contact-box-three .icon-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 120px;
	height: 120px;
	line-height: 115px;
	text-align: center;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	margin-bottom: 14px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box {
	padding-left: 140px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .title {
	font-weight: 500;
	margin-bottom: 5px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 10px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .contact-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .contact-list li {
	margin-right: 14px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .contact-list li:last-child {
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .contact-list li a {
	font-size: 15px;
	color: var(--theme-color-dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .contact-list li a .image-box {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50px;
	background-color: #E9F2FF;
	margin-right: 10px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box .side-btn {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
	font-size: 15px;
	font-weight: 500;
	height: 54px;
	line-height: 54px;
	text-align: center;
	display: inline-block;
	width: 100%;
	border-radius: 12px;
	margin-right: 20px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box .side-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box .side-btn.two {
	color: #60C961;
	border: 1px solid #60C961;
	background: var(--White, #FFF);
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box .side-btn-three {
	color: var(--theme-color-dark);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	width: 100%;
	text-align: center;
}
.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box .side-btn-three svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.inventory-section .inspection-column .inner-column .form-box {
	margin-top: 52px;
}
.inventory-section .inspection-column .inner-column .form-box .form-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 22px;
}
.inventory-section .inspection-column .inner-column .form-box .form-list li {
	font-weight: 500;
	color: var(--theme-color-dark);
	font-size: 14px;
	margin-right: 93px;
}
.inventory-section .inspection-column .inner-column .form-box .form-list li:last-child {
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .form-box .form-list li span {
	display: inline-block;
	width: 165px;
	font-weight: 400;
	font-size: 15px;
}
.inventory-section .inspection-column .inner-column .form-box .theme-btn {
	padding: 0 60px;
}
.inventory-section .inspection-column .inner-column .review-sec {
	margin-top: 52px;
}
.inventory-section .inspection-column .inner-column .review-sec .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 30px;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .rating-box {
	position: relative;
	width: 200px;
	height: 200px;
	border: 10px solid var(--bg-1);
	border-radius: 50%;
	margin-right: 39px;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .rating-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .rating-box .content-box span {
	color: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .rating-box .content-box .title {
	font-size: 40px;
	font-weight: 700;
	color: var(--theme-color1);
	margin-bottom: -1px;
	margin-top: -3px;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .rating-box .content-box small {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list {
	width: 303px;
	margin-top: 6px;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 5px;
	margin-bottom: 14px;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list li:last-child {
	padding-bottom: 0;
	border: 0;
	margin-bottom: 0;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list li .review-title span {
	display: block;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-bottom: -5px;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list li .review-title small {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list li sub {
	font-weight: 500;
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list li sub i {
	color: var(--theme-color1);
	margin-right: 9px;
}
.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list.two {
	margin-right: 54px;
}
.inventory-section .inspection-column .inner-column .review-sec.v2 .review-box {
	display: unset;
}
.inventory-section .inspection-column .inner-column .review-sec.v2 .review-box .rating-box {
	margin-right: 0;
	margin-bottom: 30px;
}
.inventory-section .inspection-column .inner-column .review-sec.v2 .content-box-three {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .inspection-column .inner-column .reviews {
	margin-top: 38px;
}
.inventory-section .inspection-column .inner-column .reviews .title {
	margin-bottom: 23px;
}
.inventory-section .inspection-column .inner-column .reviews .auther-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 14px;
}
.inventory-section .inspection-column .inner-column .reviews .auther-name span {
	font-size: 14px;
	font-weight: 500;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: var(--theme-color-dark);
	border-radius: 50%;
	text-align: center;
	color: var(--theme-color-light);
	display: inline-block;
	margin-right: 12px;
}
.inventory-section .inspection-column .inner-column .reviews .auther-name .name {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	margin-right: 17px;
}
.inventory-section .inspection-column .inner-column .reviews .auther-name small {
	font-size: 14px;
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column .reviews .rating-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .inspection-column .inner-column .reviews .rating-list .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inventory-section .inspection-column .inner-column .reviews .rating-list .list li {
	font-size: 10px;
	margin-right: 4px;
	color: var(--theme-color1);
}
.inventory-section .inspection-column .inner-column .reviews .rating-list .list li:last-child {
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .reviews .rating-list span {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-left: 12px;
}
.inventory-section .inspection-column .inner-column .reviews .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	max-width: 849px;
}
.inventory-section .inspection-column .inner-column {
	margin-top: 23px;
}
.inventory-section .inspection-column .inner-column .image-box img {
	border-radius: 12px;
	margin-right: 14px;
}
.inventory-section .inspection-column .inner-column .image-box img:last-child {
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .btn-box .like-btn {
	font-size: 15px;
	color: #818181;
	margin-right: 28px;
}
.inventory-section .inspection-column .inner-column .btn-box .like-btn i {
	margin-right: 10px;
}
.inventory-section .inspection-column .inner-column .btn-box .like-btn:hover {
	color: var(--theme-color1);
}
.inventory-section .inspection-column .inner-column .content-box.two {
	margin-top: 29px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 60px;
}
.inventory-section .inspection-column .inner-column .content-box.two .text {
	margin-bottom: 27px;
}
.inventory-section .inspection-column .inner-column .content-box.two .review {
	font-size: 15px;
	color: var(--theme-color1);
	font-weight: 500;
	height: 54px;
	line-height: 54px;
	padding: 0 38px;
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--White, #FFF);
	display: inline-block;
	margin-top: 30px;
}
.inventory-section .inspection-column .inner-column .content-box.two .review svg {
	margin-left: 10px;
	position: relative;
	top: -1px;
}
.inventory-section .inspection-column .inner-column .Reply-sec {
	margin-top: 52px;
	margin-bottom: 20px;
}
.inventory-section .inspection-column .inner-column .Reply-sec .text {
	margin-bottom: 30px;
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list {
	width: 330px;
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list .list-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list .list-box span {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list .list-box .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list .list-box .list li {
	font-size: 12px;
	color: var(--theme-color1);
	margin-right: 4px;
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list .list-box .list li:last-child {
	margin-right: 0;
}
.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list.two {
	margin-right: 144px;
}
.inventory-section .inspection-column .inner-column form {
	width: 100%;
	margin: 0;
	margin-left: -12px;
}
.inventory-section .inspection-column .inner-column form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.inventory-section .inspection-column .inner-column form .form_boxes textarea {
	width: 100%;
	height: 200px;
}
.inventory-section .inspection-column .inner-column form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.inventory-section .inspection-column .inner-column form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.inventory-section .inspection-column .inner-column form .form_boxes .drop-menu {
	height: unset;
}
.inventory-section .inspection-column .inner-column form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.inventory-section .inspection-column .inner-column form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.inventory-section .inspection-column .inner-column form .form_boxes.v2 {
	padding-top: 14px;
}
.inventory-section .inspection-column .inner-column form .theme-btn {
	background: var(--theme-color1);
	color: var(--theme-color-light-text);
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	padding: 0 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .inspection-column .inner-column form .theme-btn svg {
	margin-left: 10px;
}
.inventory-section .inspection-column.v2 {
	margin-top: -23px;
}
.inventory-section .side-bar-column {
	margin-top: 14px;
}
.inventory-section .side-bar-column .inner-column .contact-box {
	border-radius: 14px;
	border: 1px solid #ececec;
	padding: 30px 30px 26px;
	background-color: var(--theme-color-light);
}
.inventory-section .side-bar-column .inner-column .contact-box .icon-box {
	width: 80px;
	height: 80px;
	line-height: 75px;
	text-align: center;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	margin-bottom: 14px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .title {
	font-weight: 500;
	margin-bottom: 5px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 10px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .contact-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .contact-list li {
	margin-right: 14px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .contact-list li:last-child {
	margin-right: 0;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .contact-list li a {
	font-size: 15px;
	color: var(--theme-color-dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .contact-list li a .image-box {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50px;
	background-color: var(--bg-1);
	margin-right: 10px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn {
	background-color: var(--theme-color1);
	color: var(--theme-color-light-text);
	font-size: 15px;
	font-weight: 500;
	height: 54px;
	line-height: 54px;
	text-align: center;
	display: inline-block;
	width: 100%;
	border-radius: 12px;
	margin-bottom: 20px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn.two {
	color: #60C961;
	border: 1px solid #60C961;
	background: var(--White, #FFF);
	margin-bottom: 15px;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn.two:hover {
	background: #60C961 !important;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn-three {
	color: var(--theme-color-dark);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	width: 100%;
	text-align: center;
}
.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn-three svg {
	position: relative;
	top: -1px;
	margin-left: 9px;
}
.inventory-section .side-bar-column .inner-column .contact-box-two {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	padding: 33px 30px 30px;
	margin-bottom: 30px;
}
.inventory-section .side-bar-column .inner-column .contact-box-two span {
	color: var(--theme-color-dark);
}
.inventory-section .side-bar-column .inner-column .contact-box-two .title {
	font-weight: 700;
	margin-bottom: 0;
	line-height: 44px;
}
.inventory-section .side-bar-column .inner-column .contact-box-two small {
	font-size: 14px;
	color: var(--theme-color-dark);
}
.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box {
	margin-top: 21px;
}
.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box .side-btn {
	background-color: var(--theme-color1);
	color: var(--theme-color-light-text);
	font-size: 15px;
	font-weight: 500;
	height: 54px;
	line-height: 54px;
	text-align: center;
	display: inline-block;
	width: 100%;
	border-radius: 12px;
	margin-bottom: 20px;
}
.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box .side-btn img {
	margin-right: 10px;
}
.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box .side-btn.two {
	background: var(--White, #FFF);
	margin-bottom: 20px;
	color: var(--theme-color-dark);
	border: 1px solid var(--theme-color-dark);
}
.inventory-section .side-bar-column.v2 {
	margin-top: 0;
}
.inventory-section .side-bar-column.v2 .inner-column {
	padding-left: 49px;
}
.inventory-section .side-bar-column.v3 .contact-box-two {
	padding: 0;
	border: 0;
}
.inventory-section .side-bar-column.v3 .contact-box-two .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inventory-section .side-bar-column.v3 .contact-box-two .btn-box .side-btn {
	margin-right: 30px;
}
.inventory-section .side-bar-column.v3 .contact-box-two .btn-box .side-btn.two {
	margin-right: 0;
}
.inventory-section .side-bar-column.v3 .contact-box-two .content-box h2 {
	font-weight: 700;
	margin-bottom: 0;
}
.inventory-section .side-bar-column.v3 .contact-box-two .content-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	line-height: 27px;
	margin-bottom: 12px;
}
.inventory-section .side-bar-column.v3 .contact-box-two .content-box .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 13px;
}
.inventory-section .side-bar-column.v3 .contact-box-two .content-box .list li {
	position: relative;
	font-size: 14px;
	color: var(--theme-color-dark);
	margin-right: 18px;
}
.inventory-section .side-bar-column.v3 .contact-box-two .content-box .list li:last-child {
	margin-right: 0;
}
.inventory-section .side-bar-column.v3 .contact-box-two .content-box .list li:last-child::before {
	display: none;
}
.inventory-section .side-bar-column.v3 .contact-box-two .content-box .list li::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -11px;
	width: 4px;
	border-radius: 10px;
	height: 4px;
	background-color: #ABAAAA;
}
.inventory-section .side-bar-column.v3 .overview-box {
	border-radius: 14px;
	border: 1px solid #ececec;
	background: var(--bg-1, #F9FBFC);
	padding: 21px 32px 22px;
}
.inventory-section .side-bar-column.v3 .overview-box .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 14px;
}
.inventory-section .side-bar-column.v3 .overview-box .list li {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #e1e1e1;
	padding: 11px 0 9px;
}
.inventory-section .side-bar-column.v3 .overview-box .list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.inventory-section .side-bar-column.v3 .overview-box .list li span {
	font-weight: 400;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 198px;
	display: inline-block;
}
.inventory-section .side-bar-column.v3 .overview-box .list li span img {
	margin-right: 15px;
	position: relative;
	top: -2px;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 30px;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .btn-box .side-btn {
	margin-right: 0;
	margin-bottom: 0;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .btn-box .side-btn.two {
	margin-right: 0;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box h2 {
	font-weight: 700;
	margin-bottom: 0;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	line-height: 27px;
	margin-bottom: 12px;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 13px;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .list li {
	position: relative;
	font-size: 14px;
	color: var(--theme-color-dark);
	margin-right: 18px;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .list li:last-child {
	margin-right: 0;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .list li:last-child::before {
	display: none;
}
.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .list li::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -11px;
	width: 4px;
	border-radius: 10px;
	height: 4px;
	background-color: #ABAAAA;
}
.inventory-section .side-bar-column.v4 .overview-box {
	margin-bottom: 30px;
	background-color: var(--theme-color-light);
}
.inventory-section .side-bar-column.v4 .overview-box .list.v2 li {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.inventory-section.v1 {
	background: var(--bg-1);
}
.inventory-section.v1 .description-sec.v2,
.inventory-section.v1 .features-sec.v2,
.inventory-section.v1 .faqs-section.v2,
.inventory-section.v1 .location-box.v2,
.inventory-section.v1 .form-box.v2,
.inventory-section.v1 .main-review-box,
.inventory-section.v1 .reply-c-box {
	border-radius: 14px;
	border: 1px solid #ececec;
	background: var(--White, #FFF);
	padding: 31px 40px 30px;
	margin-top: 30px;
}
.inventory-section.v1 .description-sec.v2 .form-list li,
.inventory-section.v1 .features-sec.v2 .form-list li,
.inventory-section.v1 .faqs-section.v2 .form-list li,
.inventory-section.v1 .location-box.v2 .form-list li,
.inventory-section.v1 .form-box.v2 .form-list li,
.inventory-section.v1 .main-review-box .form-list li,
.inventory-section.v1 .reply-c-box .form-list li {
	margin-right: 85px;
}
.inventory-section.v1 .description-sec.v2 .reviews .content-box.two,
.inventory-section.v1 .features-sec.v2 .reviews .content-box.two,
.inventory-section.v1 .faqs-section.v2 .reviews .content-box.two,
.inventory-section.v1 .location-box.v2 .reviews .content-box.two,
.inventory-section.v1 .form-box.v2 .reviews .content-box.two,
.inventory-section.v1 .main-review-box .reviews .content-box.two,
.inventory-section.v1 .reply-c-box .reviews .content-box.two {
	padding-bottom: 21px;
	border-bottom: 0;
}
.inventory-section.v1 .features-sec.v2 .list-column {
	margin-bottom: 0;
}
.inventory-section.v1 .faqs-section.v2 {
	padding-bottom: 7px;
}
.inventory-section.v1 .faqs-section.v2 .widget-accordion {
	padding-bottom: 0;
	border-bottom: 0;
}
.inventory-section.v1 .reply-c-box {
	padding-bottom: 40px;
}
.inventory-pager {
	padding: 50px 0 70px;
	background: #050B20;
}
.inventory-pager .inventory-form {
	max-width: 1162px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	padding: 0 10px;
	height: 76px;
}
.inventory-pager .inventory-form .form_boxes {
	width: 16.4%;
	height: 76px;
}
.inventory-pager .inventory-form .form_boxes a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #050B20;
	font-size: 15px;
	height: 100%;
	margin-left: 30px;
}
.inventory-pager .inventory-form .form_boxes a img {
	margin-right: 10px;
}
.inventory-pager .inventory-form .form-submit .theme-btn {
	border-radius: 30px;
}
.inventory-pager .inventory-form .form-submit .theme-btn i {
	position: relative;
	top: 2px;
	margin-right: 8px;
}
.filter-btn {
	display: inline-block;
	padding: 0 35px 0 25px;
	height: 48px;
	line-height: 48px;
	border: 1px solid #e1e1e1;
	border-radius: 120px;
}
.header-style-v1.style-two.bb-0 {
	border-bottom: 0;
}
.inventory-sidebar .categories-box {
	padding: 0;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-top: 1px solid #E1E1E1;
	padding-top: 20px;
}
.inventory-sidebar .categories-box.border-none-bottom {
	margin: 0;
}
.inventory-sidebar .price-box {
	padding: 0;
}
.inventory-sidebar .price-box form .form-column {
	padding-right: 0;
}
.inventory-sidebar .ui-widget.ui-widget-content {
	margin-top: 25px;
}
.inventory-sidebar .show-more {
	display: inline-block;
	color: #635bff;
	font-size: 15px;
}
.inventroy-widget {
	border: 1px solid #E1E1E1;
	padding: 20px;
	border-radius: 14px;
}
.inventroy-widget .row {
	margin-bottom: -20px;
}
.inventroy-widget .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 10px 15px;
	margin-bottom: 20px;
	width: 100%;
}
.inventroy-widget .form_boxes label {
	display: block;
	color: #818181;
	font-size: 13px;
	line-height: 16.93px;
	font-weight: 400;
	margin-bottom: 3px;
}
.inventroy-widget .form_boxes .drop-menu {
	height: unset;
}
.inventroy-widget .form_boxes .drop-menu .dropdown {
	top: 130%;
	border: 1px solid #E1E1E1;
	max-height: unset;
	border-radius: 10px;
}
.inventroy-widget .form_boxes .select {
	padding: 0;
	line-height: 19.53px;
}
.border-none-bottom {
	border-bottom: 0 !important;
}
.widget-sidebar-filter {
	position: fixed;
	top: 0;
	left: 0;
	width: 470px;
	height: 100%;
	background: #fff;
	z-index: 999999;
	overflow-y: auto;
	padding: 30px 50px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.wrap-fixed-sidebar.active .widget-sidebar-filter {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.wrap-fixed-sidebar .inventroy-widget {
	border-radius: 0;
	padding: 0;
	border: 0;
}
.wrap-fixed-sidebar .fixed-sidebar-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 40px;
	padding-bottom: 15px;
}
.wrap-fixed-sidebar .fixed-sidebar-title h3 {
	margin-bottom: 0;
	color: #050B20;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
}
/*** 
	====================================================================
    checkout-section
	====================================================================
***/
.checkout-section {
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
	background-color: var(--theme-color-light);
}
.checkout-section .content-column .inner-column .title {
	font-weight: 500;
	margin-bottom: 23px;
}
.checkout-section .content-column .inner-column form {
	width: 100%;
	margin: 0;
}
.checkout-section .content-column .inner-column form .form-column {
	padding-right: 20px;
}
.checkout-section .content-column .inner-column form .form-column .title {
	font-weight: 500;
}
.checkout-section .content-column .inner-column form .form-column.v2 {
	padding-right: 0;
	padding-left: 20px;
}
.checkout-section .content-column .inner-column form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.checkout-section .content-column .inner-column form .form_boxes textarea {
	width: 100%;
	height: 290px;
}
.checkout-section .content-column .inner-column form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.checkout-section .content-column .inner-column form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.checkout-section .content-column .inner-column form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.checkout-section .content-column .inner-column form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.checkout-section .content-column .inner-column form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.checkout-section .content-column .inner-column form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.checkout-section .content-column .inner-column form .form_boxes .drop-menu {
	height: unset;
}
.checkout-section .content-column .inner-column form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.checkout-section .content-column .inner-column form .form_boxes .drop-menu .select i {
	right: 0;
	top: -13px;
}
.checkout-section .content-column .inner-column form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.checkout-section .content-column .inner-column form .form_boxes.v2 {
	padding-top: 15px;
}
.checkout-section .side-bar {
	padding-left: 42px;
}
.checkout-section .side-bar .order-box {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 31px 30px 35px;
}
.checkout-section .side-bar .order-box .title {
	font-weight: 500;
	color: var(--theme-color-dark);
	margin-bottom: 20px;
}
.checkout-section .side-bar .order-box .order-list li {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #E9E9E9;
	padding-bottom: 9px;
	margin-bottom: 11px;
}
.checkout-section .side-bar .order-box .order-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.checkout-section .side-bar .order-box .order-list .v2 {
	border-bottom: 0;
	color: var(--theme-color1);
	padding-top: 7px;
}
.checkout-section .side-bar .order-box .order-list .v2.v3 {
	padding-top: 5px;
	margin-bottom: 9px;
}
/*** 
	====================================================================
    dealler-section
	====================================================================
***/
.dealer-ship-section {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 120px;
	border-radius: 80px;
}
.dealer-ship-section .boxcar-title h2 {
	margin-bottom: 48px;
}
.dealer-ship-section .boxcar-title .text {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.pagination-sec {
	text-align: center;
}
.pagination-sec .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.pagination-sec .pagination li:first-child a,
.pagination-sec .pagination li:last-child a {
	border: 1px solid #e1e1e1;
	width: 60px;
	font-size: 30px;
	line-height: 35px;
	border-radius: 50px;
}
.pagination-sec .pagination li a {
	font-size: 15px;
	margin: 0 5px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	text-align: center;
	font-weight: 500;
	padding: 0;
	line-height: 40px;
	border: 0;
	color: var(--theme-color-href);
}
.pagination-sec .pagination li a:hover {
	background-color: var(--theme-color-shade);
	color: var(--theme-color-href);
}
.pagination-sec .text {
	font-size: 14px;
	margin-top: 19px;
}
.dealer-block {
	margin-bottom: 30px;
}
.dealer-block .inner-box {
	text-align: center;
	border-radius: 14px;
	border: 1px solid #E1E1E1;
	background: var(--theme-color-light);
	padding: 30px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.dealer-block .inner-box:hover {
	border-color: var(--theme-color-dark);
}
.dealer-block .inner-box:hover .content-box .deal-btn {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
}
.dealer-block .inner-box:hover .content-box .deal-btn svg path {
	fill: #fff;
}
.dealer-block .inner-box .image-box {
	margin-bottom: 22px;
	height: 170px;
	line-height: 170px;
}
.dealer-block .inner-box .content-box .title {
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 5px;
}
.dealer-block .inner-box .content-box .text {
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 30px;
	padding: 0 30px;
}
.dealer-block .inner-box .content-box .deal-btn {
	border-radius: 12px;
	border: 1px solid var(--theme-color1);
	background: var(--theme-color-light);
	height: 54px;
	line-height: 54px;
	width: 100%;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	font-family: var(--title-font);
	color: var(--theme-color1);
}
.dealer-block .inner-box .content-box .deal-btn svg {
	position: relative;
	top: -2px;
	margin-left: 10px;
}
/*** 
	====================================================================
    dealership-section
	====================================================================
***/
.dealership-section {
	position: relative;
	padding: 120px 0;
}
.dealership-block .inner-box {
	position: relative;
	border: 1px solid #e1e1e1;
	border-radius: 14px;
	padding: 19px 19px 29px;
}
.dealership-block .inner-box:hover .image-box .image {
	border-radius: 14px;
}
.dealership-block .inner-box:hover .image-box .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.dealership-block .inner-box:hover .content-box .read-more {
	background-color: var(--theme-color1);
	color: var(--theme-color-light);
}
.dealership-block .inner-box .image-box .image {
	border-radius: 14px;
	overflow: hidden;
}
.dealership-block .inner-box .image-box .image img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.dealership-block .inner-box .content-box {
	margin-top: 24px;
}
.dealership-block .inner-box .content-box .title {
	font-weight: 500;
	margin-bottom: 6px;
}
.dealership-block .inner-box .content-box .text {
	line-height: 26px;
	margin-bottom: 31px;
}
.dealership-block .inner-box .content-box .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 14px 23px 12px;
	text-align: center;
	border-radius: 12px;
	width: 100%;
	border: 1px solid var(--theme-color1);
	background: var(--White, var(--theme-color-light));
	display: inline-block;
	color: var(--theme-color1);
}
.dealership-block .inner-box .content-box .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color1);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
/*** 
	====================================================================
    dealership-section
	====================================================================
***/
.dealer-ship-section-two {
	background-color: var(--theme-color-light);
	position: relative;
	padding: 52px 0 0;
	border-radius: 80px;
}
.dealer-ship-section-two .inner-column .brand-box {
	position: relative;
	padding-left: 294px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 53px;
}
.dealer-ship-section-two .inner-column .brand-box .image-box {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}
.dealer-ship-section-two .inner-column .brand-box .content-box {
	position: relative;
	top: -10px;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .title {
	font-weight: 500;
	margin-bottom: 4px;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .contact-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 22px;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .contact-list li {
	position: relative;
	font-size: 15px;
	color: var(--theme-color-dark);
	padding-left: 35px;
	margin-right: 32px;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .contact-list li:last-child {
	margin-right: 0;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .contact-list li .icon {
	position: absolute;
	top: -2px;
	left: 0;
	font-size: 20px;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 21px;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .brand-btn {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	border-radius: 12px;
	border: 1px solid var(--color-secondary, #635bff);
	background: var(--White, #FFF);
	height: 54px;
	line-height: 54px;
	display: inline-block;
	padding: 0 39px;
}
.dealer-ship-section-two .inner-column .brand-box .content-box .brand-btn svg {
	margin-left: 10px;
	position: relative;
	top: -1px;
}
.dealer-ship-section-two .inner-column .description-sec {
	margin-top: 52px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 50px;
}
.dealer-ship-section-two .inner-column .description-sec .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 43px;
}
.dealer-ship-section-two .inner-column .description-sec .text {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column .description-sec .text.two {
	margin-bottom: 24px;
}
.dealer-ship-section-two .inner-column .service-box {
	margin-top: 52px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 37px;
}
.dealer-ship-section-two .inner-column .service-box .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 33px;
}
.dealer-ship-section-two .inner-column .service-box .list-sec {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dealer-ship-section-two .inner-column .service-box .list-sec .service-list .inner-title {
	font-size: 18px;
	font-weight: 500;
}
.dealer-ship-section-two .inner-column .service-box .list-sec .service-list .list-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dealer-ship-section-two .inner-column .service-box .list-sec .service-list .list-box .list li {
	font-size: 15px;
	color: var(--theme-color-dark);
	line-height: 26px;
	margin-bottom: 15px;
}
.dealer-ship-section-two .inner-column .service-box .list-sec .service-list .list-box .list.two {
	margin-right: 65px;
}
.dealer-ship-section-two .inner-column .service-box .list-sec .service-list.two {
	margin-right: 143px;
}
.dealer-ship-section-two .inner-column .location-box {
	margin-top: 52px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 51px;
}
.dealer-ship-section-two .inner-column .location-box .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 22px;
}
.dealer-ship-section-two .inner-column .location-box .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	max-width: 431px;
	margin-bottom: 14px;
}
.dealer-ship-section-two .inner-column .location-box .brand-btn {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
	display: inline-block;
	margin-bottom: 22px;
}
.dealer-ship-section-two .inner-column .location-box .brand-btn svg {
	margin-left: 9px;
	position: relative;
	top: -1px;
}
.dealer-ship-section-two .inner-column .location-box iframe {
	width: 100%;
	height: 450px;
	border-radius: 20px;
}
.dealer-ship-section-two .inner-column .review-sec {
	margin-top: 52px;
}
.dealer-ship-section-two .inner-column .review-sec .title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 30px;
}
.dealer-ship-section-two .inner-column .review-sec .review-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .rating-box {
	position: relative;
	width: 200px;
	height: 200px;
	border: 10px solid #E9F2FF;
	border-radius: 50%;
	margin-right: 39px;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .rating-box .content-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .rating-box .content-box span {
	color: var(--theme-color1);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .rating-box .content-box .title {
	font-size: 40px;
	font-weight: 700;
	color: var(--theme-color1);
	margin-bottom: -1px;
	margin-top: -3px;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .rating-box .content-box small {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color1);
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list {
	width: 303px;
	margin-top: 6px;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 5px;
	margin-bottom: 14px;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list li:last-child {
	padding-bottom: 0;
	border: 0;
	margin-bottom: 0;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list li .review-title span {
	display: block;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-bottom: -5px;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list li .review-title small {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list li sub {
	font-weight: 500;
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list li sub i {
	color: var(--theme-color1);
	margin-right: 9px;
}
.dealer-ship-section-two .inner-column .review-sec .review-box .review-list.two {
	margin-right: 54px;
}
.dealer-ship-section-two .inner-column .reviews {
	margin-top: 38px;
}
.dealer-ship-section-two .inner-column .reviews .title {
	margin-bottom: 23px;
}
.dealer-ship-section-two .inner-column .reviews .auther-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 14px;
}
.dealer-ship-section-two .inner-column .reviews .auther-name span {
	font-size: 14px;
	font-weight: 500;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: var(--theme-color-dark);
	border-radius: 50%;
	text-align: center;
	color: var(--theme-color-light);
	display: inline-block;
	margin-right: 12px;
}
.dealer-ship-section-two .inner-column .reviews .auther-name .name {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	margin-right: 17px;
}
.dealer-ship-section-two .inner-column .reviews .auther-name small {
	font-size: 14px;
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column .reviews .rating-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dealer-ship-section-two .inner-column .reviews .rating-list .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dealer-ship-section-two .inner-column .reviews .rating-list .list li {
	font-size: 10px;
	margin-right: 4px;
	color: var(--theme-color1);
}
.dealer-ship-section-two .inner-column .reviews .rating-list .list li:last-child {
	margin-right: 0;
}
.dealer-ship-section-two .inner-column .reviews .rating-list span {
	font-size: 15px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-left: 12px;
}
.dealer-ship-section-two .inner-column .reviews .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	max-width: 849px;
}
.dealer-ship-section-two .inner-column .image-box {
	margin-top: 23px;
	margin-bottom: 20px;
}
.dealer-ship-section-two .inner-column .image-box img {
	border-radius: 12px;
	margin-right: 14px;
}
.dealer-ship-section-two .inner-column .image-box img:last-child {
	margin-right: 0;
}
.dealer-ship-section-two .inner-column .btn-box .like-btn {
	font-size: 15px;
	color: #818181;
	margin-right: 28px;
}
.dealer-ship-section-two .inner-column .btn-box .like-btn i {
	margin-right: 10px;
}
.dealer-ship-section-two .inner-column .btn-box .like-btn:hover {
	color: var(--theme-color1);
}
.dealer-ship-section-two .inner-column .content-box.two {
	margin-top: 29px;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 60px;
}
.dealer-ship-section-two .inner-column .content-box.two .text {
	margin-bottom: 27px;
}
.dealer-ship-section-two .inner-column .content-box.two .review {
	font-size: 15px;
	color: var(--theme-color1);
	font-weight: 500;
	height: 54px;
	line-height: 54px;
	padding: 0 38px;
	border-radius: 12px;
	border: 1px solid var(--color-secondary, #635bff);
	background: var(--White, #FFF);
	display: inline-block;
	margin-top: 30px;
}
.dealer-ship-section-two .inner-column .content-box.two .review svg {
	margin-left: 10px;
	position: relative;
	top: -1px;
}
.dealer-ship-section-two .inner-column .Reply-sec {
	margin-top: 52px;
	margin-bottom: 20px;
}
.dealer-ship-section-two .inner-column .Reply-sec .text {
	margin-bottom: 30px;
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box .rating-list {
	width: 330px;
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box .rating-list .list-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box .rating-list .list-box span {
	font-size: 15px;
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box .rating-list .list-box .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box .rating-list .list-box .list li {
	font-size: 12px;
	color: var(--theme-color1);
	margin-right: 4px;
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box .rating-list .list-box .list li:last-child {
	margin-right: 0;
}
.dealer-ship-section-two .inner-column .Reply-sec .right-box .rating-list.two {
	margin-right: 144px;
}
.dealer-ship-section-two .inner-column form {
	width: 100%;
	margin: 0;
	margin-left: -12px;
}
.dealer-ship-section-two .inner-column form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.dealer-ship-section-two .inner-column form .form_boxes textarea {
	width: 100%;
	height: 200px;
}
.dealer-ship-section-two .inner-column form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.dealer-ship-section-two .inner-column form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.dealer-ship-section-two .inner-column form .form_boxes .drop-menu {
	height: unset;
}
.dealer-ship-section-two .inner-column form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.dealer-ship-section-two .inner-column form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.dealer-ship-section-two .inner-column form .form_boxes.v2 {
	padding-top: 14px;
}
.dealer-ship-section-two .inner-column form .theme-btn {
	background: #635bff;
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	padding: 0 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dealer-ship-section-two .inner-column form .theme-btn svg {
	margin-left: 10px;
}
.dealer-ship-section-two .side-bar .message {
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-light);
	height: 54px;
	width: 100%;
	line-height: 54px;
	text-align: center;
	background-color: var(--theme-color1);
	display: inline-block;
	border: 1px solid var(--theme-color1);
	border-radius: 12px;
	margin-bottom: 30px;
}
.dealer-ship-section-two .side-bar .message svg {
	margin-left: 9px;
	position: relative;
	top: -1px;
}
.dealer-ship-section-two .side-bar .schedule-sec {
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	background: var(--theme-color-light);
	padding: 23px 30px 7px;
}
.dealer-ship-section-two .side-bar .schedule-sec .title {
	font-weight: 500;
}
.dealer-ship-section-two .side-bar .schedule-sec .schedule-list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 13px;
}
.dealer-ship-section-two .side-bar .schedule-sec .schedule-list li span {
	font-weight: 500;
}
/*** 
	====================================================================
    inspiration section
	====================================================================
***/
.boxcar-inspiration-section {
	position: relative;
	padding: 120px 0;
}
.boxcar-inspiration-section .right-box .service-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.boxcar-inspiration-section .right-box .service-list li {
	margin-right: 28px;
}
.boxcar-inspiration-section .right-box .service-list li:last-child {
	margin-right: 0;
}
.boxcar-inspiration-section .right-box .service-list li a {
	font-weight: 500;
	color: var(--theme-color-dark);
	padding: 14px 25px 15px;
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	display: inline-block;
	color: #050B20;
}
.boxcar-inspiration-section .right-box .service-list li a:hover {
	background: #050B20;
	color: #fff;
	border-color: transparent;
}
/*** 
	====================================================================
    inspiration section two
	====================================================================
***/
.boxcar-inspiration-section-two {
	position: relative;
	padding: 120px 0;
}
.boxcar-inspiration-section-two .right-box-two {
	border-radius: 14px;
	background-color: var(--theme-color-dark);
	padding: 120px 150px;
}
.boxcar-inspiration-section-two .right-box-two .uper-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 105px;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .content-box {
	position: relative;
	padding-left: 122px;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .content-box .icon {
	position: absolute;
	top: 7px;
	left: 0;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .content-box .boxcar-title {
	margin-bottom: 0;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .content-box .boxcar-title .text {
	margin-top: 14px;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .btn-box {
	margin-bottom: 10px;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .btn-box .read-more {
	font-weight: 500;
	font-size: 15px;
	font-family: var(--title-font);
	line-height: 26px;
	text-transform: capitalize;
	padding: 15px 27px 14px;
	border-radius: 12px;
	background: var(--theme-color1);
	display: inline-block;
	color: var(--theme-color-light);
	margin-right: 26px;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .btn-box .read-more:last-child {
	margin-right: 0;
}
.boxcar-inspiration-section-two .right-box-two .uper-box .btn-box .read-more svg {
	position: relative;
	top: -4px;
	color: var(--theme-color-light);
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.boxcar-inspiration-section-two .right-box .boxcar-title {
	margin-bottom: 24px;
}
.boxcar-inspiration-section-two .right-box .boxcar-title h6 {
	font-size: 14px;
	color: var(--theme-color-light);
}
.boxcar-inspiration-section-two .right-box .service-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.boxcar-inspiration-section-two .right-box .service-list li {
	margin-right: 28px;
}
.boxcar-inspiration-section-two .right-box .service-list li:last-child {
	margin-right: 0;
}
.boxcar-inspiration-section-two .right-box .service-list li a {
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 14px 25px 15px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: inline-block;
}
.boxcar-inspiration-section-two .right-box .service-list li a:hover {
	background: var(--theme-color1);
	color: #fff;
	border-color: transparent;
}
/***
	==================================================================
	Main Footer
	==================================================================
***/
.boxcar-footer {
	position: relative;
	background-color: var(--bg-theme-color2);
	/* Widget Section */
}
.boxcar-footer .bg {
	background-size: auto;
}
.boxcar-footer .footer-bg-1 {
	background-image: url(../images/icons/footer-bg-1.png);
	background-color: #101A29;
	background-position: left bottom;
}
.boxcar-footer .footer-bg-2 {
	background-image: url(../images/icons/footer-bg-2.png);
	background-position: right top;
}
.boxcar-footer .footer-bg-3 {
	background-image: url(../images/icons/footer-bg-3.png);
	background-position: right bottom;
}
.boxcar-footer .footer-bg-4 {
	background-image: url(../images/icons/footer-bg-4.png);
	background-position: right bottom;
}
.boxcar-footer .footer-bg-5 {
	background-image: url(../images/icons/footer-bg-5.png);
	background-position: center;
	background-size: cover;
}
.boxcar-footer .footer-bg-6 {
	background-image: url(../images/icons/footer-bg-6.png);
	background-position: right top;
}
.boxcar-footer .footer-bg-7 {
	background-image: url(../images/icons/footer-bg-7.png);
}
.boxcar-footer .footer-bg-8 {
	background-image: url(../images/icons/footer-bg-8.png);
}
.boxcar-footer .footer-bg-9 {
	background-image: url(../images/icons/footer-bg-9.png);
	background-position: right bottom;
}
.boxcar-footer .footer-bg-10 {
	background-image: url(../images/icons/footer-bg-10.png);
	background-position: right bottom;
}
.boxcar-footer .footer-bg-11 {
	background-image: url(../images/icons/footer-bg-11.png);
}
.boxcar-footer .widgets-section {
	position: relative;
	z-index: 999;
}
.boxcar-footer .footer-column {
	position: relative;
	margin-bottom: 30px;
}
.boxcar-footer .footer-widget {
	position: relative;
}
.boxcar-footer .widget-title {
	position: relative;
	color: var(--theme-color-light);
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 20px;
}
.boxcar-footer .widget-content {
	position: relative;
}
.boxcar-footer .widget-content .text {
	color: var(--theme-color-light);
}
.recent-post {
	position: relative;
	margin-bottom: 30px;
}
.recent-post:last-child {
	margin-bottom: 0;
}
.recent-post .inner {
	position: relative;
	padding-left: 100px;
	min-height: 80px;
}
.recent-post .inner:hover .post-thumb img {
	opacity: 0.7;
}
.recent-post .inner .post-thumb {
	position: absolute;
	left: 0;
	top: 10px;
	height: 80px;
	width: 80px;
	border-radius: 5px;
	overflow: hidden;
}
.recent-post .inner .post-thumb img {
	width: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.recent-post .inner .post-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--theme-color-light);
	line-height: 30px;
	margin-bottom: 5px;
}
.recent-post .inner .post-info i {
	font-size: 12px;
	margin-right: 10px;
	color: var(--theme-color1);
}
.recent-post .inner .post-title {
	color: var(--theme-color-light);
	letter-spacing: -0.8px;
	margin-bottom: 15px;
}
/*=== Footer Bottom ===*/
.footer-bottom {
	position: relative;
	z-index: 3;
	padding: 29px 0 29px;
	bottom: 0px;
}
.footer-bottom .inner-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media (max-width: 991.98px) {
	.footer-bottom .inner-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.footer-bottom .copyright-text {
	position: relative;
	margin-bottom: 0;
	color: #616670;
}
@media (max-width: 991.98px) {
	.footer-bottom .copyright-text {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		text-align: center;
		margin-top: 10px;
	}
}
.footer-bottom .copyright-text a {
	color: inherit;
}
.footer-bottom .copyright-text a:hover {
	color: #ffffff;
}
.footer-bottom .footer-nav {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
@media (max-width: 575.98px) {
	.footer-bottom .footer-nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.footer-bottom .footer-nav li {
	font-size: 14px;
	line-height: 32px;
	color: #616670;
	margin-left: 25px;
}
.footer-bottom .footer-nav li:first-child {
	margin-left: 0;
}
@media (max-width: 575.98px) {
	.footer-bottom .footer-nav li {
		margin: 0 30px !important;
		text-align: center;
	}
}
.footer-bottom .footer-nav li a {
}
.footer-bottom .footer-nav li a:hover {
}
.footer-style-one {
	position: relative;
	background-color: var(--theme-color-dark);
}
.footer-style-one .footer-top .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #293040;
	padding: 60px 0 60px;
	/* Medium devices */
}
.footer-style-one.cus-st-1 .footer-top .right-box {
	padding-top: 140px;
}
@media (max-width: 991px) {
	.footer-style-one .footer-top .right-box {
		display: block;
	}
	.compare-section {
		padding-bottom: 90px;
	}
}
.footer-style-one .footer-top .right-box .top-left {
	/* Medium devices */
}
@media (max-width: 991px) {
	.footer-style-one .footer-top .right-box .top-left {
		margin-bottom: 30px;
	}
}
.footer-style-one .footer-top .right-box .top-left .title {
	font-size: 30px;
	font-weight: 500;
	color: var(--theme-color-light);
	margin-bottom: 3px;
}
.footer-style-one .footer-top .right-box .top-left .text {
	font-size: 15px;
	color: var(--theme-color-light);
	line-height: 26px;
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group {
	position: relative;
	display: inline-block;
	/* Medium devices */
}
@media (max-width: 991px) {
	.footer-style-one .footer-top .right-box .subscribe-form .form-group {
		width: 100%;
	}
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group input {
	width: 567px;
	height: 70px;
	background-color: #1e2336;
	border-radius: 50px;
	padding: 0 36px;
	font-size: 15px;
	/* Medium devices */
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group input::-webkit-input-placeholder {
	color: var(--theme-color-light);
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group input::-moz-placeholder {
	color: var(--theme-color-light);
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group input:-ms-input-placeholder {
	color: var(--theme-color-light);
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group input::-ms-input-placeholder {
	color: var(--theme-color-light);
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group input::placeholder {
	color: var(--theme-color-light);
}
@media (max-width: 991px) {
	.footer-style-one .footer-top .right-box .subscribe-form .form-group input {
		width: 100%;
	}
}
.footer-style-one .footer-top .right-box .subscribe-form .form-group button {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 15px;
	color: var(--theme-color-light);
	background-color: var(--theme-color1);
	padding: 13px 30px 10px;
	border-radius: 50px;
	text-transform: capitalize;
}
.footer-style-one .widgets-section {
	padding: 54px 0 20px;
}
.footer-style-one .links-widget {
	margin-bottom: 30px;
	/* Medium devices */
}
@media (max-width: 991px) {
	.footer-style-one .links-widget {
		padding-left: 0;
	}
}
.footer-style-one .links-widget .user-links {
	position: relative;
}
.footer-style-one .links-widget .user-links li {
	margin-bottom: 7px;
}
.footer-style-one .links-widget .user-links li:last-child {
	margin-bottom: 0;
}
.footer-style-one .links-widget .user-links li a {
	position: relative;
	font-size: 15px;
	display: inline-block;
	color: var(--theme-color-light);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-one .links-widget .user-links li a i {
	position: absolute;
	left: 0;
	color: var(--theme-color1);
}
.footer-style-one .links-widget .user-links li a:hover {
	color: var(--theme-color1);
}
.footer-style-one .links-widget .user-links li a:before {
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 0;
	height: 1px;
	background-color: var(--bg-theme-color1);
	content: "";
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-one .links-widget .user-links li a:hover:before {
	width: 100%;
}
.footer-style-one .links-widget .user-links.style-two li {
	padding-left: 0;
}
.footer-style-one .links-widget .user-links.style-two li:before {
	display: none;
}
.footer-style-one .links-widget .user-links.two-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer-style-one .links-widget .user-links.two-column li {
	width: 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}
.footer-style-one .links-widget .user-links.two li {
	padding-left: 14px;
	margin-bottom: 6px;
}
.footer-style-one .links-widget .user-links.two li i {
	left: -17px;
}
.footer-style-one .social-widget .widget-content .store {
	position: relative;
	background-color: #161d30;
	display: inline-block;
	padding: 6px 40px 10px 70px;
	border-radius: 14px;
	/* Medium devices */
}
@media (max-width: 991px) {
	.footer-style-one .social-widget .widget-content .store {
		margin-right: 10px;
	}
}
.footer-style-one .social-widget .widget-content .store img {
	position: absolute;
	top: 15px;
	left: 30px;
}
.footer-style-one .social-widget .widget-content .store span {
	color: var(--theme-color-light);
	font-size: 13px;
	display: block;
}
.footer-style-one .social-widget .widget-content .store .title {
	font-size: 15px;
	color: var(--theme-color-light);
	font-weight: 500;
	margin-top: -4px;
	margin-bottom: 0;
}
.footer-style-one .social-widget .widget-content .store.two {
	padding-right: 60px;
	margin-top: 10px;
	margin-bottom: 22px;
}
.footer-style-one .social-widget .widget-content .social-icons .title {
	color: var(--theme-color-light);
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 21px;
}
.footer-style-one .social-widget .widget-content .social-icons ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -15px;
}
.footer-style-one .social-widget .widget-content .social-icons ul li a {
	color: var(--theme-color-light);
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
}
.footer-style-one .social-widget .widget-content .social-icons ul li a:hover {
	background-color: #161d30;
}
.footer-style-one .footer-bottom {
	background-color: var(--theme-color-dark);
	border-top: 1px solid #293040;
}
@media (max-width: 575.98px) {
	.footer-style-one .footer-bottom .inner-container .footer-nav {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
.footer-style-one .footer-bottom .inner-container .footer-nav li {
	position: relative;
}
.footer-style-one .footer-bottom .inner-container .footer-nav li:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -13px;
	width: 4px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	height: 4px;
	background: #fff;
	border-radius: 50%;
}
.footer-style-one .footer-bottom .inner-container .footer-nav li:last-child:before {
	display: none;
}
@media (max-width: 575.98px) {
	.footer-style-one .footer-bottom .inner-container .footer-nav li {
		margin: 0 8px !important;
	}
}
.footer-style-one .footer-bottom .inner-container .footer-nav li a {
	color: var(--theme-color-light);
}
.footer-style-one .footer-bottom .inner-container .copyright-text {
	color: var(--theme-color-light);
}
@media (max-width: 575.98px) {
	.footer-style-one .footer-bottom .inner-container .copyright-text {
		text-align: left;
	}
}
.footer-style-two {
	position: relative;
	background-color: unset;
}
.footer-style-two .footer-top .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #E1E1E1;
	padding: 60px 0 60px;
}
.footer-style-two .footer-top .right-box .top-left .title {
	font-size: 30px;
	font-weight: 500;
	color: var(--theme-color-dark);
	margin-bottom: 3px;
}
.footer-style-two .footer-top .right-box .top-left .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	line-height: 26px;
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group {
	position: relative;
	display: inline-block;
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group input {
	width: 567px;
	height: 70px;
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	padding: 0 36px;
	font-size: 15px;
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group input::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group input::-moz-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group input:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group input::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group input::placeholder {
	color: var(--theme-color-dark);
}
.footer-style-two .footer-top .right-box .subscribe-form .form-group button {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 15px;
	color: var(--theme-color-light);
	background-color: var(--theme-color-dark);
	padding: 13px 30px 10px;
	border-radius: 14px;
	text-transform: capitalize;
}
.footer-style-two .widgets-section {
	padding: 54px 0 20px;
}
.footer-style-two .widget-title {
	color: var(--theme-color-dark);
}
.footer-style-two .links-widget {
	padding-left: 18px;
	margin-bottom: 30px;
}
@media (max-width: 767.98px) {
	.footer-style-two .links-widget {
		padding-left: 0;
	}
}
.footer-style-two .links-widget .user-links {
	position: relative;
}
.footer-style-two .links-widget .user-links li {
	margin-bottom: 7px;
}
.footer-style-two .links-widget .user-links li:last-child {
	margin-bottom: 0;
}
.footer-style-two .links-widget .user-links li a {
	position: relative;
	font-size: 15px;
	display: inline-block;
	color: var(--theme-color-dark);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-two .links-widget .user-links li a i {
	position: absolute;
	left: 0;
	color: var(--theme-color1);
}
.footer-style-two .links-widget .user-links li a:hover {
	color: var(--theme-color1);
}
.footer-style-two .links-widget .user-links li a:before {
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 0;
	height: 1px;
	background-color: var(--bg-theme-color1);
	content: "";
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-two .links-widget .user-links li a:hover:before {
	width: 100%;
}
.footer-style-two .links-widget .user-links.style-two li {
	padding-left: 0;
}
.footer-style-two .links-widget .user-links.style-two li:before {
	display: none;
}
.footer-style-two .links-widget .user-links.two-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer-style-two .links-widget .user-links.two-column li {
	width: 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}
.footer-style-two .links-widget .user-links.two li {
	padding-left: 14px;
	margin-bottom: 6px;
}
.footer-style-two .links-widget .user-links.two li i {
	left: -17px;
}
.footer-style-two .social-widget .widget-content .text {
	line-height: 35px;
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 28px;
}
.footer-style-two .social-widget .widget-content .social-icons .title {
	color: var(--theme-color-dark);
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 21px;
}
.footer-style-two .social-widget .widget-content .social-icons ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -15px;
}
.footer-style-two .social-widget .widget-content .social-icons ul li a {
	color: var(--theme-color-dark);
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
}
.footer-style-two .social-widget .widget-content .social-icons ul li a:hover {
	background-color: #f9fbfc;
}
.footer-style-two .footer-bottom {
	border-top: 1px solid #E1E1E1;
}
@media (max-width: 575.98px) {
	.footer-style-two .footer-bottom .inner-container .footer-nav {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
@media (max-width: 575.98px) {
	.footer-style-two .footer-bottom .inner-container .footer-nav li {
		margin: 0 8px !important;
	}
}
.footer-style-two .footer-bottom .inner-container .footer-nav li a {
	color: var(--theme-color-dark);
}
.footer-style-two .footer-bottom .inner-container .copyright-text {
	color: var(--theme-color-dark);
}
@media (max-width: 575.98px) {
	.footer-style-two .footer-bottom .inner-container .copyright-text {
		text-align: left;
	}
}
.footer-style-two.v8 .widgets-section {
	padding-top: 120px;
}
.footer-style-two.v9 .widgets-section {
	padding-top: 64px;
}
.footer-style-four {
	position: relative;
	background-color: var(--theme-color-dark);
}
.footer-style-four .footer-top .right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #293040;
	padding: 60px 0 60px;
}
.footer-style-four .footer-top .right-box .top-left .title {
	font-size: 35px;
	font-weight: 700;
	font-family: var(--title-font2);
	color: var(--theme-color-light);
	margin-bottom: 12px;
	letter-spacing: 1.75px;
}
.footer-style-four .footer-top .right-box .top-left .text {
	font-size: 15px;
	color: var(--theme-color-light);
	line-height: 26px;
	margin-bottom: 21px;
}
.footer-style-four .footer-top .right-box .top-left .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.footer-style-four .footer-top .right-box .top-left .btn-box .btn-two {
	font-size: 15px;
	font-style: normal;
	display: inline-block;
	font-weight: 500;
	line-height: 28px;
	color: var(--theme-color-light);
	border-radius: 60px;
	padding: 7px 29px 7px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-right: 20px;
}
.footer-style-four .footer-top .right-box .top-left .btn-box .btn-two:last-child {
	margin-right: 0;
}
.footer-style-four .footer-top .right-box .top-left .btn-box .btn-two svg {
	fill: var(--theme-color-light);
	width: 26px;
	height: 26px;
	margin-right: 8px;
}
.footer-style-four .footer-top .right-box .top-right .content-box {
	margin-bottom: 21px;
}
.footer-style-four .footer-top .right-box .top-right .content-box .title {
	font-size: 30px;
	font-weight: 500;
	color: var(--theme-color-light);
	margin-bottom: 3px;
}
.footer-style-four .footer-top .right-box .top-right .content-box .text {
	font-size: 15px;
	color: var(--theme-color-light);
	line-height: 26px;
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group {
	position: relative;
	display: inline-block;
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group input {
	width: 448px;
	height: 70px;
	background-color: #1e2336;
	border-radius: 14px;
	padding: 0 22px;
	font-size: 15px;
	margin-bottom: 11px;
	color: #fff;
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group input::-webkit-input-placeholder {
	color: var(--theme-color-light);
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group input::-moz-placeholder {
	color: var(--theme-color-light);
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group input:-ms-input-placeholder {
	color: var(--theme-color-light);
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group input::-ms-input-placeholder {
	color: var(--theme-color-light);
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group input::placeholder {
	color: var(--theme-color-light);
}
.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 448px;
	font-size: 15px;
	color: var(--theme-color-light);
	background-color: var(--theme-color1);
	padding: 19px 30px 14px;
	border-radius: 14px;
	text-transform: capitalize;
}
.footer-style-four .widgets-section {
	padding: 54px 0 20px;
}
.footer-style-four .links-widget {
	padding-left: 18px;
	margin-bottom: 30px;
}
@media (max-width: 767.98px) {
	.footer-style-four .links-widget {
		padding-left: 0;
	}
}
.footer-style-four .links-widget .user-links {
	position: relative;
}
.footer-style-four .links-widget .user-links li {
	margin-bottom: 7px;
}
.footer-style-four .links-widget .user-links li:last-child {
	margin-bottom: 0;
}
.footer-style-four .links-widget .user-links li a {
	position: relative;
	font-size: 15px;
	display: inline-block;
	color: var(--theme-color-light);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-four .links-widget .user-links li a i {
	position: absolute;
	left: 0;
	color: var(--theme-color1);
}
.footer-style-four .links-widget .user-links li a:hover {
	color: var(--theme-color1);
}
.footer-style-four .links-widget .user-links li a:before {
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 0;
	height: 1px;
	background-color: var(--bg-theme-color1);
	content: "";
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-four .links-widget .user-links li a:hover:before {
	width: 100%;
}
.footer-style-four .links-widget .user-links.style-two li {
	padding-left: 0;
}
.footer-style-four .links-widget .user-links.style-two li:before {
	display: none;
}
.footer-style-four .links-widget .user-links.two-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer-style-four .links-widget .user-links.two-column li {
	width: 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}
.footer-style-four .links-widget .user-links.two li {
	padding-left: 14px;
	margin-bottom: 6px;
}
.footer-style-four .links-widget .user-links.two li i {
	left: -17px;
}
.footer-style-four .social-widget .widget-content .store {
	position: relative;
	background-color: #161d30;
	display: inline-block;
	padding: 6px 40px 10px 70px;
	border-radius: 14px;
}
.footer-style-four .social-widget .widget-content .store img {
	position: absolute;
	top: 15px;
	left: 30px;
}
.footer-style-four .social-widget .widget-content .store span {
	color: var(--theme-color-light);
	font-size: 13px;
	display: block;
}
.footer-style-four .social-widget .widget-content .store .title {
	font-size: 15px;
	color: var(--theme-color-light);
	font-weight: 500;
	margin-top: -4px;
	margin-bottom: 0;
}
.footer-style-four .social-widget .widget-content .store.two {
	padding-right: 60px;
	margin-top: 10px;
	margin-bottom: 22px;
}
.footer-style-four .social-widget .widget-content .social-icons .title {
	color: var(--theme-color-light);
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 21px;
}
.footer-style-four .social-widget .widget-content .social-icons ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -15px;
}
.footer-style-four .social-widget .widget-content .social-icons ul li a {
	color: var(--theme-color-light);
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
}
.footer-style-four .social-widget .widget-content .social-icons ul li a:hover {
	background-color: #161d30;
}
.footer-style-four .footer-bottom {
	background-color: var(--theme-color-dark);
	border-top: 1px solid #293040;
}
@media (max-width: 575.98px) {
	.footer-style-four .footer-bottom .inner-container .footer-nav {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
@media (max-width: 575.98px) {
	.footer-style-four .footer-bottom .inner-container .footer-nav li {
		margin: 0 8px !important;
	}
}
.footer-style-four .footer-bottom .inner-container .footer-nav li a {
	color: var(--theme-color-light);
}
.footer-style-four .footer-bottom .inner-container .copyright-text {
	color: var(--theme-color-light);
}
@media (max-width: 575.98px) {
	.footer-style-four .footer-bottom .inner-container .copyright-text {
		text-align: left;
	}
}
.footer-style-five {
	position: relative;
	background-color: unset;
}
.footer-style-five .footer-top .right-box {
	text-align: center;
	border-bottom: 1px solid #E1E1E1;
	padding: 60px 0 60px;
}
.footer-style-five .footer-top .right-box .top-left {
	margin-bottom: 21px;
}
.footer-style-five .footer-top .right-box .top-left .title {
	font-size: 30px;
	font-weight: 500;
	color: var(--theme-color-dark);
	margin-bottom: 3px;
}
.footer-style-five .footer-top .right-box .top-left .text {
	font-size: 15px;
	color: var(--theme-color-dark);
	line-height: 26px;
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group {
	position: relative;
	display: inline-block;
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group input {
	width: 567px;
	height: 70px;
	border-radius: 14px;
	border: 1px solid var(--Border, #E1E1E1);
	padding: 0 36px;
	font-size: 15px;
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group input::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group input::-moz-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group input:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group input::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group input::placeholder {
	color: var(--theme-color-dark);
}
.footer-style-five .footer-top .right-box .subscribe-form .form-group button {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 15px;
	color: var(--theme-color-light-text);
	background-color: var(--theme-color1);
	padding: 13px 30px 10px;
	border-radius: 14px;
	text-transform: capitalize;
}
.footer-style-five .widgets-section {
	padding: 54px 0 20px;
}
.footer-style-five .widget-title {
	color: var(--theme-color-dark);
}
.footer-style-five .links-widget {
	padding-left: 18px;
	margin-bottom: 30px;
}
@media (max-width: 767.98px) {
	.footer-style-five .links-widget {
		padding-left: 0;
	}
}
.footer-style-five .links-widget .user-links {
	position: relative;
}
.footer-style-five .links-widget .user-links li {
	margin-bottom: 7px;
}
.footer-style-five .links-widget .user-links li:last-child {
	margin-bottom: 0;
}
.footer-style-five .links-widget .user-links li a {
	position: relative;
	font-size: 15px;
	display: inline-block;
	color: var(--theme-color-dark);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-five .links-widget .user-links li a i {
	position: absolute;
	left: 0;
	color: var(--theme-color1);
}
.footer-style-five .links-widget .user-links li a:hover {
	color: var(--theme-color1);
}
.footer-style-five .links-widget .user-links li a:before {
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 0;
	height: 1px;
	background-color: var(--bg-theme-color1);
	content: "";
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer-style-five .links-widget .user-links li a:hover:before {
	width: 100%;
}
.footer-style-five .links-widget .user-links.style-two li {
	padding-left: 0;
}
.footer-style-five .links-widget .user-links.style-two li:before {
	display: none;
}
.footer-style-five .links-widget .user-links.two-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer-style-five .links-widget .user-links.two-column li {
	width: 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}
.footer-style-five .links-widget .user-links.two li {
	padding-left: 14px;
	margin-bottom: 6px;
}
.footer-style-five .links-widget .user-links.two li i {
	left: -17px;
}
.footer-style-five .social-widget .widget-content .text {
	line-height: 35px;
	font-size: 15px;
	color: var(--theme-color-dark);
	margin-bottom: 28px;
}
.footer-style-five .social-widget .widget-content .social-icons .title {
	color: var(--theme-color-dark);
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 21px;
}
.footer-style-five .social-widget .widget-content .social-icons ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -15px;
}
.footer-style-five .social-widget .widget-content .social-icons ul li a {
	color: var(--theme-color-dark);
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
}
.footer-style-five .social-widget .widget-content .social-icons ul li a:hover {
	background-color: #f9fbfc;
}
.footer-style-five .footer-bottom {
	border-top: 1px solid #E1E1E1;
}
@media (max-width: 575.98px) {
	.footer-style-five .footer-bottom .inner-container .footer-nav {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
@media (max-width: 575.98px) {
	.footer-style-five .footer-bottom .inner-container .footer-nav li {
		margin: 0 8px !important;
	}
}
.footer-style-five .footer-bottom .inner-container .footer-nav li a {
	color: var(--theme-color-dark);
}
.footer-style-five .footer-bottom .inner-container .copyright-text {
	color: var(--theme-color-dark);
}
@media (max-width: 575.98px) {
	.footer-style-five .footer-bottom .inner-container .copyright-text {
		text-align: left;
	}
}
.footer-style-five.v6 {
	background-color: var(--theme-color-dark);
}
.footer-style-five.v6 .footer-top .right-box {
	border-bottom: 1px solid #2a3041;
}
.footer-style-five.v6 .footer-top .right-box .top-left .title {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .footer-top .right-box .top-left .text {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .widget-title {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .links-widget .user-links li a {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .social-widget .widget-content .text {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .social-widget .widget-content .social-icons .title {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .social-widget .widget-content .social-icons ul li a {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .footer-bottom {
	background-color: var(--theme-color-dark);
	border-top: 1px solid #2a3041;
}
.footer-style-five.v6 .footer-bottom .inner-container .copyright-text {
	color: var(--theme-color-light);
}
.footer-style-five.v6 .footer-bottom .inner-container .footer-nav li a {
	color: var(--theme-color-light);
}
/*** 
	====================================================================
	calculater-section
	====================================================================
***/
.calculater-section {
	padding: 120px 0;
}
.calculater-section.v2 .right-box {
	background: #050B20;
}
.calculater-section .boxcar-container {
	max-width: 100%;
	padding: 0 50px;
}
.calculater-section .right-box {
	background-color: #EEF1FB;
	border-radius: 14px;
}
.calculater-section .content-column .inner-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	max-width: 565px;
	margin: 0 auto;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.calculater-section .content-column form {
	width: 100%;
	margin: 0;
}
.calculater-section .content-column form .form_boxes {
	background-color: #fff;
	border-radius: 12px;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	padding: 7px 15px;
	margin-bottom: 30px;
}
.calculater-section .content-column form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 13px;
	font-weight: 400;
}
.calculater-section .content-column form .form_boxes .drop-menu {
	height: unset;
}
.calculater-section .content-column form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.calculater-section .content-column form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
}
.calculater-section .content-column form .theme-btn {
	background: #635bff;
	width: 100%;
	color: #fff;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.calculater-section .content-column form .theme-btn svg,
.calculater-section .content-column form .theme-btn img {
	margin-left: 10px;
}
.calculater-section .image-column .image-box>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.pointer-none {
	pointer-events: none;
}
====================================================================
login-section
====================================================================
***/
.login-section {
	position: relative;
}
.login-section .inner-container {
	max-width: 448px;
	margin: 0 auto;
}
.login-section nav {
	margin-bottom: 30px;
}
.login-section .nav-tabs .nav-link {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--theme-color-dark);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding: 0 0 7px 0;
	display: inline-block;
	margin-right: 32px;
}
.login-section .nav-tabs .nav-link.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color1);
}
.login-section form {
	width: 100%;
}
.login-section form .form_boxes {
	border-radius: 12px;
	border: 1px solid rgb(225, 225, 225);
	background: var(--color-white, #FFF);
	padding: 7px 15px;
	margin-bottom: 30px;
	width: 100%;
}
.login-section form .form_boxes textarea {
	width: 100%;
	height: 200px;
}
.login-section form .form_boxes textarea::-webkit-input-placeholder {
	color: var(--theme-color-dark);
}
.login-section form .form_boxes textarea::-moz-placeholder {
	color: var(--theme-color-dark);
}
.login-section form .form_boxes textarea:-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.login-section form .form_boxes textarea::-ms-input-placeholder {
	color: var(--theme-color-dark);
}
.login-section form .form_boxes textarea::placeholder {
	color: var(--theme-color-dark);
}
.login-section form .form_boxes label {
	display: block;
	color: #818181;
	font-size: 15px;
	font-weight: 400;
}
.login-section form .form_boxes .drop-menu {
	height: unset;
}
.login-section form .form_boxes .drop-menu .select {
	padding: 0;
	line-height: unset;
}
.login-section form .form_boxes .drop-menu .dropdown {
	padding: 5px 15px;
	margin-top: 10px;
	border-radius: 12px;
	left: -15px;
	width: calc(100% + 30px);
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
.login-section form .form_boxes.v2 {
	padding-top: 14px;
}
.login-section form .theme-btn {
	background: #635bff;
	color: #fff;
	width: 100%;
	height: 54px;
	line-height: 54px;
	border-radius: 12px;
	padding: 0 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.login-section form .theme-btn svg {
	margin-left: 10px;
}
.login-section .form-box.two form {
	padding-bottom: 47px;
}
.login-section .form-box.two form .btn-box {
	margin-bottom: 0;
	margin-top: 29px;
}
.login-section .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 25px;
	margin-top: -3px;
	/* Hide the browser's default checkbox */
	/* Create a custom checkbox */
	/* On mouse-over, add a grey background color */
	/* When the checkbox is checked, add a blue background */
	/* Create the checkmark/indicator (hidden when not checked) */
	/* Show the checkmark when checked */
	/* Style the checkmark/indicator */
}
.login-section .btn-box .pasword-btn {
	text-decoration-line: underline;
	font-size: 15px;
	color: var(--theme-color-dark);
}
.login-section .btn-box .contain {
	display: block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	font-size: 15px;
	color: var(--theme-color-dark);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.login-section .btn-box .contain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.login-section .btn-box .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	border: 1px solid rgb(225, 225, 225);
	border-radius: 5px;
}
.login-section .btn-box .contain input:checked~.checkmark {
	background-color: #2196F3;
}
.login-section .btn-box .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.login-section .btn-box .contain input:checked~.checkmark:after {
	display: block;
}
.login-section .btn-box .contain .checkmark:after {
	left: 5px;
	top: 3px;
	width: 8px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.login-section .btn-box-three {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: -3px;
	/* Hide the browser's default radio button */
	/* Create a custom radio button */
	/* When the radio button is checked, add a blue background */
	/* Create the indicator (the dot/circle - hidden when not checked) */
	/* Show the indicator (dot/circle) when checked */
	/* Style the indicator (dot/circle) */
}
.login-section .btn-box-three .contain {
	display: block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	font-size: 15px;
	color: var(--theme-color-dark);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-right: 15px;
	margin-bottom: 26px;
}
.login-section .btn-box-three .contain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.login-section .btn-box-three .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	border: 1px solid rgb(225, 225, 225);
	border-radius: 50%;
}
.login-section .btn-box-three .contain input:checked~.checkmark {
	background-color: var(--theme-color-dark);
}
.login-section .btn-box-three .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.login-section .btn-box-three .contain input:checked~.checkmark:after {
	display: block;
}
.login-section .btn-box-three .contain .checkmark:after {
	top: 3px;
	left: 3px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: white;
}
.login-section .btn-box-two {
	position: relative;
}
.login-section .btn-box-two span {
	color: var(--theme-color-dark);
	position: absolute;
	top: -15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--theme-color-light);
	padding: 0 9px;
}
.login-section .btn-box-two .social-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 38px;
}
.login-section .btn-box-two .social-btns .fb-btn {
	font-size: 14px;
	color: #1967D2;
	padding: 0 33px;
	height: 54px;
	line-height: 54px;
	display: inline-block;
	border-radius: 8px;
	border: 1px solid var(--color-one, #1967D2);
	background: var(--color-white, #FFF);
}
.login-section .btn-box-two .social-btns .fb-btn i {
	margin-right: 9px;
	color: #1967D2;
}
.login-section .btn-box-two .social-btns .fb-btn.two {
	color: #D93025;
	border-color: #D93025;
}
.login-section .btn-box-two .social-btns .fb-btn.two i {
	color: #D93025;
}
.login-section .form-sec.two {
	margin-top: 113px;
}
.form_boxes input {
	width: 100%;
	color: #000;
}
.form_boxes input::-webkit-input-placeholder {
	color: #000;
}
.form_boxes input::-moz-placeholder {
	color: #000;
}
.form_boxes input:-ms-input-placeholder {
	color: #000;
}
.form_boxes input::-ms-input-placeholder {
	color: #000;
}
.form_boxes input::placeholder {
	color: #000;
}
.theme-btn img {
	margin-left: 10px;
}
.boxcar-team-section .team-block {
	margin-bottom: 0;
}
.car-block-five .inner-box .image-box,
.car-block-seven .inner-box .image-box {
	width: 100%;
}
.car-block-five .inner-box .image-box img,
.car-block-seven .inner-box .image-box img {
	width: 100%;
}
.news-letter-section .image-column .inner-column {
	height: 100%;
}
.boxcar-pricing-section .image-column {
	margin-bottom: 0;
}
.blog-block-four .inner-box .image-box .image img {
	width: 100%;
}
.blog-section-four .inner-column-two {
	margin-right: 0;
}
.blog-section-five .right-box-two .list-sec .inner-column .list li {
	line-height: unset;
	margin-bottom: 20px;
}
.cars-section-four .form-box .form_boxes .drop-menu {
	margin-bottom: 10px;
}
.inventory-section .side-bar-column.v3 .overview-box .list li span {
	text-align: left;
}
.inventory-section .side-bar-column.v4 .overview-box .list.v2 li {
	text-align: right;
}
.boxcar-team-section.v1 .team-block {
	margin-bottom: 50px;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one .dropdown {
	left: auto;
	right: 0;
}
.header-style-ten .header-inner .current-dropdown.right-one .dropdown .nav-sub {
	position: relative;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown.right-one .dropdown::before {
	left: unset;
	right: 20px;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .mega-menu {
	left: -245px;
	margin-top: 20px;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .mega-menu::before {
	left: 260px;
}
/* .header-style-ten .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown .nav-sub:hover .subnav-menu {
	visibility: visible;
	opacity: 1;
} */
.gm-control-active.gm-fullscreen-control {
	top: 20px !important;
	right: 30px !important;
}
@media only screen and (max-width: 1520px) {
	.hheader-style-v4 .header-inner .c-box .nav-out-bar {
		display: none;
	}
	.hheader-style-v4 .header-inner .right-box {
		margin-left: auto;
	}
	.brand-block-four {
		width: 10%;
	}
	.contact-us-section .map-sec {
		margin: 0;
	}
}
/* Medium Large devices */
@media (max-width: 1399px) {
	.boxcar-banner-section-two {
		height: 100vh;
	}
	.boxcar-banner-section-two .banner-slider {
		height: 100%;
	}
	.boxcar-banner-section-two .banner-slider .slick-list,
	.boxcar-banner-section-two .banner-slider .slick-track,
	.boxcar-banner-section-two .banner-slider .banner-slide {
		height: 100%;
	}
	.boxcar-banner-section-two .banner-slider .banner-slide>img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.boxcar-service-section .right-box {
		padding: 70px;
	}
	.hheader-style-v4 .header-inner .c-box .nav-out-bar {
		display: none;
	}
	.hheader-style-v4 .header-inner .right-box {
		margin-left: auto;
	}
	.calculater-section .content-column .inner-column {
		padding: 50px;
	}
	.calculater-section .image-box {
		height: 100%;
	}
	.calculater-section .image-box img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.boxcar-service-section-two .right-box {
		padding: 70px;
	}
	.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box .items {
		margin-bottom: 25px;
	}
	.brand-block-four {
		width: auto;
		margin-bottom: 15px;
	}
	.why-choose-us-section-three .right-box {
		padding: 100px 50px 70px;
	}
	.boxcar-testimonial-section-three .right-box {
		padding: 100px 30px;
	}
	.boxcar-brand-section-three .right-box {
		padding: 70px;
	}
	.boxcar-testimonial-section-three .content-column .inner-column .boxcar-title .text {
		padding-right: 50px;
	}
	.boxcar-inspiration-section-two .right-box-two {
		padding: 120px 50px;
	}
	.why-choose-us-section.v2 .boxcar-container {
		max-width: 100%;
	}
	.boxcar-testimonial-section-four .right-box {
		padding: 120px 15px 150px;
	}
	.boxcar-pricing-section-four.v7 .content-column .inner-column {
		padding-left: 50px;
		padding-bottom: 50px;
	}
	.calculater-section {
		padding-top: 50px;
	}
	.calculater-section .boxcar-container {
		padding: 0 15px;
	}
	.boxcar-service-section.v7 .right-box .content-column .inner-column {
		margin-right: 0;
		margin-top: 0;
	}
	.boxcar-brand-section.v7::before {
		width: 100%;
	}
	.cars-section-ten .right-box {
		padding: 120px 50px;
	}
	.news-letter-section .form-column .inner-column {
		padding-left: 100px;
	}
	.boxcar-brand-section-six .cars-block-six {
		margin-bottom: 20px;
	}
	.boxcar-brand-section-five .right-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.cars-block-five {
		margin-right: 0;
	}
	.boxcar-fun-fact-section-two .fact-counter {
		padding: 104px 70px 79px;
	}
	.header-style-v9 .header-inner .main-menu .navigation>li {
		margin-right: 0;
	}
	.header-style-v9 .header-inner .c-box .nav-out-bar {
		display: none;
	}
	.header-style-v9 .header-inner .c-box .logo {
		left: 0;
	}
	.header-style-v9 .header-inner .right-box {
		width: auto;
	}
	.boxcar-banner-section-nine .banner-content .content-box {
		margin-top: 100px;
	}
	.boxcar-pricing-section-five .content-column .inner-column {
		padding: 0 50px;
		background: transparent;
	}
	.boxcar-pricing-section-five .row {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background: var(--theme-color-dark);
	}
	.boxcar-pricing-section-six .content-column .inner-column {
		padding: 0 50px;
	}
	.boxcar-pricing-section-six .row {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.header-style-ten .header-inner .c-box .nav-out-bar {
		margin-left: 30px;
		margin-right: auto;
	}
	.dashboard-widget .content-column {
		width: calc(100% - 300px);
	}
	.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box {
		margin-right: 20px;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box {
		margin-bottom: 30px;
	}
	.car-block-forteen .inner-box {
		display: block;
		border: 1px solid var(--Border, #E1E1E1);
		border-radius: 14px;
	}
	.car-block-forteen .inner-box .content-box {
		width: 100%;
		border: 0;
	}
	.car-block-forteen .inner-box .image-box {
		width: 100%;
	}
	.car-block-forteen .inner-box .image-box .image img {
		width: 100%;
		margin-bottom: 20px;
	}
	.cars-section-thirteen .boxcar-title-three .service-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cars-section-thirteen .boxcar-title-three .service-list li {
		margin-bottom: 15px;
	}
	.service-block-thirteen .image-box {
		width: 150px;
	}
	.service-block-thirteen .image-box .image {
		height: 100%;
	}
	.service-block-thirteen .image-box img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.shop-single-product-slider {
		width: 80%;
	}
	.vehicles-section-three .right-box .auther-info-box {
		margin: 0;
		padding: 40px 15px;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box {
		max-width: 100%;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .btn-box {
		margin-left: 50px;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .btn-box .button {
		min-width: 200px;
		padding: 0 30px;
		height: 60px;
		line-height: 60px;
		text-align: center;
	}
}
/* Large devices */
@media (max-width: 1199px) {
	.boxcar-service-section .right-box .image-column {
		display: none;
	}
	.brand-boxcar-banner-section {
		padding: 100px 0;
	}
	.brand-boxcar-banner-section .content-column .inner-column .title {
		font-size: 50px;
		line-height: 60px;
		max-width: 500px;
	}
	.calculater-section .image-column .image-box {
		display: none;
	}
	.calculater-section .col-lg-6 {
		max-width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
	.calculater-section .content-column .inner-column {
		display: block;
		max-width: 100%;
	}
	.calculater-section .content-column form {
		margin: 0 -15px;
	}
	.boxcar-service-section-two .image-column .inner-column .image-box {
		display: none;
	}
	.boxcar-service-section-two .col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.hheader-style-v4.five .header-inner .mobile-navigation a {
		color: #000;
	}
	.choose-us-block .inner-box .content-box .text {
		padding-right: 0;
	}
	.boxcar-testimonial-section-three .content-column .inner-column .boxcar-title .text {
		padding-right: 0;
	}
	.boxcar-brand-section-three .image-column {
		display: none;
	}
	.boxcar-brand-section-three .content-column .inner-column {
		margin-top: 0;
	}
	.boxcar-banner-section-six::before {
		display: none;
	}
	.hheader-style-v4.v6 .header-inner .mobile-navigation {
		color: #000;
	}
	.hheader-style-v4.v6 .btn {
		display: none;
	}
	.hheader-style-v4.v6 .search {
		display: none;
	}
	.boxcar-banner-section-six .content-column .inner-column {
		padding: 100px 0 100px;
	}
	.boxcar-pricing-section-four .content-column .inner-column {
		padding: 0 0 0 30px;
	}
	.boxcar-fun-fact-section .fact-counter {
		padding: 55px 15px 29px;
	}
	.boxcar-inspiration-section-two .right-box-two {
		padding: 80px 15px;
	}
	.boxcar-inspiration-section-two .right-box-two .uper-box .btn-box .read-more {
		margin: 10px 0;
	}
	.header-style-v7 .header-inner .mobile-navigation a {
		color: #000;
	}
	.why-choose-us-section-four::before {
		display: none;
	}
	.why-choose-us-section-four {
		padding-top: 0;
		padding-bottom: 0;
	}
	.cars-section-nine {
		padding-top: 50px;
	}
	.boxcar-pricing-section-four.v7 .content-column .inner-column {
		padding-top: 0;
	}
	.boxcar-banner-section-v8 .banner-content-v8 {
		padding-top: 70px;
	}
	.news-letter-section .form-column .inner-column {
		padding-left: 30px;
	}
	.boxcar-pricing-section-four.v9 .content-column .inner-column {
		padding: 0 0 0 30px;
	}
	.hheader-style-v4.v10 .header-inner .mobile-navigation a {
		color: #000;
	}
	.boxcar-banner-section-seven .banner-slider-v7 .banner-slide {
		height: 650px;
	}
	.boxcar-banner-section-seven .banner-slider-v7 .banner-slide img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.boxcar-banner-section-seven.v10 form .form_boxes {
		width: 19%;
	}
	.boxcar-pricing-section-six .content-column .inner-column .boxcar-title h2 {
		font-size: 36px;
		line-height: 48px;
	}
	.boxcar-pricing-section-six .content-column .inner-column {
		padding: 0;
	}
	.dashboard-widget .content-column .inner-column .form-box form .form-column {
		width: 50%;
	}
	.dashboard-widget .content-column .inner-column .form-box form .form-column.col-lg-12 {
		width: 100%;
	}
	.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box {
		width: 45%;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box {
		margin-bottom: 30px;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .report-box {
		width: 100%;
		margin-right: 0;
	}
	.blog-block-four .inner-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.blog-block-four .inner-box .image-box {
		width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.blog-block-four .inner-box .content-box {
		margin-left: 0;
		margin-top: 30px;
	}
	.blog-block-four .inner-box .image-box img {
		width: 100%;
	}
	.blog-section-four .inner-column-two {
		margin-right: 0;
	}
	.sider-bar {
		margin-top: 70px;
	}
	.shop-product-cart-info {
		margin-top: 10px;
	}
	.checkout-section .side-bar {
		padding-left: 0;
	}
	.contact-us-section .calculater-sec .content-column .inner-column {
		padding-right: 0;
	}
	.contact-us-section .calculater-sec .contact-column .inner-column {
		margin-left: 0;
	}
	.contact-us-section .ofice-section .ofice-block .inner-box .contact-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.contact-us-section .ofice-section .ofice-block .inner-box .contact-list li {
		margin-bottom: 15px;
	}
	.dealer-ship-section-two .side-bar .message {
		width: auto;
		padding: 0 30px;
	}
	.barnd-box .side-bar {
		margin-top: 50px;
	}
	.inventory-pager .inventory-form .form_boxes {
		width: 20%;
		height: auto;
	}
	.inventory-pager {
		padding-bottom: 120px;
	}
	.inventory-pager .inventory-form .form-submit .theme-btn {
		position: relative;
		bottom: -15px;
	}
	.cars-section-four .form-box .form_boxes .drop-menu {
		margin-bottom: 10px;
	}
	.inventory-section .side-bar-column.v2 .inner-column {
		padding-left: 0;
		margin-top: 50px;
	}
	.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box .side-btn {
		width: auto;
		padding: 0 25px;
		margin-right: 15px;
	}
	.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn {
		width: auto;
		margin-right: 15px;
		padding: 0 25px;
	}
	.inventory-section .side-bar-column .inner-column .contact-box .content-box .btn-box .side-btn-three {
		text-align: left;
	}
	.inventory-section .side-bar-column.v2 .inner-column {
		margin-top: 0;
	}
	.text-box {
		/* margin-top: 30px; */
	}
	.service-block-thirteen .image-box {
		width: 200px;
	}
	.service-block-thirteen .inner-box .right-box {
		width: calc(100% - 200px);
	}
	.inventory-sidebar .price-box form .form-column.v2 {
		padding: 0;
		margin-bottom: 30px;
	}
	.cars-section-fourteen .text-box {
		margin-top: 0;
	}
	.car-block-fourteen .inner-box .content-box .text {
		text-align: left;
	}
	.shop-single-product-slider {
		margin-bottom: 50px;
	}
}
/* Medium devices */
@media (max-width: 991px) {
	.cars-block-two .inner-box {
		margin-bottom: 25px;
	}
	.boxcar-customers-section .boxcar-title .text {
		display: none;
	}
	.boxcar-team-section .team-block {
		margin-bottom: 30px;
	}
	.boxcar-team-section {
		padding-bottom: 90px;
	}
	.boxcar-inspiration-section .right-box .service-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.boxcar-inspiration-section .right-box .service-list li {
		margin-bottom: 20px;
		margin-right: 20px;
	}
	.footer-style-two .footer-top .right-box {
		display: block;
	}
	.footer-style-two .footer-top .right-box .top-left {
		margin-bottom: 30px;
	}
	.footer-style-two .footer-top .right-box .subscribe-form .form-group {
		width: 100%;
	}
	.footer-style-two .footer-top .right-box .subscribe-form .form-group input {
		width: 100%;
	}
	.footer-style-two .links-widget {
		padding-left: 0;
	}
	.header-style-v3 .header-inner .right-box .search-btn {
		display: none;
	}
	.boxcar-pricing-section-three .content-column .inner-column {
		padding: 0 0 0 50px;
	}
	.boxcar-pricing-section-three {
		padding: 90px 0;
	}
	.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .list-box {
		display: none;
	}
	.search-btn {
		display: none;
	}
	.hheader-style-v4 .header-inner .right-box .search {
		display: none;
	}
	.boxcar-banner-section-four .banner-slider-v4 .slick-prev,
	.boxcar-banner-section-four .banner-slider-v4 .slick-next {
		display: none !important;
	}
	.boxcar-banner-section-four .banner-slider-v4 .slick-dots {
		margin-left: 0;
		left: 15px;
	}
	.cars-section-six {
		padding-bottom: 90px;
	}
	.boxcar-customers-section-two .boxcar-title .text {
		display: none;
	}
	.boxcar-banner-section-five .banner-content {
		width: 100%;
	}
	.boxcar-brand-section-four .right-box {
		/* -webkit-box-pack: center;
			-ms-flex-pack: center;
		justify-content: center; */
	}
	.boxcar-testimonial-section-three .content-column .inner-column {
		margin-top: 0;
		margin-bottom: 50px;
	}
	.testimonial-block-three .inner-box {
		margin-bottom: 30px;
	}
	.boxcar-brand-section-three .col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.boxcar-pricing-section-four .content-column .inner-column {
		padding: 0;
		margin-top: 40px;
	}
	.boxcar-inspiration-section-two .right-box-two .uper-box .content-box .boxcar-title .text br {
		display: none;
	}
	.boxcar-inspiration-section-two .right-box .service-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.boxcar-inspiration-section-two .right-box .service-list li {
		margin-bottom: 28px;
	}
	.boxcar-banner-section-seven .inner-box .banner-slide {
		height: 450px;
	}
	.boxcar-banner-section-seven .inner-box .banner-slide img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.boxcar-banner-section-seven .banner-slider-v7 .banner-slide .right-box .content-box {
		max-width: 70%;
		margin: 0 auto;
	}
	.boxcar-banner-section-seven .banner-slider-v7 .banner-slide .right-box .content-box h1 {
		font-size: 50px;
	}
	.boxcar-pricing-section-four.v7 .content-column .inner-column {
		padding-left: 15px;
		margin-top: 0;
	}
	.boxcar-brand-section.v7 {
		padding-bottom: 0;
		margin-bottom: -30px;
	}
	.header-style-v7 .header-inner .c-box .logo-inner {
		display: none;
	}
	.header-style-v7 .header-inner .c-box .logo {
		right: 0px;
	}
	.cars-block-five {
		width: 25%;
		margin-bottom: 30px;
	}
	.boxcar-brand-section-five {
		padding-bottom: 80px;
	}
	.news-letter-section .image-column {
		display: none;
	}
	.boxcar-banner-section-nine .banner-content {
		width: 100%;
		padding: 30px 15px 0 15px;
		position: static;
		-webkit-transform: unset;
		transform: unset;
	}
	.boxcar-banner-section-nine .banner-content .form-tab-pane form {
		display: block;
		height: auto;
		padding-bottom: 30px;
	}
	.boxcar-banner-section-nine .banner-content .form-tab-pane form .form_boxes {
		width: 100%;
	}
	.boxcar-banner-section-nine .banner-content .form-submit button {
		width: 100%;
	}
	.boxcar-banner-section-nine {
		height: unset;
	}
	.boxcar-banner-section-nine .banner-content .content-box h2 {
		font-size: 50px;
	}
	.boxcar-banner-section-nine .container {
		padding-bottom: 50px;
	}
	.boxcar-pricing-section-four.v9 .content-column .inner-column {
		margin: 0;
	}
	.boxcar-pricing-section-four.v9 .image-column .inner-column .image-box .image-3 {
		margin-left: 30px;
	}
	.boxcar-fun-fact-section-three {
		padding: 70px 15px 50px;
	}
	.blog-blockt-three .inner-box .hover-img .image {
		height: 400px;
	}
	.blog-blockt-three .inner-box .hover-img .image img {
		height: 100%;
	}
	.blog-blockt-three .inner-box .hover-img .content-box {
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		padding: 0 15px;
	}
	.car-block-eleven .inner-box .image-box .image img {
		width: 100%;
	}
	.car-block-eleven .inner-box .image-box {
		width: 100%;
	}
	.boxcar-team-section-four .right-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.team-block-four {
		width: calc(50% - 0px);
		margin-right: 0;
		padding: 0 15px;
		margin-bottom: 40px;
	}
	.boxcar-team-section-four {
		padding-bottom: 80px;
	}
	.boxcar-team-section-four .right-box {
		margin: 0 -15px;
	}
	.boxcar-banner-section-seven.v10 .form-tab-content {
		position: static;
	}
	.boxcar-banner-section-seven.v10 form {
		display: block;
		padding-bottom: 30px;
		border-radius: 14px;
		margin-top: 30px;
	}
	.boxcar-banner-section-seven.v10 form .form_boxes {
		width: 100%;
	}
	.boxcar-banner-section-seven.v10 form .form_boxes::before {
		display: none;
	}
	.boxcar-banner-section-seven.v10 form .drop-menu .select {
		padding: 0;
	}
	.boxcar-banner-section-seven.v10 .form-submit button {
		width: 100%;
	}
	.boxcar-pricing-section-six .image-column {
		display: none;
	}
	.car-block-twelve .inner-box .image-box {
		width: 100%;
	}
	.car-block-twelve .inner-box .image-box .image img {
		width: 100%;
	}
	.boxcar-pricing-section-five .content-column .inner-column {
		padding: 70px 50px;
	}
	.footer-style-four .footer-top .right-box {
		display: block;
	}
	.footer-style-four .footer-top .right-box .top-left {
		margin-bottom: 50px;
	}
	.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group {
		width: 100%;
	}
	.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group input {
		width: 100%;
	}
	.footer-style-four .footer-top .right-box .top-right .subscribe-form .form-group button {
		width: 100%;
	}
	.dashboard-widget .side-bar {
		display: none;
	}
	.dashboard-widget .content-column {
		width: 100%;
	}
	.dashboard-widget .content-column .inner-column {
		margin-right: 0;
	}
	.dashboard-widget .content-column .inner-column {
		padding: 50px 15px;
	}
	.blog-section-five .right-box-two form {
		width: unset;
		margin: 0 -15px;
	}
	.cart-totals {
		margin-top: 50px;
	}
	.checkout-section .content-column .inner-column form .form-column {
		padding-right: 0;
	}
	.contact-us-section .calculater-sec .content-column .inner-column {
		margin-bottom: 50px;
	}
	.ofice-block .inner-box {
		margin-bottom: 40px;
	}
	.contact-us-section .ofice-section {
		margin-bottom: -50px;
	}
	.dealer-ship-section-two .inner-column .brand-box .image-box {
		position: static;
		margin-bottom: 30px;
	}
	.dealer-ship-section-two .inner-column .brand-box {
		padding-left: 0;
	}
	.inventory-pager .inventory-form {
		height: auto;
		display: block;
		border-radius: 14px;
		padding-bottom: 30px;
	}
	.inventory-pager .inventory-form .form_boxes {
		width: 100%;
	}
	.inventory-pager .inventory-form .form_boxes>a {
		padding: 0 30px;
		margin-left: 0;
	}
	.inventory-pager .inventory-form .form-submit .theme-btn {
		bottom: 0;
		margin-top: 30px;
		width: 100%;
	}
	.cars-section-four.v1.v5 .right-box {
		padding: 40px 15px;
	}
	.car-block-forteen .inner-box .image-box .image img {
		height: auto;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.inventory-section .inspection-column .inner-column form {
		width: auto;
		margin: 0 -15px;
	}
	.inventory-section .side-bar-column.v2 {
		margin-top: 50px;
	}
	.inventory-section .boxcar-title-three .content-box {
		position: static;
		margin-top: 25px;
	}
	.inventory-section .boxcar-title-three .content-box .title {
		text-align: left;
	}
	.inventory-section .boxcar-title-three .content-box {
		text-align: left;
	}
	.inventory-section .gallery-sec .image-column-two .inner-column .image-box {
		width: 100%;
	}
	.inventory-section .gallery-sec .image-column-two .inner-column .image-box img {
		width: 100%;
	}
	.inventory-section .gallery-sec .image-column-two .inner-column .image-box .image {
		border-radius: 0px;
	}
	.gallery-sec .item4 .image {
		border-bottom-left-radius: 15px !important;
	}
	.gallery-sec .item5 .image {
		border-bottom-right-radius: 15px !important;
	}
	.features-sec .list-column {
		margin-bottom: 40px;
	}
	.service-block-thirteen .image-box {
		width: 100%;
	}
	.service-block-thirteen .inner-box .right-box {
		width: 100%;
	}
	.service-block-thirteen .inner-box {
		display: block;
	}
	.service-block-thirteen .inner-box .image-box .image img {
		height: 350px;
		-o-object-fit: cover;
		object-fit: cover;
		border-radius: 0;
		width: 100%;
	}
	.service-block-thirteen .inner-box .right-box {
		padding: 20px 0;
		border: 0;
	}
	.service-block-thirteen .inner-box .right-box {
		display: block;
	}
	.service-block-thirteen .inner-box .right-box .content-box-two:before {
		display: none;
	}
	.service-block-thirteen .inner-box .right-box .content-box-two {
		text-align: left;
		margin-left: 0;
	}
	.contact-block .inner-box {
		max-width: 100%;
	}
	.order_list_raw {
		padding: 30px;
	}
	.order_details {
		padding: 30px;
	}
	.shop-cart.pt30 .container {
		padding-bottom: 0;
	}
	.pricing-block-seven {
		margin-bottom: 30px;
	}
	.boxcar-pricing-section-seven {
		padding-bottom: 90px;
	}
	.dashboard-widget-two .right-box {
		display: block;
	}
	.dashboard-widget-two .side-bar {
		/* width: 100%;
			padding: 0 15px;
		margin-bottom: 60px; */
		display: none;
	}
	.dashboard-widget-two .right-box-two {
		margin-right: 0;
		padding: 30px 15px;
	}
	.dashboard-widget-two .right-box-two .cars-section-four {
		padding: 15px;
	}
	.dashboard-widget-two .content-column .inner-column {
		margin-right: 0;
		padding: 50px 15px;
	}
	.services-inner-section .calculater-sec .timing-block {
		width: 100%;
		margin-top: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.price-box form .form-column.v2 {
		padding-left: 0;
	}
	.cars-section-fourteen .content-column {
		margin-top: 50px;
	}
	.cars-section-fifteen .right-box {
		margin-bottom: 40px;
	}
	.cars-section-fifteen .content-sec .content-column .inner-column form {
		width: auto;
		margin: 0 -15px;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .image-box {
		margin-bottom: 50px;
	}
}
/* Small devices */
@media (max-width: 767px) {
	.image a {
		display: block;
		height: 100%;
	}
	.image a img {
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.boxcar-pricing-section-two .content-column .inner-column {
		padding-top: 0;
		padding-bottom: 70px;
	}
	.choose-us-block:last-child {
		margin-bottom: 0;
	}
	.car-block-three .inner-box .content-box ul li {
		margin-right: 0;
		width: 33%;
	}
	.boxcar-service-section .right-box {
		padding: 40px;
	}
	.boxcar-service-section .content-column .inner-column .store.two {
		margin-left: 0;
		margin: 10px 0;
	}
	.boxcar-pricing-section-two .image-column .inner-column .image-box .image img {
		height: auto;
	}
	.boxcar-banner-section-v1.banner-style-three .banner-content-three {
		position: static;
		-webkit-transform: unset;
		transform: unset;
	}
	.boxcar-banner-section-v1.banner-style-three {
		padding: 150px 0 50px;
	}
	.header-style-v3 .header-inner .right-box span {
		display: none;
	}
	.header-style-v3 .btn {
		display: none;
	}
	.header-style-v3 .header-inner .c-box .logo-inner .menu {
		display: none;
	}
	.header-style-v3 {
		top: 20px;
	}
	.car-block-five .inner-box .image-box {
		width: 100%;
	}
	.testimonila-section-two .content-column {
		margin-bottom: 70px;
	}
	.boxcar-pricing-section-three .content-column .inner-column {
		margin-top: 50px;
		padding: 0;
	}
	.boxcar-fun-fact-section .fact-counter {
		padding: 70px 0 40px;
	}
	.calculater-section .boxcar-container {
		padding: 0 15px;
	}
	.boxcar-service-section-two .content-column .inner-column .store.two {
		margin: 10px 0;
	}
	.boxcar-service-section-two .right-box {
		padding: 60px 40px;
	}
	.boxcar-banner-section-five .banner-content h2 {
		font-size: 50px;
		line-height: 60px;
	}
	.boxcar-banner-section-five .banner-content .form-tab-pane form {
		height: auto;
		display: block;
	}
	.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes {
		width: 100%;
		border: 1px solid #eaeaea;
		border-radius: 14px;
		margin-bottom: 20px;
	}
	.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes:before {
		display: none;
	}
	.boxcar-banner-section-five .banner-content .form-tab-pane {
		margin-bottom: 0;
	}
	.boxcar-banner-section-five .image-column {
		margin-top: 0;
	}
	.boxcar-banner-section-five:before {
		height: calc(100% - 100px);
	}
	.boxcar-banner-section-five .banner-content .form-tab-pane form {
		padding: 30px;
		border-radius: 15px;
	}
	.boxcar-banner-section-five .banner-content .form-submit {
		/* padding-left: 30px; */
	}
	.brand-block-four .image img {
		width: auto;
	}
	.image a img {
		width: auto;
	}
	.team-block-two {
		margin-bottom: 30px;
	}
	.blog-block .inner-box .image-box .image img {
		width: 100%;
	}
	.boxcar-banner-section-six .content-column .inner-column .right-box .service-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.boxcar-banner-section-six .content-column .inner-column .right-box .service-list li {
		margin-bottom: 15px;
	}
	.dealership-block {
		margin-bottom: 30px;
	}
	.dealership-section {
		padding-bottom: 90px;
	}
	.boxcar-inspiration-section-two .right-box-two .uper-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.boxcar-inspiration-section-two .right-box-two .uper-box .content-box {
		margin-bottom: 40px;
	}
	.boxcar-inspiration-section-two .right-box-two .uper-box {
		margin-bottom: 40px;
	}
	.boxcar-title .text {
		display: none;
	}
	.boxcar-team-section-three .right-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.team-block-three {
		margin-right: 0;
		width: 50%;
	}
	.choose-us-block-four {
		margin-bottom: 30px;
	}
	.car-block-nine .inner-box .image-box {
		width: 100%;
	}
	.car-block-nine .inner-box .image-box img {
		width: 100%;
	}
	.boxcar-pricing-section-four.v7 .content-column .inner-column {
		padding: 0;
		margin-top: 50px;
	}
	.calculater-section .content-column .inner-column {
		padding-right: 15px;
	}
	.boxcar-banner-section-v8 .banner-content-v8 h2 {
		font-size: 40px;
	}
	.boxcar-banner-section-v8 .banner-content-v8 .banner-v8-form {
		max-width: 100%;
	}
	.boxcar-brand-section-five .right-box {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.car-block-ten .inner-box .image-box .image img {
		width: 100%;
	}
	.car-block-ten .inner-box .image-box {
		width: 100%;
	}
	.news-letter-section .form-column .inner-column .subscribe-form .form-group input {
		width: 100%;
	}
	.news-letter-section .form-column .inner-column .subscribe-form .form-group {
		width: 100%;
	}
	.news-letter-section .form-column .inner-column {
		padding: 70px 30px;
	}
	.boxcar-pricing-section-four.v9 .content-column .inner-column {
		padding-left: 0;
		margin-top: 50px;
	}
	.blog-blockt-three .inner-box {
		margin-bottom: 30px;
	}
	.blog-blockt-three .inner-box .hover-img .image img {
		border-radius: 0;
	}
	.boxcar-pricing-section-five .image-column .inner-column .image-box .image img {
		height: auto;
	}
	.boxcar-pricing-section-six .content-column .inner-column .btn-box {
		display: block;
		margin-bottom: 20px;
	}
	.boxcar-pricing-section-six .content-column .inner-column .btn-box .btn-two {
		width: 100%;
		margin-bottom: 15px;
	}
	.error-section .right-box .content-box {
		margin-top: 0;
	}
	.about-inner-one .upper-box .content-box {
		margin-top: 0;
	}
	.dashboard-widget .content-column .inner-column .cheak-box-sec .right-box-two .cheak-box {
		width: 100%;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box {
		width: 100%;
		margin-right: 0;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box>img {
		width: 100%;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .attachment-sec .right-box-four .uplode-box {
		width: 100%;
	}
	.blog-section-five .right-box-two .list-sec .inner-column {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.ruls-sec .content-box {
		padding: 0 15px;
	}
	.cart-table-bottom .coupan-form {
		margin-bottom: 20px;
	}
	.contact-us-section .map-sec .goole-iframe iframe {
		height: 350px;
	}
	.contact-us-section .calculater-sec .content-column form {
		margin: 0 -15px;
		width: auto;
	}
	.dealer-ship-section-two .inner-column .service-box .list-sec .service-list.two {
		margin-right: 50px;
	}
	.dealer-ship-section-two .inner-column .review-sec .review-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.dealer-ship-section-two .inner-column .review-sec .review-box .rating-box {
		margin-right: 0;
		margin-bottom: 40px;
	}
	.dealer-ship-section-two .inner-column .review-sec .review-box .review-list {
		margin-right: 0;
		width: 100%;
	}
	.dealer-ship-section-two .inner-column .review-sec .review-box .review-list.two {
		margin-right: 0;
		margin-bottom: 40px;
	}
	.dealer-ship-section-two .inner-column form {
		width: auto;
		margin: 0 -15px;
	}
	.inventory-section .boxcar-title-three .content-box {
		position: static;
		margin-top: 20px;
	}
	.features-sec .list-column .inner-column {
		margin-bottom: 40px;
	}
	.inventory-section .inspection-column .inner-column .review-sec .review-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inventory-section .inspection-column .inner-column .review-sec .review-box .rating-box {
		margin-right: 0;
		margin-bottom: 30px;
	}
	.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list.two {
		margin-right: 0;
		width: 100%;
		margin-bottom: 30px;
	}
	.inventory-section .inspection-column .inner-column .review-sec .review-box .review-list {
		width: 100%;
	}
	.inventory-section .inspection-column .inner-column .description-sec .des-list li img {
		margin-right: 10px;
	}
	.inventory-section .inspection-column .inner-column .form-box .form-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inventory-section .inspection-column .inner-column .form-box .form-list li {
		margin-right: 0;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: 10px;
	}
	.inventory-section .inspection-column .inner-column .form-box .form-list li:last-child {
		margin-bottom: 0;
	}
	.inventory-section .inspection-column .inner-column .review-sec.v2 .content-box-three {
		display: block;
	}
	.inventory-section .inspection-column .inner-column .features-sec.v2 .list-column .inner-column {
		margin-bottom: 0;
	}
	.inventory-section .inspection-column .inner-column .description-sec .des-list {
		display: block;
	}
	.inventory-section .inspection-column .inner-column .description-sec .des-list li {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.inventory-section .inspection-column .inner-column .description-sec .des-list li:last-child {
		margin-bottom: 0;
	}
	.contact-us-section.v2 .right-box .content-column .inner-column {
		padding: 50px 15px;
	}
	.contact-us-section .calculater-sec .content-column .inner-column .boxcar-title {
		padding-left: 0;
	}
	.order_list_raw ul {
		display: block;
	}
	.order_list_raw li {
		width: 100%;
		margin-bottom: 15px;
	}
	.order_list_raw li:last-child {
		margin-bottom: 0;
	}
	.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box {
		width: 50%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.services-section-three {
		padding-top: 80px;
	}
	.service-block-three .inner-box img {
		width: 100%;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info {
		display: block;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .btn-box {
		margin-left: 0;
		margin-top: 25px;
	}
	.tabs-column {
		margin-bottom: 50px;
	}
	.boxcar-banner-section-v1 .banner-content .form-tab-pane form {
		border-radius: 14px;
		padding: 30px 30px 30px;
	}
	.boxcar-banner-section-v1 .banner-content .form-submit button {
		border-radius: 14px;
	}
	.boxcar-banner-section-v1 .banner-content .form-tab-pane form .form_boxes {
		border: 1px solid #eaeaea;
		border-radius: 14px;
		margin-bottom: 20px;
	}
	.model-links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		/* flex-wrap: wrap; */
		overflow: auto;
		margin-right: -30px;
		padding-right: 30px;
	}
	.boxcar-brand-section .row {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		overflow-x: scroll;
	}
	.boxcar-brand-section .col-sm-6 {
		width: auto;
	}
}
/* Extra small devices */
@media (max-width: 575px) {
	.header-style-v1 .btn {
		display: none;
	}
	.car-block-two .inner-box {
		display: block;
	}
	.car-block-two .inner-box .image-box {
		width: 100%;
	}
	.car-block-two .inner-box .image-box .image img {
		border-radius: 0;
	}
	.car-block-two .inner-box .content-box {
		padding: 20px;
	}
	.cars-section {
		padding: 90px 0;
	}
	.boxcar-testimonial-section .content-column .inner-column .text {
		margin-right: 0;
	}
	.blog-section {
		padding: 90px 0;
	}
	.header-style-v1.style-two {
		padding: 20px 0;
	}
	.car-block-four .inner-box .content-box ul li {
		margin-right: 0;
		width: 33%;
	}
	.boxcar-service-section .content-column .inner-column .title {
		font-size: 40px;
		line-height: 50px;
	}
	.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box h1 {
		font-size: 50px;
		line-height: 60px;
	}
	header .user {
		display: none;
	}
	header .btn {
		display: none;
	}
	.car-block-six .inner-box {
		display: block;
	}
	.car-block-six .inner-box .image-box {
		width: 100%;
	}
	.car-block-six .inner-box .content-box {
		width: 100%;
		padding: 20px;
	}
	.car-block-six .inner-box .content-box ul,
	.car-block-six .inner-box .content-box .text {
		margin-bottom: 15px;
	}
	.car-block-six .inner-box .content-box ul li {
		margin-bottom: 10px;
	}
	.hheader-style-v4.five {
		padding: 25px 0;
	}
	.boxcar-banner-section-six .content-column .inner-column h1 {
		font-size: 50px;
		line-height: 60px;
	}
	.counter-block {
		width: 50%;
	}
	.boxcar-inspiration-section-two .right-box .service-list li {
		margin-right: 15px;
		margin-bottom: 15px;
	}
	.boxcar-testimonial-section-four .right-box {
		padding: 80px 15px;
	}
	.header-style-v7 .header-inner {
		padding: 20px 0;
	}
	.team-block-three {
		padding: 0 15px;
		width: calc(50% - 0px);
		margin-bottom: 30px;
	}
	.boxcar-team-section-three .right-box {
		margin: 0 -15px;
	}
	.boxcar-service-section .content-column .inner-column .title br {
		display: none;
	}
	.boxcar-brand-section-six .cars-block-six {
		margin-right: 10px;
		margin-bottom: 10px;
	}
	.cars-section-ten .right-box {
		padding-top: 70px;
	}
	.news-letter-section .form-column .inner-column .boxcar-title h2 br {
		display: none;
	}
	.team-block-four {
		width: 100%;
	}
	.boxcar-title h2 {
		font-size: 32px;
	}
	.footer-style-four .footer-top .right-box .top-left .btn-box {
		display: block;
	}
	.footer-style-four .footer-top .right-box .top-left .btn-box .btn-two {
		margin-right: 0;
		width: 100%;
		margin-bottom: 15px;
	}
	.footer-style-five .footer-top .right-box .subscribe-form .form-group input {
		width: 100%;
	}
	.footer-style-five .footer-top .right-box .subscribe-form .form-group {
		width: 100%;
	}
	.dashboard-widget .nav-tabs {
		display: block;
	}
	.dashboard-widget .nav-tabs li {
		margin-bottom: 15px;
	}
	.header-style-ten .header-inner .right-box .haeder-img {
		display: none;
	}
	.header-style-ten .header-inner .c-box .nav-out-bar {
		display: none;
	}
	.header-style-ten .header-inner .c-box .logo-inner {
		width: 100%;
	}
	.header-style-ten .header-inner .c-box .logo-inner .logo {
		margin-right: auto;
	}
	.header-style-ten .header-inner .c-box .btn-box .menu-btn .button {
		margin-right: 0;
		font-size: 30px;
	}
	.blog-section-five .right-box-two .social-section .inner-column .social-icons {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.blog-section-five .right-box-two .social-section .inner-column {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.blog-section-five .right-box-two .social-section .inner-column .social-icons {
		margin-bottom: 15px;
	}
	.blog-section-five .right-box-two .social-section {
		padding: 30px 0;
	}
	.blog-section-five .right-box-two .Reply-sec .right-box .rating-list.two {
		margin-right: 0;
	}
	.blog-section-five .right-box-two .Reply-sec .right-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.blog-section-five .right-box-two .list-sec-two .list-two li {
		line-height: unset;
	}
	.cart-table {
		padding-right: 0;
	}
	.cart-table table tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cart-table table tr td {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
	.cart-table .shop-cart-product {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.cart-table .shop-cart-product .shop-product-cart-img {
		margin-right: 0;
	}
	.shop-product-cart-info {
		text-align: center;
	}
	.cart-table-bottom .coupan-form {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cart-table-bottom .coupan-form input {
		margin-right: 0;
		width: 100%;
		margin-bottom: 20px;
	}
	.theme-btn-web {
		width: 100%;
		text-align: center;
	}
	.cart-table table .number {
		margin: 0 auto;
	}
	.cart-table table thead th {
		width: 100%;
		text-align: center;
	}
	.cart-table table thead th:last-child {
		display: none;
	}
	.contact-us-section .ofice-section {
		padding-top: 70px;
	}
	.dealer-ship-section-two .inner-column .brand-box .content-box .contact-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.dealer-ship-section-two .inner-column .brand-box .content-box .contact-list li {
		margin-bottom: 20px;
	}
	.dealer-ship-section-two .inner-column .service-box .list-sec .service-list .list-box .list.two {
		margin-right: 0;
	}
	.dealer-ship-section-two .inner-column .service-box .list-sec .service-list .list-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cars-section-four .pagination-sec .pagination {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inventory-pager {
		padding-bottom: 80px;
	}
	.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list .list-box {
		display: block;
	}
	.inventory-section .inspection-column .inner-column .Reply-sec .right-box .rating-list.two {
		margin-right: 0;
	}
	/* .inventory-section .boxcar-title-three .spectes-list li {
		display: block;
		margin-right: 0;
		margin-bottom: 10px;
	} */
	.inventory-section .boxcar-title-three .spectes-list li span {
		width: 100%;
	}
	.inventory-section .inspection-column .inner-column .image-box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inventory-section .inspection-column .inner-column .image-box>img {
		width: 20%;
	}
	.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box .video-list li a {
		font-size: 12px;
	}
	.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inventory-section .inspection-column .inner-column .contact-box-three .content-box .btn-box .side-btn {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.inventory-section .inspection-column .inner-column .contact-list .image-box>img {
		width: auto;
	}
	.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box .contact-list li a .image-box {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.cars-section-three {
		padding-top: 80px;
	}
	.contact-block .inner-box {
		padding: 50px 25px;
	}
	.login-section .inner-container {
		padding: 0 15px;
	}
	.login-section .btn-box-two .social-btns {
		display: block;
	}
	.login-section .btn-box-two .social-btns .fb-btn {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	.shop-cart.pt30 .container {
		padding-top: 50px;
	}
	.boxcar-pricing-section-seven {
		padding-top: 70px;
	}
	.boxcar-pricing-section-two .content-column .inner-column .boxcar-title h2 {
		line-height: 40px;
	}
	.services-inner-section .why-choose-us-section.v3 .right-box {
		padding-top: 80px;
	}
	.shop-single-thumbs-slider {
		display: none;
	}
	.shop-single-product-slider {
		width: 100%;
		margin-left: 0;
	}
	.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box {
		display: block;
	}
	.boxcar-banner-section-two .banner-slider .banner-slide .right-box .content-box ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.wrap-fixed-sidebar .widget-sidebar-filter {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.boxcar-brand-section {
		padding: 60px 0;
	}
	.blog-section-two {
		padding-bottom: 90px;
	}
	.cars-section-four {
		padding: 120px 0 40px;
	}
	.why-choose-us-section {
		padding: 70px 0 64px;
	}
	.boxcar-customers-section {
		padding: 60px 0;
	}
	.boxcar-customers-section .boxcar-title {
		margin-bottom: 15px;
	}
	.boxcar-team-section {
		padding: 60px 0;
	}
	.boxcar-inspiration-section {
		padding-bottom: 60px;
	}
	.boxcar-service-section .content-column .inner-column .title {
		font-size: 32px;
		line-height: 42px;
	}
	.boxcar-service-section {
		padding-bottom: 60px;
	}
	.brand-boxcar-banner-section .content-column .inner-column .title {
		font-size: 40px;
		line-height: 50px;
	}
	.brand-boxcar-banner-section {
		padding: 60px 0;
	}
	.boxcar-banner-section-v1 {
		background-position: top;
	}
}
/* Extra small devices */
@media (max-width: 414px) {
	.header-style-v1 .header-inner .right-box>a {
		display: none;
	}
	.cars-section-three .nav-tabs .nav-link {
		width: 100%;
		/* margin-bottom: 15px; */
		margin-right: 0;
	}
	.boxcar-pricing-section .content-column .inner-column .boxcar-title h2 {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 15px;
	}
	.choose-us-block .inner-box .content-box .text {
		padding-right: 0;
	}
	.blog-blockt-two .inner-box .hover-img {
		display: none;
	}
	.blog-blockt-two .inner-box .title br {
		display: none;
	}
	.cars-section-four .nav-tabs .nav-link {
		width: 100%;
	}
	.boxcar-service-section .content-column .inner-column .title {
		font-size: 32px;
		line-height: 40px;
	}
	.boxcar-service-section .content-column .inner-column .store span {
		font-size: 11px;
	}
	.brand-boxcar-banner-section .content-column .inner-column .title {
		font-size: 32px;
		line-height: 40px;
	}
	.brand-boxcar-banner-section .content-column .inner-column .btn {
		padding: 0 30px;
		height: 50px;
		line-height: 50px;
	}
	.boxcar-title h2 {
		font-size: 32px;
	}
	.blog-blockt-two .inner-box .title {
		line-height: 36px;
	}
	.boxcar-banner-section-four .banner-slider-v4 .banner-slide .right-box .content-box h1 {
		font-size: 50px;
		line-height: 60px;
	}
	.calculater-section .content-column .inner-column {
		padding: 40px;
	}
	.brand-block-four .inner-box {
		/* width: 100%; */
	}
	.brand-block-four {
		width: 100%;
		/* margin-right: 0; */
	}
	.why-choose-us-section-three .right-box {
		padding: 70px 30px 70px;
	}
	.boxcar-brand-section-three .right-box {
		padding: 70px 30px;
	}
	.boxcar-banner-section-six .content-column .inner-column .btn-box {
		display: block;
	}
	.boxcar-banner-section-six .content-column .inner-column .btn-box .read-more {
		margin-right: 0;
		display: block;
		margin-bottom: 15px;
		text-align: center;
	}
	.boxcar-pricing-section-four .content-column .inner-column .boxcar-title h2 {
		line-height: 42px;
	}
	.boxcar-inspiration-section-two .right-box-two .uper-box .content-box {
		padding-left: 0;
		margin-bottom: 10px;
	}
	.boxcar-inspiration-section-two .right-box-two .uper-box .content-box .icon {
		position: static;
	}
	.boxcar-banner-section-seven .banner-slider-v7 .banner-slide .right-box .content-box h1 {
		font-size: 32px;
		line-height: 40px;
	}
	.boxcar-service-section {
		padding: 90px 0;
	}
	.cars-block-five {
		width: 50%;
	}
	.cars-section-ten .nav-tabs .nav-link {
		margin-right: 0;
		width: 100%;
	}
	.cars-section-ten .right-box {
		padding-left: 15px;
		padding-right: 15px;
	}
	.news-letter-section .form-column .inner-column .subscribe-form .form-group button {
		position: static;
		width: 100%;
		margin-top: 20px;
	}
	.boxcar-banner-section-nine .banner-content .content-box h2 {
		font-size: 40px;
	}
	.boxcar-banner-section-nine .banner-content .content-box .btn-box {
		display: block;
	}
	.boxcar-banner-section-nine .banner-content .content-box .btn-box .read-more {
		margin-right: 0;
		width: 100%;
		margin-bottom: 15px;
	}
	.blog-section-three {
		padding-bottom: 80px;
	}
	.choose-us-block-five .inner-box .content-box .text {
		padding-right: 0;
	}
	.boxcar-pricing-section-five .content-column .inner-column .boxcar-title h2 {
		line-height: 40px;
	}
	.counter-block {
		width: 100%;
	}
	.boxcar-pricing-section-six .content-column .inner-column .boxcar-title h2 {
		font-size: 28px;
		line-height: 40px;
	}
	.boxcar-service-section-two .content-column .inner-column .title {
		font-size: 30px;
		line-height: 40px;
	}
	.boxcar-service-section-two .content-column .inner-column .store span {
		line-height: 14px;
		margin-bottom: 10px;
	}
	.boxcar-team-section-two {
		padding-bottom: 80px;
	}
	.about-inner-one .faqs-section .widget-accordion .block .acc-btn {
		font-size: 14px;
	}
	.dashboard-widget .content-column .inner-column .form-box form .form-column {
		width: 100%;
	}
	.dashboard-widget .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box {
		width: 100%;
	}
	.inventory-section .inspection-column .inner-column .form-box .form-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inventory-section .inspection-column .inner-column .form-box .form-list li {
		margin-right: 0;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.inventory-section .inspection-column .inner-column .form-box .form-list li span {
		margin-right: auto;
	}
	.inventory-section .inspection-column .inner-column .form-box .form-list li {
		margin-bottom: 10px;
	}
	.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box .side-btn {
		margin-bottom: 10px;
		margin-right: 0;
	}
	.inventory-section .gallery-sec .image-column .inner-column .image-box .content-box .video-list {
		display: none;
	}
	.inventory-section .inspection-column .inner-column .description-sec .des-list {
		display: block;
	}
	.inventory-section .inspection-column .inner-column .description-sec .des-list li {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.inventory-section .inspection-column .inner-column .contact-box-three .icon-box {
		position: static;
	}
	.inventory-section .inspection-column .inner-column .contact-box-three .content-box .inner-box {
		padding-left: 0;
		margin-top: 30px;
	}
	.inventory-section .side-bar-column.v3 .contact-box-two .btn-box {
		display: block;
	}
	.inventory-section.v1 .description-sec.v2,
	.inventory-section.v1 .features-sec.v2,
	.inventory-section.v1 .faqs-section.v2,
	.inventory-section.v1 .location-box.v2,
	.inventory-section.v1 .form-box.v2,
	.inventory-section.v1 .main-review-box,
	.inventory-section.v1 .reply-c-box {
		padding-left: 15px;
		padding-right: 15px;
	}
	.text-box {
		display: block;
	}
	.text-box .text {
		margin-bottom: 15px;
	}
	.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box {
		width: 100%;
	}
	.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .image-box img {
		width: 100%;
	}
	.dashboard-widget-two .content-column .inner-column .gallery-sec .right-box-three .gallery-box .inner-box .uplode-box {
		width: 100%;
	}
	.services-inner-section .calculater-sec .content-column .inner-column {
		padding: 30px 15px;
	}
	.cars-section-fifteen .shop-c-box .content-column .inner-column .btn-box {
		display: block;
	}
	.cars-section-fifteen .shop-c-box .content-column .inner-column .btn-box .number {
		height: 50px;
		margin-bottom: 20px;
	}
	.cars-section-fifteen .content-sec .content-column .inner-column .Reply-sec .right-box .rating-list .list-box {
		display: block;
	}
	.cars-section-fifteen .cars-section-fourteen.v1 {
		padding-top: 60px;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .contact-info {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.vehicles-section-three .right-box .auther-info-box .inner-column .auther-info .content-box .contact-info li {
		margin-right: 0;
		margin-bottom: 20px;
	}
}
.header-style-v1 .btn .header-btn-two:hover {
	border-color: transparent;
}
/* custom */
.layout-search .search-box {
	position: relative;
}
.layout-search .search-box .icon {
	position: absolute;
	left: 19px;
	top: 50%;
	transform: translateY(-50%);
}
.layout-search .search-box input {
	background: transparent;
	width: 400px;
	height: 47px;
	line-height: 47px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color-light);
	padding: 0px 20px 0px 46px;
	border-radius: 14px 14px 0px 0px;
	/* -webkit-transition: all 300ms ease;
	transition: all 300ms ease; */
}
@media (max-width: 1600px) {
	.boxcar-header.five .right-box .phone,
	.hheader-style-v4.style-1 .right-box .phone {
		display: none;
	}
}
.layout-search .search-box input::placeholder {
	color: var(--theme-color-light);
}
.layout-search.active .search-box input {
	color: var(--theme-color-dark);
	background-color: var(--theme-color-light);
}
.layout-search.active .search-box svg path {
	fill: var(--theme-color-dark);
}
.layout-search {
	margin-top: -12px;
	position: relative;
	z-index: 100;
}
.layout-search.style1 .box-content-search {
	border: 1px solid rgba(225, 225, 225, 1);
}
.layout-search .box-content-search {
	position: absolute;
	left: 0px;
	right: 0px;
	background-color: var(--theme-color-light);
	height: 382px;
	border-top: 1px solid rgba(225, 225, 225, 1);
	opacity: 0;
	visibility: hidden;
	border-radius: 0px 0px 14px 14px;
	/* -webkit-transition: all 300ms ease;
	transition: all 300ms ease; */
}
.layout-search .box-content-search.active {
	opacity: 1;
	visibility: visible;
}
.layout-search .box-content-search .car-search-item {
	display: flex;
	gap: 15px;
	padding: 15px 20px 14px;
	position: relative;
}
.layout-search .box-content-search .car-search-item::after {
	position: absolute;
	content: "";
	background: rgba(217, 217, 217, 1);
	height: 1px;
	left: 20px;
	right: 20px;
	bottom: 0;
}
.layout-search .box-car-search {
	height: 333px;
	overflow: auto;
	margin-right: 5px;
}
.layout-search .box-car-search::-webkit-scrollbar {
	width: 3px;
	margin-right: 5px;
}
.layout-search .box-car-search::-webkit-scrollbar-thumb {
	background: rgba(225, 225, 225, 1);
}
.box-content-search .car-search-item .name {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 5px;
	color: var(--theme-color-dark);
}
.box-content-search .car-search-item .price {
	font-size: 14px !important;
	line-height: 28px;
	font-weight: 500;
	color: var(--theme-color-dark) !important;
}
.box-content-search .car-search-item .box-img {
	border-radius: 14px;
	width: 70px;
	height: 70px;
	overflow: hidden;
	flex-shrink: 0;
}
.box-content-search .btn-view-search {
	font-size: 15px;
	line-height: 26px;
	color: rgba(64, 95, 242, 1);
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 0px;
}
.boxcar-header.v10 .layout-search .search-box input,
.header-style-v9 .layout-search .search-box input,
.boxcar-header.v6 .layout-search .search-box input,
.header-style-v3 .layout-search .search-box input,
.header-style-v7 .layout-search .search-box input {
	width: auto;
}
.boxcar-header.v10 .layout-search.active .search-box input,
.header-style-v9 .layout-search.active .search-box input,
.boxcar-header.v6 .layout-search.active .search-box input,
.header-style-v3 .layout-search.active .search-box input,
.header-style-v7 .layout-search.active .search-box input {
	width: 380px;
}
.hheader-style-v4.v10 .header-inner .c-box .nav-out-bar {
	margin-right: 0px;
}
.boxcar-header.v10 .layout-search,
.header-style-v9 .layout-search,
.header-style-v3 .layout-search,
.boxcar-header.v6 .layout-search,
.header-style-v7 .layout-search {
	margin-top: 0;
	margin-right: 10px;
}
.boxcar-header.v10 .layout-search .search-box input,
.header-style-v7 .layout-search .search-box input,
.boxcar-header.v6 .layout-search .search-box input,
.header-style-v3 .layout-search .search-box input {
	padding-right: 10px;
}
.st-mt {
	left: 0px !important;
}
.boxcar-header.v10 .layout-search .search-box svg path,
.header-style-v7 .layout-search .search-box svg path,
.boxcar-header.five .layout-search .search-box svg path {
	fill: var(--theme-color-dark);
}
.boxcar-header.v10 .layout-search .search-box input::placeholder,
.header-style-v7 .layout-search .search-box input::placeholder,
.boxcar-header.five .layout-search .search-box input::placeholder {
	color: var(--theme-color-dark);
}
.header-style-ten .layout-search {
	margin-top: 0;
	margin-left: -25px;
}
.wrapper-invoice {
	background-color: rgba(233, 242, 255, 1);
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-default {
	padding: 20px 26px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 14px;
	background-color: rgba(64, 95, 242, 1);
	font-weight: 500;
	color: var(--theme-color-light);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.btn-default:hover {
	color: var(--theme-color-light);
}
.invoice-section {
	padding: 120px 0px;
	width: 100%;
}
.invoice-section .top {
	text-align: right;
	margin-bottom: 36px;
}
.box-invoice {
	background: var(--theme-color-light);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	border-radius: 14px;
}
.box-invoice .header {
	padding: 133px 100px 122px;
	border-bottom: 1px solid rgba(225, 225, 225, 1);
}
.box-invoice .wrap-top {
	display: flex;
	margin-bottom: 56px;
}
.box-invoice .box-left {
	width: 60%;
}
.box-invoice .wrap-top .box-right {
	width: 40%;
}
.box-invoice .wrap-top .title {
	font-size: 28px;
	line-height: 36.46px;
	color: var(--theme-color-dark);
	font-weight: 700;
	white-space: nowrap;
}
.box-invoice .wrap-top .price {
	font-size: 17px;
	line-height: 28px;
	font-weight: 500;
	color: var(--theme-color-dark);
}
.box-invoice .wrap-date {
	display: flex;
	margin-bottom: 60px;
}
.box-invoice .wrap-date label {
	font-size: 15px;
	line-height: 28px;
	display: block;
}
.box-invoice .wrap-date .date {
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
}
.box-invoice .wrap-info {
	margin-bottom: 40px;
	display: flex;
}
.box-invoice .wrap-info .title {
	font-size: 20px;
	line-height: 26.04px;
	color: var(--theme-color-dark);
	font-weight: 500;
	margin-bottom: 12px;
}
.box-invoice .wrap-info .sub {
	color: var(--theme-color-dark);
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
}
.box-invoice .wrap-info .desc {
	color: var(--theme-color-dark);
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
	font-weight: 400;
}
.invoice-table {
	width: 100%;
}
.invoice-table thead {
	background-color: rgba(233, 242, 255, 1);
}
.invoice-table .title th {
	padding: 20px 65px 20px 40px;
	color: rgba(64, 95, 242, 1);
	font-weight: 500;
	font-size: 17px;
	line-height: 28px;
}
.invoice-table .title th:first-child {
	border-radius: 8px 0 0 8px;
	width: 40%;
}
.invoice-table .title th:last-child {
	border-radius: 0px 8px 8px 0px;
}
.invoice-table .content td {
	padding: 20px 65px 20px 40px;
	font-size: 15px;
	line-height: 28px;
	border-bottom: 1px solid rgba(225, 225, 225, 1);
}
.invoice-table .content .total {
	font-size: 17px;
	line-height: 28px;
	font-weight: 500;
}
.invoice-table .content:last-child td {
	border-bottom: none;
}
.box-invoice .footer {
	padding: 43px 30px;
}
.box-invoice .footer .box-contact {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}
.box-invoice .footer .box-contact li {
	font-size: 15px;
	line-height: 28px;
}
.box-invoice .footer .box-contact li:first-child {
	color: rgba(64, 95, 242, 1);
}
.element-section {
	padding: 60px 0px 100px;
}
.element-section .breadcrumb {
	margin-bottom: 25px;
}
.breadcrumb .item {
	font-size: 15px;
	line-height: 26px;
	color: var(--theme-color-dark);
}
.breadcrumb .item.active {
	color: rgba(64, 95, 242, 1);
}
.element-section h2 {
	font-size: 40px;
	line-height: 45px;
	font-weight: 700;
	margin-bottom: 60px;
}
.title-element {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 36px;
}
/* accordion */
.box-accordion {
	margin-bottom: 60px;
}
.box-accordion .accordion-button {
	justify-content: space-between;
	padding: 40px 30px 13px 40px;
	border-radius: 14px 14px 0px 0px !important;
	background-color: rgba(249, 251, 252, 1);
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: rgba(5, 11, 32, 1);
}
.box-accordion .accordion-button.collapsed {
	background-color: transparent;
}
.box-accordion .accordion-item {
	border: 0;
}
.box-accordion .accordion-collapse .accordion-body {
	padding: 0px 50px 40px 40px;
	font-size: 15px;
	line-height: 28px;
	font-weight: 400;
	color: rgba(5, 11, 32, 1);
	background-color: rgba(249, 251, 252, 1);
	border-radius: 0px 0px 14px 14px !important;
}
.box-accordion .accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}
.box-accordion .accordion-button::after {
	content: none;
}
.box-accordion .accordion-button.collapsed .icon .minus {
	display: none;
}
.box-accordion .accordion-button .icon .minus {
	display: block;
}
.box-accordion .accordion-button:not(.collapsed) {
	box-shadow: none;
}
.box-accordion .accordion-button:not(.collapsed) .icon .plus {
	display: none;
}
/* tab */
.box-tabs-element .tab-content p {
	font-size: 15px;
	line-height: 28px;
}
.box-tabs-element .nav-tab-el1 {
	margin-bottom: 30px;
}
.box-tabs-element .nav-tab-el2 {
	margin-bottom: 19px;
	display: flex;
	gap: 30px;
	border-bottom: 1px solid rgba(225, 225, 225, 1);
}
.box-tabs-element .nav-tab-el2 .nav-link {
	font-size: 14px;
	line-height: 28px;
	padding: 0;
	padding-bottom: 15px;
	border-bottom: 2px solid transparent;
	background-color: transparent;
	color: rgba(5, 11, 32, 1);
	border-radius: 0;
}
.box-tabs-element .nav-tab-el2 .nav-link.active {
	border-color: rgba(64, 95, 242, 1);
}
.box-tabs-element .nav-tab-el1 .nav-link {
	padding: 6px 17px 6px 17px;
	border-radius: 32px;
	font-size: 14px;
	line-height: 28px;
	font-weight: 500;
	color: rgba(5, 11, 32, 1);
	border: 1px solid transparent;
}
.box-tabs-element .nav-tab-el1 .nav-link.active {
	background-color: #fff;
	border-color: rgba(225, 225, 225, 1);
	box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
	color: rgba(64, 95, 242, 1);
}
.box-tabs-element-2 {
	margin-top: 70px;
}
/* table */
.box-table-el table {
	width: 100%;
}
.box-table-el table th,
.box-table-el table td {
	padding: 23px 26px 13px;
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
	color: rgba(5, 11, 32, 1);
}
.box-table-el table thead {
	background-color: rgba(233, 242, 255, 1);
}
.box-table-el table thead th {
	color: rgba(64, 95, 242, 1);
}
.box-table-el table thead th:first-child {
	border-radius: 8px 0px 0px 8px;
}
.box-table-el table thead th:last-child {
	border-radius: 0px 8px 8px 0px;
}
/* alert */
.messages-box-el .alert {
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
	padding: 24px 13px 21px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 14px;
	border-color: transparent;
}
.messages-box-el .alert-info {
	background-color: rgba(205, 233, 246, 0.5);
}
.messages-box-el .alert-warning {
	background-color: rgba(247, 243, 215, 0.5);
}
.messages-box-el .alert-error {
	background-color: rgba(236, 200, 197, 0.5);
}
.messages-box-el .alert-success {
	background-color: rgba(222, 242, 215, 0.5);
}
.messages-box-el .alert-info p {
	color: rgba(71, 128, 170, 1);
}
.messages-box-el .alert-warning p {
	color: rgba(146, 114, 56, 1);
}
.messages-box-el .alert-error p {
	color: rgba(171, 51, 49, 1);
}
.messages-box-el .alert-success p {
	color: rgba(91, 112, 82, 1);
}
.messages-box-el .alert p {
	margin-bottom: 0px;
}
.messages-box-el .alert:not(:last-child) {
	margin-bottom: 20px;
}
/* button */
.tf-btn {
	padding: 13px 26px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 26px;
	font-weight: 500;
	border: 1px solid transparent;
}
.tf-btn.primary {
	border-color: rgba(64, 95, 242, 1);
	background-color: rgba(64, 95, 242, 1);
	color: #fff;
}
.tf-btn.primary:hover {
	background-color: rgba(78, 108, 251, 1);
	border-color: rgba(78, 108, 251, 1);
}
.tf-btn.primary-hover {
	border-color: rgba(78, 108, 251, 1);
	background-color: rgba(78, 108, 251, 1);
	color: #fff;
}
.tf-btn.secondary {
	border-color: rgba(64, 95, 242, 1);
	background-color: rgba(78, 108, 251, 0.07);
	color: rgba(64, 95, 242, 1);
}
.tf-btn.secondary:hover {
	background-color: rgba(64, 95, 242, 1);
	border-color: rgba(64, 95, 242, 1);
	color: #fff;
}
.tf-btn.secondary-hover {
	background-color: rgba(64, 95, 242, 1);
	border-color: rgba(64, 95, 242, 1);
	color: #fff;
}
.tf-btn.third {
	border-color: rgba(64, 95, 242, 1);
	background-color: #fff;
	color: rgba(64, 95, 242, 1);
}
.tf-btn.third:hover,
.tf-btn.third-hover {
	background-color: rgba(64, 95, 242, 1);
	border-color: rgba(64, 95, 242, 1);
	color: #fff;
}
.tf-btn.fourth {
	border-color: rgba(5, 11, 32, 1);
	background-color: #fff;
	color: rgba(5, 11, 32, 1);
}
.tf-btn.fourth:hover,
.tf-btn.fourth-hover {
	background-color: rgba(5, 11, 32, 1);
	border-color: rgba(5, 11, 32, 1);
	color: #fff;
}
.box-button-el {
	display: flex;
	row-gap: 26px;
	column-gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 70px;
}
.box-button-el .tf-btn.secondary {
	margin-left: 55px;
}
.box-button-el .tf-btn.fourth {
	margin-left: 90px;
}
/* form */
.input-box label {
	color: rgba(129, 129, 129, 1);
	font-size: 13px;
	line-height: 16.93px;
	display: block;
	font-weight: 400;
}
.input-box {
	padding: 10px 15px;
	height: 60px;
	border: 1px solid rgba(225, 225, 225, 1);
	border-radius: 12px;
	margin-bottom: 30px;
}
.input-box:hover,
.input-box:focus,
.input-box.active {
	border: 2px solid rgba(5, 11, 32, 1);
}
.input-box input,
.input-box input::placeholder {
	font-size: 15px;
	line-height: 19.53px;
	color: rgba(5, 11, 32, 1);
}
.select-box-el {
	margin-bottom: 60px;
}
.select-box-el.style1 {
	margin-bottom: 30px;
}
.select-box-el .select-header {
	padding: 10px 15px;
	height: 60px;
	border: 1px solid rgba(225, 225, 225, 1);
	border-radius: 12px;
	cursor: pointer;
	position: relative;
}
.select-box-el .select-header .label {
	color: rgba(129, 129, 129, 1);
	font-size: 13px;
	line-height: 16.93px;
	font-weight: 400;
}
.select-box-el .select-header .icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.select-box-el .select-header .fied-select {
	font-size: 15px;
	line-height: 19.53px;
	color: rgba(5, 11, 32, 1);
}
.select-box-el .select-header:hover,
.select-box-el .select-header:not(.collapsed) {
	border: 2px solid rgba(5, 11, 32, 1);
}
.select-box-el .select-body {
	padding: 24px;
	border: 2px solid rgba(31, 75, 63, 1);
	border-radius: 12px;
	margin-top: 20px;
}
.select-box-el .select-body .search-box {
	position: relative;
	height: 50px;
	margin-bottom: 4px;
}
.select-box-el .select-body .search-box input {
	padding: 0px;
	padding-left: 20px;
	padding-right: 30px;
	border: 1px solid rgba(225, 225, 225, 1);
	width: 100%;
	line-height: 50px;
	font-size: 15px;
	color: rgba(5, 11, 32, 1);
	border-radius: 14px;
}
.select-box-el .select-body .search-box input::placeholder {
	color: rgba(5, 11, 32, 1);
}
.select-box-el .select-body .search-box .icon {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}
.select-box-el .box-search-select li {
	padding: 0px 15px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 45px;
	color: rgba(34, 34, 34, 1);
	cursor: pointer;
}
.select-box-el .box-search-select li.active {
	background-color: rgba(233, 242, 255, 1);
	color: rgba(64, 95, 242, 1);
}
.tf-check {
	border: 1px solid rgba(225, 225, 225, 1);
	border-radius: 4px;
	background: none;
	cursor: pointer;
	outline: 0;
	height: 20px;
	width: 20px;
	-webkit-appearance: none;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.tf-check.circle {
	border-radius: 50%;
}
.tf-check.circle::after {
	position: absolute;
	top: 3px;
	left: 3px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
	background-color: #fff;
	margin: 0;
}
.tf-check::after {
	position: absolute;
	content: "";
	border-bottom: 2px solid transparent;
	border-right: 2px solid transparent;
	width: 6px;
	height: 10px;
	margin-top: -3px;
	transform: rotate(45deg);
}
.tf-check:checked {
	background-color: rgba(5, 11, 32, 1);
	border-color: rgba(5, 11, 32, 1);
}
.tf-check:checked::after {
	border-color: #fff;
}
.box-check-el li {
	display: flex;
	align-items: center;
	gap: 9px;
	cursor: pointer;
}
.box-check-el.style2 li {
	gap: 11px;
}
.box-check-el li label {
	font-size: 15px;
	line-height: 40px;
}
.wrap-check-btn-el {
	display: flex;
	justify-content: space-between;
}
.wrap-check-btn-el p {
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 10px;
	color: rgba(34, 34, 34, 1);
}
.tf-switch-check {
	position: relative;
	width: 55px;
	height: 30px;
	-webkit-appearance: none;
	background: rgba(225, 225, 225, 1);
	border-radius: 30px;
	transition: 0.2s;
	margin-right: 0;
}
.tf-switch-check::before {
	content: "";
	border-radius: 100px;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 3px;
	left: 3px;
	background: #fff;
	transition: 0.5s;
}
.tf-switch-check:checked {
	background-color: rgba(5, 11, 32, 1);
	transition: 0.5s;
}
.tf-switch-check:checked::before {
	left: 28px;
}
.box-switch .box-check-el li {
	gap: 14px;
	margin-bottom: 10px;
}
.wrap-check-btn-el {
	margin-bottom: 65px;
	padding-right: 60px;
}
.box-textarea {
	height: 243px;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid rgba(225, 225, 225, 1);
	margin-bottom: 65px;
}
.box-textarea label {
	font-size: 13px;
	line-height: 16.93px;
	font-weight: 400;
	color: rgba(129, 129, 129, 1);
	display: block;
	margin-bottom: 3px;
}
.box-textarea textarea {
	width: 100%;
	height: 80%;
	font-size: 15px;
	line-height: 26px;
	font-weight: 400;
	color: rgba(5, 11, 32, 1);
}
.box-tooltip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.box-tooltip .btn-tooltip {
	background-color: rgba(233, 242, 255, 1);
	border-radius: 8px;
	width: 100px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 28px;
	color: rgba(64, 95, 242, 1);
}
.wrap-booltip-el {
	margin-bottom: 50px;
}
.wrap-range-el .noUi-target {
	height: 4px;
}
.wrap-range-el .noUi-background {
	background-color: rgba(225, 225, 225, 1);
}
.wrap-range-el .noUi-connect {
	background: rgba(64, 95, 242, 1);
}
.wrap-range-el .noUi-horizontal .noUi-handle {
	width: 14px;
	height: 14px;
	border-color: rgba(64, 95, 242, 1);
}
.wrap-range-el .noUi-horizontal .noUi-handle.noUi-handle-upper {
	left: 0;
}
.wrap-range-el .box-val-range-el {
	text-align: center;
	margin-top: 14px;
}
.wrap-range-el .box-val-range-el span {
	font-size: 14px;
	line-height: 28px;
	color: rgba(34, 34, 34, 1);
}
.box-process-el .progress {
	overflow: unset;
	height: 10px;
	border-radius: 10px;
	background-color: rgba(233, 242, 255, 1);
}
.box-process-el .progress:not(:last-child) {
	margin-bottom: 46px;
}
.box-process-el .progress-bar {
	position: relative;
	overflow: unset;
	background-color: rgba(64, 95, 242, 1);
	border-radius: 10px;
}
.box-process-el .progress-bar span {
	position: absolute;
	right: 0;
	top: -22px;
	font-size: 15px;
	line-height: 20.13px;
	color: rgba(5, 11, 32, 1);
}
.wrap-process {
	margin-top: 100px;
}
.wrap-process .title-element {
	margin-bottom: 56px;
}
.box-quote {
	padding: 40px 240px 30px 55px;
	background-color: rgba(233, 242, 255, 1);
	border-radius: 14px;
	border-left: 14px solid rgba(64, 95, 242, 1);
}
.box-quote .quote {
	font-size: 15px;
	line-height: 28px;
	font-style: italic;
	color: rgba(5, 11, 32, 1);
	margin-bottom: 15px;
}
.box-quote .author {
	font-size: 17px;
	line-height: 28px;
	font-weight: 500;
	color: rgba(5, 11, 32, 1);
	font-style: normal;
}
.box-listview {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.box-listview .listview-item {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 15px;
	line-height: 46px;
	color: rgba(5, 11, 32, 1);
	font-weight: 400;
}
.box-listview .listview-item .icon-check {
	width: 18px;
	height: 18px;
	background-color: rgba(233, 242, 255, 1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.wrap-typo {
	margin-bottom: 60px;
	margin-top: 60px;
}
.wrap-typo .title-element {
	margin-bottom: 25px;
}
.wrap-typo .box-p {
	margin-bottom: 60px;
}
.wrap-typo .box-p p {
	font-size: 15px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 0;
}
.wrap-typo .box-p p:first-child {
	margin-bottom: 40px;
}
.wrap-typo .title-typo,
.wrap-listview .title-listview {
	font-size: 26px;
	line-height: 30px;
	font-weight: 500px;
	margin-bottom: 30px;
	color: rgba(5, 11, 32, 1);
}
.element-section .form-box {
	padding-right: 108px;
}
.wrap-range-el {
	padding-right: 130px;
}
.wrap-listview {
	padding-right: 140px;
}
.wrap-range-el .widget-price {
	margin-bottom: 0;
}
@media (max-width: 1440px) {
	.layout-search .search-box input {
		width: auto;
	}
	.layout-search {
		display: none;
	}
	.box-button-el .tf-btn.fourth,
	.box-button-el .tf-btn.secondary {
		margin-left: 0px;
	}
}
@media (max-width: 991px) {
	.box-invoice .header {
		padding: 80px 60px;
	}
	.box-invoice .wrap-top,
	.box-invoice .wrap-date,
	.box-invoice .wrap-info {
		gap: 20px;
	}
	.box-invoice .box-left,
	.box-invoice .box-right {
		width: 50%;
	}
	.wrap-table {
		overflow: auto;
	}
	.wrap-range-el,
	.element-section .form-box,
	.wrap-listview {
		padding-right: 0;
	}
	.box-quote {
		padding-right: 90px;
	}
	.box-table-el,
	.messages-box-el,
	.wrap-range-el .widget-price {
		margin-bottom: 60px;
	}
	.box-tabs-element-2 {
		margin-top: 40px;
		margin-bottom: 60px;
	}
	.box-accordion .accordion-collapse .accordion-body,
	.box-accordion .accordion-button {
		padding-left: 20px;
		padding-right: 20px;
	}
	.box-tabs-element .nav-tab-el1 {
		gap: 15px;
	}
}
@media (max-width: 600px) {
	.box-invoice .wrap-top,
	.box-invoice .wrap-date,
	.box-invoice .wrap-info {
		flex-wrap: wrap;
	}
	.box-invoice .box-left,
	.box-invoice .box-right {
		width: 100%;
	}
	.box-quote {
		padding-left: 40px;
		padding-right: 30px;
	}
	.wrap-check-btn-el {
		padding-right: 0;
	}
}
.header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown .nav-sub {
	position: relative;
}
.header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown .nav-sub .dropdown.subnav-menu {
	margin: 0;
	margin-left: 28px;
	top: 0;
	left: 100%;
}
.header-style-v9 .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown .nav-sub .dropdown.subnav-menu {
	margin-left: 15px;
}
.header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown .nav-sub:hover .subnav-menu {
	visibility: visible;
	opacity: 1;
}
.header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown .subnav-menu::after {
	position: absolute;
	content: "";
	width: 32px;
	height: 100%;
	display: block;
	left: -20px;
	top: -10px;
}
.header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .dropdown .subnav-menu::before {
	content: none;
}
.form_boxes.line-r {
	position: relative;
}
.form_boxes.line-r:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 36px;
	background: #e1e1e1;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.boxcar-banner-section-nine .form_boxes.line-r:before {
	opacity: 0.2;
}
@media (max-width: 1199px) {
	.header-style-ten .header-inner {
		padding: 0px;
	}
	.header-style-ten .header-inner .c-box .btn-box .menu-btn .button {
		display: none;
	}
}
@media (max-width: 991px) {
	.form_boxes.line-r:before {
		content: none;
	}
}
.boxcar-title.style-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}
.boxcar-title.style-1 h2 {
	margin-bottom: 0;
}
.boxcar-title.style-1 .text {
	margin-top: 0;
}
.cus-slider {
	padding-bottom: 30px;
}
.cus-layout-1 {
	margin-left: 60px;
	margin-right: 60px;
}
.cus-footer {
	margin: 0px 110px 99px;
	border-radius: 18px;
	overflow: hidden;
}
.cus-radius-16 {
	border-radius: 14px;
	overflow: hidden;
}
@media (max-width: 1440px) {
	.cus-footer {
		margin: 0px 15px 15px;
	}
}
@media (max-width: 991px) {
	.cus-layout-1 {
		margin-left: 30px;
		margin-right: 30px;
	}
}
.car-block-three.style-2 .inner-box {
	border-radius: 15px;
	border: 1px solid rgba(225, 225, 225, 1);
}
.car-block-three.style-2 .inner-box .image-box {
	padding: 10px 10px 0px;
}
.car-block-three.style-2 .inner-box .image-box .image {
	border-radius: 15px;
}
.car-block-three.style-2 .inner-box .image-box img {
	border-radius: 0;
}
.car-block-three.style-2 .inner-box .content-box {
	border: 0;
}
.boxcar-header.v6 .mobile-navigation a {
	color: var(--theme-color-dark);
}
.boxcar-header.v10 .header-inner .right-box .box-account {
	color: var(--theme-color-dark);
}
.cus-layout-home10 {
	max-width: 1580px;
	margin-left: auto;
	margin-right: auto;
}
.hheader-style-v4.v10 .header-inner .inner-container {
	max-width: 1430px;
}
.cus-container10 {
	position: static;
	max-width: 1192px;
	padding: 0px 15px;
	margin: 0 auto;
	width: 100%;
}
.cus-container2 {
	position: static;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
	width: 100%;
}
.layout-radius {
	border-radius: 80px;
	margin-top: -80px;
	margin-bottom: -80px;
	background-color: #fff;
}
.inventory-pager.style-1 {
	padding-bottom: 150px;
}
@media (max-width: 991px) {
	.layout-radius {
		border-radius: 40px;
	}
	.cars-section-four.v1 {
		padding-bottom: 90px;
	}
}
.sidebar-backdrop {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 99999;
	visibility: hidden;
	transition: all 0.3s ease;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
}
.wrap-fixed-sidebar.active .sidebar-backdrop {
	opacity: 1;
	visibility: visible;
}
.widget-price {
	margin: 33px 0px 40px;
}
li.nav-sub.mm-listitem {
	position: relative;
}
li.nav-sub.mm-listitem .mm-listitem__btn {
	position: absolute;
	right: 0;
	width: 100%;
}
.chat-widget .card-footer {
	padding: 30px 30px 40px;
}
.chat-widget .card-footer .form-group button .text-mb {
	display: none;
}
.chat-widget .card-footer .type_msg {
	padding-left: 0;
	padding-right: 200px;
}
.banner-footer-section {
	background-color: rgba(64, 95, 242, 1);
	padding: 50px 0px;
}
.banner-footer-section .wrapper-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}
.banner-footer-section .wrapper-banner .box-right {
	display: flex;
	align-items: center;
	gap: 10px;
}
.banner-footer-section .wrapper-banner .title,
.banner-footer-section .wrapper-banner .box-right span {
	font-size: 30px;
	line-height: 45px;
	font-weight: 500;
	color: var(--theme-color-light);
}
@media (max-width: 991px) {
	.chat-widget .card-footer {
		padding: 20px 15px;
	}
	.chat-widget .card-footer .form-group button {
		padding: 10px 20px;
	}
	.chat-widget .card-footer .form-group button .text-mb {
		display: block;
	}
	.chat-widget .card-footer .form-group button .text-dk {
		display: none;
	}
	.chat-widget .card-footer .type_msg {
		padding-right: 110px;
	}
}
.chat-widget .card-footer .form-group button {
	right: 0;
}
.wrap-body-compare {
	overflow: auto;
}
/* .wrap-body-compare tr {
	flex-wrap: nowrap !important;
	}
	.wrap-body-compare tr th,
	.wrap-body-compare td {
	padding-right: 40px !important;
} */
/* price slider */
.noUi-target,
.noUi-target * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-touch-action: none;
	touch-action: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-target {
	position: relative;
	direction: ltr;
}
.noUi-base {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
}
.noUi-handle {
	position: relative;
	z-index: 1;
}
.noUi-stacking .noUi-handle {
	z-index: 10;
}
.noUi-state-tap .noUi-origin {
	-webkit-transition: left 0.3s, top .3s;
	transition: left 0.3s, top .3s;
}
.noUi-state-drag * {
	cursor: inherit !important;
}
.noUi-base,
.noUi-handle {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.noUi-horizontal {
	height: 3px;
}
.noUi-horizontal .noUi-handle {
	position: relative;
	width: 29px;
	height: 29px;
	border-radius: 50%;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	border: 2px solid rgba(5, 11, 32, 1);
	cursor: pointer;
}
.caption {
	margin-bottom: 10px;
}
.boxcar-header.cus-style-1 {
	position: unset !important;
	padding-bottom: 80px;
}
.box-bookmark {
	width: 36px;
	height: 36px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid rgba(225, 225, 225, 1);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1199px) {
	.boxcar-header.cus-style-1 {
		padding: 20px 0px 100px !important;
	}
	.about-inner-one .galler-section .exp-block .inner-box .exp-box {
		padding: 20px;
	}
	.about-inner-one .galler-section .exp-block .inner-box .exp-box .title {
		font-size: 30px;
		line-height: 1;
	}
	.about-inner-one .galler-section .exp-block .inner-box .exp-box .text {
		font-size: 18px;
		line-height: 22px;
	}
}
.gallery-sec {
	margin-bottom: 34px;
}
.gallery-sec .item2,
.gallery-sec .item3 {
	margin-bottom: 4px;
}
.gallery-sec .item2 .image,
.gallery-sec .item4 .image {
	border-radius: 0;
}
.gallery-sec .item3 .image {
	border-radius: 0;
	border-top-right-radius: 15px;
}
.gallery-sec .item5 .image {
	border-radius: 0;
	border-bottom-right-radius: 15px;
}
.side-bar-column.style-1 .inner-column {
	margin-left: 50px;
}
.dashboard-widget .content-column .inner-column .cheak-box-sec.style1,
.dashboard-widget .content-column .inner-column .gallery-sec.style1,
.dashboard-widget .content-column .inner-column .map-sec.style1 {
	padding: 15px;
	border: 0;
	border-radius: 0;
}
.header-style-ten .header-inner .c-box .nav-out-bar .nav .navigation .current-dropdown .subnav-menu {
	min-width: 200px;
}
@media (max-width: 1400px) {
	.side-bar-column.style-1 .inner-column {
		margin-left: 0px;
	}
}
@media (min-width: 991px) {
	.gallery-sec .image-column-two {
		padding-left: 0;
	}
}
@media (max-width: 991px) {
	.inventory-section .gallery-sec .image-column .inner-column {
		margin-bottom: 12px;
	}
	.inventory-section .gallery-sec .image-column .inner-column .image-box .image {
		border-radius: 14px 14px 0px 0px;
	}
	/* .header-style-ten .header-inner .c-box .btn-box {
		display: none;
	} */
	.gallery-sec .item2,
	.gallery-sec .item4 {
		padding-right: 6px;
	}
	.gallery-sec .item3,
	.gallery-sec .item5 {
		padding-left: 6px;
	}
}
.wrap-gallery-box {
	position: relative;
}
.wrap-gallery-box .content-box {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
}
@media (max-width: 768px) {
	.wrap-gallery-box .content-box {
		display: none;
	}
}
.wrap-gallery-box .content-box .video-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}
.wrap-gallery-box .content-box .video-list a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--theme-color-dark);
	background-color: var(--theme-color-light);
	padding: 7px 20px 5px;
	border-radius: 12px;
}
.wrap-gallery-box .content-box .video-list li:last-child {
	margin-left: auto;
}
.gallery-sec-two.style-1 .content-box {
	left: 50%;
	transform: translateX(-50%);
	right: unset;
	width: 730px;
}
@media (max-width: 1800px) {
	.gallery-sec-two.style-1 .content-box {
		width: auto;
	}
}
.wrap-listing {
	border: 1px solid rgba(225, 225, 225, 1);
	padding: 30px 30px 40px;
	border-radius: 14px;
	overflow: auto;
}
.wrap-listing .title-listing {
	margin-bottom: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.box-ip-search {
	position: relative;
}
.box-ip-search .icon {
	position: absolute;
	top: -1;
	left: 0;
}
.box-ip-search input {
	padding: 0;
	padding-left: 22px;
	color: var(--theme-color-dark);
	font-weight: 400;
	font-size: 15px;
	line-height: 26px;
}
.wrap-listing .cart-table {
	padding: 0;
}
.wrap-listing .cart-table tr th {
	padding: 20px 36px;
}
.wrap-listing .cart-table tr th:last-child {
	text-align: right;
}
.wrap-listing .cart-table tr td:last-child {
	text-align: right;
	padding-right: 0;
	white-space: nowrap;
}
.wrap-listing .cart-table tr td:last-child a:last-child {
	margin-left: 12px;
}
.wrap-listing .cart-table table tr td {
	padding: 20px 36px;
}
/* thumb slider */
.slider-thumb {
	border-radius: 15px 15px 0px 0px;
	overflow: hidden;
}
.slider-thumb .slick-list::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(5, 11, 32, 0) 0%, #050B20 100%);
	opacity: 0;
	z-index: 123;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.slider-thumb .slick-list {
	padding: 0;
	margin: 0;
}
.slider-thumb .slick-dots {
	opacity: 0;
	bottom: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: none;
}
.slider-thumb .slick-dots li {
	background: #fff;
	width: 15px;
	height: 4px;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.slider-thumb .slick-dots .slick-active {
	width: 30px;
}
.slider-thumb img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.box-car.style-2 .slider-thumb .image,
.box-car .slider-thumb .image {
	border-radius: 0 !important;
}
.box-car.style-2 .slider-thumb {
	border-radius: 15px;
	overflow: hidden;
}
.section-tab-car {
	padding-top: 0;
	margin-top: -66px;
}
.section-tab-car .nav-car-tab {
	margin-bottom: 60px;
	border: 0;
	display: flex;
	gap: 60px;
	overflow: auto;
}
@media (max-width:991px) {
	.section-tab-car .nav-car-tab {
		gap: 30px;
		margin-right: -15px;
		padding-right: 15px;
	}
}
.section-tab-car .nav-car-tab::-webkit-scrollbar {
	width: 2px;
}
.section-tab-car .nav-car-tab::-webkit-scrollbar-thumb {
	background: transparent;
}
.section-tab-car .nav-car-tab .nav-link {
	padding: 14px 40px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 14px 14px 0px 0px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-right: 0px;
}
.section-tab-car .nav-car-tab .nav-link svg path {
	fill: var(--theme-color-light);
}
.section-tab-car .nav-car-tab .nav-link.active svg path {
	fill: var(--theme-color-dark);
}
.section-tab-car .nav-car-tab .nav-link.active {
	background-color: var(--theme-color-light);
	border: 0;
}
.section-tab-car .nav-car-tab .nav-link.active::before {
	content: none;
}
.section-tab-car .nav-car-tab .nav-link span {
	font-size: 18px;
	line-height: 32px;
	font-weight: 500;
	color: var(--theme-color-light);
}
.section-tab-car .nav-car-tab .nav-link.active span {
	color: var(--theme-color-dark);
}
.calculator-section-home9 {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/banner/banner-calc-9.jpg);
	padding: 213px 0px;
}
.calculator-section-home9 .box-loan-calc {
	margin-right: 40px;
}
@media (max-width: 1299px) {
	.calculator-section-home9 .box-loan-calc {
		margin-right: 0px;
	}
}
.box-loan-calc {
	padding: 50px;
	background-color: var(--theme-color-light);
	border-radius: 14px;
	overflow: hidden;
}
.box-loan-calc .drop-menu.active:hover {
	border-radius: 12px;
}
.box-loan-calc .boxcar-title p {
	font-size: 15px;
	line-height: 26px;
}
.box-loan-calc .drop-menu,
.box-loan-calc .drop-menu .select {
	height: 55px;
}
.box-loan-calc .drop-menu .select {
	font-size: 14px;
	line-height: 55px;
	padding: 0 15px;
	font-weight: 500;
}
.box-loan-calc .drop-menu {
	border: 1px solid rgba(225, 225, 225, 1);
	border-radius: 12px;
}
.box-loan-calc input {
	font-size: 14px;
	line-height: 53px;
	padding: 0 15px;
	border-radius: 12px;
	font-weight: 500;
}
.box-loan-calc label {
	font-size: 15px;
	line-height: 26px;
	font-weight: 500;
	color: rgba(5, 11, 32, 1)
}
.box-loan-calc .box-ip {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}
.box-loan-calc .theme-btn {
	width: 100%;
}
.box-loan-calc .title {
	margin-bottom: 40px;
}
.blog-blockt-three.home9 .inner-box:hover img {
	transform: unset;
}
.category-section {
	background-color: var(--theme-color-dark);
	padding: 60px 0px;
}
.category-section .title {
	margin-bottom: 50px;
	color: var(--theme-color-light);
	text-align: center;
}
.category-section .cate-nav-tab {
	padding-bottom: 76px;
	overflow: auto;
	flex-wrap: nowrap;
}
.category-section .cate-nav-tab {}
.category-section .cate-nav-tab::-webkit-scrollbar {
	width: 2px;
}
.category-section .cate-nav-tab::-webkit-scrollbar-thumb {
	background: transparent;
}
.cate-nav-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 0;
	gap: 33px;
}
.cate-nav-tab .nav-link {
	padding: 0px 20px;
	border: 1px solid transparent;
	border-radius: 300px;
	font-size: 14px;
	line-height: 40px;
	font-weight: 500;
	color: var(--theme-color-light);
	background-color: transparent;
}
.cate-nav-tab .nav-link.active {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--theme-color-light);
}
.cate-nav-tab .nav-link:hover {
	border-color: rgba(255, 255, 255, 0.3);
}
.wrap-slider-car {
	padding-bottom: 0;
}
.wrap-slider-car .slick-list {
	max-width: 1400px;
	margin: auto;
	padding-bottom: 0;
}
.wrap-slider-car .slick-arrow {
	background-color: transparent;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.wrap-slider-car .slick-arrow::before {
	color: var(--theme-color-light);
}
.wrap-slider-car .slick-prev {
	left: 0;
}
.wrap-slider-car .slick-next {
	right: 0;
	left: unset;
}
.wrap-slider-car .box-cate-car {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	justify-content: center;
}
.box-cate-car .name {
	font-size: 20px;
	line-height: 30px;
	color: var(--theme-color-light);
	font-weight: 500;
}
.filter-search-section {
	margin-top: -70px;
}
.search-nav-tab {
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 14px 14px 0px 0px;
	position: relative;
	z-index: 100;
	border: 0;
	padding: 20px 40px 13px;
	gap: 30px;
}
.search-nav-tab .nav-link {
	font-size: 14px;
	line-height: 28px;
	color: var(--theme-color-light);
	font-weight: 500;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 0;
	padding-bottom: 8px;
}
.search-nav-tab .nav-link.active {
	background: transparent;
	color: var(--theme-color-light);
}
.search-nav-tab .nav-link:hover {
	border-color: var(--theme-color-light);
}
.form-filter-search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* -ms-flex-wrap: wrap;
	flex-wrap: wrap; */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 0px 0px 14px 14px;
	padding: 20px;
	padding-left: 10px;
	background: rgba(255, 255, 255, 0.4);
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.form-filter-search .form_boxes {
	width: 100%;
	padding: 0px 30px;
}
.form-filter-search .form_boxes label {
	font-size: 18px;
	line-height: 32px;
	text-transform: capitalize;
	font-weight: 500;
}
.form-filter-search .form_boxes .select {
	padding: 0;
	line-height: unset;
}
.form-filter-search .form_boxes span {
	font-size: 15px;
	line-height: 26px;
}
.form-filter-search .form_boxes .drop-menu {
	height: auto;
}
.form-filter-search .form-submit {
	width: 209px;
}
.form-filter-search .form-submit .theme-btn {
	font-size: 15px;
	line-height: 26px;
	gap: 10px;
	border-radius: 14px;
}
.form-filter-search .form-submit .theme-btn i {
	font-size: 14px;
	line-height: 14px;
}
.wrap-sidebar-dk .sidebar-handle {
	display: none;
	margin-bottom: 20px;
	color: var(--theme-color1);
	font-weight: 500;
}
.wrap-sidebar-dk .sidebar-handle svg path {
	fill: var(--theme-color1);
}
@media (max-width: 1499px) {
	.category-section {
		padding-bottom: 120px;
	}
	.wrap-slider-car .slick-arrow {
		top: unset;
		transform: unset;
		bottom: -80px;
		left: 0;
	}
	.wrap-slider-car .slick-arrow.slick-next {
		right: unset;
		left: 95px;
	}
}
@media (max-width: 1199px) {
	.form-filter-search {
		flex-wrap: wrap;
		gap: 15px;
		padding-left: 20px;
	}
	.form-filter-search .form_boxes {
		width: 45%;
		flex-grow: 1;
		padding: 10px 20px;
		border: 1px solid rgba(225, 225, 225, 1);
		border-radius: 12px;
	}
	.wrap-sidebar-dk .sidebar-handle {
		display: block;
	}
	.wrap-sidebar-dk .inventory-sidebar {
		display: none;
		margin-bottom: 30px;
	}
}
@media (max-width: 1140px) {
	.cate-nav-tab {
		justify-content: flex-start;
	}
}
@media (max-width: 550px) {
	.box-loan-calc .box-ip {
		grid-template-columns: 1fr;
	}
	.box-loan-calc {
		padding: 30px;
	}
}
@media (max-width: 767px) {
	.slider-thumb a img {
		width: 100%;
	}
	.calculator-section-home9 {
		padding: 100px 0px;
	}
	.form-filter-search .form_boxes {
		width: 100%;
	}
	.form-filter-search .form-submit,
	.form-filter-search .form-submit .theme-btn {
		width: 100%;
	}
}
.inner-box:hover .slider-thumb .slick-dots {
	opacity: 1;
	display: block;
}
.inner-box:hover .slick-list::before {
	opacity: 0.3;
	/* transition: all 5s ease; */
}
/* Styling; */
.noUi-background {
	background: #D6D7D9;
}
.noUi-connect {
	background: rgba(5, 11, 32, 1);
	-webkit-transition: background 450ms;
	transition: background 450ms;
	cursor: pointer;
}
.noUi-origin {
	border-radius: 2px;
}
.noUi-target {
	width: 100%;
	height: 3px;
	border-radius: 2px;
}
.form-floating  input{
	border: 0px;
	border-bottom: 1px solid #dee2e6;
	padding: 0px;
}
.noUi-horizontal .noUi-handle.noUi-handle-upper {
	left: -30px;
}
/* Handles and cursors;
*/
.noUi-draggable {
	cursor: w-resize;
}
.noUi-vertical .noUi-draggable {
	cursor: n-resize;
}
.noUi-handle {
	cursor: default;
	-webkit-box-sizing: content-box !important;
	-moz-box-sizing: content-box !important;
	box-sizing: content-box !important;
}
/* Disabled state; */
[disabled].noUi-connect,
[disabled] .noUi-connect {
	background: #B8B8B8;
}
[disabled].noUi-origin,
[disabled] .noUi-handle {
	cursor: not-allowed;
}
.slider-labels .caption {
	font-weight: 500;
	font-size: 14px;
}
#slider-range-value01::after,
#slider-range-value1::after {
	margin: 0 2px;
}
.floating-labels-icons {
	position: absolute;
	top: 20px;
	right: 0px;
	z-index: 0;
	pointer-events: none;
}
input.is-valid~.floating-labels-icons {
	right: 25px;
}
.was-validated .floating-labels-icons {
	right: 30px;
}
input.is-valid~.floating-labels-icons {
	right: 25px;
}
.hidden {
    height: 0px;
    width: 0px;
    overflow: hidden;
}
.show {
	/* display: block; */
	/* margin-bottom: 15px; */
}
.toggle-password {
    position: absolute;
    right: 0px;
    top: 20px;
}
.was-validated .toggle-password {
    right: 30px;
}
.white-wrapper {
    background: #ffffff;
}
#passhelp{
}
#passhelp ul{
}
#passhelp li{
}
#passhelp .icon-text-wrapper {
    line-height: 20px;
}
.search_lang_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 9px;
    padding: 0 8px 8px;
}
.language-box {
	border-radius: 6px;
	overflow: hidden;
}
.language-box.active-lang {
	background-color: rgb(242 242 248) !important;
}
.language-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 10px;
	text-decoration: none;
	color: inherit;
	border-radius: 6px;
	white-space: nowrap;
	overflow: hidden;
	transition: background 0.2s;
}
.language-link:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
.flag-thumb {
	width: 22px;
	border-radius: 2px;
	overflow: hidden;
	flex-shrink: 0;
}
.custom_icon_action {
	padding: 6px 9px;
	position: relative;
	width: 100%;
	background: #000000;
	background: linear-gradient(1980deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 55%) 98%);
	text-align: right;
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}
.custom_icon_action svg {
	filter: drop-shadow(1px 1px 1px #0000004d);
}
.flag-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.language-label {
	font-weight: 400;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 17px;
}
.dynamic-content {
    line-height: 23px;
}
/* unordered lists */
.dynamic-content ul {
    padding-left: 1.5rem;   /* indentation */
    margin: 0.5em 0;
    list-style-type: disc;  /* standard bullet */
}
.dynamic-content ul ul {
    list-style-type: circle; /* nested levels */
}
.dynamic-content ul ul ul {
    list-style-type: square;
}
/* ordered lists */
.dynamic-content ol {
    padding-left: 1.5rem;
    margin: 0.5em 0;
    list-style-type: decimal; /* 1,2,3 */
}
.dynamic-content ol ol {
    list-style-type: lower-alpha; /* a,b,c */
}
.dynamic-content ol ol ol {
    list-style-type: lower-roman; /* i,ii,iii */
}
/* list items */
.dynamic-content li {
    margin: 0.25em 0;
    list-style: disc;
}
.dynamic-content li > div {
	display: inline;               /* behave like text, sit next to bullet */
}
.dynamic-content ol li{
    list-style-type: decimal;
}
.dynamic-content img, .dynamic-content svg {
    vertical-align: text-bottom;
}
.image_contain {
	position: relative;  /* makes it the positioning context */
	overflow: hidden;
	height: 200px;
	border-radius: 15px;
	background: #f0f0f0;
}
.image_contain .in_price {
	position: absolute;
	top: 10px;   /* distance from top */
	left: 10px;  /* distance from left */
	background: rgb(246 255 249); /* optional for contrast */
	padding: 2px 11px;
	border-radius: 5px;
	font-size: 12px;
	/* z-index: 2; */ /* sits above the image */
	/* color: white; */
	z-index: 5;
}
.image_contain img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease; /* smooth zoom */
}
.image_contain:hover img {
	transform: scale(1.05); /* small zoom */
}
.image_contain_noscale:hover img {
	transform: scale(1.0); /* small zoom */
}
.split-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%; /* or fit-content if you want it only as wide as needed */
}
.split-list li {
	display: flex;                /* children share the row evenly */
	gap: 8px;                     /* space between cells */
	padding: 4px 0;
}
.split-list li span {
	/* flex: 1; */
	display: flex;          /* makes icon + text sit in one row */
	align-items: center;    /* vertical middle */
}
.split-list li span p {
	display: flex;          /* treat the p as a flex container */
	align-items: center;    /* icon + text aligned */
	margin: 0;
	gap: 6px;               /* space between icon and text */
}
.border-top-dash {
    border-top: 1px dashed #dedede;
}
.list_data_item {
    border-radius: 10px;
    background: white;
    padding: 14px;
}
.nowrap {
    white-space: nowrap;
    white-space-collapse: collapse;
}
.rounded-all {
    border-radius: 50px;
}
.m-n2 {
    margin: -20px;
}
.menu_scroll {
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.menu_scroll::-webkit-scrollbar {
	display: none;
}
.menu_scroll a {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	/* padding: inherit; */
	padding: 10px 0px;
	margin-right: 15px;
}
.menu_scroll a:hover {
	/* color: RGBA(79, 73, 204, var(--bs-link-opacity, 1)) !important; */
}
.menu_scroll span:last-of-type {
	margin-right: 0;
}
.menu_scroll_href {}
.menu_scroll .active {
	color: black;
	border-bottom: 2px solid var(--theme-color-href);
}
.menu_scroll a.ret_href:hover {
	background: var(--bs-primary);
	color: white;
}
.menu_scroll a.active:hover {}
.menu_scroll{
	display:flex;
	gap:.5rem;
	overflow-x:auto;
	-webkit-overflow-scrolling:touch;
	scroll-behavior:smooth;
	white-space:nowrap;         /* prevent wrapping */
	scrollbar-width:none;       /* Firefox hide bar */
}
.menu_scroll::-webkit-scrollbar{ display:none; } /* Chrome/Safari hide bar */
.menu_scroll_href{
	flex:0 0 auto;              /* stay in one row */
	white-space:nowrap;
}
.round_element {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--theme-color-href);
	text-decoration: none;
	font-size: 18px;
	}.href_color {
	color: var(--theme-color-light-text)!important;
}
.pagination svg {
    fill: var(--theme-color1);
}
.drop-menu {
    position: relative;
    min-width: 165px;
    white-space: nowrap;
    flex: 1 1 0;
}

@media (min-width: 768px) {
    .drop-menu {
        flex: 0 0 auto;
    }
}

.drop-menu .select {
    width: 100%;
}
.drop-menu.active {
	border-radius: 5px 5px 0 0;
}
.drop-menu.active:hover,
.drop-menu.active:focus {
	border-radius: 5px 5px 0 0;
}
.drop-menu.active .select i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.drop-menu:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}
.drop-menu .dropdown li {
	cursor: pointer;
	color: #242526;
	/* border-top: 1px solid #e0dfe5; */
}
.drop-menu.active .select>span,
.drop-menu.active .select i,
.drop-menu .dropdown li:hover {
	/* color: var(--theme-color1); */
}
.drop-menu .dropdown li:last-child {
	border-bottom: 0;
}
	.drop-menu .select {
    border: 1px solid #e3e3e5;
    border-radius: 8px;
    padding: 9px 12px;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #616696;
    transition: border-radius .1s ease, border-color .1s ease;
}

.drop-menu .select span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.drop-menu .select i {
    flex-shrink: 0;
    margin-left: 8px;
}
.drop-menu.active .select {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0 .125rem .25rem rgb(5 7 12 / 4%) !important;
}
.drop-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #e3e3e5;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: -1px 0 0;
    display: none;
    z-index: 150;
    border-radius: 0 0 8px 8px;
    border-top: 0;
    box-shadow: 0 .125rem .25rem rgb(5 7 12 / 4%) !important;
    max-height: 300px; /* keeps it from stretching too far */
    overflow-y: auto; /* scrolls instead of clipping */
    white-space: normal; /* allows wrapping of long text */
    word-break: break-word; /* ensures really long strings break */
}
.drop-menu .dropdown li {
	cursor: pointer;
}
.drop-menu .dropdown li {
	/* border-top: 1px solid #e0dfe5; */
}
.drop-menu .dropdown li a {
	display: block;              /* make link fill the row */
	width: 100%;
	padding: 10px 12px;          /* clickable padding */
	color: #616696;
	text-decoration: none;
}
.drop-menu .dropdown li a:hover {
	background: #f4f4f8;
	/* color: var(--theme-color1); */
}
.drop-menu .dropdown li:hover {
	background: var(--theme-color-shade);
}
/* Show on open */
.drop-menu.open .dropdown {
	display: block;
}
.fs-12 {
    font-size: 12px;
}
.mx-n2 {
    margin: 0px -23px;
}
.filter_container {
}
.fancy_shadow{
	box-shadow: 0 .125rem .25rem rgb(5 7 12 / 4%) !important
}
.car_items {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    white-space: nowrap;
    scrollbar-width: none;
    overflow-y: visible;
}
.car_items::-webkit-scrollbar {
	display: none;
}
.car_items .car_item {
	flex: 1 1 0;          /* each li grows/shrinks equally */
	text-align: center;
	padding-bottom: 5px;
}
.car_items .car_item a {
	display: flex;
	flex-direction: column;   /* stack icon on top of text */
	align-items: center;
	justify-content: center;
	text-decoration: none;
	/* font-weight: 500; */
	transition: color 0.2s ease, background 0.2s ease;
	padding: .5rem;
	border-radius: 6px;
	height: 100%;
	/* min-width: 110px; */
}
.car_items .car_item a:hover {
	background: rgba(0,0,0,0.05);
	color: #000;
}
.car_items .car_item svg {
	margin-bottom: 0.3rem;
	font-size: 1.5em;
}
.btn-border{
	border:1px solid #e0dfe5;
	}.btn-radius{
	border-radius: .45rem;
}
.step-indicator {
	display: flex;
	align-items: center;
	padding: 0px 25px;
	margin-bottom: 30px;
}
.step {
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 1;
}
.step-indicator .step-icon {
	height: 40px;
	width: 40px;
	border-radius: 16px;
	background: var(--bs-primary-bg-subtle);
	text-align: center;
	position: relative;
	line-height: 42px;
}
.step.active .step-icon {
	background: var(--bs-primary);
	color: white;
}
.step p {
	text-align: center;
	position: absolute;
	bottom: -50px;
	white-space: nowrap;
}
.step.active p {}
.step.step2 p,
.step.step3 p {
	left: 50%;
	transform: translateX(-50%);
}
.indicator-line {
	width: 100%;
	height: 1px;
	background: var(--bs-primary-bg-subtle);
	flex: 1;
}
.indicator-line.active {
	background: linear-gradient(to right, var(--bs-primary) -50%, var(--bs-primary-bg-subtle) 50%);
}
.indicator-line.done {
	background: var(--bs-primary);
}
.indicator-line.done_line {
	background: var(--bs-primary);
}
@media screen and (max-width: 500px) {
	.step p {
		font-size: 11px;
	}
}
span.dynamic_selector_image {
	float: left;
	width: 60px;
	height: 50px;
	object-fit: cover;
	margin-right: 5px;
	border-radius: 3px;
	overflow: hidden;
}
span.dynamic_selector_image img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
span.dynamic_selector_image_client {
	float: left;
	width: 60px;
	height: 50px;
	object-fit: cover;
	margin-right: 5px;
	border-radius: 3px;
	overflow: hidden;
}
span.dynamic_selector_image_client img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
/* Scoped styling for dropdown options in the DoubleSelectorDrop container */
.DoubleSelectorDrop .select2-results__option {
	width: 100%;
	/* Set the width to 100% */
	float: left;
	/* Ensure items align properly */
}
.DoubleSelectorDrop .select2-container--classic .select2-selection--single,
.DoubleSelectorDrop .select2-container--classic .select2-selection--single,
.DoubleSelectorDrop .select2-container--classic .select2-selection--single .select2-selection__rendered,
.DoubleSelectorDrop .select2-container--default .select2-selection--multiple,
.DoubleSelectorDrop .select2-container--default .select2-selection--single,
.DoubleSelectorDrop .select2-container--default .select2-selection--single,
.DoubleSelectorDrop .select2-container--default .select2-selection--single .select2-selection__rendered {
	border-color: #ffffff;
	/*! color: var(--bs-body-color); */
	height: 62px;
	line-height: 17px;
	padding-top: 5px;
}
.DoubleSelectorDrop .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:last-child,
.DoubleSelectorDrop .select2-container--default .select2-results__option--selected:last-child {
	border-bottom-right-radius: 7px;
	border-bottom-left-radius: 8px;
}
.scrollmenu {
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.scrollmenu::-webkit-scrollbar {
	display: none;
}
.scrollmenu span {
	display: inline-block;
	padding: 10px 20px;
	margin-right: 5px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #e8ebf6;
}
.scrollmenu span:last-of-type {
	margin-right: 0;
}
.order_scroll {
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
	background: #ffffff;
	border-bottom: 1px solid #dde3e8;
}
.order_scroll::-webkit-scrollbar {
	display: none;
}
.order_scroll a {
	display: inline-block;
	padding: 13px 0px;
	text-align: center;
	text-decoration: none;
	margin-right: 15px;
}
.order_scroll a:hover {
	/* color: RGBA(79, 73, 204, var(--bs-link-opacity, 1)) !important; */
}
.order_scroll span:last-of-type {
	margin-right: 0;
}
.order_scroll_href {}
.order_scroll .active {
	color: var(--bs-primary);
	border-bottom: 2px solid var(--bs-primary);
}
.order_scroll a.ret_href:hover {
	background: var(--bs-primary);
	color: white;
}
.order_scroll a.active:hover {}
.car_selector_data strong {
	padding-top: 3px;
	display: inline-block;
}
.clean_cal_selector .lightpick__month {
	padding: 0px;
	background-color: none;
	border: 0px solid #e0e6eb;
	border-radius: 5px;
}
.clean_cal_selector {
	margin-top: -40px;
}
.clean_cal_selector .lightpick {
	background-color: none;
	background: none;
}
.clean_cal_selector .lightpick__months {
	grid-gap: 30px;
	border: 1px solid #ffffff;
	padding: 15px;
	background: #ffffff;
	border-radius: 5px;
}
.lightpick__toolbar {
	margin-bottom: 0px;
	margin-top: 35px;
	margin-right: 15px;
}
.clean_cal_selector .lightpick--2-columns .lightpick__months {
	grid-template-columns: auto auto;
	border: 1px solid #ffffff;
	border-radius: 5px;
	background: white;
	box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
}
.titler_iconer_heading {
	width: 100%;
}
.titler_iconer_heading span {
	font-weight: normal;
	float: left;
	margin-top: 1px;
	color: #6d808f;
}
.cal_puller_home {
	margin-top: 0px;
	float: left;
	width: 100%;
}
.titler_iconer {
	font-size: 29px;
	float: left;
	margin-right: 10px;
	/* fill: var(--bs-primary); */
	margin-top: 3px;
	color: #29343d;
}
.titler_iconer_inside {
	font-size: 30px;
	float: left;
	margin-right: 10px;
	margin-top: 3px;
}
.titler_iconer_heading {
	font-size: 0.85rem;
	margin: 0px;
	padding-bottom: 5px;
	margin-top: 4px;
}
#vehicle-features {}
#vehicle-features table {
	width: 100%;
}
#vehicle-features table tr {
	border-bottom: 1px solid #e0e6eb;
}
#vehicle-features table td {
	padding: 5px 0px;
}
#vehicle-features ul {}
#vehicle-features li {}
.whiter_namer_bcg,
.thsi_here {
	background: #f4f7fb;
	padding: 10px 15px;
	border-radius: 7px;
	border: 1px solid #e0e6eb;
	float: left;
	width: 100%;
}
.fetures_container_down {
	padding: 0px 15px;
}
.was-validated .select2-container--default .select2-selection--single.is-valid {
	border-color: #ffffff;
	/* Typically green */
}
.was-validated .select2-container--default .select2-selection--single.is-invalid {
	border-color: var(--bs-form-invalid-border-color);
	/* Typically red */
}
span.select2-dropdown.select2-dropdown--below.is-invalid {
	border: 1px solid var(--bs-form-invalid-border-color);
	border-top: 0px;
}
span.select2-dropdown.select2-dropdown--above.is-invalid {
	border: 1px solid var(--bs-form-invalid-border-color);
	border-bottom: 0px;
}
.clean_cal_selector.is-invalid .lightpick--1-columns .lightpick__months,
.clean_cal_selector.is-invalid .lightpick--2-columns .lightpick__months {
	border: 1px solid;
	border-color: var(--bs-form-invalid-border-color);
}
span.select2-dropdown.select2-dropdown--above.is-invalid {
	border: 1px solid var(--bs-form-invalid-border-color);
	border-bottom: 0px;
}
span.dynamic_selector_wrapper_init strong {
	margin-top: 3px;
	display: inline-block;
}
.price_liner {
	line-height: 20px;
}
.green_text_price {
	font-weight: 600;
	color: #10ba10;
}
#datepicker-container {
	position: relative;
	/* Makes it the reference point for the spinner */
	border-radius: 8px;
	float: left;
	width: 100%;
	padding: 20px;
	border: 1px solid #e0dfe5;
}
#mobile_cal_show {
	position: relative;
	background: white;
	padding: 20px 15px;
	border-radius: 5px;
	box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
	width: 100%;
	min-height: 615px;
	overflow-y: auto;
}
.spinner-container {
	position: absolute;
	/* Ensure it covers only the datepicker container */
	top: 0;
	left: 0;
	width: 100%;
	/* Cover the entire datepicker container */
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	/* Slight transparency */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	border-radius: inherit;
	/* Matches the border radius of datepicker-container */
}
.product-list-seperator {
	/* padding: 0px 15px; */
}
.product-item {
	border-bottom: 1px dashed #e0e6eb;
	padding: 8px 0px;
	float: left;
	width: 100%;
}
.product-item:last-child {
	border-bottom: 0px solid;
}
.custom_focus_label {
	top: -10px;
	font-size: 12px;
	position: relative;
}
.custom_price_template .form-check-input[type="checkbox"] {
	border-radius: 0.25em;
	margin-right: 10px;
	cursor: pointer;
	position: relative;
	top: -1px;
}
.custom_price_template .form-control:disabled {
	background-color: #ffffff;
	opacity: 1;
}
#vehicle-features li {
	margin-bottom: 5px;
}
iconify-icon.titler_featurer {
	float: left;
	margin-top: 3px;
	font-size: 14px;
	margin-right: 5px;
	color: #10ba10;
}
h4.pricer_currency {
	float: unset;
	margin-right: 5px;
	font-size: 21px;
}
.final_total_green {
	color: #10ba10;
}
.price_calculator {
	float: unset;
}
.price_liner_deposit {
	margin-top: 1px;
}
.price_liner_deposit .price_calculator {
	margin-bottom: 1px;
}
.extra_splitter {
	border-bottom: 1px solid #e0e6eb;
	margin-bottom: 12px;
	padding-top: 10px;
	margin-bottom: 20px;
}
h4.final_total_price {
	white-space: nowrap;
	margin-right: 10px;
}
.dynamic_selector_data .small,
.dynamic_selector_data small {}
.add_order_template .accordion-body.fw-normal {
	border-radius: 6px;
	padding: 0px;
}
.add_order_template input#product-search {
	background: white;
}
.add_order_template .form-check-input[type="checkbox"]:not(:checked) {
	background-color: white;
	margin-top: 0px;
}
#product-list .form-check-input[type="checkbox"]:not(:checked) {
	background-color: white;
	margin-top: 0px;
}
.add_order_template v.accordion-item {
	background: none;
}
.add_order_template .form-check-input[type="checkbox"] {
	margin-right: 5px;
	margin-top: 0px;
}
.add_order_template #vehicle-features {
	color: black;
}
.add_order_template .accordion-button-custom {
	position: relative;
	width: 100%;
	text-align: left;
	border: none;
}
.add_order_template .accordion-flush .accordion-item:first-child {
	background: none;
}
.add_order_template .accordion-button-custom::before {
	content: '';
	position: absolute;
	right: 1px;
	background: var(--bs-primary-bg-subtle);
	width: 30px;
	height: 31px;
	border-radius: 5px;
	color: #642fa8;
	text-align: center;
	line-height: 27px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-weight: normal;
}
.add_order_template .accordion-button-custom.collapsed::before {
	content: '';
	background: var(--bs-primary);
	color: white;
}
.add_order_template .accordion-button-custom::after {
	content: '+';
	position: absolute;
	right: 11px;
	top: 15px;
	transform: translateY(-50%) rotate(0deg);
	/* No rotation initially */
	display: block;
	transition: transform 0.1s ease;
	/* Add transition for smooth rotation */
	font-weight: 300;
	font-size: 20px;
	color: white;
}
.add_order_template .accordion-button-custom.collapsed::after {
	transform: translateY(-50%) rotate(0deg);
	/* No rotation when collapsed */
}
.add_order_template .accordion-button-custom:not(.collapsed)::after {
	content: '+';
	/* Change the content to '-' when expanded */
	transform: translateY(-50%) rotate(45deg);
	/* Rotate the content only */
	color: unset;
	font-weight: 200;
	right: 10px;
	font-size: 24px;
	top: 15px;
}
.mt_manual_acc {
	padding-left: 1px;
	float: left;
	width: 99%;
}
.vehicle-details-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.vehicle-details-grid .grid-item {
	text-align: left;
	border-bottom: 1px solid #dedede;
	padding: 10px 0;
	padding-right: 25px;
	text-transform: capitalize;
}
/* Remove the border-bottom for the items in the last row */
.vehicle-details-grid .grid-item {
	border-bottom: 1px dashed #e0e0e0;
}
/* This works for a grid with 4 columns. The items in the last row have no border */
.vehicle-details-grid .grid-item:nth-last-child(-n + 3) {
	border-bottom: none;
}
h5#detailModalLabel {
	position: relative;
	background: #000;
	float: left;
	position: absolute;
	left: 25px;
	margin-top: -55px;
	z-index: 5;
	padding: 10px 25px;
	color: white;
	border-radius: 5px;
}
@media screen and (max-width: 500px) {
	.vehicle-details-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	h5#detailModalLabel {
		position: relative;
		background: #000;
		float: left;
		position: absolute;
		left: 25px;
		margin-top: -50px;
		z-index: 5;
		padding: 10px 25px;
		color: white;
		border-radius: 5px;
		font-size: 14px;
	}
}
.modal-body-custom {
	padding: 0px 30px;
	/* margin-bottom: 30px; */
}
.dynamic_selector_wrapper_init .dynamic_selector_data {
	top: 4px;
	position: relative;
}
.select2-results__option--disabled {
	display: none;
}
.ti_buttoner {
	top: 1px;
	position: relative;
	margin-left: 10px;
}
/*   START ORDER TEMPLATE  START */
.add_order_template .product-item-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0px;
	/* Add some space between elements */
}
.add_order_template .form-check-input {
	margin-right: 10px;
	vertical-align: top;
	/* Align the checkbox at the top */
	margin-top: 5px;
	/* Optional: Add a small margin to adjust the distance from the top */
}
/* Ensure label text wraps neatly and doesn't go under the checkbox */
.add_order_template .product-label {
	display: inline-block;
	vertical-align: top;
	line-height: 1.4;
	/* Adjust line height for better readability */
}
.add_order_template input#discountInput {}
.discount_mobile_container input#discountInput {
	text-align: right;
}
.add_order_template .titler_iconer.inside_opts {
	background: #f4f7fb;
	padding: 8px;
	margin: 0px;
	height: 40px;
	float: left;
	width: 40px;
	font-size: 25px;
}
.is-invalid .inside_opts {
	color: var(--bs-form-invalid-border-color);
	fill: var(--bs-form-invalid-border-color);
}
.add_order_template span.small_states {
	color: #8e8e8e;
}
.add_order_template .select2-results__option--selectable .dynamic_selector_data .small,
.select2-results__option--selectable .dynamic_selector_data small {
	top: -3px;
	position: relative;
}
.add_order_template .select2-selection--single span.dynamic_selector_data {
	top: 2px;
	position: relative;
}
.desktop_extra_margin {
	margin-bottom: 45px;
}
@media (max-width: 769px) {
	.desktop_extra_margin {
		margin-bottom: 25px;
	}
	.vehicle-details-grid .grid-item:nth-last-child(-n + 4) {
		border-bottom: 1px dashed #e0e0e0;
	}
	.vehicle-details-grid .grid-item:nth-last-child(-n + 2) {
		border-bottom: 0px;
	}
	.respo_m_bottom {
		margin-bottom: 15px;
	}
	input#discountInput {
		max-width: unset;
	}
	.price_liner {
		line-height: 20px;
		margin: 5px 0px;
	}
	.no_selection_yet,
	.no_selection_yet span {
		text-align: center;
		margin-bottom: 10px;
	}
	.add_order_template .accordion-button-custom::before {
		top: 0px;
	}
	.product-list-seperator {
		padding: 0px 5px;
	}
	.fetures_container_down {
		padding: 0px 5px;
	}
}
/*   START ORDER TEMPLATE   END */
/*   ADMIN SELECT VEHICLE STEP  START */
@media (max-width: 769px) {
	.form-control {}
	.admin_select_vehichle span.vhc_name.badge.position-absolute {
		font-size: 12px;
	}
	.admin_select_vehichle .half_row .row>* {
		width: 50%;
		max-width: 50%;
	}
	.admin_select_vehichle .half_row .row {
		--bs-gutter-x: 15px;
	}
}
/*   ADMIN SELECT VEHICLE STEP  END */
/*   ADMIN ADD ORDER USER STEP  START */
.add_order_user img.card-img-top.img-responsive {
	max-height: 100px;
}
.add_order_user .card_step {
	margin-top: 30px;
}
.nav_ul_custom {
	background: white;
	border-radius: 5px;
	/* box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2); */
}
.nav_ul_custom .user-profile-tab .nav-item:first-child .nav-link {
	border-radius: 5px 0px 0px 5px;
	/* Example: Top corners rounded */
}
.nav_ul_custom .user-profile-tab .nav-item .nav-link {
	border-radius: 0px;
	width: 100%;
	min-width: 140px;
}
.nav_ul_custom .user-profile-tab .nav-item .nav-link.active {
	color: var(--bs-nav-pills-link-active-color);
	background: var(--bs-primary);
	position: relative;
	/* padding: 15px 25px; */
	width: 100%;
}
.nav_ul_custom .user-profile-tab .nav-item .nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid var(--bs-primary);
}
@media (max-width: 769px) {
	.nav_ul_custom .user-profile-tab .nav-item .nav-link {
		border-radius: 0px;
		width: 100%;
		min-width: 140px;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	.respo_fullwidth {
		width: 100%;
	}
	.add_order_user li.nav-item {
		width: 50%;
	}
	.add_order_user .nav_ul_custom .user-profile-tab .nav-item:last-child .nav-link.active {
		border-bottom-right-radius: 5px;
		border-top-right-radius: 5px;
	}
	.add_order_user .price_liner,
	.add_order_user .price_liner span {
		text-align: center;
		float: unset;
	}
	.add_order_user .disapper_respo {
		background: no-repeat;
		box-shadow: none;
		padding: 0px;
		margin: 0px -7px;
	}
	.titler_iconer_heading {
		/* padding-bottom: 5px; */
		float: left;
	}
	.add_order_user .col-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
		display: flex;
		align-items: center;
	}
	.add_order_user .card_step_section .mb-2 {
		margin-bottom: 0rem !important;
	}
}
/*   ADMIN ADD ORDER USER STEP  END */
.manual-flexer-row {
	--bs-gutter-x: 30px;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1* var(--bs-gutter-y));
	margin-right: calc(-0.5* var(--bs-gutter-x));
	margin-left: calc(-0.5* var(--bs-gutter-x));
	box-sizing: border-box;
}
.col.manual-flexer {
	padding-left: calc(var(--bs-gutter-x)* 0.5);
	padding-right: calc(var(--bs-gutter-x)* 0.5);
}
@media (max-width: 769px) {
	.body-wrapper .container-fluid,
	.body-wrapper .container-lg,
	.body-wrapper .container-md,
	.body-wrapper .container-sm,
	.body-wrapper .container-xl,
	.body-wrapper .container-xxl {
		padding: 25px;
	}
	.body-wrapper {
		margin-left: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
	}
	.col-6.miner_6 {
		width: 40%;
	}
	.col-6.maxer_6 {
		width: 60%;
	}
	.manual-flexer-row {
		--bs-gutter-x: 30px;
		--bs-gutter-y: 0;
		display: unset;
		flex-wrap: wrap;
		margin-top: calc(-1* var(--bs-gutter-y));
		margin-right: calc(-0.5* var(--bs-gutter-x));
		margin-left: calc(-0.5* var(--bs-gutter-x));
		padding-top: 0px;
		margin: 0px;
	}
	.col.manual-flexer {
		padding-left: unset;
		padding-right: unset;
		padding-bottom: calc(var(--bs-gutter-x)* 0.4);
	}
}
/*   ADMIN ADD ORDER REVIEW STEP  START */
.rew_item_data {
	float: left;
}
.rew_item_icon {
	float: right;
	font-size: 20px;
	/* margin-top: 10px; */
	margin-right: 20px;
	color: #10ba10;
}
.rew_item_icon_seerator {
	float: left;
	font-size: 20px;
	margin: 0px 15px;
}
.rew_container {
	float: left;
	margin-right: 5px;
}
.rew_item {
	float: left;
	margin-right: 25px;
}
.rew_container_right {
	float: right;
	margin-right: 5px;
}
.extra_item_details {
	margin-top: 15px;
	color: #ff6692;
	line-height: 20px;
	position: relative;
	margin-bottom: 20px;
}
.extra_item_details_icon {
	float: left;
	font-size: 40px;
	margin-right: 10px;
}
.rew_item img {
	width: 50px;
	float: left;
	margin-right: 15px;
	height: 50px;
	border-radius: 5px;
}
input#discountInput {
	max-width: 100px;
}
.modal_pricing table {
	width: 100%;
}
.modal_pricing td,
.modal_pricing th {
	border-bottom: 1px dashed #dedede;
	padding: 8px 0px;
	min-width: 100px;
	vertical-align: top!important;
}
.modal_pricing tr:last-child td {
	border-bottom: 0px solid #dedede;
}
.modal_pricing {
	background: white;
	border-radius: 5px;
	/* box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2); */
}
.modal_pricing th {
	color: black;
}
@media (max-width: 769px) {
	.respo_center {
		text-align: center;
		align-items: center;
	}
	.rew_container {
		width: 100%;
	}
	input#discountInput {
		max-width: unset;
	}
	.rew_container_right {
		float: left;
		margin-right: 0px;
		width: 100%;
		margin-top: 0px;
		padding: 0px;
	}
	.respo_review_seperator {
		float: left;
		width: 100%;
		font-size: 20px;
		padding: 0px 10px;
		padding-bottom: 0px;
		padding-top: 5px;
		border-top: 1px dashed #d2d2d3;
		margin-top: 25px;
		height: 25px;
	}
	.respo_review_seperator_icon {
		color: var(--bs-primary);
		position: relative;
		top: -17px;
		background: white;
		border-radius: 20px;
	}
	.btn_respo_full {
		width: 100%
	}
	.card.respo_center_text {
		text-align: center;
		align-items: center;
		justify-content: center;
		display: flex;
	}
	.price_calculator {
		float: unset;
	}
	.below_respo {
		margin-top: 20px;
	}
	.btn_respo_full_details {
		width: 100%;
		float: left;
		padding: 15px;
		border-top: 1px dashed #10ba10;
	}
	.rew_item.no-warp {
		margin: 0px;
		width: 100%;
	}
	.col-6.respo_full_width {
		width: 100%;
		/* margin-bottom: 20px; */
	}
	.primary-gradient-modal .row.g-0.mb-3.border-bottom.pb-3 {
		/* margin: 0px !important; */
		padding: 0px !important;
	}
	.modal_pricing .row.flex-nowrap {
		display: unset;
	}
	.modal_pricing .col.respo_full_width {
		margin: 0px;
		padding: 0px;
	}
	.modal_pricing .respo_no_border {
		border-bottom: 0px !important;
		margin-bottom: 0rem !important;
		padding: 0px !important;
	}
	.modal_pricing .card.primary-gradient-modal {
		margin-bottom: 15px;
	}
	.modal_pricing_tables {
		width: 100%;
		overflow-x: auto;
		display: block;
		white-space: nowrap;
		/* Prevent table cells from wrapping */
	}
	.modal_pricing_tables table {
		width: 100%;
		border-collapse: collapse;
	}
	.modal_pricing_tables th,
	.modal_pricing_tables td {
		padding: 10px 0px;
		text-align: left;
	}
	.modal_pricing_tables .card-body.text-center.px-9 {
		padding: 10px;
	}
}
/*   ADMIN ADD ORDER REVIEW STEP  END */
.primary-gradient-modal {
	background: #f5f5f9;
	box-shadow: none;
	margin: 0px;
}
/*   ADMIN ADD ORDER RESULTS STEP  END */
.add_order_result svg.fail_icon_red {
	color: #ff6692;
	font-size: 80px;
	border: 5px solid;
	width: 120px;
	align-items: center;
	padding: 27px;
	border-radius: 40px;
	height: 120px;
}
.add_order_result svg.success_icon_green {
	color: var(--bs-primary);
	font-size: 80px;
	border: 3px solid;
	width: 70px;
	align-items: center;
	padding: 15px;
	border-radius: 20px;
	height: 70px;
}
.add_order_result .container_centerer {
	padding-top: 100px;
}
/*   ADMIN ADD ORDER RESULTS STEP  END */
body .select2-results__option:last-child {
	/* margin-bottom: 10px; */
}
.clean_cal_selector .lightpick__months {
	height: 355px;
}
.custom-modal-content .lightpick__months {
	/* margin-top: -47px; */
}
.single_days {
	text-align: center;
	padding: 13px 15px;
	width: 80px;
	background: rgb(245 245 245) !important;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-right: 1px solid #e3e7f4;
	padding-bottom: 15px;
}
.single_days_booking {
	text-align: center;
	padding: 8px 15px;
	background: var(--bs-primary);
	color: #ffffff;
	border-radius: 5px;
	float: left;
}
.single_days h5,
.single_days_booking h5 {}
.border-radius-5 {
	border-radius: 5px;
}
@media (max-width: 769px) {
	.clean_cal_selector .lightpick__months {
		height: 354px;
		margin: 0px -10.2%;
		padding: 25px 30px;
	}
}
.lightpick__day.is-available.is-start-date.is-end-date.is-in-range {
	border-radius: 5px;
}
.border_input_custom {
	border: 1px solid #e0e6eb;
	box-shadow: none;
}
.wh_holder_data {
	flex-basis: 100%;
}
.wh_holder_img_section {
	float: left;
	position: relative;
	margin-right: 15px;
	width: 60px;
	height: 60px;
	background: #eeeeee;
	border-radius: 5px;
}
.wh_holder_img_section img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}
.wh_holder_img_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 63%));
	border-radius: 8px;
	z-index: 1;
}
.overlay_stable_icn {
	position: relative;
	top: 3px;
}
.wh_holder_img_counter {
	position: absolute;
	bottom: 0px;
	left: 3px;
	color: white;
	padding: 2px 0px;
	font-size: 12px;
	border-radius: 8px;
	z-index: 2;
	/* width: 100%; */
	/* height: 100%; */
}
.wh_holder_data_section {
	background: gainsboro;
	width: 100%;
}
.wh_holder_price_section {
	float: right;
	text-align: center;
}
@media (min-width: 811px) {
	.order_header .wh_holder_price_section {
		float: right;
		text-align: center;
	}
}
.wh_holder_data_stats {
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
.wh_holder_data_details {
	float: left;
}
.wh_holder_data_stats_left {
	display: block;
	position: relative;
	background: var(--bs-primary);
	float: left;
	width: auto;
	color: var(--bs-white);
	border-radius: 15px;
	padding: 3px 10px 2px 10px;
	font-size: 12px;
	text-align: center;
	margin-bottom: 10px;
	padding-top: 2px;
	width: 100%;
}
.wh_holder_data_stats_left::after {
	content: '';
	position: absolute;
	left: 45%;
	top: 100%;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid var(--bs-primary);
	clear: both;
}
.wh_holder_data_stats_right {
	float: right;
}
.dry_item_container {
	display: flex;
	align-items: center;
	margin: 0px -15px;
	padding: 15px 15px;
	border-radius: 7px;
	padding-bottom: 0px;
	/* margin-bottom: 10px; */
}
.order_header .dry_item_container {
	padding-top: 5px;
}
.dry_item_container:hover {
	display: flex;
	align-items: center;
	background: #ffffff;
	outline: 1px solid #e0e6eb;
	position: relative;
	z-index: 2;
}
.order_header .dry_item_container:hover {
	box-shadow: none;
	border: 0px;
	outline: 0px;
}
.dry_item_start,
.dry_item_end {
	flex: 0 1 auto;
	/* Fit content */
}
.dry_item_middle {
	flex: 1 1 auto;
	/* Take remaining space */
	text-align: left;
	/* Center content in the middle section */
}
.dry_item_seperator_plain {
	width: 100%;
	padding-bottom: 15px;
}
.dry_item_seperator {
	width: 100%;
	border-bottom: 1px dashed #d2d4da;
	padding-bottom: 13px;
	float: left;
}
.tracking_view .dry_item_seperator:last-of-type {
	border-bottom: 0px solid #e0e6eb;
}
.dry_item_container:hover .dry_item_seperator {
	border-bottom: 1px solid white;
}
.dry_item_container.hovered-above .dry_item_seperator {
	border-color: #f4f7fb;
}
.dry_item_seperator_iconer {
	float: left;
	font-size: 20px;
	padding: 15px 15px;
	padding-left: 5px;
}
.order_big_counter {
	float: left;
	background: rgb(242 242 248);
	padding: 9px;
	min-width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 25px;
	font-weight: 600;
}
.wh_holder_data_details_extra {
	margin-top: 12px;
}
.mobile_cut {
	max-width: 155px;
}
.list_cunter_stable {
	position: relative;
	top: 2px;
}
@media (max-width: 420px) {
	.wh_holder_data_stats_left {
		font-size: 10px;
		margin-top: 2px;
	}
	.wh_holder_img_section {
		margin-right: 10px;
	}
}
.bg-neutral {
	background: rgb(210 217 223);
}
.clearblock {
	float: left;
	width: 100%;
}
.left-indicator {
	font-size: 14px;
	cursor: pointer;
	z-index: 10;
	background: var(--bs-primary-bg-subtle);
	position: relative;
	top: -5px;
	user-select: none;
	/* Prevents text selection */
	-webkit-user-select: none;
	/* Prevents text selection in Safari */
	-moz-user-select: none;
	/* Prevents text selection in Firefox */
	-ms-user-select: none;
	/* Prevents text selection in older IE */
	outline: none;
	/* Removes outline on focus/click */
	cursor: pointer;
	/* Ensures it looks clickable */
	z-index: 1;
	padding: 7px 11px;
	border-radius: 5px;
	padding-top: 4px;
	margin-right: 15px;
}
.sidebar-nav {
	position: relative;
	/* Ensures children are positioned relative to this container */
}
li.nav-small-cap.cap_informer {
	line-height: 18px;
	font-size: 13px;
	position: absolute;
	width: 90%;
	bottom: 15px;
}
.right-indicator {
	font-size: 14px;
	cursor: pointer;
	z-index: 10;
	color: var(--bs-primary);
	position: relative;
	top: -5px;
	user-select: none;
	/* Prevents text selection */
	-webkit-user-select: none;
	/* Prevents text selection in Safari */
	-moz-user-select: none;
	/* Prevents text selection in Firefox */
	-ms-user-select: none;
	/* Prevents text selection in older IE */
	outline: none;
	/* Removes outline on focus/click */
	cursor: pointer;
	/* Ensures it looks clickable */
	z-index: 1;
	background: var(--bs-primary-bg-subtle);
	padding: 7px 11px;
	/* color: white; */
	border-radius: 5px;
	padding-top: 4px;
}
.editor_container {
	/* border-radius: 5px; */
	position: relative;
	position: relative;
	z-index: 2;
	/* box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2); */
}
@media (max-width: 769px) {
	li.nav-small-cap.cap_informer {}
	.editor_container {
		background: white;
		border-radius: 0px;
		margin-top: 10px;
		position: relative;
		z-index: 2;
	}
	.right-indicator {
		right: -5px;
	}
	.left-indicator {
		margin-left: 0px;
	}
	.btn-nav {
		display: block;
		text-align: center;
		padding: 10px 20px;
		padding-bottom: 15px;
	}
}
.slide_menu_container {
	padding: 0px 25px;
}
span#all_count_images_medium {
	margin: 3px;
}
div#all_count_images_mini {
	float: right;
	margin-left: 2px;
}
.dz-preview.initial-first-item .dz-image::after {
	content: '1';
	position: absolute;
	top: 5px;
	left: 5px;
	background-color: white;
	color: black;
	border-radius: 5PX;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	z-index: 20;
	box-shadow: 1px 1px 5px #00000059;
}
.editor_container_menu {
	background: none;
}
.iconer_left {
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
	font-size: 23px;
	margin-right: 10px;
	background: rgb(245 245 249);
	border-radius: 5px;
	width: 40px;
	color: #505073;
	height: 40px;
}
.iconer_left_menu {
	float: left;
	line-height: 20px;
}
.card_menu {}
.card_menu li {
	border-bottom: 1px solid #e3e7f4;
	/* padding-bottom: 10px; */
}
.card_menu li:last-child {
	border-bottom: 0px solid #dedede;
}
span.text-primary.more_iconer {
	font-size: 25px;
	padding-top: 5px;
	display: block;
}
.card_menu a {
	padding: 18px 0px;
	display: block;
	line-height: 22px;
	background: white;
	border-radius: 6px;
	box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
}
.card_menu a:hover {}
@media (max-width: 769px) {
	.order_scroll {
		white-space: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-ms-overflow-style: none;
		scrollbar-width: none;
		background: #ffffff;
		border-bottom: 1px solid #dde3e8;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
		border-right: 0px;
		display: flex;
	}
	div#datepicker-container {
		height: 685px;
	}
	.lightpick__month:last-child {
		padding-top: 0px;
	}
	.lightpick__day-of-the-week {
		padding: 10px 0px;
	}
	.lightpick__day.is-end-date.is-in-range::before {
		top: 10px;
	}
	.lightpick__day {
		height: 35px !important;
	}
	.editor_container_menu {
		background: white;
		border-radius: 0px;
		margin-top: -3px;
		position: relative;
		z-index: 2;
		position: relative;
	}
	.editor_container .card-body {
		/* padding: 0px 25px; */
	}
	.card_menu a {
		padding: 15px 0px;
		display: block;
		line-height: 22px;
		background: white;
		border-radius: 8px;
		box-shadow: none;
	}
	.card_menu {
		padding-bottom: 1px;
	}
	.card_menu li {
		border-bottom: 1px dashed #dedede;
		padding-bottom: 0px;
	}
}
input#input_value_add {
	padding-left: 54px !important;
	width: 100%;
}
.item_backer {
	background: rgb(245 245 249);
	background: rgb(245 245 249);
	border-radius: 5px;
	padding: 5px 0px;
	margin-bottom: 25px;
}
.item_backer_manual {
	background: rgb(245 245 249);
	background: rgb(245 245 249);
	border-radius: 5px;
	padding: 5px 0px;
}
.item_backer_map {
	padding: 15px 0px;
	background: rgb(245 245 249);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	margin-bottom: 1px;
}
.bordered_select .select2-selection__rendered {
	border-color: #dfe5ef;
	height: 83px;
	line-height: 80px;
}
label.focused_already {
	font-size: 13px;
	font-weight: 400;
}
iconify-icon.small_stable {
	font-size: 17px;
	position: relative;
	top: 4px;
}
.container-fluid.mobile_pt {
	padding-top: 0px;
}
@media (max-width: 769px) {
	.item_backer {
		padding: 5px 0px;
		border-radius: 5px;
	}
	.item_backer::after {
		position: absolute;
		bottom: 100%;
		/* Position above the element */
		left: 13%;
		/* Position the triangle relative to the item */
		transform: translateX(-50%);
		/* Center the triangle horizontally */
		border-width: 8px;
		/* Size of the triangle */
		border-style: solid;
		/* Creates an upward triangle */
		display: block;
		/* Ensure visibility if necessary */
	}
	a.head_back_url {
		position: relative;
	}
	.container-fluid.mobile_pt {
		/* padding-top: 10px; */
	}
}
.info_sm_tooltip {
	font-size: 18px;
	position: relative;
	display: inline-block;
	top: 4px;
	cursor: pointer;
}
@media (max-width: 769px) {
	.dry_item_seperator_plain,
	.dry_item_seperator {
		display: flex;
		/* Enable flexbox */
		align-items: center;
		/* Align all items vertically in the center */
	}
	.dry_item_start {
		flex-shrink: 0;
		/* Prevent shrinking of the start section */
	}
	.dry_item_middle {
		flex-grow: 1;
		/* Allow the middle section to take remaining space */
		/* margin: 0 8px; */
		/* Add spacing between start and end sections */
		overflow: hidden;
		/* Ensure no overflow */
	}
	.dry_item_end {
		flex-shrink: 0;
		/* Keep the end section fixed size */
	}
}
.trck_btn_rsp {
	margin-top: 11px;
}
@media (max-width: 769px) {
	.trck_btn_rsp {
		margin-top: 0px;
	}
}
.admin_itemer_table {}
.admin_itemer_table table {
	width: 100%;
}
.admin_itemer_table tr {
	border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.admin_itemer_table tr:last-child {
	border-bottom: 0px;
}
.admin_itemer_table td {
	padding: 10px 0px;
}
.accordion-item.features-item {
	background: #f5f5f9;
}
.del_feature_btn {
	cursor: pointer;
	padding: 6px;
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
	/* border-color: inherit; */
	/* Reset to default or custom color */
	outline: none;
	/* Optional: remove focus outline */
}
.issues_menu {
	margin-top: -15px;
}
.issues_menu table {
	vertical-align: text-bottom;
	margin: 0px;
	padding: 0px;
	width: 100%;
}
.issues_menu td {
	vertical-align: text-bottom;
	border-bottom: 1px;
}
.issues_menu tr {
	border-bottom: 1px dashed #dedede;
}
.issues_menu tr:last-child {
	border-bottom: 0px dashed;
}
td.nowarp {
	white-space: nowrap;
}
.nowarp {
	white-space: nowrap;
}
td.middle {
	white-space: nowrap;
	vertical-align: middle;
}
svg.cstm_iconer {
	touch-action: none;
	width: 18px;
	height: 16px;
	fill: var(--bs-heading-color);
	opacity: 0.8;
}
svg.cstm_iconer_bigger {
	touch-action: none;
	width: 20px;
	height: 18px;
	fill: var(--bs-heading-color);
	opacity: 0.8;
}
svg.cstm_iconer_biiger {
	width: 20px;
	height: 17px;
}
svg.cstm_iconer_body {
	width: 16px;
}
svg.fill_white {
	fill: white;
}
.sidebar-nav ul .sidebar-item.selected>.sidebar-link svg.cstm_iconer,
.sidebar-nav ul .sidebar-item.selected>.sidebar-link.active svg.cstm_iconer,
.sidebar-nav ul .sidebar-item>.sidebar-link.active svg.cstm_iconer {}
.sidebar-nav ul .sidebar-item .sidebar-link:hover svg.cstm_iconer {
	/* fill: var(--bs-primary); */
	opacity: 1;
}
.sidebar-nav ul .sidebar-item.selected>.sidebar-link:hover svg.cstm_iconer,
.sidebar-nav ul .sidebar-item.selected>.sidebar-link.active:hover svg.cstm_iconer,
.sidebar-nav ul .sidebar-item>.sidebar-link.active:hover svg.cstm_iconer {}
/* Remove blue background for autofilled inputs */
input:-webkit-autofill {
	background-color: transparent !important;
	/* Make the background transparent */
	-webkit-box-shadow: 0 0 0px 1000px white inset !important;
	/* Match your desired background color */
	transition: background-color 5000s ease-in-out 0s;
	/* Prevent flickering */
}
.info_opener {
	background: #e8ecf1;
	padding: 3px;
	border-radius: 20px;
	position: relative;
	right: -2px;
	top: 5px;
	color: unset;
	transform: rotate(45deg);
	transition: transform 0.1s ease-in-out, background 0.1s ease-in-out;
}
.info_opener.collapsed {
	transform: rotate(0deg);
	background: var(--bs-primary);
	color: white;
}
.instruction_container {
	background: #f4f7fb;
	border-radius: 8px;
	line-height: 15px;
	padding: 15px;
}
.instruction_container span {
	color: green;
}
iconify-icon.included_nm_icn {
	position: relative;
	top: 2px;
}
.sis_data_table td,
.sis_data_table th {
	padding: 13px;
	background: none;
	border: none;
}
.sis_data_table td:first-child,
.sis_data_table th:first-child {
	padding: 0px;
	vertical-align: middle;
}
.sis_data_table td:last-child,
.sis_data_table th:last-child {
	padding-right: 0px;
	padding-left: 0px;
}
.sis_data_table tr {
	border-bottom: 1px dashed #d2d4da;
}
.sis_data_table tr:last-child {
	border-bottom: 0px solid var(--bs-table-border-color);
}
.editor_container_table {
	position: relative;
	z-index: 2;
}
.table_totals {
	background: white;
	4px -1px rgba(175, 182, 201, 0.2);
	float: left;
	width: 100%;
	padding-top: 20px;
	position: relative;
	z-index: 0;
}
@media (max-width: 769px) {
	.editor_container_table {
		margin: 0px;
		margin-top: 10px;
	}
}
.info_expense {
	display: inline-block;
	position: relative;
	top: 2px;
	padding-left: 5px;
	color: var(--bs-primary);
	font-size: 14px;
	cursor: pointer;
}
.delete_itm_exp {
	cursor: pointer;
}
/* Basic styles for the trigger */
.filter_item {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-size: 12px;
	white-space: nowrap;
}
.filter_item .ti {}
/* Style for the list */
.filter_item_content ul {
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 800px;
	/* Set the max height */
	overflow-y: auto;
	/* Enable scrolling */
	scrollbar-width: thin;
	/* Optional: Customize scrollbar width for modern browsers */
}
/* For Webkit browsers (Chrome, Edge, Safari) */
.filter_item_content ul::-webkit-scrollbar {
	width: 8px;
	/* Scrollbar width */
}
.filter_item_content ul::-webkit-scrollbar-thumb {
	background-color: #ccc;
	/* Scrollbar thumb color */
	border-radius: 4px;
	/* Rounded scrollbar */
}
.filter_item_content ul::-webkit-scrollbar-thumb:hover {
	background-color: #b3b3b3;
	/* Hover color for the scrollbar thumb */
}
.filter_item_content ul::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	/* Scrollbar track color */
}
/* For Firefox */
.filter_item_content ul {
	scrollbar-width: thin;
	/* Thin scrollbar */
	scrollbar-color: #f4f7fb white;
	/* Thumb and track colors */
}
.filter_item_content ul {
	margin: 0px;
}
.filter_item_content li {
	border-bottom: 1px solid #f3f3f3;
}
.filter_item_content li:last-child {
	border-bottom: 0px;
}
.filter_item_content li a {
	display: block;
	padding: 7px 10px;
}
.filter_sm_icn {
	position: relative;
	font-size: 18px;
	margin-right: 5px;
	color: #cecece;
}
.filter_item_content input {
	border-color: #dedede;
	padding: 5px;
	padding-left: 25px;
	font-size: 12px;
	margin-bottom: 5px;
	padding-top: 7px;
}
.filter_item_content .ti {
	font-size: 14px;
	margin-left: 6px;
}
.filter_item {
	flex: 1;
	/* Each item takes an equal amount of available space */
}
.filter_item p {
	margin: 0;
	/* Remove default margins */
}
.filter_item:hover {}
.selected_filter a,
.filter_item_content .selected_filter a:hover {
	background: var(--bs-primary);
	border-radius: 3px;
	color: white;
}
.selected_filter a:hover {
	background: #f4f7fb;
}
.filter_item_content li a:hover {
	color: unset;
	background: #f4f7fb;
	border-radius: 3px;
}
.no-shadow {
	box-shadow: none;
}
.text-secondary-filter {
	opacity: 0.5;
}
.filterer_icn {
	float: left;
	position: relative;
	top: 2px;
	margin-right: 5px;
	opacity: 0.5;
	font-size: 14px;
}
.lightpick__month {}
.lightpick__toolbar {
	position: relative;
	z-index: 50;
}
@media (max-width: 769px) {
	.custom-modal-content {
		padding-top: 20px;
	}
	.hider_res {
		display: none;
	}
	.filter_item {
		flex: 1 1 calc(33.333% - 10px);
		/* 3 items per row with space for the gap */
		box-sizing: border-box;
		/* Include padding and border in width calculation */
		max-width: calc(33.333% - 10px);
	}
}
.dry-btn {
	background: none;
	border: none;
	margin: 0px;
	padding: 0px;
}
.exp_badge {
	padding: 10px;
	color: #326a53;
}
.vhcl_highlight {
	border: 1px solid rgb(112 115 120 / 12%);
	padding: 10px;
	border-radius: 10px;
}
#detailsModal table {}
#detailsModal td {
	padding: 10px;
	border-color: rgb(112 115 120 / 12%);
}
#detailsModal tr:last-child td {
	border: 0px;
}
#detailsModal tr:first-child td {
	border: 0px;
	padding: 0px;
}
.clearer_href {
	border-top: 1px solid #dedede;
}
.clearer_href a {}
.inline_filter {
	float: left;
	background: white;
	padding: 8px 12px;
	border-radius: 5px;
	color: #1d2d3a;
	cursor: pointer;
	width: 100%;
	border: 1px solid #e0e6eb;
	transition: background 0.10s ease-in-out;
}
.inline_filter:hover {
	background: #f5f5fb;
}
.inline_filter .ti {
	position: absolute;
	position: absolute;
	right: 10px;
	margin-top: 2px;
}
.inline_filter_plain {
	float: left;
	background: #f5f5f9;
	padding: 10px 15px;
	border-radius: 5px;
	color: #1d2d3a;
	cursor: pointer;
	padding-right: 15px;
	font-size: 12px;
}
.inline_filter_plain:hover {
	outline: 1px solid #dbe5ff;
}
.inline_filter_plain .ti {
	position: relative;
	top: 2px;
	margin-left: 3px;
}
.dmg_row {
	border-bottom: 1px dashed #dedede;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.dmg_row:last-child {
	border-bottom: 0px dashed #dedede;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
/* Container for the gallery */
.gallery-custom {
	display: flex;
	flex-wrap: wrap;
	/* Allow wrapping to the next row */
	gap: 0px 15px;
	/* Space between images */
	justify-content: flex-start;
	/* Align items to the start of the row */
}
/* Wrapper for each image */
.image-wrapper-gall {
	position: relative;
	/* Needed for positioning the remove button */
	width: calc(33.333% - 10px);
	/* Each image takes up 1/3 of the row minus the gap */
	max-width: calc(33.333% - 10px);
	box-sizing: border-box;
	/* Include padding and border in the width calculation */
	overflow: hidden;
	/* Prevent content overflow */
	border-radius: 8px;
	/* Optional: Rounded corners */
	border: 1px solid #e0e6eb;
	/* Optional: Add a border */
	margin-bottom: 15px;
}
@media (max-width: 769px) {
	.image-wrapper-gall {
		width: calc(50% - 10px);
		/* Adjust to 2 images per row on smaller screens */
		max-width: calc(50% - 10px);
	}
	.sis_data_table td,
	.sis_data_table th {
		padding: 10px;
	}
}
@media (max-width: 480px) {
	.image-wrapper-gall {
		width: 100%;
		/* Single image per row on very small screens */
	}
}
/* Image inside the wrapper */
.image-wrapper-gall img {
	width: 100%;
	/* Make the image take up the full width of the container */
	height: 135px;
	/* Set a consistent height for images */
	object-fit: cover;
	/* Ensure the image covers the container without distortion */
}
/* Remove button */
.image-wrapper-gall .remove-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	background: var(--bs-danger);
	) !important;
	/* Semi-transparent background */
	color: #fff;
	font-size: 18px;
	line-height: 18px;
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	z-index: 10;
	/* Ensure it's above the image */
	display: flex;
	align-items: center;
	justify-content: center;
}
.image-wrapper-gall .remove-btn:hover {
	background: #d9577c;
}
.input-group {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
}
span.small_states {
	color: #8c93ad;
}
.prd_main_cin {
	font-size: 20px;
	color: var(--bs-primary);
}
.was-validated .floating-labels-icons-right {
	right: 30px;
}
.bordered_select_force .was-validated .select2-container--default .select2-selection--single.is-valid {
	border-color: #dfe5ef;
}
.service_iconer {
	height: 39px;
	width: 29px;
	float: left;
	color: var(--bs-primary);
	margin-right: 10px;
	fill: var(--bs-primary);
}
.wh_danger {
	background: #ff6692;
}
.wh_danger::after {
	border-top: 6px solid #ff6692;
}
.wh_success {
	background: #36c76c;
}
.wh_success::after {
	border-top: 6px solid #36c76c;
}
.wh_iconer {
	width: 100%;
	height: 100%;
}
.toggle_noafetr:after {
	display: none;
}
.items_master_container .wh_holder_data_stats_left {
	min-width: 80px;
}
.form-check .is-invalid~label {
	color: var(--bs-form-invalid-border-color) !important;
}
.add_user textarea.form-control {
	border: 1px solid #dedede;
}
.priv_see {
	border-top: 1px dashed #dedede;
	padding-top: 10px;
	margin-top: 13px;
	cursor: pointer;
}
span.toggle_saver {
	position: absolute;
	right: 0;
	top: 11px;
	cursor: pointer;
}
.was-validated .toggle_saver {
	right: 25px;
}
input.is-valid~.toggle_saver {
	right: 25px;
}
span.toggle_saver {
	position: absolute;
	right: 0;
	top: 11px;
	cursor: pointer;
	z-index: 500;
	pointer-events: all;
	cursor: pointer;
}
.icon-text-wrapper {
	display: flex;
	align-items: center;
	gap: 7px;
	/* Space between icon and text */
}
.icon-container {
	width: 11px;
	/* Adjust to the size of the largest icon */
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.text-container {
	flex: 1;
	/* Allows text to grow/shrink as needed */
}
.time-picker-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: flex-start;
}
.time-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	flex: 1 1 calc((100% - 15px) / 3);
	height: 40px;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
	background: white;
	min-width: 50px;
}
.time-box:hover {
    border-color: var(--theme-color1) !important;
}
.time-box.selected {
	background-color: #007bff;
	color: #fff;
}
.time-picker-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: flex-start;
}
.time_type_switch {
	background: rgb(255 255 255);
	border-radius: 5px;
}
.time-box.time_active,
.time-box-ret.time_active {
	background: var(--theme-color1);
	color: white;
}
.time_type_switch .active {
	background-color: var(--theme-color1);
	color: white;
}
.time_type_switch ul {
	list-style: none;
	padding: 0;
	display: flex;
	position: relative;
}
.time_type_switch li {
	cursor: pointer;
	width: 100%;
	text-align: center;
	position: relative;
	/* Reset border */
}
.time_type_switch .active {
	background-color: #535366;
	color: white;
}
.time_type_switch .active::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #535366;
}
.time_type_switch li:first-child.active {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	border-left: 2px solid var(--bs-primary);
}
.time_type_switch li:last-child.active {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}
.time-box-ret {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	flex: 1 1 calc((100% - 15px) / 3);
	/* Dynamically adjusts width for 4 items per row */
	height: 40px;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
	background: white;
	min-width: 50px;
	border: 1px solid #e0dfe5!important;
}
.time-box-ret:hover {
	/* Hover effect */
}
.time-box-ret.selected {
	background-color: #007bff;
	color: #fff;
}
/* ///////////////// NEW ADD ORDER ////////////////////////////////////////////////// */
.custom-close-modal {
	position: absolute;
	padding: 16px;
	margin-top: -15px;
	margin-right: -15px;
	z-index: 500;
}
.dynamic_selector {
	padding: 10px;
	cursor: pointer;
	margin-bottom: 5px;
	border-radius: 8px;
	background: white;
	border: 1px solid #e0dfe5!important;
	transition: border-color 0.3s ease;
}
.dynamic_selector:hover {
	border-color: var(--theme-color1) !important;
}
.dynamic_selector:last-of-type {
	/* border-bottom: 0px solid var(--bs-primary-bg-subtle); */
}
#vehicleFilter {
	display: flex;
	flex-wrap: wrap;
	/* Allow items to wrap to the next row */
	gap: 5px;
	/* Spacing between buttons */
	justify-content: flex-start;
	/* Align items to the start of the row */
}
.vehicle-filter-btn {
	flex: 1 1 calc(50% - 5px);
	max-width: calc(50% - 5px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0px;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	background: white;
	color: #616687;
	transition: border-color 0.3s ease;
}
.vehicle-filter-btn:hover {
	border-color: var(--theme-color1) !important;
	color: #616687;
}
/* Responsive: Single column on small screens */
@media (max-width: 600px) {
	.vehicle-filter-btn {
		flex: 1 1 100%;
		max-width: 100%;
	}
}
/* Responsive: Three columns on larger screens */
@media (min-width: 900px) {
	.vehicle-filter-btn {
		flex: 1 1 calc(33.33% - 5px);
		max-width: calc(33.33% - 5px);
	}
}
.vehicle-filter-btn.active {
	background: var(--theme-color1);
	border: 1px solid var(--theme-color1);
	color: var(--theme-color-light-text);
}
.dots_pickups {
	float: left;
	height: 110%;
	margin-left: 20px;
	margin-right: 25px;
	margin-top: 5px;
}
.location_dot {
	width: 10px;
	height: 10px;
	background-color: var(--bs-primary);
	border-radius: 50%;
	position: relative;
	margin-left: 0;
	/* Adjust for alignment */
	margin-top: -3px;
}
.location_main_line {
	height: 60%;
	width: 1px;
	background-color: var(--bs-primary);
	margin-left: 4px;
}
.location_grey_line {
	height: 60%;
	width: 1px;
	background-color: var(--bs-primary);
	margin-left: 4px;
}
.dots_pickups_pusher {
	float: left;
	/* Float the element to the left */
	width: calc(100% - 60px);
	/* Dynamically adjust the width minus 50px */
	margin-bottom: 10px;
	/* Optional spacing below */
	padding-left: 20px;
	/* Optional padding if needed */
	box-sizing: border-box;
	/* Include padding/border in width calculations */
}
.bordered_vehicles a {}
.bordered_vehicles a {
	box-shadow: none;
}
.bordered_vehicles a:hover {}
@media (max-width: 769px) {
	.location_grey_line {
		height: 80%;
		background-color: var(--bs-primary-bg-subtle) !important;
		box-shadow: 0px 0px 4px #0000000f inset;
	}
	span.out-of-stock-msg {
		display: block;
	}
	.respo_non_center {
		align-items: flex-start !important;
	}
	.custom_modal_danger {
		margin-top: 0px !important;
	}
	.dots_pickups {
		margin-left: 18px;
	}
	.vehicle-filter-btn {
		flex: 1 1 calc(100% - 10px);
		/* Single button per row on smaller screens */
	}
	.bordered_vehicles a {
		border: none;
		box-shadow: none;
	}
}
.app_selector {
	border-radius: 8px;
	float: left;
	width: 100%;
	line-height: 18px;
	cursor: pointer;
	background: white;
	/* border: 1px solid transparent; */ /* make sure a border exists to animate */
	transition: border-color 0.3s ease;
}
.app_selector:hover {
	border-color: var(--theme-color1) !important;
}
.app_selector_short {
	border-radius: 8px;
	float: left;
	line-height: 18px;
	cursor: pointer;
	background: white;
	/* border: 1px solid transparent; */ /* make sure a border exists to animate */
	transition: border-color 0.3s ease;
}
.app_selector_short:hover {
	border-color: var(--theme-color1) !important;
}
.app_selector img {
	=: 60px;
	height: 50px;
	border-radius: 5px;
}
.selector_icon {
	width: 100%;
	height: var(--theme-color-shade);
	height: 50px;
	/* Enables Flexbox */
	align-items: center;
	/* Centers vertically */
	text-align: center;
	border-radius: 5px;
	justify-content: center;
	/* Centers horizontally */
}
.selector_hstack svg,
.vhcl_selector svg {
	font-size: 15px;
	width: 28px;
	fill: var(--theme-color1);
	color: var(--theme-color1);
	margin-top: 13px;
}
.rounded-circle{
    height: 10px;
    width: 10px;
}
.is_required .selector_icon svg {
	color: #ff6692 !important;
}
.is_required .selector_hstack svg,
.is_required .vhcl_selector svg {
	color: #ff6692 !important;
}
.selector_icon iconify-icon {
	color: var(--bs-primary);
	font-size: 30px;
}
.selector_hstack {
	display: flex;
	flex-direction: row;
	align-items: center;
	/* Align items vertically */
	padding: 17px;
}
.over_hidden {
	flex-grow: 1;
	/* Takes up all available space */
	overflow: hidden;
	/* Prevents overflow */
	text-overflow: ellipsis;
	white-space: nowrap;
}
.over_hidden_noflex {
	/* flex-grow: 1; */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.app_selector_arrow_container {
	margin-left: auto;
	/* Pushes the arrow to the far right */
	display: flex;
	/* Optional: Center the arrow vertically */
	align-items: center;
	/* Optional: Center the arrow vertically */
	position: relative;
	left: -10px;
	top: -5px;
}
.app_selector_arrow {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--bs-primary);
	/* Change the color as needed */
}
.app_selector_plus .app_selector_arrow {
	border-top: 5px solid white;
}
.text-side-container {
	padding-left: 20px;
}
.pickup_loc {
}
.dynamic_active {
	background: var(--theme-color1);
	color: white;
}
.dynamic_active .text-grey {
	color: #ffffff9c;
}
.dynamic_active .text-muted {
	color: #ffffff9c;
}
.flat_cal_pricer .lightpick__month {
	box-shadow: none;
}
.flat_cal_pricer .lightpick__toolbar {
	margin-top: 0px;
	margin-bottom: 10px;
	margin-right: 0px;
}
.dynamic_active .selector_icon svg {
	font-size: 15px;
	width: 30px;
	fill: #ffffff;
}
.body-wrapper.body_no_border {
	border-top-left-radius: 0px;
}
iconify-icon.fs-7.side_suitcase {
	font-size: 28px !important;
	height: 25px;
	position: relative;
	top: -2px;
}
.app_selector_plus {
	content: '';
	position: absolute;
	right: -10px;
	background: var(--bs-primary);
	width: 30px;
	height: 30px;
	border-radius: 5px;
	color: white;
	text-align: center;
	line-height: 27px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: normal;
}
.dropoff_loc {
	margin-bottom: 15px;
}
.uppercase {
	text-transform: uppercase;
}
#vehicleDetailsPrice {
	background: white;
	padding: 13px;
	border-radius: 8px;
}
.line_seperator_dash {
	border-bottom: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.loc_pic_arrow {
	margin-left: unset;
	margin-top: -2px;
}
@media (max-width: 769px) {
	.selector_hstack .app_selector_arrow_container {
		left: -10px;
	}
	.loc_pic_arrow {
		margin-left: auto;
		color: var(--bs-primary);
	}
	.location_main_line {
		height: 84%;
		width: 1px;
		background-color: var(--bs-primary);
		margin-left: 4px;
	}
	.line_seperator_dash {
		border-bottom: 1px dashed #e0e0e0;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}
	span.dynamic_selector_image {
		width: 45px;
		height: 45px;
	}
	.vhcl_selector .selector_icon {
		width: 45px;
		height: 45px;
	}
	#vehicleDetailsPrice {
		margin-top: -70px;
		position: relative;
		z-index: 5;
	}
}
.dynamic_active,
.dynamic_selector:hover {
	border-radius: 5px;
	/* background: rgb(255 255 255); */
	/* box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2); */
}
.respo_data {}
.respo_data table {
	width: 100%;
	text-align: right;
	white-space: nowarp !importan;
}
.respo_data tr {}
.respo_data td {
	white-space: nowrap !important;
	padding: 10px;
	padding-right: 0px;
	/* padding-left: 15px; */
}
.mobi_days {
	border-radius: 5px;
	position: relative;
	margin-top: -5px;
	padding: 0px;
	overflow: hidden;
	padding-left: inherit;
}
.container_spiner {
	text-align: center;
	padding: 66px 25px;
}
.mobi_total_days {
	text-align: center;
	border-radius: 50px;
	margin-right: 10px;
	width: 42px;
	padding: 10px 0px;
	margin-bottom: 5px;
	background: #ececee;
}
.hiddenSpinner {
	display: none !important;
}
#dynaContent {
	/* background: white; */
	border-radius: 5px;
}
.repso_padding_4 {
	padding: 0px;
}
.respo_pb_15 {
	padding-bottom: 0px;
}
@media (max-width: 769px) {
	#dynaContent {
		padding: 0px;
	}
	.repso_padding_4 {
		padding: 0px 40px;
	}
	.respo_pb_15 {
		padding-bottom: 15px;
	}
}
.is-invalid .select2-selection__rendered,
.was-validated .select2-container--default .select2-selection--single.is-invalid {
	color: #ff6692 !important;
}
.order_cal_container {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	/* gap: 3px; */
}
.order_cal_day {
	padding: 10px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	outline: 1px solid #dce1e7;
	padding-top: 2px;
}
.order_cal_day:hover {}
.remainig_cal_empty {
	padding: 10px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	align-items: center;
	outline: 1px solid #dce1e7;
}
.orders_count_cal {
	text-align: right;
	border-left: 1px dashed #dedede;
	padding-top: 8px;
	font-size: 12px;
}
.orders_items_container {
	margin-top: 0px;
}
.itm_cell {
	font-size: 12px;
	background: #f8f8f8;
	margin-top: 3px;
	padding: 3px 7px;
	color: #d6d6d6;
	border-radius: 2px;
}
.order_cal_day .text-muted {
	line-height: 14px;
}
.thruclass .thru_cell {
	background: rgb(236 232 246);
	color: #755fac;
}
.startclass .start_cell {
	background: #b3efc9;
	color: #2f9053;
}
.endclass .end_cell {
	background: #ffe8d6;
	color: #c97142;
}
.itm_cell_last {
	width: 60%;
}
.order_cal_day strong {
	font-weight: 400;
}
.startclass .start_cell strong,
.endclass .end_cell strong,
.thruclass .thru_cell strong {
	font-weight: 700;
}
.order_cal_day.order_cal_day_header {
	background: rgb(245 245 249);
	text-align: center;
	/* color: white; */
	padding: 5px;
	margin-bottom: 10px;
	box-shadow: none;
	font-size: 12px;
	gap: 5px;
	margin: 2px;
	margin-bottom: 10px;
	outline: 0px;
	border-radius: 3px;
}
#order_controls_btn {
	white-space: nowrap !important;
	!importan;
	!importa;
	!import;
	!impor;
	!imp;
	!im;
	!i;
	!;
}
#order_controls_btn button {
	border: none;
	border-radius: 4px;
	min-width: 61px;
	padding: 6px 12px;
	background: rgb(255 255 255);
	color: #7b88af;
	font-size: 12px;
}
#order_controls_btn button.active {
	background: var(--bs-primary);
	color: white;
}
#order_controls_btn a {
	border: none;
	border-radius: 4px;
	min-width: 61px;
	padding: 5px 15px;
	background: rgb(255 255 255);
	color: #7b88af;
}
#order_controls_btn a.active {
	background: var(--bs-primary);
	color: white;
}
.order_cal_container .full-width-incal {
	grid-column: span 7;
	/* Make this element span all 7 columns */
	text-align: center;
	margin-bottom: 15px;
	margin-top: 10px;
}
span.ord_cal_control {
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 14px;
}
.ord_start_link:hover>.start_cell {
	background: #29b25c;
	color: #ffffff;
}
.ord_end_link:hover>.end_cell {
	background: #f98d54;
	color: #ffffff;
}
.ord_thru_link:hover>.thru_cell {
	background: #5f69a0;
	color: #ffffff;
}
.me-n2.rounded-bars {
	border: 1px solid #ebf1f6;
	border-radius: 5px;
	background: white;
	box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
	padding-right: 29px;
}
.menucontainer {
	width: 230px;
	float: left;
	margin-left: 20px;
}
.menu .bg-success,
.order_scroll .bg-success {
	background-color: rgb(179 239 201) !important;
	color: #2f9053;
}
.menu-item {
	padding: 10px;
	cursor: pointer;
	color: #4f5b80;
	fill: #4f5b80;
}
.menu-item.active {
	border-bottom: 0px;
	font-weight: 600;
	border: 0px;
	color: black;
	filter: bla;
}
.submenu {
	display: none;
	padding: 0px 25px;
	padding-bottom: 15px;
	padding-right: 15px;
	padding-top: 5px;
}
.submenu a {
	display: block;
	padding: 8px;
	text-decoration: none;
	/* color: #333; */
	border-radius: 5px;
	padding: 6px 8px;
}
.menu-item .badge {
	float: right;
}
.submenu a:hover {
	background: #f5f5f9;
	color: unset;
}
/* Divider Line */
.menu_divider_line {
	display: block;
	border-top: 1px solid #dde3e8;
	margin: 7px 1px;
}
/* Divider Text (Non-clickable) */
.menu_divider_text {
	display: block;
	padding: 6px 8px;
	color: #8f9abd;
	/* padding-left: 0px; */
	/* margin-left: -10px; */
	padding-bottom: 2px;
}
.menu-item.menu-item-active.active {
	background: white;
}
.menu .badge {
	font-size: 12px;
	font-weight: normal;
	padding: 5px;
	min-width: 25px;
}
.menu .bg-danger,
.order_scroll .bg-danger {
	background: #ffd9e4 !important;
	color: #d44871;
}
.submenu_parent {
	border: 1px solid #dde3e8;
	border-radius: 5px;
	overflow: hidden;
	background: white;
	position: relative;
	left: -3px;
	width: 103%;
	padding-right: 3px;
	padding-left: 2px;
}
.no_top_border .menu-item {
	border-color: 1px solid #ffffff00;
	cursor: pointer;
}
svg.menu_iconer {
	width: 16px;
	margin-right: 9px;
}
a.hrf_active {
	background: #f5f5fb;
	/* color: var(--bs-primary); */
}
a.hrf_active:hover {
	/* color: var(--bs-primary); */
}
.middle_add {
	margin-bottom: 10px;
}
a.new_item_menu {
	border: 1px solid #dde3e8;
}
.men_iconer {
	float: right;
	font-size: 12px;
	margin-top: 5px;
}
iconify-icon.menu_iconer {
	font-size: 18px;
}
.header_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* Ensures vertical alignment */
	background: white;
	padding: 20px 25px;
	border-radius: 10px;
}
.header_init {
	display: flex;
	align-items: center;
	/* Ensures vertical alignment */
}
.header_init svg {
	height: 20px;
	width: 20px;
	margin-right: 20px;
	color: var(--bs-primary);
}
.header_init img {
	max-width: 140px;
	border-radius: 4px;
	max-height: 45px;
	width: 100%;
}
.header_sider {
	display: flex;
	/* Ensure vertical alignment */
	align-items: center;
	text-align: left;
}
body {
	background-size: 100% 125px;
	background-color: var(--theme-color-shade);
}
a.up_logo {
	background: #f5f5f9;
	padding: 10px 20px;
	border-radius: 4px;
	border: 1px solid #e3e7f4;
}
.items_master_container {}
.items_master_container table {
	width: 100%;
}
.items_master_container tr:hover td {
	background: grey;
	cursor: pointer;
}
.items_master_container tr:hover td:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.items_master_container tr:hover td:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
tr.items_master_container_row {
	border-top: 1px solid #dedede;
}
.items_master_container_row td {
	padding: 10px;
}
.order_status_container {
	background: #dedede;
	height: 60px;
	padding: 11px 15px;
	/* Added padding to the right to balance the triangle */
	align-items: center;
	/* Vertically center */
	justify-content: center;
	/* Horizontally center */
	position: relative;
	/* Needed for the triangle positioning */
	/* Optional: make the text stand out */
	margin-right: 30px;
	padding-right: 10px;
	border-radius: 5px;
	width: 90px;
	text-align: center;
}
/* Triangle on the left */
.order_status_container::before {
	content: '';
	position: absolute;
	right: -14px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 28px solid transparent;
	border-bottom: 28px solid transparent;
	border-left: 15px solid #dedede;
}
.image_item img {
	width: 60px;
	float: left;
	margin-right: 15px;
	height: 60px;
	border-radius: 5px;
}
.image_item {
	float: left;
	margin-right: 25px;
}
.go-right {
	float: right;
}
.bg-custom-ongoing {
	background-color: rgb(146 131 216) !important;
}
.priviledges_table {
	width: 100%;
	border-collapse: collapse;
}
.priviledges_table td,
.priviledges_table th {
	padding: 4px 0px;
	text-align: center;
	/* Center text by default */
}
.priviledges_table tr {
	border-top: 1px solid #dedede;
}
.priviledges_table thead tr {
	border-top: 0px solid #dedede;
}
.priviledges_table td:first-child,
.priviledges_table th:first-child,
.priviledges_table td:nth-child(2),
.priviledges_table th:nth-child(2) {
	text-align: left;
	/* Align first and second columns to the left */
}
.priviledges_table td:first-child {
	padding-right: 10px;
}
.priviledges_table table {
	width: 100%;
}
@media (max-width: 600px) {
	.hide_580 {
		display: none;
	}
}
@media (max-width: 900px) {
	.hide_900 {
		display: none;
	}
}
@media (max-width: 450px) {
	.respo_blocks_row {}
	.respo_blocks_row .col-3 {
		width: 33%;
	}
	.max-width-date-first {
		width: 48%;
		overflow: hidden;
		padding: 0px;
		padding: 0px !important;
		!importan;
		!importa;
		!import;
		!impor;
		!impo;
		!imp;
		!im;
		!i;
		!;
	}
	.items_master_container {
		margin: 0px -25px;
		box-sizing: border-box;
		overflow: hidden;
		margin-bottom: 20px;
		padding-bottom: 15px;
		padding-top: 3px;
	}
	.items_master_container .dry_item_container {
		display: flex;
		align-items: center;
		margin: 0px;
		padding: 0px;
		border-radius: 7px;
		padding-bottom: 0px;
		/* margin-bottom: 10px; */
	}
	.items_master_container .dry_item_seperator {
		padding: 10px 25px;
		/* padding-right: 25px; */
	}
	.line_drop {}
	.order_status_container {
		padding: 11px 12px;
		width: 90px;
	}
	.wh_holder_price_section {
		float: right;
		text-align: center;
		/* margin-top: -10px; */
	}
	.order_iconer_left.pe-2 {
		padding-right: 5px !important;
	}
	.card-body.card_paginate {
		margin: 0px 20px;
	}
	.table_totals {
		/* margin: 20px; */
	}
}
@media (max-width: 410px) {
	.max-width-date-first {
		max-width: 45%;
		overflow: hidden;
	}
	.line_drop,
	.dot_drop {
		display: none;
	}
	.order_status_container {
		padding: 11px 12px;
		width: 70px;
	}
}
.bottom_mob_day {
	padding-top: 4px;
	height: 64px;
	/* padding-right: 20px; */
	min-width: 90px;
	/* padding-left: 20px; */
	text-align: left;
	border-bottom: 1px dashed #dedede;
	margin-left: 20px;
}
.order_cal_day_mobile:last-of-type .bottom_mob_day {
	border-bottom: 0px dashed #dedede;
}
.order_cal_mobile {
	/* margin: 0px -25px; */
}
.order_cal_day_mobile {
	/* border-bottom: 1px solid #e3e7f4; */
}
.order_cal_day_mobile:last-of-type {
	border-bottom: 0px solid #e3e7f4;
}
a.ret_href {
	float: right;
	margin-right: 10px;
	font-weight: unset;
	color: var(--bs-primary);
	background: #f2f2f8;
}
span.boxd_mob_day {
	text-align: center;
	/* padding: 5px; */
	width: 100%;
	text-align: center;
	border-radius: inherit;
	float: left;
	color: #8a97c0;
	line-height: 18px;
	height: 55px;
	padding-top: 5px;
	line-height: 21px;
	border-radius: 5px;
	box-sizing: border-box;
	background: #f4f4f6;
}
a.mob_order_href {
	width: 100%;
}
span.boxd_mob_day.start_cell {
	background: #b3efc9;
	color: #2f9053;
}
span.boxd_mob_day.thru_cell {
	background: #ece8f6;
	color: #755fac;
}
span.boxd_mob_day.end_cell {
	background: #ffe8d6;
	color: #c97142;
}
.order_cal_day_mobile {
	/* border-bottom: 1px solid #e3e7f4; */
	padding: 0px;
}
.respo_cal_selector {
	margin: 20px 20px;
	margin-bottom: 15px;
}
foreignObject {
	overflow: scroll;
}
svg {
	touch-action: unset;
}
.pointer {
	cursor: pointer;
}
.checker {
	background: #f2f2f8;
	border-radius: 5px;
	float: left;
	width: 100%;
	padding: 5px 15px;
}
input.paragraph_number {
	width: 30px;
	border: 0px;
	font-weight: bold;
}
img.img-fluid {
	padding: 10px;
	border-radius: 5px;
	max-height: 115px;
	width: 100%;
	margin-top: 5px;
}
.payment-methods {
	gap: 10px;
	padding: 0;
}
.payment-option {
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 5px;
	border: 1px solid #ddd;
	transition: all 0.2sease-in-out;
	width: 100%;
	margin-top: 5px;
	box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
}
.payment-option.active {
	background: var(--bs-primary);
	color: #fff;
	border-color: var(--bs-primary);
}
.payment-option input {
	display: none;
}
.justify-content-right {
	justify-content: right;
}
.bg-soft {
	background-color: rgb(245 245 249);
}
.mini_btn {
	padding: 6px 10px;
}
.mini_btn:hover {
	background: var(--bs-primary) !important;
	color: white !important;
}
.custom-modal-content .scrollmenu span {
	border: 0px solid #e8ebf6;
}
.items_master_container>a.dry_item_container:last-of-type .dry_item_seperator {
	border: 0px solid red;
	/* for testing */
}
#chat-widget {
	width: 300px;
	height: 400px;
	border: 1px solid #ccc;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #fff;
	display: flex;
	flex-direction: column;
}
#chat-header {
	background: #007bff;
	color: #fff;
	padding: 10px;
	text-align: center;
}
#chat-body {
	flex: 1;
	padding: 10px;
	overflow-y: auto;
}
#chat-input {
	display: flex;
	border-top: 1px solid #ccc;
}
#user-input {
	flex: 1;
	padding: 8px;
	border: none;
	outline: none;
}
#send-btn {
	padding: 8px 12px;
	background: #007bff;
	color: white;
	border: none;
	cursor: pointer;
}
.language-box {
	border-radius: 6px;
	overflow: hidden;
}
.language-box.active-lang {
	background-color: rgb(242 242 248) !important;
}
.language-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	text-decoration: none;
	color: inherit;
	border-radius: 6px;
	white-space: nowrap;
	overflow: hidden;
	transition: background 0.2s;
}
.language-link:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
.flag-thumb {
	width: 22px;
	border-radius: 2px;
	overflow: hidden;
	flex-shrink: 0;
	max-height: 20px;
}
.custom_icon_action {
	padding: 6px 9px;
	position: relative;
	width: 100%;
	background: #000000;
	background: linear-gradient(1980deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 55%) 98%);
	text-align: right;
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}
.custom_icon_action svg {
	filter: drop-shadow(1px 1px 1px #0000004d);
}
.flag-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.language-label {
	font-weight: 400;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* front */
img.public_logo {
	max-width: 170px;
}
.rotators {
	background: radial-gradient(circle at 70% 10%, rgb(89 74 251 / 84%) 0%, rgb(7 0 38 / 65%) 100%), url(/images/fleet.jpg);
	/* ðŸ‘ˆ Add your image path here */
	background-size: cover;
	/* Scale image to cover the area */
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 15px;
	margin: 25px;
	margin-top: 0px;
	overflow: hidden;
	min-height: 350px;
	margin-bottom: 45px;
}
.rotators_static {
	background: radial-gradient(circle at 70% 10%, rgb(89 74 251 / 84%) 0%, rgb(7 0 38 / 65%) 100%), url(/images/fleet.jpg);
	/* ðŸ‘ˆ Add your image path here */
	background-size: cover;
	/* Scale image to cover the area */
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 15px;
	margin: 25px;
	margin-top: 0px;
	overflow: hidden;
	min-height: 3x;
}
.the_calc_day {
	min-width: 70px;
	margin-right: 5px;
	font-size: 12px;
	margin-bottom: 5px;
	padding: 5px;
}
.hm_white {
	background: white;
	color: var(--bs-primary);
}
.hm_shadow_darker {
	box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 17%);
}
.onset {
	font-weight: 600;
	letter-spacing: -1px;
	color: white;
	margin-bottom: 25px;
	text-shadow: 2px 2px 2px rgb(5 8 26 / 8%);
}
.quotes_rotate {
	font-weight: 800;
	color: white;
	display: none;
	transform: scale(1);
	opacity: 1;
	filter: blur(0px);
	margin-bottom: 25px;
}
h2.onset_body {
	font-weight: 700;
	letter-spacing: -1px;
}
h3.onset_body {
	font-weight: 700;
}
h4.onset_body {
	font-weight: 600;
}
span.underhigh {
	border-bottom: 1px dashed #ffcc00;
	color: #ffcc00;
	font-weight: 600;
}
span.underhigh_free,
.underhigh_free {
	border-bottom: 1px dashed;
	font-weight: 600;
}
.mediumer {
	border-radius: 15px;
	padding: 50px;
	margin: 0px -60px;
}
img.public_footer_logo {
	max-width: 110px;
}
.general_footer {
	max-width: 700px;
}
.initiate_home {
	background: white;
	padding: 10px;
	border-radius: 5px;
	transition: transform 0.3s ease;
}
.respo_board {
	max-width: 650px;
}
.max-700 {
	max-width: 700px;
}
.center-auto {
	margin: 0px auto;
}
.wizard-container {
	margin: 0 auto;
	overflow-x: clip;
	overflow-y: visible;
	position: relative;
}
.steps-wrapper {
	display: flex;
	width: 100%;
	transition: transform 0.4s ease;
}
.form-step {
	min-width: 100%;
	box-sizing: border-box;
}
.form-step {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease;
}
.form-step.active {
	visibility: visible;
	opacity: 1;
	position: relative;
}
.search_lang_container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	padding: 0 8px 8px;
}
.drawer-menu-container {
	display: flex;
	flex-direction: column;
	height: 100vh;
	/* Full viewport height */
	overflow: hidden;
}
.menu_upper {
	flex: 1 1 auto;
	overflow-y: auto;
	/* scrolls if content is long */
	padding: 1rem;
}
.menu_upper_items li {
	border-bottom: 1px dotted #dedede;
	font-weight: 600;
}
.menu_upper_items li:last-child {
	border-bottom: 0px solid #dedede;
}
.menu_upper_items svg {
	position: relative;
	top: -2px;
	margin-right: 5px;
}
.menu_upper_items svg,
.menu_upper_items a {
	color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1));
}
.menu_upper_items li.nav-act a,
.menu_upper_items li.nav-act svg {
	color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity));
}
.menu_upper_items a {
	display: block;
	padding: 15px 0px;
}
.menu_down {
	flex-shrink: 0;
	padding: 20px;
}
img.sidebar_lg_icn {
	max-width: 40px;
	margin-bottom: 35px;
}
.core_split {
	background: radial-gradient(circle at 70% 10%, rgb(97 82 252 / 84%) 0%, rgb(40 21 121 / 65%) 100%), url(/images/fleet_sec.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 35px 60px;
	margin: -50px;
	border-radius: 15px;
	max-width: 1289px;
	margin: 0px auto;
	margin-bottom: 35px;
}
.days_calculator {
	margin-bottom: 1px;
}
span.bg-auto-discount {
	background: #b3efc9;
	color: #1c745f;
	cursor: pointer;
	+
}
span.in_price_sm {
	font-size: 18px;
	font-weight: 600;
	vertical-align: text-top;
}
@media (max-width: 769px) {
	.respo_reporting {
		padding: 5px;
		border: 0px !important;
		box-shadow: none !important;
		margin-left: -20px;
		padding-right: 10px !important;
	}
	.respo_onboarding {
		border: none;
		box-shadow: none;
		padding: 20px 0px !important;
	}
	.dtp>.dtp-content {
		left: 43% !important;
	}
	.core_split {
		margin: 0px 30px;
		padding: 35px 42px;
		text-align: center;
		margin-bottom: 30px;
	}
	.mediumer {
		padding: 30px;
		margin: 0px;
	}
	.drawer-hamburger {
		display: block;
	}
	.foot_langs {
		display: none;
	}
	.container_respo_footer {
		text-align: center;
	}
	img.public_logo {
		max-width: 140px;
	}
	.max-110 {
		max-width: 110px;
	}
}
.sis_filters_container {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	/* default for desktop */
}
.sis_filters_container .filter_item {
	flex: 1 1 calc(16.66% - 10px);
	/* 100% / 6 items, minus gap compensation */
	min-width: 120px;
	border-radius: 6px;
	cursor: pointer;
}
.list_invoice_status {
	float: left;
	margin-top: 8px;
}
.list_invoice_date {
	float: left;
	min-width: 90px;
	margin-right: 10px;
	margin-top: 10px;
}
.list_invoice_client {
	float: left;
	margin-right: 20px;
}
}
.list_invoice_amount {
	float: right;
}
.list_invoice_relate {
	float: left;
	margin-top: -1px;
	line-height: 0px;
}
.list_invoice_amount {
	float: right;
	margin-top: 10px;
}
.cl_inv_logo {
	display: flex;
	align-items: center;
	height: 100%;
}
/* INVOICE PUBLIC START  */
.invoicer .table {
	display: table;
}
.invoicer .h-12 {
	height: 3rem;
}
.invoicer .w-1\/2 {
	width: 50%;
}
.invoicer .w-full {
	width: 100%;
}
.invoicer .border-collapse {
	border-collapse: collapse;
}
.invoicer .border-spacing-0 {
	--tw-border-spacing-x: 0px;
	--tw-border-spacing-y: 0px;
	border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
.invoicer .whitespace-nowrap {
	white-space: nowrap;
}
.invoicer .border-b {
	border-bottom-width: 1px;
}
.invoicer .border-b-2 {
	border-bottom-width: 2px;
}
.invoicer .border-r {
	border-right-width: 1px;
}
.invoicer .border-main {
	border-color: #5c6ac4;
}
.invoicer .bg-main {
	background-color: var(--bs-primary);
}
.invoicer .bg-slate-100 {
	background-color: var(--theme-color-shade);
}
.invoicer .p-3 {
	padding: 0.75rem;
}
.invoicer .px-14 {
	padding-left: 3rem;
	padding-right: 3rem;
}
.invoicer .px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.invoicer .py-10 {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.invoicer .py-3 {
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
}
.invoicer .py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.invoicer .py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.invoicer .py-14 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.invoicer .pb-3 {
	padding-bottom: 0.75rem;
}
.invoicer .pl-2 {
	padding-left: 0.5rem;
}
.invoicer .pl-3 {
	padding-left: 0.75rem;
}
.invoicer .pl-4 {
	padding-left: 1rem;
}
.invoicer .pr-3 {
	padding-right: 0.75rem;
}
.invoicer .pr-4 {
	padding-right: 1rem;
}
.invoicer .text-center {
	text-align: center;
}
.invoicer .text-right {
	text-align: right;
}
.invoicer .align-top {
	vertical-align: top;
}
.invoicer .text-sm {
	line-height: 7px;
}
.invoicer .text-xs {
	line-height: 1rem;
}
.invoicer .font-bold {
	font-weight: 600;
}
.invoicer .italic {
	font-style: italic;
}
.invoicer .text-main {
	color: var(--bs-heading-color);
	font-size: 14px;
}
.invoicer .text-neutral-600 {}
.invoicer .text-slate-300 {
	color: #cbd5e1;
}
.invoicer .text-slate-400 {
	color: #94a3b8;
}
.invoicer .text-white {
	color: #fff;
}
.invoicer p {
	margin-top: 0;
	line-height: 19px;
}
.cl_inv_logo img {
	max-width: 175px;
}
.invoicer .rounded-left {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.invoicer .rounded-right {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
h1.up_logo_name {
	font-size: 24px;
	margin-top: 5px;
}
@page {
	margin: 0;
}
@media print {
	body {
		-webkit-print-color-adjust: exact;
	}
}
.invoice_table_responsive {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}
.invoice_table_responsive thead {
	font-weight: bold;
}
.invoice_table_responsive th,
.invoice_table_responsive td {
	padding: 9px 0px;
	text-align: left;
	border-bottom: 1px solid #ddd;
	padding-right: 15px;
	line-height: 16px;
}
.invoice_banking tr:last-child td {
	/* border-bottom: 0px solid #ddd; */
	/* or any color you prefer */
}
.payment_ref_row td {
	background: #f9f9f9;
	font-weight: bold;
	text-align: left;
}
.invoice_banking_ref {
	float: left;
	width: 100%;
	border-radius: 4px;
	padding: 5px 0px;
	text-align: left;
	margin-top: 0px;
}
.invoice_banking tr td:last-child,
.invoice_banking tr th:last-child {
	text-align: right;
	/* or any color you prefer */
	padding-right: 0px;
}
/* Responsive Style */
@media screen and (max-width: 768px) {
	.desktop_hide {
		display: block;
	}
	.invoice_table_responsive thead {
		display: none;
	}
	.invoice_banking_ref {
		text-align: center;
		border-bottom: 1px solid #e3e7f4;
		border-radius: 0px;
		margin-bottom: 10px;
		padding-bottom: 10px;
		margin-top: 0px;
		padding-top: 0px;
	}
	.invoice_table_responsive tr {
		display: block;
		margin-bottom: 15px;
		/* padding: 10px; */
	}
	.invoice_banking tr:last-child td {
		border-bottom: 1px solid #e3e7f4;
		/* or any color you prefer */
	}
	.invoice_table_responsive td {
		display: flex;
		justify-content: space-between;
		padding: 7px 0px;
		border: none;
		border-bottom: 1px solid #e3e7f4;
		position: relative;
		line-height: 18px;
		font-size: 13px;
	}
	.invoice_table_responsive td::before {
		content: attr(data-label);
		font-weight: bold;
		color: #717890;
		flex-basis: 50%;
		text-align: left;
	}
	.payment_ref_row td {
		display: block;
		text-align: center;
		background: #f0f0f0;
		border: none;
	}
}
/* INVOICE PUBLIC END  */
.nowrap {
	white-space: nowrap;
}
/* Responsive behavior: make horizontal scroll menu */
@media (max-width: 769px) {
	.header_init img {
		max-width: 120px;
		border-radius: 4px;
		max-height: 45px;
		width: 100%;
	}
	.cl_inv_logo {
		display: none;
	}
	.cl_inv_logo img {
		max-width: 105px;
	}
	.sis_filters_container {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 5px;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.sis_filters_container::-webkit-scrollbar {
		display: none;
	}
	.sis_filters_container .filter_item {
		flex: 0 0 calc(50% - 10px);
		/* 2 per visible line on scroll (adjustable) */
		min-width: 140px;
		/* fallback */
	}
	.sis_filters_container .filter_item:first-child {
		/* your styles here */
		padding-left: 25px;
	}
	.filter_item:last-child {
		/* your styles here */
		padding-right: 20px;
	}
	.filter_item:last-child .ti {
		right: 30px;
	}
	.invice_body .dry_item_seperator {
		display: unset;
		;
		align-items: center;
	}
	.invice_body .dry_item_seperator {
		padding: 10px 25px;
		padding-right: 25px;
	}
}
.touch-expand {
	position: relative;
	/* required for absolute ::before */
	display: inline-block;
	/* just in case it's on inline elements */
}
.touch-expand::before {
	content: "";
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
	z-index: 0;
	/* make sure it's under content */
}
.dynamic_client {
	float: right;
	text-align: right;
	margin-right: 20px;
}
/* RESPONSIVE */
@media (max-width: 1200px) {
	.drawer-hamburger {
		display: block;
	}
	.body-wrapper {
		margin-left: 0px;
	}
	.menucontainer {
		display: none;
	}
	.submenu_parent {
		left: -4px;
		width: 102%;
		padding-right: 3px;
		padding-left: 3px;
	}
	html .container-fluid,
	html .container-lg,
	html .container-md,
	html .container-sm,
	html .container-xl,
	html .container-xxl {
		max-width: 100%;
	}
	.header_container {
	}
	.pusher {
		margin-top: 30px;
	}
}
.data_help_line {
	line-height: 20px;
}
.data_help_line ul {
	list-style-type: disc;
	padding-left: 1.5rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.data_help_line li {
	padding: 5px 0px;
}
@media (min-width: 768px) and (max-width: 1200px) {
	.dynamic_client {
		display: none;
	}
}
.floating-labels .form-control.is-invalid~.bar::before,
.floating-labels .form-control.is-invalid~.bar::after {
	width: 0 !important;
	height: 0 !important;
	background: transparent !important;
	border: 0 !important;
}
.floating-labels .form-control.is-invalid {
	border: none !important;
	/* kill full border */
	border-bottom: 1px solid red !important;
	/* only bottom in red */
}
.services_list_table {
	width: 100%;
	border-collapse: collapse;
}
.services_list_table th {
	text-align: left;
	/* border-bottom: 1px solid #ddd; */
	width: 1%;
	white-space: nowrap;
	padding-right: 20px;
	color: #7b88af;
}
.services_list_table td {
	padding: 4px;
	/* border-bottom: 1px dashed #ddd; */
	color: #0a2540;
}
.services_list_table tr:last-child td,
.services_list_table tr:last-child th {
	border-bottom: 0px dashed #ddd;
}
/* DASHBOARD */
.dash-data-container {
	display: flex;
	align-items: center;
	width: 100%;
}
.dash-data-bookings {
	white-space: nowrap;
	/* fit to content */
	margin-right: 0px;
}
.dash-data-seperator {
	flex: 1;
	border-bottom: 1px dashed #2bb85f;
	margin: 0 10px;
	position: relative;
	/* anchor the arrow */
}
.dash-data-seperator::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	/* tiny triangle pointing right */
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid #2bb85f;
}
.dash-data-price,
.dash-data-stat {
	white-space: nowrap;
	/* keep text intact */
	margin-left: 10px;
}
/* minimalist bars: no track, just a line that stops before the value */
.dynamic-revenue-item {
	margin-bottom: 5px;
}
.dynamic-label {}
.dynamic-line {
	position: relative;
	display: flex;
	/* for full-width measuring */
	align-items: center;
	width: 100%;
	margin-top: -2px;
}
.dynamic-bar {
	height: 4px;
	border-radius: 999px;
	display: inline-block;
	margin-right: 10px;
	/* gap between bar and amount */
	width: 0px;
	/* set via JS in pixels to avoid collisions */
	min-width: 0;
}
/* colors (match your mock: blue, pink, green) */
.dynamic-bar.sales {
	background: #0ea5e9;
}
/* cyan-blue */
.dynamic-bar.expense {
	background: #ff6692;
}
/* pink/red */
.dynamic-bar.profit {
	background: #34c759;
}
/* apple green */
.dynamic-amount {
	display: inline-block;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
/* negative profit styling (width stays 0, number still visible) */
.dynamic-bar.profit.is-negative {
	background: #ef4444;
}
.dynamic-amount.text-negative {
	color: #000;
}
/* keep black like your mock; change to red if you want */
/* small placeholder while â€œfetchingâ€ */
.loading-skeleton {
	font-size: .9rem;
	color: #6b7280;
}
.dynamic-bar[style*="width: 0px"] {
	margin-right: 0 !important;
}
.dynamic-amount.text-negative {
	color: #ff6692 !important;
}
.performer_dash .bg-success,
.dash-data-container .bg-success {
	background-color: rgb(179 239 201) !important;
	color: #2f9079;
}
.performer_dash .bg-danger,
.dash-data-container .bg-danger {
	background: #ffd9e4 !important;
	color: #d44871;
}
.price_priority {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 0;
	/* critical for flex truncation */
	max-height: 14px;
}
.price_priority .car-name {
	margin: 0 .5rem 0 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1 1 auto;
	min-width: 0;
}
.price_priority .car-price {
	flex: 0 0 auto;
	/* never shrink */
	margin: 0;
}
/* fix parent wrapper so children can shrink */
.performer_dash .ms-0 {
	min-width: 0;
}
.dash_iconer {
	font-size: 14px;
	position: relative;
	top: 1px;
}
span.sm_currboard {
	position: relative;
	font-size: 14px;
	top: -10px;
}
.dash_shadow {
	box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
}
.text-dark-success {
	color: #3aa361;
}
.show_under_900 {
	display: none;
}
#order_controls_btn_respo {
	white-space: nowrap !important;
	!importan;
	!importa;
	!import;
	!impor;
	!imp;
	!im;
	!i;
	!;
}
#order_controls_btn_respo button {
	border: none;
	border-radius: 4px;
	min-width: 61px;
	padding: 5px 12px;
	background: rgb(255 255 255);
	color: #7b88af;
}
#order_controls_btn_respo button.active {
	background: var(--bs-primary);
	color: white;
}
#order_controls_btn_respo a {
	border: none;
	border-radius: 4px;
	min-width: 61px;
	padding: 5px 15px;
	background: rgb(255 255 255);
	color: #7b88af;
}
#order_controls_btn_respo a.active {
	background: var(--bs-primary);
	color: white;
}
@media (max-width: 900px) {
	.dash_shadow {
		box-shadow: none;
		border: none;
	}
	.respo_botom_dotted {
		border: 1px solid#dedede;
		padding: 20px !important;
		box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
	}
	.dasn_notifications .border-1,
	.dasn_notifications .border-start {
		border: 0px !important;
	}
	.notify_boxes .border-1,
	.notify_boxes .border-start {
		border: 0px !important;
	}
	.row.respo_splitter {}
	.notify_boxes_container {
		border: 0px;
	}
	.notify_boxes a,
	.dasn_notifications a {
		display: inline;
		float: left;
		width: 100%;
		padding: 0px;
		margin: 0px;
		border: 1px solid #dedede;
		padding: 8px 15px;
		border-radius: 5px;
		box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
	}
	.respo_store {
		border: 1px solid#dedede;
		padding: 25px !important;
		box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2);
	}
	#order_controls_btn_respo {
		display: flex;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		/* Firefox */
		padding-left: 25px;
		margin-bottom: 10px;
	}
	#order_controls_btn_respo::-webkit-scrollbar {
		display: none;
		/* Chrome, Safari */
	}
	#order_controls_btn_respo a {
		flex-shrink: 0;
		white-space: nowrap;
		padding: 5px 10px;
		text-align: center;
	}
	#order_controls_btn_respo>a>div {
		flex-shrink: 0;
		white-space: nowrap;
	}
}
.veri_check {
	position: relative;
	top: -1px;
	margin-left: 3px;
}
.dashed_line_top {
	border-top: 1px dashed #dde3e8;
}
.dashed_line_bottom {
	border-bottom: 1px dashed #dde3e8;
}
.str_success {
	background: #dbf5e4;
}
.str_danger {
	background: #ffd9e4;
}
.str_warning {
	background: #fff1d2;
}
.pro_container {
	width: 100%;
	overflow: hidden;
	border: 1px solid #dedede;
	border-radius: 5px;
}
.pro_container_row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px dashed#dde3e8;
	padding: 10px;
	transition: background 0.2s;
	padding-left: 0px;
	padding-right: 0px;
	margin: 0px 20px;
}
.pro_container_row:last-child {
	border-bottom: none;
}
.pro_container_row:hover {}
.pro_container_place {
	padding: 6px 0px;
	box-sizing: border-box;
	line-height: 19px;
}
.id_place {
	width: 5%;
	min-width: 47px;
	text-align: left;
	white-space: nowrap;
}
.icon_place {
	width: 5%;
	min-width: 45px;
	text-align: left;
}
.template_place {
	width: 30%;
	min-width: 160px;
}
.signature_place {
	width: 15%;
	min-width: 130px;
}
.details_place {
	width: 30%;
	min-width: 200px;
	font-size: 13px;
}
.options_place {
	flex: 1 1 auto;
	/* YES! Grows with remaining space */
	min-width: 120px;
	text-align: right;
}
.btnGroupDocuments {
	max-width: 130px;
}
.status-badge {
	padding: 4px 10px;
	border-radius: 6px;
	display: inline-block;
}
.status-signed {
	background: #c6f1d6;
	color: #2f9053;
}
.status-waiting {
	background: #fbe7ba;
	color: #a85e00;
}
.status-revoked {
	background: #ffd9e4;
	color: #dc4871;
}
.status-print {
	background: var(--theme-color-shade);
	color: #7180a0;
}
/* Responsive tweaks */
@media (max-width: 768px) {
	.pro_container_row {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px 0px;
	}
	.pro_container_place {
		width: 100%;
		text-align: left !important;
	}
	.options_place {
		text-align: left !important;
		/* margin-top: 10px; */
	}
	.pro_container_place .btnGroupDocuments {}
	.status-badge {
		width: 100%;
	}
	.pro_container_place.id_place {
		display: none;
	}
}
.ico-signed {
	color: #38b871;
}
.ico-revoked {
	color: #fd658f;
}
.ico-print {
	color: #89a0c5;
}
.menu_divider_line_dropdown {
	display: block;
	border-top: 1px solid #dde3e8;
	margin: 0px;
}
.ico-waiting {
	color: #c88a75;
}
.icon_place svg {
	width: 31px !important;
	height: 31px !important;
}
.fuel_value {
	font-size: 18px;
	margin-top: 10px;
}
.pickup_slider.text-center.batery_slider {
	width: 100%;
}
.battery_progress_container {
	position: relative;
	width: 100%;
	height: 30px;
	background-color: #f2f0f0;
	border-radius: 5px;
	overflow: hidden;
	margin: 5px 0;
	box-shadow: 0px 0px 5px #71719047 inset;
}
.battery_progress_bar {
	width: 100%;
	height: 100%;
	position: relative;
}
.battery_progress_fill {
	height: 100%;
	width: 50%;
	background-color: #3bbb6a;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1px;
}
.battery_progress_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	text-shadow: 1px 1px #3bbb6a00;
}
.hidden {
	display: none;
}
.modal .wh_holder_data_details {
	float: left;
	max-width: 540px;
	overflow: hidden;
}
.ord_counter_side {
	padding: 16px;
	margin-bottom: 31px;
}
.ord_counter_side h1 {
	font-size: 31px;
	background: #b3efc9;
	min-width: 45px;
	text-align: center;
	border-radius: 4px;
	margin-right: 10px;
	color: #2f9053;
	padding: 3px 10px;
}
.custom-modal-content {
	position: relative;
	margin: auto;
	width: 100%;
	min-height: 100%;
	margin: 0px;
	padding: 20px;
	padding-top: 30px;
}
.custom-modal-data {
	position: relative;
	margin: auto;
	max-height: 100%;
	height: 100%;
}
/* Close button */
.custom-close-modal {
	position: absolute;
	top: 25px;
	right: 25px;
	font-size: 14px;
	cursor: pointer;
}
.custom-fullscreen-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Semi-transparent black background */
	z-index: 9999;
	opacity: 0;
	overflow-y: auto;
	/* Enable vertical scrolling */
	background: #ffffff;
}
/* Show modal with fade effect */
.custom-fullscreen-modal.show {
	display: block;
	opacity: 1;
}
.clean_cal_selector .lightpick__months {
	height: 355px;
}
.custom-modal-content .lightpick__months {
	/* margin-top: -47px; */
}
.single_days {
	text-align: center;
	padding: 13px 15px;
	width: 80px;
	background: rgb(245 245 245) !important;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-right: 1px solid #e3e7f4;
	padding-bottom: 15px;
}
.single_days_booking {
	text-align: center;
	padding: 8px 15px;
	background: var(--bs-primary);
	color: #ffffff;
	border-radius: 5px;
	float: left;
}
.single_days h5,
.single_days_booking h5 {}
.border-radius-5 {
	border-radius: 5px;
}
@media (max-width: 769px) {
	.clean_cal_selector .lightpick__months {
		height: 354px;
		margin: 0px -10.2%;
		padding: 25px 30px;
	}
}
@media (max-width: 769px) {
	.custom-modal-content {
		padding-top: 20px;
	}
	.hider_res {
		display: none;
	}
	.filter_item {
		flex: 1 1 calc(33.333% - 10px);
		/* 3 items per row with space for the gap */
		box-sizing: border-box;
		/* Include padding and border in width calculation */
		max-width: calc(33.333% - 10px);
	}
}
.custom-modal-content .scrollmenu span {
	border: 0px solid #e8ebf6;
}
.items_master_container>a.dry_item_container:last-of-type .dry_item_seperator {
	border: 0px solid red;
	/* for testing */
}
span#nameUpdate {
    color: var(--theme-color1);
    line-height: 25px;
}
.unavailable_vehicle.disabled {
    pointer-events: none;
    background: no-repeat;
    box-shadow: none;
}
.dynamic_active p {
    color: var(--theme-color-light-text);
}
.hstack {
	display: flex;
	flex-direction: row;
	align-items: center;
	align-self: stretch;
}
.hstack_top {
	display: flex;
	flex-direction: row;
	align-items: top;
	align-self: stretch;
}
.vstack {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-self: stretch;
}
.prod_splitter {
    line-height: 18px;
}
.basic_table{
}
.basic_table table{
}
.basic_table tr{
}
.basic_table td {
    padding: 5px;
    padding-left: 0px;
    padding-right: 10px;
}
.white-border{
	border-color:white;
}
.border-bottom-dashed{
    border-bottom: 1px dashed #dedede;
}
.days_has_value{
    background: var(--theme-color-shade);
    padding: 5px 10px;
    border-radius: 5px;
}
.total_days_container, .inside_counter_text {
    margin-top: -5px;
}
.marker {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bs-danger);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--bs-danger);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-color: red;
}
#datepicker-container {
}
.is_required .app_selector_plus {
	background: #ff6692 !important;
}
.is_required, .is_required .text-grey{
	color:#ff6692 !important;
}
.is_required .text-muted{
	color:#ff6692 !important;
}
.is_required .text-primary{
	color:#ff6692 !important;
}
.is_required .click_select{
	color:#ff6692 !important;
}
.is_required .selector_icon svg{
	color:#ff6692 !important;
}
.is_required .app_selector_arrow {
	border-top: 5px solid #ff6692;
}	
.is_required .selector_hstack {
	outline: 1px solid #ff6692;
	border-radius: 8px;
}
#datepicker-container.is_required {
	border-color: #ff6692 !important;
    color: black !important;
}
.thumb-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 columns */
	gap: 8px; /* space between items */
}
.thumb-gallery img {
	width: 100%;
	aspect-ratio: 1/1;   /* keep perfect squares */
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.highlight_opt {
    background: rgb(218 248 229) !important;
    padding: 4px 12px;
    color: #009d3a;
    border-radius: 5px;
    cursor: pointer;
}
.boxed_details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: .75rem;
}
.boxed_details_booking {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .75rem;
}
.boxed_details .boxed_details_single {
	flex: 1 1 calc(25% - 0.75rem); /* 4 items per row on large screens */
	text-align: center;
	width: 100%;
}
.boxed_details_single p{
	line-height:20px;
}
@media (max-width: 992px) {
	.boxed_details .boxed_details_single {
		flex: 1 1 calc(33.333% - 0.75rem); /* 3 items per row on tablets */
	}
}
@media (max-width: 768px) {
	.boxed_details .boxed_details_single {
		flex: 1 1 calc(50% - 0.75rem); /* 2 items per row on small screens */
		max-width: 100%;
	}
}
@media (max-width: 480px) {
	.boxed_details .boxed_details_single {
		flex: 1 1 100%; /* 1 item per row on tiny screens */
		max-width: 100%;
	}
}
.boxed_details .boxed_details_single a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
	padding: .75rem;
	border-radius: 6px;
	height: 100%;
}
.boxed_details .boxed_details_single a:hover {
	background: rgba(0,0,0,0.05);
	color: #000;
}
.features-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* 2 per row on big screens */
	gap: .5rem 1.5rem; /* row-gap | column-gap */
	list-style: none;
	margin: 0;
	padding: 0;
}
.features-list li {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
}
.features-list svg {
	flex-shrink: 0;
}
.green_highlight {
    position: absolute;
    background: #13a74a;
    color: white;
    border-radius: 29px;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
    font-size: 12px;
    z-index: 20;
    box-shadow: 0px 2px 5px #00000029;
}
.highlight_opt  svg {
    position: relative;
    top: -1px;
    max-width: 15px;
}
.admin-edit {
    background: var(--theme-color-shade);
    padding: 2px 12px;
    font-size: 12px;
    border-radius: 5px;
    float: left;
    max-height: 27px;
}
.admin-edit-images {
    position: absolute;
    z-index: 5;
}
.item-row {
	position: relative;
	padding-bottom: 20px;
}
.item-row::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 15px;   /* Bootstrap gutter width */
	right: 35px;  /* Bootstrap gutter width */
	border-bottom: 1px dashed #ddd;
}
.font-12{
	font-size:12px;
}
.container_centerer svg.success_icon_green {
	color: var(--theme-color1);
	font-size: 80px;
	border: 3px solid;
	width: 70px;
	align-items: center;
	padding: 15px;
	border-radius: 20px;
	height: 70px;
}
.plain-form {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.plain-form:focus {
    border-color: #635bff;
}
.clean_drop_down .drop-menu .select {
	margin: 0px -12px;
	border-color: white;
}
.clean_drop_down .drop-menu .dropdown li {
    padding: 10px 15px;
}
.clean_drop_down .active .select {
	border: 1px solid #e3e3e5;
}
.clean_drop_down .drop-menu .dropdown {
	margin: 0px -12px;
	margin-top: -1px;
}
.clean_drop_down .drop-menu .dropdown li a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    color: #616696;
    text-decoration: none;
}
.clean_drop_down .drop-menu .dropdown li a:hover {
    background: none;
    color: unset;
}
.border-left{
	border-left: 1px solid #dedede;
}
.mySwiperHome .swiper-slide {
    padding:5px 0px;
}
.mySwiperHome .swiper-slide img {
    border-radius: 0px;
    /* min-height:250px; */
}
.card-img-wrap {
	position: relative;
}
.card-img-top {
	width: 100%;
	display: block;
	object-fit: cover;
}
.fade-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, white 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0) 100%);
	pointer-events: none;
}
.mySwiperHome  .swiper-slide:first-child {
	margin-left:20px;
}
.text-shadow {
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15),
    0 2px 3px rgba(0, 0, 0, 0.05);
}
.card-img-wrap {
	position: relative;
	overflow: hidden;
}
.card-img-top {
	width: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.2s ease;
}
.card:hover .card-img-top {
	transform: scale(1.02);
}
.user_area{
}
.user_area img {
    max-width: 35px;
}
.nav-item:hover{
	background: var(--theme-color-shade);
}
svg.head_phone {
    position: relative;
    top: -2px;
}
.slide-data-container {
    background: white;
}
.map-bg {
	position: relative;
	height: 100%;
	width: 100%;
}
.map-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/images/locimg.jpg') center/cover no-repeat;
	mix-blend-mode: luminosity;
	opacity: 0.6;
}
.empty-swiper-slide {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #999;
    overflow: hidden;
}
.empty-swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url(/images/novehicle.jpg) center / cover no-repeat;
    mix-blend-mode: luminosity;
    opacity: 0.2;
    border-radius: 10px;
    pointer-events: none;
}
.empty_vehicle_box {
	position: relative;
    width: 100%;
    height: 250px;
    background: var(--theme-color-shade);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #999;
    overflow: hidden;
}
.empty_stable {
    margin-top: 150px;
}
.empty_vehicle_box::after  {
    content: '';
    position: absolute;
    inset: 0;
    background: url(/images/novehicle.jpg) center / cover no-repeat;
    mix-blend-mode: luminosity;
    opacity: 0.2;
    border-radius: 10px;
    pointer-events: none;
}
.dropdown-menu-custom li{
}
.dropdown-menu-custom a {
    width: 100%;
    display: block;
    padding: 11px 15px;
    padding-right: 25px;
    color: #202d59;
}
.dropdown-menu-custom a:hover {
    background: var(--theme-color-shade);
    color: unset;
}
.login_respo {
    float: right;
    padding: 5px;
    border-radius: 50px;
    height: 38px;
    width: 38px;
    text-align: center;
}
.daterangepicker .calendar-table .next span {
    margin-left: -3px;
}
.daterangepicker .calendar-table .prev span {
    margin-left: 3px;
}
#cal-render .table-condensed > thead > tr:nth-of-type(2) > th {
    color: #616687;
    font-weight: 400;
    padding-top: 15px;
    padding-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	#searchForm .row-cols-lg-5 > * {
		flex: 0 0 auto;
		width: 25%;
	}
}
@media (max-width: 992px) {
	.no_border_under_992{
		border-left: 0px;
	}
	.bg-white {
		border-radius: 20px;
		/* box-shadow: 0 .125rem .25rem rgb(5 7 12 / 4%) !important; */
		padding: 0px 15px;
	}
	#datepicker-container {
		border: 0px solid #dfe5ef;
		padding: 0px;
	}
}
.contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contact-info li {
    position: relative;
    margin-right: 20px;
    border-right: 1px solid #dedede;
    padding-right: 20px;
}
.contact-info li:last-child {
    border-right: 0px solid #dedede;
}
.fw-normal {
    font-weight: 400 !important;
}
@media (max-width: 575.98px) {
	.branch_container{
		border: 1px solid #e0dfe5;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 .125rem .25rem rgb(5 7 12 / 4%) !important;
	}
	.contact-info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: inline-block;
		margin-bottom: 10px;
	}
	.contact-info li {
		position: relative;
		margin-right: 0px;
		border-right: 0px;
		padding-right: 0px;
		padding: 5px 0px;
	}
	p{
		font-size:14px;	
	}
	:root {
		--body-font-size: 14px;
		--h2-font-size: 26px;
	}
	.no_border_under_576{
		border-left: 0px;
	}
	.logo img {
		max-width: 150px;
	}
	.header_container {
		padding: 15px 25px;
	}
	.mySwiperHome .swiper-slide:first-child {
		margin-left: 25px;
	}
	.respo_center {
		text-align: center;
		justify-content: center;
		align-items: center;
	}
	.under_576_bottom_border {
		border-bottom: 1px dashed #dedede;
	}
	.footer-bottom .footer-nav li {
		margin: 0px 25px;
	}
	.selector_hstack {
		padding: 12px 17px;
	}
	.selector_hstack .app_selector_arrow_container {
        left: 0px;
	}
	.respo_no_border{
		border:0px;
		}.respo_hide{
		display:none;
	}
}
.nav li.active{
	background:var(--theme-color1);
} 
.nav li.active .nav-link{
	color: var(--theme-color-light-text);
}
.image_contain {
    height: auto;
}	
/*BOOKING LIST*/
.booking-item{
    display:block;
    text-decoration:none;
    color:inherit;
    border-bottom:1px solid #e0e6eb;
}
.booking-item:last-child{
    border-bottom: 1px solid white;
}
.booking-row{
    display:flex;
    align-items:center;
    padding: 15px 0px;
    gap:15px;
    border-radius: 10px;
    border:1px solid transparent;
    transition:background .15s ease,
	border .15s ease,
	box-shadow .15s ease;
    padding: 15px;
    margin: 0px  -15px;
}
.booking-item:hover, .booking-item:active {
    background:#fff;
    outline: 1px solid #e0e6eb!important;
    border-Bottom:1px solid transparent;
    box-shadow:0 .125rem .25rem rgb(5 7 12 / 4%);
    margin: 0px -15px;
    padding: 0px 15px;
    border-radius: 10px;
}
.booking-image{
    width:70px;
    height:70px;
    border-radius:8px;
    overflow:hidden;
    flex-shrink:0;
    background:#f2f2f2;
}
.booking-image-small{
    width: 45px;
    height: 45px;
    border-radius:8px;
    overflow:hidden;
    flex-shrink:0;
    background:#f2f2f2;
}
.booking-image img, .booking-image-small img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.booking-content{
    flex:1;
}
.booking-title{
    font-weight:600;
    font-size:16px;
}
.booking-id{
    font-size:12px;
    background:var(--theme-color-shade);
    padding: 2px 10px;
    border-radius: 40px;
    margin-left:6px;
    font-weight:400;
    position: relative;
    top: -3px;
}
.booking-dates{
    display:flex;
    align-items:center;
    gap:12px;
}
.booking-date{
    font-size:14px;
    color:#555;
}
.booking-line{
    flex:1;
    height:1px;
    background:#35b364;
    position:relative;
    max-width: 35px;
}
.booking-line span{
    position:absolute;
    left:100%;
    top:50%;
    width:10px;
    height:10px;
    background:#35b364;
    border-radius:50%;
    transform:translate(-50%,-50%);
}
.booking-bottom{
    display:flex;
    align-items:center;
    gap:10px;
}
.booking-price{
    color:#35b364;
    font-weight:600;
    /* font-size: 16px; */
}
.booking-status{
    font-size: 14px;
    /* padding:0 10px; */
    border-radius:4px;
    /* background:#e9ecef; */
}
.booking-status.paid{
    /* background:#e7f6ef; */
    color:#1ea672;
}
.custom_nav .nav-item:hover {
    background: white;
}
.custom_nav .nav-item a{
    color: #616687;
}
.booking-status.partial {
    /* background: #ffeac4; */
    color: #d88b00;
	}.booking-status.unpaid {
    color: #d44f84;
}
.h-35-force input {
    border: 0px;
    border-bottom: 1px solid #dee2e6;
    padding: 0px;
    height: 40px;
}
input#phone {
    position: relative;
    top: -4px;
}
.custom-select-menu .dropdown {
	display: none;
}
.custom-select-menu.active .dropdown {
	display: block;
}
.custom-select-menu .dropdown li.active a {
	font-weight: 600;
}
.custom-select-menu .dropdown li.disabled a {
	opacity: .5;
	pointer-events: none;
}
.was-validated select:invalid + .custom-select-menu .select{
	border-color:#ff0000 !important;
}
.was-validated select:valid + .custom-select-menu .select{
	border-color: #62b364 !important;
}
.was-validated select:invalid + .custom-select-menu.active .select{
	border-color:#ff0000 !important;
	border-radius:8px 8px 0 0;
}
.was-validated select:invalid + .custom-select-menu.active .dropdown{
	border-color:#ff0000 !important;
}
.was-validated select:valid + .custom-select-menu.active .select{
	border-color: #5cb364 !important;
	border-radius:8px 8px 0 0;
}
.was-validated select:valid + .custom-select-menu.active .dropdown{
	border-color: #5cb364 !important;
}
/* error text only red */
.was-validated .form-control:invalid ~ .control_text{
	color:#ff0000 !important;
}
/* keep normal/helper text color when valid */
.was-validated .form-control:valid ~ .control_text{
	color:#616696 !important;
}
.was-validated .form-floating:has(.form-control:invalid) .control_text{
	color:#ff6692 !important;
}
#switch-container {
	display: flex;
	gap: 10px;
}
.switch {
	width: 55px;
	/* Width remains at 70px */
	height: 30px;
	/* Updated height to 35px */
	background-color: #e3e3e6;
	/* Gray when off */
	border-radius: 30px;
	/* Adjusted to match half of the height */
	position: relative;
	cursor: pointer;
	transition: background-color 0.3s;
}
.switch::before {
	content: "";
	width: 20px;
	/* Adjusted for proportional look */
	height: 20px;
	/* Adjusted for proportional look */
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	/* Adjusted to center the toggle */
	left: 6px;
	/* Adjusted to center the toggle */
	transition: transform 0.3s;
	box-shadow: 0px 0px 2px 1px #00000014;
}
.switch.active {
	background-color: var(--theme-color1);
}
.switch.active::before {
	transform: translateX(24px);
	/* Adjusted for new width */
}
/* Ensure the search box is sticky and has a solid background */
.search-box-container {
    top: 0;
    background: #ffffff !important; /* Solid white background */
    z-index: 10;
    padding: 8px 10px;
}
/* Special Case: Disable hover effects for the search container itself */
.custom-select-menu .dropdown li.search-box-container:hover {
    background-color: #ffffff !important;
    cursor: default;
}
.img_h_cover{
	width:72px;
	height:72px;
	overflow:hidden;
}
.img_h_cover img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.pay_indicator {
	display: block;
	position: relative;
	float: left;
	width: 100%;
	color: white;
	border-radius: 15px;
	padding: 3px 10px 2px 10px;
	font-size: 12px;
	text-align: center;
	margin-bottom: 5px;
	padding-top: 2px;
	font-weight: 600;
}
/* DEFAULT */
.pay_indicator::after {
	content: '';
	position: absolute;
	left: 45%;
	top: 100%;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	clear: both;
}
/* PAID */
.pay_indicator.paid {
	background: #35b364;
	color: #fff;
}
.pay_indicator.paid::after {
	border-top: 6px solid #35b364;
}
/* PARTIAL */
.pay_indicator.partial {
	background: #f4b740;
	color: #fff;
}
.pay_indicator.partial::after {
	border-top: 6px solid #f4b740;
}
/* UNPAID */
.pay_indicator.unpaid {
	background: #ff6692;
	color: #fff;
}
.pay_indicator.unpaid::after {
	border-top: 6px solid #ff6692;
}
/* OPTIONAL: OVERPAID */
.pay_indicator.overpaid {
	background: #0d6efd;
	color: #fff;
}
.pay_indicator.overpaid::after {
	border-top: 6px solid #0d6efd;
}
.pay_indicator_negative_margin {
    margin-top: -15px;
}
tr.master_border_splitter {
    border-top: 2px solid var(--theme-color-href) !important;
}
/* Inactive AM */
.time_type_switch .am_toggle:not(.active) {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 0;
}
/* Inactive PM */
.time_type_switch .pm_toggle:not(.active) {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: 0;
}
/* Inactive AM */
.time_type_switch .am_toggle_ret:not(.active) {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 0;
}
/* Inactive PM */
.time_type_switch .pm_toggle_ret:not(.active) {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: 0;
}
.fancy_shadow_hide_respo {
    box-shadow: 0 .125rem .25rem rgb(5 7 12 / 4%) !important;
}
@media (max-width: 767px) {
    .fancy_shadow_hide_respo {
        box-shadow: none !important;
	}
    .clean_cal_selector {
        margin-top: 10px;
	}
	
.item-row::after {
    left: 10px;
    right: 10px;

}
}
.console_font {
    font-family: Consolas, Monaco, 'Courier New', monospace !important;
	}	
