/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*====================== Google fonts ========================*/

@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*====================== Basic css ========================*/
html {
	font-size: 62.5%;
}

:root {
	--theme-color: #2DAB2D;
	--theme-text-color: #000000;
	--white-color: #ffffff;
	--black-color: #000000;
	--button-hover-bg-color: #2D8C2D;
	--box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.10);
	scroll-behavior: unset;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	color: var(--theme-text-color);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.333;
	font-family: 'Prompt', sans-serif;
}

.container {
	padding-left: 3.5rem;
	padding-right: 3.5rem;
}

/* Title */
.title_lg {
	font-size: 3.5rem;
	font-weight: 500;
	line-height: 1.28;
}

.title_md {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 2;
}

/* Button */
.button {
	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: 20.4rem;
	height: 5rem;
	border-radius: 2.8rem;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--white-color);
	background: var(--theme-color);
	border: none;
	outline: none;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.button:hover {
	color: var(--white-color);
	background: var(--button-hover-bg-color);
}

.text_black {
	color: #000000;
}

.text_theme_color {
	color: #2DAB2D;
}

.medium {
	font-weight: 500;
}

/*===== Page loader CSS =====*/
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	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;
}

.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: var(--theme-color);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}


/*==== return-to-top =====*/
.back-to-top {
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 2rem;
	border-radius: 1rem;
	background: var(--theme-color);
	color: var(--white-color);
	font-size: 2.3rem;
	z-index: 1000;
}

.back-to-top:hover {
	color: var(--white-color);
	background: var(--button-hover-bg-color);
}


/*====================== Header area start ========================*/

header {
	position: relative;
	z-index: 1024;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;

}

/* header top */
.header_top {
	background: var(--theme-color);
	padding: .65rem 0;
}

.header_top .list_group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header_top .left_side li {
	margin-right: 4rem;
}

.header_top .right_side li {
	margin-right: 3.2rem;
}

.header_top li:last-child {
	margin-right: 0 !important;
}

.header_top a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--white-color);
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.35;
}

.header_top .left_side a {
	font-weight: 600;
}

.header_top a .icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	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: 1.6rem;
	height: 1.7rem;
	margin-right: 1rem;
}

.header_top .right_side a:hover {
	color: rgba(255, 255, 255, 0.75);
}

.header_top .nice-select {
	width: 4rem;
	background: var(--theme-color);
	border: none;
	color: var(--white-color);
	cursor: pointer;
	padding: 0;
	font-size: 1.5rem;
	padding-left: .9rem;
	font-weight: 400;
}

.header_top .nice-select::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	width: .9rem;
	height: .9rem;
	right: 0rem;
	margin-top: -.7rem;
}

.header_top .nice-select .list {
	width: auto;
}

.header_top .nice-select .option {
	margin: 0;
	color: #000000;
	margin: 0;
}

/* Navbar */
.navbar {
	background: var(--white-color);
	-webkit-box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.16);
	box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.16);
	padding: 0;
}

.header_logo {
	display: inline-block;
	width: 18rem;
	margin-right: 4rem;
}

.mobile_logo {
	display: none;
}

.search_button {
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	background: #BBBBBB;
	color: var(--white-color);
	border: none;
	outline: none;
	font-size: 1.6rem;
}

.qantalogs_button {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--theme-text-color);
	padding: 1.7rem 0 1.3rem 0;
}

.qantalogs_button .icon {
	position: relative;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	background: var(--theme-color);
	margin-right: 1.1rem;
}

.qantalogs_button .icon span {
	position: absolute;
	display: inline-block;
	width: 2.2rem;
	height: .3rem;
	border-radius: .2rem;
	background: var(--white-color);
	margin: .2rem 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.qantalogs_button .icon span:nth-child(1) {
	left: 1.2rem;
	top: 1.6rem;
}

.qantalogs_button .icon span:nth-child(2) {
	right: 1.1rem;
	bottom: 1.5rem;
}

/* search form */
.search_form {
	width: 60rem;
	height: 4.5rem;
	position: relative;
}

.search_form input {
	width: 100%;
	height: 100%;
	background: #F1F1F1;
	border-radius: 2.3rem;
	border: none;
	padding: 0 6rem 0 2.5rem;
}

.search_form input::-webkit-input-placeholder {
	opacity: 1;
}

.search_form input::-moz-placeholder {
	opacity: 1;
}

.search_form input:-ms-input-placeholder {
	opacity: 1;
}

.search_form input::-ms-input-placeholder {
	opacity: 1;
}

.search_form input::placeholder {
	opacity: 1;
}

.search_form button {
	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: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	background: var(--theme-color);
	color: var(--white-color);
	font-size: 1.6rem;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.search_form button:hover {
	background: var(--button-hover-bg-color);
}

.search_form.form_mobile {
	display: none;
}

.search_wrap .right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 0;
}

.search_wrap .right a.logout {
	font-size: 14px;
	color: #000;
}

.search_wrap .right li {
	margin-left: 3.5rem;
}

.search_wrap .right a {
	display: inline-block;
	position: relative;
	width: 2.8rem;
	padding: 0;
	background: transparent;
	border: none;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.search_wrap .right .badge {
	position: absolute;
	top: -0.8rem;
	right: -0.7rem;
	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: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	background: var(--theme-color);
	font-size: 1.2rem;
	font-weight: 600;
	border: .2rem solid var(--white-color);
}

.search_wrap .right a:hover img {
	opacity: .5;
}

/* catalogue menu */
.catalogue_menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: var(--white-color);
	padding: 4rem 0 2rem;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	border-top: .4rem solid rgb(232, 232, 232);
	margin-top: -.2rem;
	z-index: 1111;
	opacity: 0;
	pointer-events: none;
	-webkit-box-shadow: 0 .7rem .7rem rgb(0, 0, 0, 0.05);
	box-shadow: 0 .7rem .7rem rgb(0, 0, 0, 0.05);
}

.catalogue_menu li {
	padding-bottom: 1.6rem;
}

.catalogue_menu a {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5625;
	color: var(--theme-text-color);
}

.catalogue_menu a:hover {
	color: var(--theme-color);
}

/*============================================
	Content area start 
 ==============================================*/

/* Hero slider wrap */
.hero_slider .item {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	min-height: 40rem;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 1rem;
	overflow: hidden;
}

.slide_content {
	width: 100%;
	padding: 0 6rem;
}

.slide_content h4 {
	font-size: 1.9rem;
	line-height: 2.36;
	font-weight: 400;
}

.slide_content h1 {
	font-size: 4rem;
	line-height: 1.125;
	font-weight: 600;
}

.slide_content .button {
	width: 19rem;
}

.slide_content h4.animate__animated.animate__fadeInRight {
	-webkit-animation-duration: 1.3s !important;
	animation-duration: 1.3s !important;
}

.slick-dots {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 2rem;
}

.slick-dots li {
	width: 5rem;
	height: .5rem;
	border-radius: .4rem;
	background: var(--white-color);
	margin: 0 1rem;
}

.slick-dots li.slick-active {
	background: var(--theme-color);
}

.slick-dots button {
	display: none !important;
}

.left_overly {
	position: relative;
}

.left_overly::before {
	content: '';
	position: absolute;
	right: 100%;
	top: 0;
	width: 1000px;
	height: 100%;
	background: #fff;
	display: none;
	z-index: 999;
}

/* nice-select */
.nice-select {
	height: 5rem;
	line-height: 5rem;
	border-color: #DEDEDE;
	border-radius: 1rem;
	font-weight: 500;
	font-size: 1.5rem;
	padding: 0 2rem;
}

.nice-select::after {
	border-bottom: 2px solid #2DAB2D;
	border-right: 2px solid #2DAB2D;
	width: 1rem;
	height: 1rem;
	margin-top: -.6rem;
	right: 2rem;
}

.nice-select .list {
	width: 100%;
	z-index: 999;
}


/* search details */
.search_details {
	padding: 2.3rem;
	padding-top: 1.3rem;
	border-radius: 1rem;
	background: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
}

.search_details .gx-4 {
	--bs-gutter-x: 2rem;
}

.search_details .button {
	margin-top: 1.3rem;
}

.search_details .nice-select {
	width: 100%;
	height: 5rem;
	line-height: 5rem;
	background: #F3F3F3;
	border-radius: 2.5rem;
	border: none;
	font-size: 1.5rem;
	font-weight: 400;
	color: #000000;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	margin-top: 1.3rem;
}

.search_details .nice-select:hover {
	background: #f9f9f9;
}

/* img box */
.img_box {
	width: calc(20% - 2.4rem);
	height: 22.8rem;
	text-align: center;
	border: 1px solid #DEDEDE;
	border-radius: 1rem;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	margin-top: 3.6rem;
}

.img_box:hover {
	background: #F3F3F3;
}

.img_box .img_wrap {
	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;
	height: 16rem;
	padding: 1rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.img_box .img_wrap img {
	max-width: 100%;
	max-height: 100%;
}

.img_box p {
	padding-top: 1rem;
	color: #000;
}


.Spare_parts_catalog_slider {
	display: none;
}

.Spare_parts_catalog_slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.Spare_parts_catalog_slider .slick-slide {
	margin-right: 3rem;
}

/* icon box */
.icon_box {
	text-align: center;
	padding: 1.1rem 0 1.3rem;
	border-right: 1px solid #DEDEDE;
}

.icon_box .icon {
	width: 6.8rem;
	height: 6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: auto;
	margin-bottom: 2rem;
}

.icon_box p {
	font-weight: 500;
}

/* product slider */
.product_slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.product_slider .slick-slide {
	margin-right: 3rem;
	padding: 1rem 0;
}

.product_slider .slick-slide:last-child {
	margin-right: 0;
}

/* product card */
.product_card {
	border-radius: 1rem;
	border: 1px solid #DEDEDE;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.product_card_hd {
	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;
	height: 16.2rem;
	padding: 2rem 1rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.product_card_hd img {
	max-width: 100%;
	max-height: 100%;
}

.product_card_body {
	padding: 1.8rem;
}

.product_card_body p:first-child {
	min-height: 62px;
}

.product_card .price {
	font-size: 1.7rem;
	font-weight: 600;
	line-height: 1.17;
	padding: 1.1rem 0 1.3rem;
}

.product_card .bottom {
	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;
	padding-top: 1rem;
	border-top: 1px solid #DEDEDE;
}

.product_card .bottom a {
	font-weight: 500;
	color: var(--black-color);
}

.product_card .bottom button {
	width: 2.65rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 0;
	background: none;
	border: none;
	outline: none;
}

/* product card hover action */
.product_card:hover {
	-webkit-box-shadow: 0 0 .7rem rgba(0, 0, 0, 0.45);
	box-shadow: 0 0 .7rem rgba(0, 0, 0, 0.45);
}

.product_card:hover .bottom a {
	text-decoration: underline;
}

/* news wrap */
.news_wrap {
	padding-bottom: 15rem;
}

.news_slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.news_slider .slick-slide {
	margin-right: 3.4rem;
}

.news_slider .slick-slide:last-child {
	margin-right: 0;
}

/* news box */
.news_box {
	position: relative;
}

.news_box .plus_button {
	position: absolute;
	right: 2rem;
	top: 1.6rem;
	background: none;
	padding: 0;
	border: none;
	outline: none;
	color: var(--theme-color);
	font-size: 2.6rem;
	font-weight: 700;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	z-index: 11;
	opacity: 0;
}

.news_box img {
	border-radius: 1rem;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.news_box .date {
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--theme-color);
	line-height: 1.25;
	padding: 1.5rem 0 1.3rem;
}

.news_box a {
	color: var(--theme-text-color);
	font-size: 2.1rem;
	font-weight: 500;
	line-height: 1.33;
}

.news_box:hover .plus_button {
	opacity: 1;
}

.news_box:hover img {
	opacity: 0.75;
}

.news_box:hover a {
	text-decoration: underline;
}


/* login modal */
#login_modal .modal-dialog {
	max-width: 38rem;
	margin: auto;
}

#login_modal .modal-content {
	border-radius: 1rem;
	background: var(--white-color);
	padding: 3rem 2.6rem 3.2rem 2.6rem;
	border: none;
}

#login_modal .title_md {
	line-height: 1.5;
	padding-bottom: 2.2rem;
}

#login_modal p {
	font-size: 1.4rem;
	line-height: 1.5;
}

#login_modal input {
	width: 100%;
	height: 5rem;
	border-radius: 2.5rem;
	background: #F3F3F3;
	border: none;
	outline: none;
	padding: 0 2.2rem;
	margin-bottom: 1.3rem;
}

#login_modal input::-webkit-input-placeholder {
	opacity: 1;
}

#login_modal input::-moz-placeholder {
	opacity: 1;
}

#login_modal input:-ms-input-placeholder {
	opacity: 1;
}

#login_modal input::-ms-input-placeholder {
	opacity: 1;
}

#login_modal input::placeholder {
	opacity: 1;
}

#login_modal a {
	color: var(--theme-color);
	text-decoration: underline;
}

#login_modal a:hover {
	color: #747474;
}

#login_modal .close_button {
	position: absolute;
	right: -2.5rem;
	top: -2.5rem;
	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: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	border-radius: 50%;
	background: var(--white-color);
	border: none;
	font-size: 2rem;
	color: var(--black-color);
}

/* ==================== footer area =======================*/

footer {
	background: #F3F3F3;
}

.footer_top {
	border-bottom: 1px solid #DEDEDE;
}

.footer_logo {
	display: inline-block;
	width: 19rem;
}

.social_links li {
	display: inline-block;
	margin-right: 2.6rem;
}

.social_links li:last-child {
	margin-right: 0;
}

.social_links a {
	color: var(--theme-text-color);
	font-size: 2.6rem;
}

.social_links a:hover {
	color: var(--theme-color);
}

footer .title_md {
	font-size: 2rem;
	line-height: 1.25;
	font-weight: 600;
	padding-bottom: 4rem;
}

.footer_info_widget li {
	padding-bottom: 2.6rem;
}

.footer_info_widget li:last-child {
	padding-bottom: 0;
}

.footer_widget li {
	padding-bottom: 1.7rem;
}

.footer_widget li:last-child {
	padding-bottom: 0;
}

footer li,
footer a {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5625;
	color: var(--theme-text-color);
}

footer a:hover {
	color: var(--theme-color);
}


/* page pagination */
.page_pagination {
	padding-top: 3.2rem;
}

.page_pagination li {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 1rem;
}

.page_pagination li:last-child {
	margin-right: 0;
}

.page_pagination li,
.page_pagination a {
	font-size: 1.4rem;
	color: #686868;
}

.page_pagination i {
	color: #2DAB2D;
	font-size: 1.5rem;
	margin-left: 1rem;
}

.page_pagination a:hover {
	color: var(--theme-color);
}

/* main content wrap */
.main_content_wrap.gx-4 {
	--bs-gutter-x: 2.2rem;
}

.main_content_wrap .col-lg-4 {
	width: 26%;
}

.main_content_wrap .col-lg-8 {
	width: 74%;
}


/* slidebar */
#slidebar .accordion-item {
	margin-bottom: 2.1rem;
	background: #FBFBFB;
	border-radius: 0 0 1rem 1rem;
}

#slidebar .accordion_button {
	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;
	width: 100%;
	padding: 1.2rem 2.2rem;
	font-size: 1.7rem;
	font-weight: 500;
	color: var(--black-color);
	line-height: 1.52;
	background: #F3F3F3;
	border-radius: 1rem;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

#slidebar .accordion_button i {
	color: var(--theme-color);
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

#slidebar .accordion_button.collapsed i {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

#slidebar .accordion-body {
	padding: 2.6rem 2.2rem 3rem 2.2rem;
}

#slidebar li {
	padding-bottom: .7rem;
}

#slidebar li:last-child {
	padding-bottom: 0;
}

#slidebar li a {
	color: var(--black-color);
}

#slidebar li a:hover {
	text-decoration: underline;
}



/* custom checkbox */
.checkbox-field {
	display: block;
	position: relative;
	padding-left: 2.5rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox-field input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	height: 1.6rem;
	width: 1.6rem;
	border: 1px solid #DEDEDE;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: .3rem;
}

.checkbox-field input:checked~.checkmark {
	background: var(--theme-color);
	border-color: var(--theme-color);
}

.checkmark:after {
	content: '';
	background: url('../img/icon/check.svg');
	background-size: 1rem 2rem;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	display: none;
}

.checkbox-field input:checked~.checkmark:after {
	display: block;
}

.checkbox-field .checkmark:after {
	left: .1rem;
	top: 0rem;
	width: 1.2rem;
	height: 100%;
}

.checkbox-field span {
	line-height: 1.46;
}

.manufacturer_wrap {
	max-height: 21.5rem;
	overflow-y: auto;
}


.nicescroll-rails {
	border-radius: 7px;
}

/* list content header */
.list_content_hd .nice-select {
	font-size: 1.5rem;
	font-weight: 500;
	height: 5rem;
	line-height: 5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-color: #DEDEDE;
	border-radius: 1rem;
}

.select_sort_by .nice-select {
	width: 20.5rem;
}

.select_on_page .nice-select {
	width: 9.5rem;
	border-radius: 1rem;
}

/* product box */
.product_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #DEDEDE;
	border-radius: 1rem;
	background: var(--white-color);
	min-height: 25.8rem;
	margin-bottom: 2.3rem;
}

.product_box .product_img {
	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: 26.8rem;
	height: 25.8rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-width: 0 1px 0 0;
	border-style: solid;
	border-color: #DEDEDE;
	padding: 2rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 1rem;
	overflow: hidden;
}

.product_box .product_img img {
	max-width: 100%;
	max-height: 100%;
}

.product_box_content {
	width: 100%;
	padding: 0 2.6rem;
	border-right: 1px solid #DEDEDE;
}

.product_box .title {
	display: inline-block;
	color: var(--black-color);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.55;
	padding-bottom: 1.6rem;
}

.product_box p {
	line-height: 1.66;
}

.nice-number {
	width: 10.8rem;
	height: 4rem;
	border: 1px solid #DEDEDE;
	border-radius: 2.9rem;
	font-weight: 500;
	color: var(--black-color);
	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;
	padding: .8rem;
}

.nice-number button {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: #F3F3F3;
	border: none;
	margin: 0 .2rem;
	font-size: 1.7rem;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.nice-number button:hover {
	background: #d0d0d0;
}

.nice-number-input,
.nice-number-input-1 {
	border: none;
	text-align: center;
}

.product_box .button {
	width: 16.4rem;
	height: 4rem;
	padding: 0 2.8rem 0 1.6rem;
	margin-right: 1.7rem;
}

.product_box .price_wrap {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	text-align: center;
	margin-left: auto;
	padding: 0 2rem;
}

.product_box .price_wrap h2 {
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1.52;
	margin-bottom: .5rem;
}

.product_box .price_wrap p {
	font-size: 1.4rem;
	line-height: 1.5;
}

/* product box hover action */
.product_box:hover .product_img {
	opacity: .7;
}

.product_box:hover .title {
	text-decoration: underline;
}


/* pagination */
.pagination li {
	margin-right: .9rem;
	display: inline-block;
}

.pagination li:last-child {
	margin-right: 0;
}

.pagination a {
	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: 3.9rem;
	height: 5rem;
	border: 1px solid #DEDEDE;
	border-radius: 1rem;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--black-color);
}

.pagination a:hover,
.pagination a.active {
	background: var(--theme-color);
	color: var(--white-color);
	border-color: var(--theme-color);
}

.cart_product_top p {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
}

/* cart product */
.cart_product {
	width: 100%;
	position: relative;
	border-radius: 1rem;
	border: 1px solid #DEDEDE;
	margin-bottom: 1.7rem;
}

.cart_product .product_img {
	width: 8.6rem;
	height: 8.6rem;
	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;
	border-right: 1px solid #DEDEDE;
	padding: .8rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 1rem;
}

.cart_product .product_img img {
	max-width: 100%;
	max-height: 100%;
}

.cart_product h4 {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
}

.cart_product p {
	font-size: 1.4rem;
	line-height: 1.5;
}

.cart_product .cancel_button {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 100%;
	margin-right: .8rem;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	border: none;
	outline: none;
	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;
	font-size: 1.1rem;
	color: var(--white-color);
	background: #DEDEDE;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.cart_product .cancel_button:hover {
	background: #c9c9c9;
}

.cart_product a {
	color: #000;
	display: contents;
}

.cart_nice_select_wrap p {
	font-weight: 500;
}

.cart_nice_select_wrap .nice-select {
	width: 35.5rem;
	margin-left: 2.7rem;
}

/* summary box */
.summary_box {
	padding: 2rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid #DEDEDE;
}

.summary_box h3 {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.52;
}

.summary_box li {
	padding-bottom: 1rem;
}

.summary_box p {
	line-height: 1.866;
}

.summary_box span {
	width: 14rem;
	display: inline-block;
}

.sum_wrap {
	padding: 2rem 0;
	border-top: 1px solid #DEDEDE;
}

.sum_wrap .price {
	font-size: 2rem;
	font-weight: 500;
}

.summary_box .button {
	height: 4rem;
}

.sidebar_categories {
	background: #FBFBFB;
	border-radius: 1rem;
}

.sidebar_categories h3 {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.52;
}

.sidebar_categories .hd {
	padding: 1.2rem 2.2rem;
	background: #F3F3F3;
	border-radius: 1rem;
}

.sidebar_categories ul {
	padding: 2.6rem 2.2rem;
}

.sidebar_categories li {
	padding-bottom: 1.7rem;
}

.sidebar_categories li:last-child {
	padding-bottom: 0;
}

.sidebar_categories li,
.sidebar_categories a {
	font-size: 1.5rem;
	line-height: 1.46;
	color: var(--black-color);
}

.sidebar_categories a:hover {
	text-decoration: underline;
}

/* recent orders placed table wrap */
.recent_orders_table {
	width: 100%;
	border-collapse: collapse;
}

.recent_orders_table button {
	width: 2.5rem;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
}

.recent_orders_table th {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 1.1rem 0 1rem;
}

.recent_orders_table td {
	font-size: 1.4rem;
	line-height: 1.5;
}

.recent_orders_table tr:first-child {
	background: #F3F3F3;
}

.recent_orders_table th:first-child,
.recent_orders_table td:first-child {
	padding-left: 1.5rem;
}

.recent_orders_table tr th:first-child {
	border-radius: 1rem 0 0 1rem;
}

.recent_orders_table tr th:last-child {
	border-radius: 0 1rem 1rem 0;
}

.recent_orders_table th:last-child,
.recent_orders_table td:last-child {
	padding-right: 1.5rem;
}

.recent_orders_table td {
	border-bottom: 1px solid #DEDEDE;
	padding: 1.7rem 0 1.3rem;
}

.recent_orders_table tr:hover td {
	border-color: var(--theme-color);
}

/* account tatement wrap */
.account_statement_wrap .title_md {
	font-size: 2rem;
}

.account_statement_box {
	border-radius: 1rem;
	background: #FBFBFB;
}

.account_statement_box .hd {
	background: #F3F3F3;
	padding: 1.2rem 2.2rem;
	border-radius: 1rem;
}

.account_statement_box h3 {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.52;
}

.account_statement_box .bd {
	padding: 1.9rem 2.3rem 3.1rem 2.3rem;
}

.account_statement_box li,
.account_statement_box p {
	line-height: 1.66;
}

.account_statement_box a {
	display: inline-block;
	font-size: 1.4rem;
	color: #7E7E7E;
}

.account_statement_box a:hover {
	text-decoration: underline;
}

/* product box lg */
.pd_box_lg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.pd_box_lg .pd_img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 36rem;
	height: 34.5rem;
	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;
	border-radius: 1rem;
	border: 1px solid #DEDEDE;
	padding: 1.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.pd_box_lg .pd_img img {
	max-width: 100%;
	max-height: 100%;
}

.pd_box_lg .pd_info {
	width: 100%;
	padding: 0 2.5rem 0 3.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 1px solid #DEDEDE;
}

.pd_box_lg .title_md {
	font-size: 2.3rem;
	line-height: 1.52;
}

.pd_box_lg .pd_number,
.pd_box_lg .pd_info li {
	font-size: 1.4rem;
	line-height: 1.5;
}

.compatible_box {
	text-align: center;
	position: relative;
	font-size: 1.3rem;
	line-height: 1.46;
	border: 1px solid #2DAB2D;
	background: #F5FFF5;
	border-radius: 1rem;
	padding: .9rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	margin: 1.4rem 0 2.1rem;
}

.compatible_box:hover {
	background: #effcef;
}

.compatible_box img {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 1.8rem;
	width: 1.5rem;
}

.pd_box_lg li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1.4rem 0 1rem;
	border-bottom: 1px solid #F3F3F3;
}

.pd_box_lg li:last-child {
	border: none;
}

.pd_box_lg .price_wrap {
	width: 26.8rem;
	padding-left: 3.7rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.pd_box_lg .price_wrap .price_box {
	padding-bottom: 1.1rem;
	border-bottom: 1px solid #DEDEDE;
}

.pd_box_lg .price_wrap h2 {
	font-size: 2.7rem;
	font-weight: 600;
	line-height: 1.481;
	margin-bottom: .7rem;
}

.pd_box_lg .price_wrap p {
	font-size: 1.3rem;
	color: #656565;
	line-height: 1.46;
}

.pd_box_lg .nice-number {
	width: 100%;
	margin: 2.3rem 0 1.8rem;
}

.pd_box_lg .price_wrap .button {
	margin-bottom: 1.8rem;
	height: 4rem;
}

.pd_box_lg .price_wrap .button img {
	width: 1.9rem;
	margin-right: 1.3rem;
}

/* info table tabs*/
#table_tab_nav {
	font-size: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	border-width: 1px 1px 0 1px;
	border-style: solid;
	border-color: #DEDEDE;
	border-radius: 1rem 1rem 0 0;
	overflow: hidden;
}

#table_tab_nav .nav-item {
	width: 100%;
}

#table_tab_nav .nav-link {
	display: block;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	color: #000000;
	line-height: 1.46;
	padding: 2.4rem;
	border-width: 0 1px 1px 0;
	border-style: solid;
	border-color: #DEDEDE;
	border-radius: 0;
	margin-bottom: 1px;
}

#table_tab_nav .nav-item:last-child .nav-link {
	border-width: 0 0 1px 0;
}

#table_tab_nav .nav-link.active {
	border-width: 0 1px 0 0;
}

#table_tab_nav .nav-item:last-child .nav-link.active {
	border-width: 0 0 0 0;
}

#table_tab_content {
	padding: 6.4rem 4.8rem 1.5rem 4.8rem;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: #DEDEDE;
	border-radius: 0 0 1rem 1rem;
}

/* info table */
.info_table {
	width: 100%;
}

.info_table td {
	width: 20%;
}

.info_table td {
	padding: 1.2rem 1.6rem;
	line-height: 1;
}

.info_table tr:nth-child(odd) {
	background: #F3F3F3;
}

.info_table td:first-child {
	border-radius: .5rem 0 0 .5rem;
}

.info_table td:last-child {
	border-radius: 0 .5rem .5rem 0;
}


/* filter modal */
.filter_button {
	display: none;
	position: fixed;
	right: 5rem;
	top: 15rem;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	font-size: 1.6rem;
}

#offcanvas {
	padding: 6rem 1rem 5rem 2.5rem;
}

#offcanvas .accordion {
	max-height: 100vh;
	overflow: auto;
	padding-right: 1.5rem;
}

#offcanvas .btn_close {
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	color: var(--theme-color);
	background: transparent;
	padding: 0;
	font-size: 2.3rem;
	border: none;
}

.btn-close:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: 1;
}

/* simplebar (scrollbar custom css) */
.simplebar-scrollbar::before {
	width: .6rem;
	background: var(--theme-color);
	left: 0;
	top: 0;
	border-radius: .6rem;
}

.simplebar-scrollbar.simplebar-visible::before {
	opacity: 1;
	-webkit-transition: opacity 0s linear;
	-o-transition: opacity 0s linear;
	transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
	width: .6rem;
	background: #F3F3F3;
	border-radius: .6rem;
}

.search_details .nice-select ul.list {
	max-height: 400px;
	overflow-y: auto;
}

.custom-style .current {
	width: 90%;
	display: inline-block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

#registration_form {

}

#registration_form input {
	width: 100%;
	height: 5rem;
	border-radius: 2.5rem;
	background: #F3F3F3;
	border: none;
	outline: none;
	padding: 0 2.2rem;
	margin-bottom: 1.3rem;
	font-size: 1.5rem;
}

#registration_form input::-webkit-input-placeholder {
	opacity: 1;
}

#registration_form input::-moz-placeholder {
	opacity: 1;
}

#registration_form input:-ms-input-placeholder {
	opacity: 1;
}

#registration_form input::-ms-input-placeholder {
	opacity: 1;
}

#registration_form input::placeholder {
	opacity: 1;
}

#registration_form button {
	
}

.toast-container {
	z-index: 2000;
}

.toast-container .toast {
	font-size: 1.5rem;
}

.profile-menu {
	border: 1px solid #DEDEDE;
	border-radius: 10px;
	padding: 10px;
	background: #f3f3f3;
}

.profile-menu a {
	color: #000;
}

.product_slider .item a {
	color: #000;
}

.customer_car div {
	flex-direction: row;
}

@media (max-width: 800px) {
	.customer_car div {
		flex-direction: column;
	}
}

.cart-number-input {
	border: none;
}

.cart-input {
	height: 5rem;
	line-height: 5rem;
	border: solid 1px #DEDEDE;
	border-radius: 1rem;
	font-weight: 500;
	font-size: 1.5rem;
	padding: 0 2rem;
	width: 35.5rem;
}

.cart_nice_select_wrap2 .nice-select {
	width: 35.5rem;
}

#stationsholder {
	position: absolute;
	background: #fff;
	border: 1px solid #ccc;
	max-height: 400px;
	overflow: auto;
}

#stationsholder li {
	padding: 4px;
	border-top: 1px solid #ccc;
	cursor: pointer;
}

#stationsholder li:first-child {
	border-top: none;
	
}