
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	outline: none!important;
}

body {
	font-family: 'Barlow', sans-serif;
	color: #232323;
	font-size: 14px;
}
p {
	margin: 0px!important;
	padding: 0px!important;
}
a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul,
li {
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
header {
	width: 100%;
	display: inline-block;
}
header .top{
	width: 100%;
	height: 36px;
	display: inline-block;
	background: #F5F5F5;
}

header .cargo{
	width: auto;
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	color: #6E7673;
}
header .mail a{
	width: auto;
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	color: #6E7673;
}
header .login{
	width: auto;
	display: inline-block;
}
header .login a{
	display: block;
	color: #403E3E;
	font-size: 16px;
	font-weight: 500;
}
header .shops {
	width: auto;
	display: inline-block;
}
header .shops a{
	text-align: center;
	height: 37px;
	padding-top: 8px;
	padding-left: 12px;
	padding-right: 12px;
	display: block;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	background: var(--bg-gradient);
}
header .shops a{
	text-align: center;
	height: 37px;
	padding-top: 9px;
	padding-left: 12px;
	padding-right: 12px;
	display: block;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	background: var(--bg-gradient);
}
header .logo{
	width: auto;
	display: inline-block;
}
header .search{
	width: 561px;
	display: inline-block;
	border: 1px solid var(--border-gray);
	margin-left: 111px;
	border-radius: 50px;
	-webkit-box-shadow: 0px 0px 13px 2px rgba(0,0,0,0.46); 
box-shadow: 0px 0px 13px 2px rgb(0 0 0 / 4%);
position: relative;
}
header .search input[type=text]{
	display: inline-block;
	width: 500px;
	height: 48px;
	border: 0px;
	font-size: 14px;
	color: var(--color-black);
	overflow: auto;
	border-radius: 50px;
}
header .search input[type=submit]{
	display: inline-block;
	width: 53px;
	height: 48px;
	border: 0px;
	background-color: transparent;
	background-image: url(../images/search.png);
	background-repeat: no-repeat;
	background-position: center center;
	float: right;
}
header .heart{
	display: flex;
	margin-right: 12px!important;
	width: 48px;
	height: 48px;
	background: #F7F7F5;
	border-radius: 50%;
	text-align: center;
	align-items: center;
	justify-content: center;
}

header .basket {
	display: flex;
	position: relative;
	width: 48px;
	height: 48px;
	background: #67AF2C;
	border-radius: 50px;
	justify-content: center;
	align-items: center;
}
header .inner-basket {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 12px;
    color: #67AF2C;
    font-weight: 500;
    box-shadow: 0px 0px 13px 2px rgb(0 0 0 / 4%);
}
header .social-media{
	width: auto;
	display: inline-block;
}
header .social-media span{
	width: 100%;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
}
header .social-media ul li{
	display: inline-block;
	float: left;
	text-align: left;
	margin-right: 12px;
}
header .social-media ul li a{
	display: block;
	color: #000;
	font-weight: 500;
	font-size: 18px;
}
header .social-media ul li a:hover{
	text-decoration: underline;
}
header .social-media ul li a i{
	width: 15px;
	text-align: center;
	margin-right: 5px;
	color: #6B6969;
}
header .social-media ul li a:hover{
	text-decoration: none;
}

.modal.left .modal-dialog,
	.modal.right .modal-dialog {
		position: fixed;
		margin: auto;
		width: 400px;
		height: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		-ms-transform: translate3d(0%, 0, 0);
		-o-transform: translate3d(0%, 0, 0);
		transform: translate3d(0%, 0, 0);
	}

	.modal.left .modal-content,
	.modal.right .modal-content {
		height: 100%;
		overflow-y: auto;
	}
	
	.modal.left .modal-body,
	.modal.right .modal-body {
		padding: 15px 15px 80px;
	}


	.modal.left.fade .modal-dialog{
		left: -320px;
		-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
		        transition: opacity 0.3s linear, left 0.3s ease-out;
	}
	
	.modal.left.fade.in .modal-dialog{
		left: 0;
	}

	.modal.right.fade .modal-dialog {
		right: 0px;
		-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
		        transition: opacity 0.3s linear, right 0.3s ease-out;
	}
	
	.modal.right.fade.in .modal-dialog {
		right: 0;
	}

	.modal-content {
		border-radius: 0;
		border: none;
	}

	.modal-header {
		border-bottom-color: #f1efef;
	}
.gird-box {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 0px;
  padding: 10px 0;
  border-bottom: 1px solid #f1efef!important;
  }
 
  .gird-box .image {
    grid-column: 1 / span 1;
	position:relative;
  }
  .gird-box .image img {
    width: 100px;
}
  .gird-box .image span {
   position: absolute;
   top: -5px;
   right: -6px;
   background: #5eab1f;
   border-radius: 50%;
   color: #fff;
   width: 20px;
   text-align: center;
   font-size: 14px;
   height: 21px;
   cursor:pointer;
   padding-top: 0px;
  }
 .gird-box .text {
    font-weight: 600;
    padding: 0 30px;
    font-size: 14px;
    color: #232323;
}
.cart-total {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-gap: 10px;
  padding:5px 0;
  border-bottom: 1px solid #f1efef!important;
  margin-bottom:10px;
  font-weight:600;
 }
  .cart-total .title {
    grid-column: 1 / span 1;
  }
  .cart-total .count {
	text-align:right;
	padding-right:10%;
  }
  h4#myModalLabel2 {
    font-size: 16px;
    margin-top: 4px;
}
.gird-box .text h6 {
    font-size: 15px;
    color: #232323!important;
}
.btn-custom {
    border-radius: 0px!important;
    font-size: 16px;
    border: 0px;
}
i.fas.fa-times {
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #f1efef;
    line-height: 28px;
    color: #000!important;
    opacity: 0.9;
}
.btn-buy  {
	font-size:14px;
	font-weight:500;
	border:1px solid #5EAB1F!important;
	border-radius:0px;
	background: #5EAB1F;
	color:#fff;
	padding: 10px 28px!important;
	border-radius: 5px;
}
.btn-buy:hover  {
	background:#fff;
	color: #5EAB1F;
	border: 1px solid #5EAB1F!important;
}
.btn-cart  {
	font-size:14px;
	font-weight:500;
	border:1px solid #EFB443!important;
	border-radius:0px;
	background: #EFB443;
	color:#fff;
	padding: 10px 28px!important;
	border-radius: 5px;
}
.btn-cart:hover  {
	background:#fff;
	color: #EFB443;
	border: 1px solid #EFB443!important;
	border-radius: 5px;
}
.mblock {
	display: none!important;
}
.m-login {
	display: inline-block;
	float: left;
	margin-left: 16px;
}
.m-login a{
	display: block;
	font-weight: 500;
	background: var(--color-red);
	color: #fff;
	padding: 6px 12px;
	margin-top: 10px;
}
.m-add {
	display: inline-block;
	float: left;
	margin-left: 16px;
}
.m-add a{
	display: block;
	font-weight: 500;
	border:1px solid var(--color-red);
	color: var(--color-red);
	padding: 6px 20px;
	margin-top: 10px;
}
li.border.pt-1.hvr {
    margin-top: -6px!important;
}
.img-banner img {
	width: 100%;
}
.breadcrumb-wp {
	width: 100%;
	height: 50px;
	display: inline-block;
	background: #F9F9F9;
}
.breadcrumb-item {
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
}
.breadcrumb-item a{
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.breadcrumb-item.active {
    color: #67af2c;
    font-size: 14px;
}
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1rem 1rem;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: .25rem;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
    font-size: 12px;
}
.category span {
	width: 100%;
	display: block;
	font-size: 17px;
	font-weight: 500;
	padding-bottom: 10px;
}
.category ul {
    width: 100%;
    display: block;
    background: #F9F9F9;
}
.category ul li {
	width: 100%;
	display: block;
	border-bottom: 1px solid #E8E8E8;
}
.category ul li:last-child {
	border-bottom: 0px;
}
.category ul li a{
	width: 100%;
	display: block;
	font-size: 15px;
	color: #000;
	font-weight: 500;
	padding-top: 9px;
	padding-bottom: 9px;
	padding-left: 18px;
	transition: 0.3s;
}
.category ul li a:hover{
	padding-left: 30px;
	color: #5EAB1F;
	transition: 0.3s;
}
.filters {
	width: 100%;
	display: inline-block;
}
.filters .top {
	width: 100%;
	display: block;
	font-size: 17px;
	font-weight: 500;
	padding-bottom: 10px;
	border-bottom: 1px solid #dee2e6;
}
.filters .title{
	width: 100%;
	display: inline-block;
	font-size: 16px;
	border-bottom: 1px solid var(--border-gray);
	font-weight: 500;
}
.filters .filters-item{
	width: 100%;
	display: inline-block;
}
.filters .filters-item span{
	width: 100%;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
}
.filters .filters-item input[type=text]::placeholder {
	color: #232323;
}
.filters .filters-item input[type=text]{
	display: inline-block;
	color: #232323;
	font-size: 14px;
	height: 34px;
	padding-left: 10px;
	background: #F5F5F5;
	border: transparent;
	font-weight: 500;
}
.filters input[type=submit]{
	border: 0px;
	background: #67af2c;
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	padding: 11px 25px;
}
.filters .form-control {
    display: block;
    width: 100%;
    height: 43px;
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #E2E2E2;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.filters .form-control:focus {
    box-shadow: none!important;
}
.filters .form-group label{
    font-weight: 500;
}
.form-check-label {
    margin-bottom: 0px;
    margin-top: 1px;
}
.form-check-label {
    margin-bottom: 5px;
    margin-top: 1px;
    font-size: 12px;
    font-weight: 500;
}

.form-check input[type=checkbox] {
	position: absolute;
	display: none;
}
.form-check input[type=checkbox]+label {

}
.form-check input[type=checkbox]+label span{
	font-size: 14px;
	font-weight: 500;
	margin-left: 5px;
}
.form-check input[type=checkbox]+label:after {
	width: 17px;
	height: 17px;
	background: #efecec;
	position: absolute;
	content: "";
	left: 0;
	top: 1px;
}
.form-check input[type=checkbox]:checked +label:after {
	background-image: url(../images/checked.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #eee;
}
.brand-btn a {
	display: block;
	margin-top: 10px;
	font-size: 15px;
	text-decoration: underline;
}
.w-20 {
	width: 19%!important;
	margin-right: 1%;
}
.w-40 {
	width: 40%!important;
}
.w-80 {
	width: 100%!important;
}

.page-title {
	width: 100%;
	display: inline-block;
}
.page-title span{
	width: auto;
	display: inline-block;
	font-size: 16px;
	color: #67af2c;
	font-weight: 500;
	margin-top: 10px;
}
.page-title span + span{
	font-size: 12px;
	color: var(--color-purple);
}
.paging-btn {
    font-size: 15px;
    font-weight: 600;
}
.pagination-drop .dropdown-item {
    font-weight: 400;
    color: #000;
    text-align: inherit;
    white-space: nowrap;
    border: 0;
    font-size: 13px!important;
    border-radius: 0px!important;
	font-weight: 500;
}
.pagination-drop .dropdown-item:hover {
    background-color: var(--bg-soft-gray);
}
.dropdown-menu.pagination-drop.show {
    background: var(--bg-gray);
    border-radius: 0;
    margin-top: 0;
    border: 0;
	padding-left: 5px;
	padding-right: 5px;
}

button {
	border: 0px!important;
}
button:focus, button:active, button:hover {
	outline: none!important;
	border: none!important;
	box-shadow: none!important;
}

.stock-code {
	width: auto;
	display: inline-block;
	color: #A4A4A4;
	font-size: 13px;
}
.stock {
	color: #67AF2C;
	font-size: 14px;
	font-weight: 500;
}
.detil-title {
	font-size: 22px;
	font-weight: 500;
}
.enegry {
	width: auto;
	display: inline-block;
	background: var(--bg-green);
	font-size: 16px;
	padding: 4px 12px;
	color: #fff;
}
.enegry:after {
	width: 15px;
	height: 15px;
	display: inline-block;
	background: var(--bg-green);
	content: '';
	position: absolute;
	transform: rotate(45deg);
	top: 8px;
}
.energy-form {
	width: auto;
	display: inline-block;
}
.energy-form a {
	width: auto;
	display: block;
	color: #009999;
	font-size: 14px;
	text-decoration: underline;
}
.comment-wp {
	width: auto;
	float: right;
}
.comment-wp .stars i{
	color: #DFE6ED;
}
.comment-wp .comment {
	font-size: 12px;
	color: var(--color-green);
}
.price {
	display: inline-block;
	font-size: 26px;
	font-weight: 600;
}
.old {
	display: inline-block;
	font-size: 18px;
	color: #929292;
	text-decoration: line-through;
	font-weight: 500;
}
.discount {
	width: 90px;
	height: 48px;
	background: #EFB443;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	line-height: 15px;
	box-shadow: 0px 0px 13px 2px rgb(0 0 0 / 13%);
}

.credit-card {
	width: 100%;
	display: inline-block;
	font-size: 13px;
}
.pt_Quantity {
  display: inline-block;
  position: relative;
  float: left;
}
.pt_Quantity input {
  color: #443017;
  background-color: #ffffff;
  border: solid 1px #e5e5e5;
  font-size: 15px;
  min-width: 48px;
  height: 48px;
  float: left;
  display: block;
  padding: 0 15px 0 2px;
  margin: 0;
  text-align: center;
  width: 90px;
  font-weight: 600;
}
.pt_Quantity input:focus {
  outline: 0;
}
.pt_Quantity .pt_QuantityNav {
  float: left;
  position: relative;
  height: 47px;
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #e5e5e5;
  width: 20px;
  text-align: center;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton:active {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton.pt_QuantityUp {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #e5e5e5;
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton.pt_QuantityDown {
  position: absolute;
  bottom: 0px;
  height: 50%;
}
.add-btn {
	display: inline-block;
	width: 205px;
	float: left;
}
.add-btn a{
	display: block;
	height: 47px;
	background: #67af2c;
	text-align: center;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	padding-top: 12px;
	box-shadow: 0px 0px 13px 2px rgb(0 0 0 / 13%);
}
.like {
    width: 50px;
    height: 48px;
    display: inline-block;
    float: left;
}
.like a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	border: 1px solid #ccc !important;
}
.like a{
	width: 51px;
	height: 47px;
	display: block;
	border: 1px solid var(--border-gray);
	font-size: 18px;
	color: #000;
	background: #fff;
}
.like a:hover{
	border-color: #67C177;
}
.liked a {
	border: 1px solid green!important;
	color: green!important;
}
.brand-title {
	font-size: 14px;
	margin-top: 15px;
}
.brand-img {
	text-align: right
}
.brand-img img{
	width: 100px;
}
.features {
	width: 100%;
	display: inline-block;
}
.features ul li {
	width: 100%;
	display: inline-block;
	height: 30px;
	padding-left: 8px;
	padding-top: 5px;
	font-weight: 500
}
.features ul li span{
	width: 49%;
	display: inline-block;
}
.tabs-menu .nav-tabs .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	color: #000;
	font-weight: 500;
	font-size: 16px;
}
}

.tabs-menu .nav-tabs .nav-item.show .nav-link,
.tabs-menu .nav-tabs .nav-item.show .nav-link, .tabs-menu .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #67af2c!important;
    border-color: #67af2c!important;
}
.tabs-menu .nav-tabs .nav-item.show .nav-link,
.tabs-menu .nav-tabs .nav-link:hover {
	color: #ffffff;
	 background-color: #67af2c!important;
    border-color: #67af2c!important;
}
.nav-tabs {
    border-bottom: 1px solid #67AF2C;
}
.tabs-menu .nav-tabs .nav-item {
	margin-bottom: 0px;
}
.tabs-menu .nav {
	text-align: center;
}
.tabs-menu .nav-link {
    display: block;
    padding: .8rem 1rem;
}
.tabs-menu .tab-content {
    background: var(--bg-soft-gray);
	line-height: 24px;
}
.size{
	width: 100%;
	display: inline-block;
	text-align: center;
}
.size ul li {
	width: auto;
	display: inline-block;
	width: 125px;
	margin-right: 30px;
}
.size ul li span{
	width: 50%;
	text-align: center;
	float: left;
	font-size: 14px;
	font-weight: 500;
}
.size ul li:last-child {
	margin-right: 0px;
}
.size-inner {
	width: 100%;
	float: left;
	font-size: 14px;
	font-weight: 500;
}
.size-title {
	width: 100%;
	float: left;
	font-size: 13px;
	font-weight: 500;
}
.size-inner i.fas.fa-long-arrow-alt-left {
    font-size: 20px;
}
.size-inner i.fas.fa-long-arrow-alt-right {
    font-size: 20px;
}
.slick-list .drag img{
    width: 100%!important;
}

/* Desktop Main Menu Color */

.wsmainfull {
  background-color: #fff;
}

.wsmenu>.wsmenu-list {
  background-color: #fff;
}

/* Mobile Header */

.wsmenu>.wsmenu-list>li.headerbtns a.headerbtn01{
  background-color: #d7412e;
}

.wsmenu>.wsmenu-list>li.headerbtns a.headerbtn02{
  border-color: #d7412e;
}

.wsmenu>.wsmenu-list>li>a:after {
    background-color: #67af2c;
}

.wsmobileheader {
  background-color: #fff;
}

.wsmenu>.wsmenu-list>li>a {
  color: #444;
}
 
.wsmenu>.wsmenu-list>li>a.active {
  color: #d7412e;
}

.wsmenu>.wsmenu-list>li:hover>a {
  color: #d7412e;
}

.wsmenu>.wsmenu-list>li>ul.sub-menu>li:hover>a {
  background-color: #d7412e;
  color: #fff;
}

.wsmenu>.wsmenu-list>li>ul.sub-menu>li>ul.sub-menu>li:hover>a {
  background-color: #d7412e;
  color: #fff;
}

.wsmenu>.wsmenu-list>li>ul.sub-menu>li>ul.sub-menu>li>ul.sub-menu>li:hover a {
  background-color: #d7412e;
  color: #fff;
}
.wsmenu > .wsmenu-list > li > ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
  -ms-transition: -ms-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
}

.wsmenu > .wsmenu-list > li  > ul.sub-menu > li > ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li > ul.sub-menu > li:hover > ul.sub-menu {
opacity: 1;
visibility: visible;
-o-transform-origin: 0% 0%;
-ms-transform-origin: 0% 0%;
-moz-transform-origin: 0% 0%;
-webkit-transform-origin: 0% 0%;
-o-transition: -o-transform 0.4s, opacity 0.4s;
-ms-transition: -ms-transform 0.4s, opacity 0.4s;
-moz-transition: -moz-transform 0.4s, opacity 0.4s;
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
transform: rotateX(0deg);
-o-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-webkit-transform: rotateX(0deg);
}

.wsmenu > .wsmenu-list > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -o-transition: -o-transform 0.4s, opacity 0.4s;
  -ms-transition: -ms-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li > ul.sub-menu > li > ul.sub-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
}

.wsmenu > .wsmenu-list > li > .wsmegamenu {
  opacity: 0;
  visibility: hidden;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
  -ms-transition: -ms-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li:hover > .wsmegamenu {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
}
.basker-inner {
	width:auto;
	display:inline-block;
	margin-top: -4px;
	margin-left: 7px;
	font-size: 13px;
	color: #000;
}
header .basket img {
    float: left;
}
.slick-slide div {
    margin-right: 0px!important;
}
.border {
	border-color: #F3F3F3!important;
}
.category-slider {
	width: 100%;
	height: 110px;
	display: inline-block;
	background: #fff;
	box-shadow: 0px 0px 13px 2px rgb(0 0 0 / 4%);
	margin-top: -55px;
	border-radius: 5px;
}
.category-slider a{
	width: 100%;
	height: 100%;
	display: block;
	display: flex;
	justify-content: space-between;
}
.category-slider a .element-text span{
	font-size: 16px;
	color: #232323;
	font-weight: 500;
}
.category-slider a .element-text p{
	font-size: 13px;
	color: #CFCFCF;
	font-weight: 300;
}
.element-text {
    width: 75%;
}
.category-slider  .slick-dots {
	display: none!important;
}
.cat-element {
    margin-top: 13px!important;
}
.category-slider .slick-next {
    top: 50%;
    right: -30px;
    width: 66px;
    height: 66px;
}
.category-slider .slick-prev {
    top: 50%;
    left: -30px;
    width: 66px;
    height: 66px;
}
.main-title {
	width: 100%;
	display: inline-block;
}
.main-title span{
	width: 100%;
	display: inline-block;
	font-size: 36px;
	font-weight: 600;
}
.product {
	display: inline-block;
	margin-bottom: 10px;
}
.product a {
	width: 100%;
	height: 100%;
	display: block;
}
.product a .product-img{
	width: 100%;
	display: inline-block;
	position: relative;
}
.product a .product-img img{
	width: 100%;
	display: inline-block;
}
.product a .product-img .new{
	width: 50px;
	height: 26px;
	border-radius: 13px;
	position: absolute;
	top: 10px;
	left: 10px;
	background: #5EAB1F;
	font-size: 14px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}
.product a .product-img .main-discount{
	width: 40px;
	height: 40px;
	border-radius: 100%;
	position: absolute;
	top: 10px;
	right: 10px;
	background: #EFB443;
	font-size: 14px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}

.product a .product-title {
	width: 100%;
	height: 38px;
	display: inline-block;
	font-size: 14px;
	color: #232323;
	font-weight: 600;
	line-height: 18px;
}
.product a .product-category{
	width: 100%;
	display: inline-block;
	font-size: 14px;
	color: #605F5F;
}
.product a .p-price{
	display: inline-block;
	font-size: 20px;
	color: #5EAB1F;
	font-weight: 600;
}
.product a .product-price-old{
	display: inline-block;
	font-size: 15px;
	color: #C6C9C3;
	font-weight: 500;
	margin-top: 3px;
	text-decoration: line-through;
}
.product-slider .slick-next, .product-slider .slick-prev, .seller-slider .slick-next, .seller-slider .slick-prev {
	display: none!important;
}
.product-slider .slick-dots li, .seller-slider .slick-dots li {
	background: #E1E1E1;
	width: 16px;
	height: 16px;
}
.product-slider li.slick-active, .seller-slider li.slick-active {
    background: #5EAB1F;
}
.adv a img{
	width: 100%;
	display: block;
}
.bg-gray {
	background: #F5F5F5;
}
.main-content {
	width: 85%;
	margin: 0 auto;
	text-align: center;
}
footer {
	width: 100%;
	background: #43483F;
}
footer .footer-content {
	width: 100%;
	color: #fff;
	font-weight: 500;
}
footer .footer-menu {
	width: 100%;
}
footer .footer-menu span{
	width: 100%;
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: 500;
	border-bottom: 1px solid #545D4D;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
footer .footer-menu ul li{
	width: 100%;
	display: block;
	border-bottom: 1px solid #545D4D;
	padding-bottom: 8px;
	margin-bottom: 8px;
}
footer .footer-menu ul li:last-child{
	border-bottom: 0px;
}
footer .footer-menu ul li a{
	width: 100%;
	display: block;
	font-size: 15px;
	color: #fff;
	transition: 0.3s;
}
footer .footer-menu ul li a:hover{
	padding-left: 15px;
	color: #5EAB1F;
	transition: 0.3s;
}
footer .social-media span{
	width: 100%;
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: 500;
	border-bottom: 1px solid #545D4D;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
footer .social-media ul li{
	display: inline-block;
	margin-right: 10px;
}
footer .social-media ul li a{
	display: inline-block;
	margin-right: 6px;
	color: #fff;
	font-size: 16px;
	transition: 0.3s;
}
footer .social-media ul li a:hover{;
	color: #5EAB1F;
	transition: 0.3s;
}

footer .bottom{
	width: 100%;
	background: #32372E;
}

.info {
	width: auto;
	float: left;
	color: #fff;
}
.webron {
	float: right;
}
.paging {
	width: 100%;
	display: inline-block;
	text-align: center;
}
.paging ul li{
	display: inline-block;
	margin-right: 5px;
}
.paging ul li a{
	width: 38px;
	height: 38px;
	display: flex;
	margin-right: 1px;
	border: 1px solid #E2E2E2;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #232323;
	font-weight: 500;
	border-radius: 3px;
	transition: 0.3s;
}
.paging ul li a:hover{
	border: 1px solid #5EAB1F;
	color: #fff;
	transition: 0.3s;
	background: #5EAB1F;
}
.gallery .slick-next, .gallery .slick-prev  {
	display: none!important;
}
.pro-content {
	width: 100%;
	display: inline-block;
	    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}
}
.bg-soft-gray {
	background: #F9F9F9;
}
.bg-soft-gray .border-bottom {
	border-color: #EEEEEE!important;
}
.variant {
	float: left;
	margin-right: 10px;
}
.variant input[type=radio] {
	position: absolute;
	display: none;
	
}
.variant input[type=radio]+label {
	width: 96px;
	height: 45px;
	border: 2px solid #E2E2E2;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding-top: 10px;
	color: #777777;
}
.variant input[type=radio]:checked +label {
	width: 96px;
	height: 45px;
	border-color: #67AF2C;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #67AF2C;
}
.desktop {
	display: block!important;
}
.mobile {
		display: none!important;
	}
.fitler-element {
	display: none!important;
}

.category-top {
	width: 100%;
	height: 70px;
	display: inline-block;
	border-radius: 5px;
	background: #5eab1f;
}
.category-top form {
	align-items: center;
	height: 70px;
}
.category-top .form-group {
	width: 100%;
	margin-bottom: 0!important;
	padding-left: 15px;
	/* padding-right: 15px; */
}
.category-top .form-group select{
	width: 100%;
	font-size: 14px;
	display: block;
	color: #554D47!important;
	display: inline-block;
	height: 35px;
	background: #fff;
	border:0px;
	padding-left: 10px;
}
.category-top .form-group select option{
	color: #293656;
	border: 0px;
	border-radius: 5px;
}
.category-select {
    padding: 0;
        padding-right: 0px;
        padding-left: 0px;
    background: transparent;
    border: 0;
}
.category-select {
    position: relative;
    width: 100%;
    font-size: 16px;
	margin-top: 39px;
}
.btn-light {
	font-size:16px!important;
	font-weight: 500;
	border-radius:0!important;
	font-size: 16px !important;
}
.category-select .dropdown .dropdown-item {
    font-size: 14px;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
	font-size: 16px !important;
}

.bg-soft-gray {
    background: #f9f9f9;
}
.logo.scticky-logo {
	display:none;
}
.sticky.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.sticky{
	transition: 0.3s;
}
.sticky.is-sticky{
	transition: 0.3s;
	background: #fff;
	box-shadow: 3px 2px 11px 0px rgb(0 0 0 / 15%);
	padding-bottom: 10px;
}
.sticky.is-sticky .logo.scticky-logo {
	display:block;
	float:left;
	margin-top:6px;
	margin-right:5px;
}

.sticky.is-sticky .logo.scticky-logo a img {
	width: 130px;
    margin-top: 6px;
	transition: 0.3s;
}
.sticky.is-sticky .wsmainfull {
    width: auto;
    float: right;
}
.sticky.is-sticky .wsmenu>.wsmenu-list>li>a {
    padding: 6px 0px 8px 0px;
    font-size: 14px;
}


