
/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Banner Section
6.  Deal Of The Week
7.  Latest Blog
8.  Logo Carousel
9.  Contact
10.  Footer

-------------------------------------------------------------------*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Muli:ital,wght@0,300..900;1,300..900&display=swap');
html,
body {
	height: 100%;
	font-family: "Muli", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
  font-weight: var(--fw-4)!important;
	 /*padding-top: 70px;*/

}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;

	font-family: "Muli", sans-serif;
}
h1,
h2,
h3{
    font-weight: 700;
}
h4,
h5,
h6 {
    font-weight: 500;
}
h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	font-family: "Muli", sans-serif;
	color: #636363;
	line-height: 26px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,




a:focus {
	text-decoration: none;
	outline: none;
	/*color: #fff;*/
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 40px;
	text-align: center;
}

.section-title .product-price {
	font-size: 24px;
	font-weight: 300;
	color: #333;
}

.section-title .product-price span {
	font-size: 16px;
	font-weight: 300;
	color: #636363;
}

.section-title h2 {
	color: #252525;
	font-size: 36px;
	font-weight: 300;
	margin-bottom: 38px;
	position: relative;
}

.section-title h2:before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
	width: 80px;
	height: 3px;
	background: #333;
	content: "";
	margin: 0 auto;
}

.section-title p {
	color: #6e6e6e;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}
.spad-det{
    padding-top: 0;
  padding-bottom: 100px;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	padding: 12px 38px;
	color: #ffffff;
	background: #333;
	text-transform: uppercase;
	border-radius: 62.5rem;
	letter-spacing: 2px;
	line-height: 2;
}
.primary-btn:hover {
	color: rgba(255, 255, 255, 1) !important;
   /* box-shadow: 0 4px 16px rgba(49, 138, 172, 1); */
	 box-shadow: 0 4px 10px RGB(40,44,52);
    transition: all 0.2s ease;
    background:#333;
    border-color:#333;
}

.site-btn {
	color: #ffffff;
	background: #333;
	border: 1px solid #333;
	font-size: 18px;
	font-weight:300;
	/* text-transform: uppercase;
	padding: 10px 45px 10px;*/
	cursor: pointer;
	border-radius: .25rem;
}
.btn-p{
    color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 45px 10px;
  cursor: pointer;
  border-radius: .25rem;
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-c{
    display: inline-block;
  width: 100%;
  color: #333;
  border: 1px solid #333;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 45px 10px;
  cursor: pointer;
  border-radius: .25rem;
  text-transform: uppercase;
  text-align: center;
}
/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.ht-right .lan-selector {
	max-width: 142px;
	cursor: pointer;
	display: inline-block;
	position: relative;
}

.ht-right .lan-selector .ddcommon {
	max-width: 142px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none;
	cursor: pointer;
	padding: 0 20px;
}

.ht-right .lan-selector .ddcommon .ddTitle .ddTitleText img {
	padding-right: 5px;
}

.ht-right .lan-selector .ddcommon .ddTitle .ddTitleText span {
	font-size: 14px;
	color: #252525;
}

.ht-right .lan-selector .ddcommon .ddTitle .ddArrow:before {
	content: "3";
	font-family: "ElegantIcons";
	font-size: 14px;
	color: #636363;
	float: right;
	position: relative;
	right: 0;
	line-height: 26px;
}

.ht-right .lan-selector .ddcommon .ddChild {
	background: #fff;
	max-width: 142px;
	width: 100%;
	position: relative;
	left: 0;
}

.ht-right .lan-selector .ddcommon .ddChild ul {
	width: 100%;
	max-width: 142px;
}

.ht-right .lan-selector .ddcommon .ddChild ul li {
	line-height: 23px;
	padding: 0px 10px;
	list-style: none;
}

.ht-right .lan-selector .ddcommon .ddChild ul li img {
	padding-right: 10px;
}

.ht-right .lan-selector .ddcommon .ddChild ul li span {
	font-size: 13px;
	color: #000;
	letter-spacing: 0.325px;
}

.header-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #e5e5e5;
}

.header-top .ht-left {
	float: left;
}

.header-top .ht-left .mail-service {
	font-size: 16px;
	color: #252525;
	float: left;
	border-right: 1px solid #E5E5E5;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 20px;
}

.header-top .ht-left .mail-service i {
	margin-right: 5px;
}

.header-top .ht-left .phone-service {
	float: right;
	font-size: 14px;
	color: #252525;
	line-height: 27px;
	padding-top: 15px;
	padding-bottom: 12px;
	padding-left: 20px;
}

.header-top .ht-left .phone-service i {
	margin-right: 5px;
}

.header-top .ht-right {
	float: right;
}

.header-top .ht-right .login-panel {
	float: right;
	font-size: 14px;
	color: #252525;
	display: inline-block;
	padding-left: 20px;
	border-left: 1px solid #e5e5e5;
	padding-top: 18px;
	padding-bottom: 15px;
}

.header-top .ht-right .login-panel i {
	margin-right: 8px;
}

.header-top .ht-right .lan-selector {
	float: right;
	margin-top: 15px;
	margin-bottom: 13px;
}

.header-top .ht-right .top-social {
	float: right;
	padding-right: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-right: 1px solid #e5e5e5;
}

.header-top .ht-right .top-social a {
	color: #252525;
	font-size: 14px;
	display: inline-block;
	margin-left: 15px;
}

.inner-header {
	padding: 10px 0;
}

.inner-header .logo {
	 /* padding: 12px 0;  */
	 /*margin-top: -25px;*/
}

.inner-header .logo .mobile{
	/* width: 80%; */

	display: none;
}
.inner-header .logo a {
	display: inline-block;
}
	.inner-header .nav-right .mobile {
		display: none;
	}

.inner-header .advanced-search {
	height: 50px;
	background: #fff;
}

.inner-header .advanced-search .category-btn {
	max-width: 30%;
	float: left;
	background: transparent;
	border: none;
	padding-left: 23px;
	padding-top: 11px;
	padding-bottom: 13px;
	padding-right: 60px;
	font-size: 16px;
	color: #252525;
	position: relative;
}

.inner-header .advanced-search .category-btn:before {
	position: absolute;
	right: 0;
	top: 14px;
	width: 1px;
	height: 20px;
	background: #e5e5e5;
	content: "";
}

.inner-header .advanced-search .category-btn:after {
	position: absolute;
	right: 11px;
	top: 10px;
	content: "3";
	font-family: "ElegantIcons";
	font-size: 16px;
	color: #b2b2b2;
}

.inner-header .advanced-search .input-group {
	max-width: 100%;
	height: 100%;

}

.inner-header .advanced-search .input-group input {
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #373D47;
	 padding-left: 20px;
	background: transparent;
	border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.inner-header .advanced-search .input-group button {
	font-size: 16px;
	color: #ffffff;
	position: absolute;
	right: -3px;
	top: -2px;
	border: 1px solid var(--primary);
	background: var(--primary);
	padding: 12px 16px 12px;
	cursor: pointer;
	border-radius: 0 5px 5px 0
}

	.inner-header .nav-right {
		/* padding: 10px 0; */
		display: flex;
		/* -webkit-justify-content: flex-end;*/
      align-items:center;
	}

.inner-header .nav-right li {
	list-style: none;
	display: inline-block;
	padding: 16px;
}

.inner-header .nav-right li.heart-icon a {
	color: #fff;
	position: relative;
	display: flex;
	font-size: 18px;
	align-items: center;
}

.inner-header .nav-right li.heart-icon a span {
	position: absolute;
	right: -8px;
/*	height: 15px;
	width: 15px;*/
	background: #333;
	color: #ffffff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 300;
	text-align: center;
}

.inner-header .nav-right li.cart-icon {
	position: relative;
}

.inner-header .nav-right li.cart-icon:hover .cart-hover {
	opacity: 1;
	visibility: visible;
	top: 40px;
}

.inner-header .nav-right li.cart-icon a {
	color: #252525;

}

.inner-header .nav-right li.cart-icon a span {
	position: absolute;
	right: -8px;
	top: -1px;
	height: 15px;
	width: 15px;
	background: #333;
	color: #ffffff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 300;
	text-align: center;
	line-height: 15px;
}

.inner-header .nav-right li.cart-icon .cart-hover {
	position: absolute;
	right: -70px;
	top: 100px;
	width: 350px;
	background: #ffffff;
	z-index: 99;
	text-align: left;
	padding: 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table {
	width: 100%;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td {
	padding-bottom: 20px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-pic img {
	border: 1px solid #ebebeb;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-text {
	padding-left: 18px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-text .product-selected p {
	color: #333;
	line-height: 30px;
	margin-bottom: 7px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-text .product-selected h6 {
	color: #232530;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-close {
	color: #252525;
	font-size: 12px;
	cursor: pointer;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-total {
	overflow: hidden;
	border-top: 1px solid #e5e5e5;
	padding-top: 26px;
	margin-bottom: 30px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-total span {
	font-size: 16px;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	float: left;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-total h5 {
	color: #333;
	float: right;
}

.inner-header .nav-right li.cart-icon .cart-hover .titulo {
	overflow: hidden;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
}

.inner-header .nav-right li.cart-icon .cart-hover .titulo span {
	font-size: 16px;
	color: #252525;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
	float: left;
	font-weight: 300;
}

.inner-header .nav-right li.cart-icon .cart-hover .titulo i {
	color: #252525;
	float: right;
	cursor: pointer;
}
.inner-header .nav-right li.cart-icon .cart-hover .select-button .view-card {
	font-size: 12px;
	letter-spacing: 2px;
	display: block;
	text-align: center;
	background: #191919;
	color: #ffffff;
	padding: 15px 30px 12px;
	margin-bottom: 10px;
}

.inner-header .nav-right li.cart-icon .cart-hover .select-button .checkout-btn {
	font-size: 12px;
	letter-spacing: 2px;
	display: block;
	text-align: center;
	color: #ffffff;
	padding: 15px 30px 12px;
}

.inner-header .nav-right li.cart-price {
	font-size: 18px;
	font-weight: 300;
	color: #252525;
}

.nav-item {
	background: #252525;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*margin-top: -20px;*/
}

.nav-item .nav-depart {
	float: left;
}

.nav-item .nav-depart .depart-btn {
	background: #3b3b3b;
	color: #ffffff;
	padding: 14px 84px 14px 18px;
	cursor: pointer;
	position: relative;
}

.nav-item .nav-depart .depart-btn:hover .depart-hover {
	top: 52px;
	opacity: 1;
	visibility: visible;
	z-index: 99;
}

.nav-item .nav-depart .depart-btn:before {
	position: absolute;
	color: #ffffff;
	right: 20px;
	top: 13px;
	content: "";
	font-family: FontAwesome;
	font-size: 18px;
}

.nav-item .nav-depart .depart-btn i {
	color: #ffffff;
	font-size: 16px;
}

.nav-item .nav-depart .depart-btn span {
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	margin-left: 16px;
}

.nav-item .nav-depart .depart-btn .depart-hover {
	position: absolute;
	width: 100%;
	background: #fff;
	left: 0;
	top: 62px;
	opacity: 0;
	visibility: hidden;
	padding-bottom: 29px;
	-webkit-box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-depart .depart-btn .depart-hover li {
	list-style: none;
}

.nav-item .nav-depart .depart-btn .depart-hover li.active a {
	color: #333;
}

.nav-item .nav-depart .depart-btn .depart-hover li a {
	display: block;
	font-size: 16px;
	color: #000000;
	padding-left: 40px;
	padding-top: 16px;
	padding-right: 30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-depart .depart-btn .depart-hover li a:hover {
	color: #333;
}

.nav-item .nav-menu {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	position: relative;
}
.nav-item .nav-menu .lu1 {
	background: #3b3b3b;
	color: #ffffff;
	cursor: pointer;
}
/* new */
/* .nav-item .nav-menu .lu1:before {
	position: absolute;
	color: #ffffff;
	right: 20px;
	top: 13px;
	content: "";
	font-family: FontAwesome;
	font-size: 18px;
} */

.nav-item .nav-menu li {
	list-style: none;
	display: block ruby;
	/*margin-left: -5px;*/
	position: relative;
}

.nav-item .nav-menu li.active a {
	background: #333;
}

.nav-item .nav-menu li a {
	font-size: 15px;
	font-weight: 600;
	display: block;
	color: #ffffff;
	/*border-right: 1px solid #fff;
	text-transform: uppercase;*/
	margin-right: 15px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-menu li:hover > a {
	/*background: #151DC5;*/
}

.nav-item .nav-menu li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	top: 52px;
}
.nav-item .nav-menu .ul_1 .ul_2 li:hover>a {
	background: transparent;
}
.nav-item .nav-menu .ul_1 .ul_2 .dropdown {
	position: absolute;
	right: 0;
	top: 82px;
	width: 200px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	background: #fff;
	padding-bottom: 29px;
	-webkit-box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-item .nav-menu li .dropdown li {
	display: block;
	margin-left: 0;
}

.nav-item .nav-menu li .dropdown li:hover>a {
	background: transparent;
	color: #333;
}

.nav-item .nav-menu li .dropdown li a {
	border-right: 0;
	padding: 13px 20px 12px 30px;
	text-transform: capitalize;
	color: #000000;
}
/* continue */
.nav-item .nav-menu li .dropdown li ul {
	position: absolute;
	display: none;
}

.nav-item .nav-menu li .dropdown li:hover ul {
	display: block;
}

.nav-item .nav-menu li  .dropdown li .lu3 {
	top:0px;
	width: 100%;

}
.nav-item .nav-menu li .dropdown li .lu3 li {
	list-style: none;
	position: relative;
      top:0px;
      right: -140px;
			background: #fff;
			-webkit-box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
			box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
			-webkit-transition: all 0.3s;
			-o-transition: all 0.3s;
			transition: all 0.3s;
}
.slicknav_menu {
	display: none;
}

/*---------------------
  Hero Section
-----------------------*/

.hero-items .single-hero-items {
    width: 100%;
	/*padding-top: 510px;*/
	height: auto;
	max-width: 100vw;
   min-height: 40vw;
}

	/* nuevo*/
	.espacio{
		padding-bottom: 20px;
	}

.hero-items .single-hero-items span {
	color: #333;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 28px;
	display: inline-block;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-items .single-hero-items h1 {
	color: #252525;
	font-size: 72px;
	font-weight: 300;
	margin-bottom: 6px;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-items .single-hero-items p {
	margin-bottom: 42px;
	position: relative;
	top: 100px;
	opacity: 0;
}
.boton3 {
  color: #318aac !important;
  font-size: 20px;
  font-weight:300;
  padding: 0.5em 1.2em;
  background: rgba(0,0,0,0);
  border: 2px solid;
  border-color: #318aac;
  transition: all 1s ease;
  position: relative;
}
.boton3:hover {
  background: #318aac;
  color: #fff !important;
}

.hero-items .single-hero-items .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
}


.hero-items .off-card {
	height: 154px;
	width: 154px;
	padding-top: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 140px;
	position: absolute;
	left: 47%;
	top: 160px;
	background: #333;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}

.hero-items .off-card:after {
	position: absolute;
	left: 5px;
	top: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 2px dashed #ffffff;
	content: "";
	border-radius: 50%;
	z-index: -1;
}

.hero-items .off-card h2 {
	font-size: 32px;
	font-weight: 300;
	color: #ffffff;
	text-transform: uppercase;
}

.hero-items .off-card h2 span {
	display: block;
	font-size: 32px;
	font-weight: 300;
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 6px;
}

.hero-items .owl-item.active .single-hero-items span,
.hero-items .owl-item.active .single-hero-items h1,
.hero-items .owl-item.active .single-hero-items p,
.hero-items .owl-item.active .single-hero-items .primary-btn {
	top: 0;
	opacity: 1;
}

.hero-items .owl-item.active .single-hero-items span {
	-webkit-transition: all 0.2s ease 0.2s;
	-o-transition: all 0.2s ease 0.2s;
	transition: all 0.2s ease 0.2s;
}

.hero-items .owl-item.active .single-hero-items h1 {
	-webkit-transition: all 0.4s ease 0.4s;
	-o-transition: all 0.4s ease 0.4s;
	transition: all 0.4s ease 0.4s;
}

.hero-items .owl-item.active .single-hero-items p {
	-webkit-transition: all 0.6s ease 0.6s;
	-o-transition: all 0.6s ease 0.6s;
	transition: all 0.6s ease 0.6s;
}

.hero-items .owl-item.active .single-hero-items .primary-btn {
	-webkit-transition: all 0.8s ease 0.8s;
	-o-transition: all 0.8s ease 0.8s;
	transition: all 0.8s ease 0.8s;
}

.hero-items .owl-item.active .single-hero-items .off-card {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 1s ease 1s;
	-o-transition: all 1s ease 1s;
	transition: all 1s ease 1s;
}

.hero-items .owl-nav button[type=button] {
	font-size: 30px;
	position: absolute;
	left: 40px;
	top: 45%;
	color: #252525;
}

.hero-items .owl-nav button[type=button]:hover {
	color: #dfad51;
}

.hero-items .owl-nav button[type=button].owl-next {
	left: auto;
	right: 40px;
}

/*---------------------
  Banner Section
-----------------------*/
.baner {
	padding: 0;
}
.solo-baner {
	position: relative;
	z-index: 1;
}
.solo-baner  img {
	min-width: 100%;
}
.banner-section {
	padding: 30px 50px;

}
 .banner-video {
    /*	padding: 15px 0;*/
}
.single-banner {
	position: relative;
	z-index: 1;
    transition: all 0.3s ease-in-out;
}
.banner_cat{
grid-template-columns: repeat(3, 1fr);
display: grid;
gap: 10px 5px;
margin-left: 0;
margin-top: 20px;
}
.single-banner:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);

}
/*.single-banner:hover::before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);

}*/

/*.single-banner::before {
	position: absolute;
	left: 35px;
	top: 30px;
	border: 13px solid #FEE2DF;
	content: "";
	opacity: 0.3;
	width: calc(100% - 70px);
	height: calc(100% - 60px);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}*/

.single-banner img {
	min-width: 100%;
  border-radius: 8px;
	border: 1px solid #eaeaea !important;
}
.single-banner:hover img {
	opacity:.8;
}

.single-banner .inner-text {
/*	position: absolute;*/
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.single-banner .inner-text h4 {
	color: #252525;
	font-size: 13px;
	padding: 5px 15px;
  border-radius: 2px;
	text-align: center;
	font-weight: 700;
}

/*---------------------
  Women Banner Section
-----------------------*/

.women-banner {
	padding-right: 65px;
  padding-left: 65px;
  padding-top: 60px;
  padding-bottom: 60px;
  /*background: #F6F6F6;*/
	background: #f9f8f2;
}

.product-large {
	/*height: 620px;*/
	margin-left: -50px;
	margin-right: -60px;
	text-align: center;
	/*padding-top: 185px;*/
}

.product-large h2 {
	color: #ffffff;
	font-size: 48px;
	font-weight: 300;
	margin-bottom: 18px;
}

.product-large a {
	color: #ffffff;
	font-size: 18px;
	font-weight:300;
	display: inline-block;
	position: relative;
}

.product-large a:before {
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #ffffff;
	content: "";
}

.filter-control {
	text-align: center;
	margin-bottom: 45px;
	padding-top: 32px;
}

.filter-control ul li a {
	list-style: none;
	display: inline-block;
	font-size: 20px;
	color: #b2b2b2;
	margin-right: 22px;
	position: relative;
	cursor: pointer;
}
.filter-control ul li a.active{

	color: #171717;
}
/* .filter-control ul li.active {
	color: #171717;
} */

.filter-control ul li a.active:before {
	opacity: 1;
}

.filter-control ul li a:before {
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background: #171717;
	content: "";
	opacity: 0;
}

.filter-control ul li:last-child {
	margin-right: 0;
}

.product-slider .owl-nav button[type=button] {
	font-size: 30px;
	position: absolute;
	left: -62px;
	top: 25%;
	color: #171717;
	opacity: 0.3;
}

.product-slider .owl-nav button[type=button].owl-next {
	left: auto;
	right: -62px;
	color: #171717;
	opacity: 1;
}

.product-slider .owl-dots {
	text-align: center;
	margin-top: 0;
}

.product-slider .owl-dots button {
	width: 6px;
	height: 6px;
	background: #D8D9DA;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.product-slider .owl-dots button:last-child {
	margin-right: 0;
}

.product-slider .owl-dots button.active {
	width: 30px;
	background: #252525;
	border-radius: 50px;
}

.product-item {
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	transition: all .5s;
}
.product-item:hover {
  /* border: 1px solid var(--primary);
   border-radius: 12px;*/
   border: 1px solid var(--primary);
 }
.product-item:hover .pi-pic .icon {
	top: 15px;
	opacity: 1;
}

.product-item:hover .pi-pic ul {
	bottom: 10px;
}

.product-item .pi-pic {
	overflow: hidden;
	position: relative;
	margin: auto;
	min-height: 150px;
	background: #fff;
	border-radius: 12px 12px 0 0 !important;
	margin-bottom: 0;
	max-width: 250px;
  height: 250px;
}

	.product-item .pi-pic img {
		background-size: contain !important;
		background-repeat: no-repeat;
		background-color: #fff;
		display: block;
		width: auto;
		margin: auto;
	/*	max-height: 240px;*/
		/*min-height: 240px;*/
		padding: 5px;
		min-width: 100%;
	}

.product-item .pi-pic .sale {
	color: #020202;
	font-size: 10px;
	background: #ffce0f;
	position: absolute;
	left: 0;
	top: 20px;
	padding: 5px 10px;
	text-transform: uppercase;
	font-weight: 700;
}

.product-item .pi-pic .sale.pp-sale {
/*	background: #333;*/
}

.product-item .pi-pic .icon {
	font-size: 20px;
	color: #252525;
	position: absolute;
	right: 21px;
	top: -15px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.product-item ul {
	/* position: absolute;*/
	left: 0;
	bottom: -52px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	width: 100%;
	/*padding: 0 10px;*/
}

.product-item ul li {
	list-style: none;
 /*	display: inline-block;
	background: #ffffff;*/
}

.product-item ul li.w-icon.active a, .product-item ul li.w-icon.active button{
		max-width: 100%;
	  width: 100%;
		height: 40px;
		min-width: 60px;
		padding: 0 36px;
		align-items: center;
		border-radius: 8px;
		display: inline-flex;
		justify-content: center;
		outline: 0;
		position: relative;
		text-decoration: none;
		text-indent: 0.0892857143em;
		transition-duration: .28s;
		transition-property: box-shadow,transform,opacity;
		user-select: none;
		vertical-align: middle;
		white-space: nowrap;
		font-weight: 500;
		font-size: 16px;
		background: #ED2325;
		letter-spacing: 1px;
		color: #fff;
		text-transform: uppercase;
	}
.product-item ul li.w-icon.active a:hover, .product-item:hover ul li.w-icon.active button, .product-item:hover ul li a{
	background: #ae0411 !important;

}
.product-item ul li.w-icon.active  i {
	padding-right: 10px;
}


.product-item .pi-text {
	text-align: center;
	word-break: break-all;
	margin: 8px;
	margin-top: 10px;
	background: #fff;
	margin-top: 0;
	padding:10px 0 0 0;
	border-radius: 0 0 12px 12px;
}
.product-item .pi-text a{
	min-height: 32px;
	display: block;
}
.product-item .pi-text .catagory-name {
	font-size: 11px;
	color: #b2b2b2;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}


.product-item .pi-text .ac {
	/* ordenar el block del mismo tamaño */
    /* display: inline-block;*/
	height: 45px;
	border-radius:3px;
}
.product-item .pi-text a h5 {
	letter-spacing: 0.5px;
  word-break: break-word;
	color: #000;
	font-size: 14px;
	display: -webkit-box !important;
	height: auto !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 300;
	font-family: sans-serif;
}

.product-item .pi-text .product-price {
	color: var(--primary);
	font-size: 17px;
	font-weight: 700;

	padding: 10px;
}

.product-item .pi-text .product-price span {
	font-size: 14px;
	font-weight: 300;
	color: #b2b2b2;
	text-decoration: line-through;
	padding-left:8px;
}

/*---------------------
  Deal Of The Week
-----------------------*/

.deal-of-week {

	margin-left: 65px;
	margin-right: 65px;
}

.countdown-timer {
	text-align: center;
	margin-bottom: 50px;
}

.countdown-timer .cd-item {
	display: inline-block;
	background: #ffffff;
	margin-right: 35px;
	padding: 10px 14px;
	border-radius: 5px;
}

.countdown-timer .cd-item:last-child {
	margin-right: 0;
}

.countdown-timer .cd-item span {
	color: #333;
	font-weight: 300;
	line-height: 40px;
	font-size: 36px;
}

.countdown-timer .cd-item p {
	font-size: 16px;
	color: #b2b2b2;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

/*---------------------
  Man Banner
-----------------------*/

.man-banner {
	padding-right: 65px;
	padding-left: 65px;
	padding-top: 25px;
	padding-bottom: 80px;
}

/*---------------------
  Instagram Photo
-----------------------*/

.instagram-photo {
	overflow: hidden;
}

.instagram-photo .insta-item {
	float: left;
	width: 16.66%;
	height: 320px;
	text-align: center;
	position: relative;
}

.instagram-photo .insta-item:hover:before {
	opacity: 1;
}

.instagram-photo .insta-item:hover .inside-text {
	opacity: 1;
	visibility: visible;
	z-index: 99;
}

.instagram-photo .insta-item:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	content: "";
	opacity: 0;
	-webkit-transition: all 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.instagram-photo .insta-item .inside-text {
	padding-top: 130px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	-webkit-transition: all 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.instagram-photo .insta-item .inside-text i {
	font-size: 30px;
	color: #ffffff;
}

.instagram-photo .insta-item .inside-text h5 {
	margin-top: 14px;
}

.instagram-photo .insta-item .inside-text h5 a {
	color: #ffffff;
}

/*---------------------
  Latest Blog
-----------------------*/

.latest-blog {
	padding-top: 72px;
	padding-bottom: 80px;
}

.latest-blog .section-title {
	margin-bottom: 55px;
}

.single-latest-blog {
	margin-bottom: 25px;
}

.single-latest-blog img {
	min-width: 100%;
}

.single-latest-blog .latest-text {
	padding-top: 25px;
}

.single-latest-blog .latest-text .tag-list {
	margin-bottom: 8px;
}

.single-latest-blog .latest-text .tag-list .tag-item {
	font-size: 16px;
	color: #a2a1a1;
	display: inline-block;
	margin-right: 15px;
}

.single-latest-blog .latest-text .tag-list .tag-item i {
	color: #333;
}

.single-latest-blog .latest-text a {
	display: block;
}

.single-latest-blog .latest-text a h4 {
	color: #252525;
	font-weight: 300;
	line-height: 30px;
	margin-bottom: 16px;
}

.benefit-items {
	border: 1px solid #ebebeb;
	margin-top: 45px;
}

.benefit-items .single-benefit {
	padding-top: 30px;
	padding-bottom: 25px;
	padding-left: 55px;
	padding-right: 55px;
	border-right: 1px solid #F3F4F0;
}

.benefit-items .single-benefit .sb-icon {
	float: left;
	margin-right: 20px;
}

.benefit-items .single-benefit .sb-text {
	display: table;
}

.benefit-items .single-benefit .sb-text h6 {
	color: #252525;
	line-height: 20px;
	font-weight: 300;
	text-transform: uppercase;
}

.benefit-items .single-benefit .sb-text p {
	margin-bottom: 0;
	color: #252525;
	line-height: 20px;
}

/*---------------------
  Partner Logo
-----------------------*/
.categoria_title{
    padding-top:48px;
}
.partner-logo {

	padding: 38px 0;
}
 .logo-carousel .owl-item {
    width:auto !important;
}
.logo-carousel .logo-item {
	display: table;
	position: relative;

width: -moz-available;
}
.logo-carousel .owl-stage{
  display: -webkit-box !important;
      width: auto !important;

}
.logo-carousel .logo-item .tablecell-inner {
	display: table-cell;

	vertical-align: middle;

}
.logo-carousel .logo-item .tablecell-inner span{
    padding: 6px 15px 6px 17px;
    margin-right: 8px;
    border: 1px solid #00827c;
    border-radius: 20px;
    font-family: "Arial",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #00827c !important;
}
.logo-carousel .logo-item .tablecell-inner span:hover{
    background-color:#E7E9EB;
}


.owl-carousel .owl-item img {
	display: block;
	width: auto;
}
.logo-carousel .owl-nav button[type=button] {
	font-size: 20px;
	position: absolute;
	left: -42px;
	top: 30%;
	color: #171717;
	opacity: 0.3;
}

.logo-carousel .owl-nav button[type=button].owl-next {
	left: auto;
	right: -42px;
	color: #171717;
	opacity: 1;
}
/*---------------------
  categoria carusel Logo sin editar
-----------------------*/

.logo-carousel-cat .owl-item {
   /* width:auto !important;*/
     margin-right: 10px!important;
}

.logo-carousel-cat  .owl-stage{
  display: -webkit-box !important;
      width: auto !important;

}


.logo-carousel-cat  .logo-item-cat {
	display: table;
	position: relative;
    width: 95px;
}
.logo-carousel-cat  .logo-item-cat .tablecell-inner {
	display: table-cell;

	vertical-align: middle;

}
.logo-carousel-cat  .logo-item-cat .tablecell-inner span{
    padding: 6px 15px 6px 17px;
    margin-right: 8px;
    border: 1px solid #00827c;
    border-radius: 20px;

    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #00827c !important;
}
.logo-carousel-cat  .logo-item-cat .tablecell-inner span:hover{
    background-color:#E7E9EB;
}

.logo-carousel-cat  .owl-nav button[type=button] {
	font-size: 20px;
	position: absolute;
	left: -42px;
	top: 30%;
	color: #171717;
	opacity: 0.3;
}

.logo-carousel-cat  .owl-nav button[type=button].owl-next {
	left: auto;
	right: -42px;
	color: #171717;
	opacity: 1;
}


/*---------------------
  Footer
-----------------------*/

.footer-section {
	background: #f4f2e6;
	padding-top: 55px;
}

.footer-left {
	margin-bottom: 30px;
}
.footer-left h5 {
 color: #ffffff;
 font-weight: 300;
 margin-bottom: 26px;
}
.footer-left p {
 color: #b2b2b2;

}
.address .fa {
	 margin-right: 10px;
}
.footer-left .footer-logo {
	margin-bottom: 24px;
}

.footer-left .footer-logo a {
	display: inline-block;
}

.footer-left ul li {
	list-style: none;
	color: #b2b2b2;
	font-size: 16px;
	line-height: 30px;
}

.footer-left a {
	color: #b2b2b2;

}
.footer-left  a:hover {
	color: #ffffff;
}

.footer-left .footer-social {
	padding-top: 25px;
}

.footer-left .footer-social a {
	display: inline-block;
	height: 40px;
	width: 40px;
	background: #434445;
	color: #ffffff;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	margin-right: 7px;
	position: relative;
	z-index: 1;
}

.footer-left .footer-social a:hover:before {
	opacity: 1;
}

.footer-left .footer-social a:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #333;
	content: "";
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.footer-widget {
	margin-bottom: 30px;
}

.footer-widget h5 {
	color: var(--gray1);
	font-weight: 700;
	margin-bottom: 26px;
	font-size: 17px;
}

.footer-widget a {
	color: #b2b2b2;

}
.footer-widget a:hover {
	color: #6E6E6E;
}

.footer-left .footer-social {
	padding-top: 25px;
}

.footer-widget .footer-social a {
	display: inline-block;
  height: 40px;
  width: 40px;
  background: #434445;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 7px;
  position: relative;
  z-index: 1;
}

.footer-widget .footer-social a:hover {

	background-color: var(--primary);

}

.footer-widget .footer-social a:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;

	content: "";
	border-radius: 20%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.footer-widget ul li {
	list-style: none;
}

.footer-widget ul li a {
	line-height: 36px;
	font-size: 16px;
	color: var(--gray1);
}

.newslatter-item h5 {
	color: #b2b2b2;
	font-weight: var(--fw-7);
	margin-bottom: 30px;
}

.newslatter-item p {
	color: #b2b2b2;
	line-height: 26px;
}

.newslatter-item .subscribe-form {
	position: relative;
}

.newslatter-item .subscribe-form input {
	color: #b2b2b2;
	background: #303030;
	width: 100%;
	height: 46px;
	font-size: 16px;
	border: none;
	padding-left: 20px;
}

.newslatter-item .subscribe-form input::-webkit-input-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input::-moz-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input:-ms-input-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input::-ms-input-placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form input::placeholder {
	color: #b2b2b2;
}

.newslatter-item .subscribe-form button {
	display: inline-block;
	color: #ffffff;
	background: #333;
	font-size: 13px;
	font-weight: 300;
	text-transform: uppercase;
	border: 1px solid #333;
	position: absolute;
	right: 0;
	top: 0;
	padding: 13px 20px 12px;
	cursor: pointer;
}

.copyright-reserved {
	border-top: 1px solid #303030;
	padding: 15px 0;
	margin-top: 45px;
}

.copyright-reserved .copyright-text {
	text-align: center;
	font-size: 14px;
	color: #6E6E6E;
}

.copyright-reserved .copyright-text a {
	color: #6E6E6E;
}

.copyright-reserved .copyright-text i {
	color: #cc2424;
}

.copyright-reserved .copyright-text a:hover {
	opacity:.6;
}

.copyright-reserved .payment-pic {
	float: right;
}

/*-------------------------------- Other Pages Style -------------------------------*/

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-text {
	border-bottom: 1px solid #ebebeb;
	padding: 20px 0;
}

.breadcrumb-text.product-more a:nth-child(1):after {
	color: #252525;
}

.breadcrumb-text a {
	display: inline-block;
	font-size: 12px;
	color: #252525;
	margin-right: 18px;
	position: relative;
	font-weight:600;
}
.breadcrumb-text a .fa-home{
	font-size: 14px;
}
.breadcrumb-text a:hover{
    color: #252525;
}
.breadcrumb-text a:after {
	position: absolute;
	right: -13px;
	top: 0px;
	content: "";
	font-family: "FontAwesome";
	font-size: 12px;
	color: #252525;
}

.breadcrumb-text span {
	display: inline-block;
	color: #b2b2b2;
	font-size:12px;
}

/*---------------------
  Product Shop
-----------------------*/

.product-shop {
	padding-top: 30px;
	padding-bottom: 80px;
}

.filter-widget {
	margin-bottom: 5px;
}

.filter-widget .fw-title {
	color: #252525;
	font-weight: 700;
	margin-bottom: 20px;
}

.filter-widget .filter-catagories li {
	list-style: none;
}

.filter-widget .filter-catagories li a {
	display: inline-block;
	color: #636363;
	font-size: 16px;
	line-height: 39px;
}

.filter-widget .fw-brand-check .bc-item {
	margin-bottom: 3px;
}

.filter-widget .fw-brand-check .bc-item label {
	position: relative;
	cursor: pointer;
	padding-left: 28px;
}

.filter-widget .fw-brand-check .bc-item label input {
	position: absolute;
	visibility: hidden;
}

.filter-widget .fw-brand-check .bc-item label input:checked~span {
	background: #333;
	border-color: #333;
}

.filter-widget .fw-brand-check .bc-item label .checkmark {
	position: absolute;
	left: 0;
	top: 5px;
	height: 15px;
	width: 15px;
	border: 2px solid #ebebeb;
	border-radius: 2px;
}

.filter-widget .fw-brand-check .bc-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 10px;
	height: 8px;
	border: solid white;
	border-width: 3px 3px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.filter-widget .filter-range-wrap {
	margin-bottom: 40px;
}

.filter-widget .filter-range-wrap .range-slider {
	margin-bottom: 25px;
}

.filter-widget .filter-range-wrap .range-slider .price-input {
	position: relative;
}

.filter-widget .filter-range-wrap .range-slider .price-input:after {
	position: absolute;
	left: 58px;
	top: 13px;
	height: 1px;
	width: 17px;
	background: #ebebeb;
	content: "";
}

.filter-widget .filter-range-wrap .range-slider .price-input input {
	font-size: 16px;
	color: #252525;
	max-width: 20%;
	text-align: center;
	border: 1px solid #ebebeb;
	border-radius: 2px;
}

.filter-widget .filter-range-wrap .range-slider .price-input input:nth-child(1) {
	margin-right: 28px;
}

.filter-widget .filter-range-wrap .price-range {
	border-radius: 0;
}

.filter-widget .filter-range-wrap .price-range.ui-widget-content {
	border: none;
	background: #ebebeb;
	height: 3px;
}

.filter-widget .filter-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #ffffff;
	border: none;
	-webkit-box-shadow: 1px 6px 14px -4px #425c6d;
	box-shadow: 1px 6px 14px -4px #425c6d;
	outline: none;
}

.filter-widget .filter-range-wrap .price-range .ui-slider-range {
	background: #ebebeb;
	border-radius: 0;
}

.filter-widget .filter-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
	background: #333;
}

.filter-widget .filter-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 300;
	background: #333;
	padding: 7px 20px 5px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}

.filter-widget .fw-color-choose .cs-item {
	width: 50%;
	float: left;
	margin-bottom: 4px;
}

.filter-widget .fw-color-choose .cs-item input {
	position: absolute;
	visibility: hidden;
}

.filter-widget .fw-color-choose .cs-item label {
	cursor: pointer;
	position: relative;
	padding-left: 33px;
	font-size: 16px;
	color: #636363;
}

.filter-widget .fw-color-choose .cs-item label.cs-violet:before {
	background: #8230E3;
}

.filter-widget .fw-color-choose .cs-item label.cs-blue:before {
	background: #2773BE;
}

.filter-widget .fw-color-choose .cs-item label.cs-yellow:before {
	background: #EEEE21;
}

.filter-widget .fw-color-choose .cs-item label.cs-red:before {
	background: #DC3232;
}

.filter-widget .fw-color-choose .cs-item label.cs-green:before {
	background: #81D742;
}

.filter-widget .fw-color-choose .cs-item label:before {
	position: absolute;
	left: 0;
	top: 4px;
	height: 18px;
	width: 18px;
	background: #252525;
	border-radius: 50%;
	content: "";
}

.filter-widget .fw-size-choose .sc-item {
	display: inline-block;
	margin-right: 5px;
}

.filter-widget .fw-size-choose .sc-item:last-child {
	margin-right: 0;
}

.filter-widget .fw-size-choose .sc-item input {
	position: absolute;
	visibility: hidden;
}

.filter-widget .fw-size-choose .sc-item label {
	font-size: 16px;
	color: #252525;
	font-weight: 300;
	height: 40px;
	width: 47px;
	border: 1px solid #ebebeb;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
}

.filter-widget .fw-size-choose .sc-item label.active {
	background: #252525;
	color: #ffffff;
}

.filter-widget .fw-tags a {
	display: inline-block;
	font-size: 16px;
	color: #636363;
	padding: 5px 15px;
	border: 1px solid #ebebeb;
	margin-right: 5px;
	margin-bottom: 9px;
	border-radius: 2px;
}

.checkmark:after {
	position: absolute;
	content: "";
}

.product-show-option {
	margin-bottom: 30px;
}

.product-show-option .select-option {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product-show-option .select-option .nice-select {
	border-radius: 0 5px 5px 0;
	border: none;
	height: 40px;
	line-height: 35px;
	border-left: 1px solid #ECEDEE;
}

.product-show-option .select-option .nice-select .list {
	margin-top: 0;
	border-radius: 0;
	width: 100%;
}

.product-show-option .select-option .nice-select:after {
	border-bottom: 2px solid #4c4c4c;
	border-right: 2px solid #4c4c4c;
	height: 7px;
	right: 22px;
	top: 47%;
	width: 7px;
	opacity: 0.7;
}

.product-show-option .select-option .nice-select span {
	font-size: 16px;
	color: #4c4c4c;
}

.product-show-option .select-option .sorting {
	/*margin-right: 20px;*/
}

.product-show-option .select-option .sorting.nice-select {
	padding-right: 60px;
}

.product-show-option .select-option .p-show.nice-select {
	padding-right: 105px;
}

.product-show-option .select-option .p-show.nice-select:before {
	position: absolute;
	right: 48px;
	top: 0;
	content: "09";
	font-size: 16px;
	color: #252525;
}

.product-show-option p {
	margin-bottom: 0;
	color: #636363;
	line-height: 39px;
}

.prduct-list .product-item {
	margin-bottom: 25px;
}

.loading-more {
	text-align: center;
	padding-top: 10px;
}

.loading-more i {
	font-size: 22px;
	color: #663333;
	margin-right: 6px;
	position: relative;
	top: 7px;
}

.loading-more a {
	font-size: 18px;
	font-weight: 300;
	color: #252525;
	position: relative;
	display: inline-block;
}

.loading-more a:before {
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #333;
	content: "";
}

/*---------------------
  Product Details
-----------------------*/

.product-shop.page-details {
	padding-bottom: 60px;
}

.product-pic-zoom {
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

.product-pic-zoom img {
	min-width: 100%;
	border-radius: 15px;
}

.product-pic-zoom .zoom-icon {
	position: absolute;
	right: 20px;
	top: 20px;
}

.product-pic-zoom .zoom-icon i {
	color: #4c4c4c;
	font-size: 14px;
	width: 40px;
	height: 40px;
	border: 1px solid #d7d7d7;
	text-align: center;
	border-radius: 50%;
	line-height: 37px;
}

.product-thumbs .pt {
	cursor: pointer;
	position: relative;
}

.product-thumbs .owl-item .pt.active {
	/*position: absolute;
	content: "";*/
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border: 1px solid #333;
	z-index: 1;
	display:flex;
}

.ps-slider .owl-nav button[type=button] {
	height: 30px;
	width: 30px;
	background: #ffffff;
	color: #a7a7a7;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	font-size: 20px;
	-webkit-box-shadow: 0px 6px 10px -1px #e9e9e9;
	box-shadow: 0px 6px 10px -1px #e9e9e9;
	position: absolute;
	left: -16px;
	top: 50%;
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}

.ps-slider .owl-nav button[type=button].owl-next {
	left: auto;
	right: -16px;
}

.product-details .pd-title {
	position: relative;
	margin-bottom: 6px;
}

.product-details .pd-title span {
	display: block;
	font-size: 14px;
	/*color: #b2b2b2;*/
	color: #252525;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	line-height: 23px;
}

.product-details .pd-title h3 {
	color: #252525;
	font-weight: 700;
}

.product-details .pd-title .heart-icon {
	color: #252525;
	font-size: 18px;
	position: absolute;
	right: 0;
	top: 0;
}

.product-details .pd-rating {
	margin-bottom: 10px;
}

.product-details .pd-rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.product-details .pd-rating span {
	font-size: 12px;
	color: #999591;
}

.product-details .pd-desc {
	margin-bottom: 24px;

}

.product-details .pd-desc p {
	color: #636363;
}

.product-details .pd-desc h4 {
	color: #333;
	font-weight: 600;
}

.product-details .pd-desc h4 span {
	font-size: 18px;
	font-weight: 300;
	color: #b7b7b7;
	text-decoration: line-through;
	display: inline-block;
	margin-left: 13px;
}

.product-details .pd-color {
	margin-bottom: 25px;
}

.product-details .pd-color h6 {
	color: #252525;
	font-weight: 300;
	float: left;
	margin-right: 28px;
}

.product-details .pd-color .pd-color-choose {
	display: inline-block;
}

.product-details .pd-color .pd-color-choose .cc-item {
	display: inline-block;
	margin-right: 10px;
}

.product-details .pd-color .pd-color-choose .cc-item input {
	position: absolute;
	visibility: hidden;
}

.product-details .pd-color .pd-color-choose .cc-item label {
	height: 20px;
	width: 20px;
	background: #252525;
	border-radius: 50%;
	cursor: pointer;
	margin-bottom: 0;
}

.product-details .pd-color .pd-color-choose .cc-item label.cc-yellow {
	background: #EEEE21;
}

.product-details .pd-color .pd-color-choose .cc-item label.cc-violet {
	background: #8230E3;
}

.product-details .pd-size-choose {
	margin-bottom: 30px;
}

.product-details .pd-size-choose .sc-item {
	display: inline-block;
	margin-right: 5px;
}

.product-details .pd-size-choose .sc-item:last-child {
	margin-right: 0;
}

.product-details .pd-size-choose .sc-item input {
	position: absolute;
	visibility: hidden;
}

.product-details .pd-size-choose .sc-item label {
	font-size: 16px;
	color: #252525;
	font-weight: 300;
	height: 40px;
	width: 47px;
	border: 1px solid #ebebeb;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
}

.product-details .pd-size-choose .sc-item label.active {
	background: #252525;
	color: #ffffff;
}

.product-details .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 33px;
}

	.product-details .quantity .pro-qty-dd {
		width: 130px;
		height: 44px;
		border: 1px solid #c6c6c6;
		margin-bottom: 10px;
		float: left;
		margin-right: 14px;
		border-radius: 5px;
		display:flex;
		background: #f4f2e6;
	}

		.product-details .quantity .pro-qty-dd .qtybtn {
			font-size: 24px;
			color: var(--primary);
			float: left;
			line-height: 38px;
			text-align: center;
			width: 40px;
			height: 40px;
			cursor: pointer;
		}

.product-details .quantity .pro-qty-dd .qtybtn.dec {
	font-size: 30px;
}

.product-details .quantity .pro-qty-dd input {
	text-align: center;
	width: 44px;
	font-size: 14px;
	border: none;
	color: #4c4c4c;
	line-height: 40px;
	float: left;
}

.product-details .quantity .primary-btn.pd-cart {
	padding: 10px 40px 10px;
}

.product-details .pd-tags {
	margin-bottom: 27px;
}

.product-details .pd-tags li {
	list-style: none;
	font-size: 16px;
	color: #636363;
	line-height: 30px;
}

.product-details .pd-tags li span {
	color: #252525;
	font-weight: 300;
	text-transform: uppercase;
}

.product-details .pd-share {
	overflow: hidden;
}

.product-details .pd-share .p-code {
	font-size: 16px;
	color: #252525;
	float: left;
}

.product-details .pd-share .pd-social {
	float: right;
}

.product-details .pd-share .pd-social a {
	display: inline-block;
	color: #252525;
	font-size: 14px;
	margin-left: 15px;
}

.product-tab {
	padding-top: 60px;
}

.tab-item ul li:nth-child(1) a {
	/* border-right: 1px solid #ebebeb; */
}

.tab-item ul li:nth-child(2) a {
	/* border-right: 1px solid #ebebeb; */
}

.tab-item ul li:nth-child(3) a {
	/* border-right: 1px solid #ebebeb; */
}

.tab-item ul li a {
	display: inline-block;
	font-size: 16px;
	font-weight: 300;

	text-transform: uppercase;
	padding: 18px 61px;
	position: relative;

	border-bottom: 3px solid #333;
}

.tab-item ul li a.active {
	color: #252525;
}

.tab-item ul li a.active:before {
	opacity: 1;
}

.tab-item ul li a::before {
	position: absolute;
	left: 0;
	top: -1px;
	width: 100%;
	height: 5px;
	background: #333;
	content: "";
	opacity: 0;
}

.product-content {
	padding-top: 40px;
}

.product-content h5 {
	color: #252525;
	font-weight: 300;
	margin-bottom: 23px;
}

.product-content p {
	margin-bottom: 34px;
}

.product-content img {
	min-width: 100%;
}

.specification-table {
	padding-top: 52px;
}

.specification-table table {
	width: 100%;
}

.specification-table table tr td {
	/* border: 1px solid #EFF0F2; */
	/* text-align: center;*/
	padding-top: 18px;
	padding-bottom: 18px;
}

.specification-table table tr td.p-catagory {
	width: 310px;
	text-align: left;
/*	padding:0 32px;*/
	font-size: 16px;
	color: #4c4c4c;
    text-align: justify;
}
.specification-table table tr td.p-catagory ul{
      padding-left: 15px;
  line-height: 26px;

}

.specification-table table tr td .pd-rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.specification-table table tr td .pd-rating span {
	font-size: 12px;
	color: #999591;
}

.specification-table table tr td .p-price {
	color: #333;
	font-size: 16px;
	font-weight: 300;
}

.specification-table table tr td .cart-add {
	font-size: 16px;
	color: #252525;
	font-weight: 300;
	text-transform: uppercase;
}

.specification-table table tr td .p-stock,
.specification-table table tr td .p-size,
.specification-table table tr td .p-code {
	font-size: 16px;
	color: #4c4c4c;
	font-weight: 300;
}

.specification-table table tr td .p-weight {
	font-size: 14px;
	color: #4c4c4c;
	font-weight: 300;
}

.specification-table table tr td .p-size {
	text-transform: uppercase;
}

.specification-table table tr td .cs-color {
	display: inline-block;
	height: 20px;
	width: 20px;
	background: #252525;
	border-radius: 50%;
}

.customer-review-option {
	padding-top: 55px;
}

.customer-review-option h4 {
	color: #292f3b;
	font-weight: 300;
	margin-bottom: 35px;
}

.customer-review-option .comment-option .co-item {
	margin-bottom: 20px;
}

.customer-review-option .comment-option .co-item .avatar-pic {
	float: left;
	margin-right: 20px;
}

.customer-review-option .comment-option .co-item .avatar-pic img {
	height: 63px;
	width: 63px;
	border-radius: 50%;
}

.customer-review-option .comment-option .co-item .avatar-text {
	display: table;
}

.customer-review-option .comment-option .co-item .avatar-text .at-rating {
	line-height: 9px;
}

.customer-review-option .comment-option .co-item .avatar-text .at-rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.customer-review-option .comment-option .co-item .avatar-text h5 {
	color: #252525;
	font-weight: 300;
	margin-top: 10px;
	margin-bottom: 10px;
}

.customer-review-option .comment-option .co-item .avatar-text h5 span {
	color: #b2b2b2;
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-left: 22px;
	position: relative;
}

.customer-review-option .comment-option .co-item .avatar-text h5 span:before {
	position: absolute;
	left: -18px;
	top: -5px;
	content: "-";
	font-size: 18px;
	color: #b2b2b2;
}

.customer-review-option .comment-option .co-item .avatar-text .at-reply {
	font-size: 14px;
	color: #636363;
}

.customer-review-option .personal-rating {
	margin-bottom: 50px;
	padding-top: 10px;
}

.customer-review-option .personal-rating h6 {
	color: #252525;
}

.customer-review-option .personal-rating .rating i {
	font-size: 12px;
	display: inline-block;
	color: #FAC451;
	margin-right: -3px;
}

.customer-review-option .leave-comment h4 {
	color: #292f3b;
	font-weight: 300;
	margin-bottom: 35px;
}

.customer-review-option .leave-comment .comment-form input {
	width: 100%;
	font-size: 16px;
	color: #636363;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.customer-review-option .leave-comment .comment-form textarea {
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #636363;
	height: 116px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 45px;
}

/*---------------------
  Related Products
-----------------------*/

.related-products {
	padding-top: 0;
	padding-bottom: 50px;
}

.related-products .section-title {
	margin-bottom: 50px;
}

.related-products .section-title h2:before {
	display: none;
}

/*---------------------
  Shopping Cart
-----------------------*/

.shopping-cart {
	padding-top: 80px;
	padding-bottom: 60px;
}

.cart-table {
	margin-bottom: 40px;
}

.cart-table table {
	width: 100%;
	min-width: 480px;
	border: 1px solid #ebebeb;
}

.cart-table table tr th {
	font-size: 16px;
	color: #252525;
	font-weight: 300;
	border-bottom: 1px solid #ebebeb;
	text-align: center;
	padding: 18px 10px 19px;
	text-transform: uppercase;
}

.cart-table table tr th.p-name {
	text-align: left;
}

.cart-table table tr td {
	text-align: center;
	padding-bottom: 34px;
}

.cart-table table tr td.first-row {
	padding-top: 30px;
}

.cart-table table tr td.cart-pic {
	width: 21%;
}

.cart-table table tr td.cart-title {
	text-align: left;
}

.cart-table table tr td.cart-title h5 {
	color: #252525;
}

.cart-table table tr td.p-price {
	width: 16%;
}

.cart-table table tr td.p-price,
.cart-table table tr td.total-price {
	color: #333;
	font-size: 16px;
	font-weight: 300;
}

.cart-table table tr td.qua-col {
	width: 16%;
}

.cart-table table tr td.qua-col .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cart-table table tr td.qua-col .pro-qty {
	width: 123px;
	height: 46px;
	border: 2px solid #ebebeb;
	padding: 0 15px;
	float: left;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn {
	font-size: 24px;
	color: #b2b2b2;
	float: left;
	line-height: 38px;
	cursor: pointer;
	width: 18px;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn.dec {
	font-size: 30px;
}

.cart-table table tr td.qua-col .pro-qty input {
	text-align: center;
	width: 52px;
	font-size: 14px;
	font-weight: 300;
	border: none;
	color: #4c4c4c;
	line-height: 40px;
	float: left;
}

.cart-table table tr td.total-price {
	width: 12%;
}

.cart-table table tr td.close-td {
	font-size: 16px;
	color: #252525;
	width: 8%;
}

.cart-table table tr td.close-td i {
	cursor: pointer;
}

.cart-buttons {
	margin-bottom: 34px;
}

.cart-buttons .continue-shop {
    color: white;
	border: 2px solid #333;
	background: #333;
	margin-right: 8px;
	padding: 12px 20px 12px 20px;
	margin-bottom: 10px;
}

.cart-buttons .up-cart {
	color: #252525;
	background: #f3f3f3;
	border: 2px solid #ebebeb;
	padding: 12px 20px 12px 20px;
}

.discount-coupon {
	margin-bottom: 30px;
}

.discount-coupon h6 {
	color: #232530;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.discount-coupon .coupon-form {
	position: relative;
}

.discount-coupon .coupon-form input {
	width: 100%;
	height: 46px;
	border: 2px solid #ebebeb;
	color: #b2b2b2;
	font-size: 14px;
	padding-left: 20px;
}

.discount-coupon .coupon-form .coupon-btn {
	position: absolute;
	right: 0;
	top: 0;
	color: #252525;
	background: transparent;
	border: 1px solid transparent;
	padding: 13px 25px 10px 35px;
}

.proceed-checkout ul {
	border: 2px solid #ebebeb;
	background: #f3f3f3;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 16px;
	padding-bottom: 20px;
}

.proceed-checkout ul li {
	list-style: none;
	font-size: 16px;
	font-weight: 300;
	color: #252525;
	text-transform: uppercase;
	overflow: hidden;
}

.proceed-checkout ul li.subtotal {
	font-weight: 300;
	text-transform: capitalize;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 14px;
}

.proceed-checkout ul li.subtotal span {
	font-weight: 300;
}

.proceed-checkout ul li.cart-total {
	padding-top: 10px;
}

.proceed-checkout ul li.cart-total span {
	color: #333;
}

.proceed-checkout ul li span {
	float: right;
}

.proceed-checkout .proceed-btn {
	font-size: 14px;
	font-weight: 300;
	color: #ffffff;
	background: #252525;
	text-transform: uppercase;
	padding: 15px 25px 14px 25px;
	display: block;
	text-align: center;
}
.proceed-checkout .proceed-btn:hover{
	background: #333;
}

/*---------------------
  Check Out
-----------------------*/

.checkout-section {
	padding-top: 5%;
	padding-bottom: 80px;
	background:#E9E9E9;
}

.checkout-content {
	/* margin-bottom: 50px; */
}

.checkout-content .content-btn,
.checkout-content input {
	color: #fff;
	font-size: 18px;
	border-radius: 5px;
	padding: 10px 20px;
	background: #333;
	text-align: center;
	font-weight: 300;
	box-shadow: 0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);
	transition: all .15s ease;
	display: inline-flex;
	justify-content: center;
}

.checkout-content input {
	height: 56px !important;
}

.checkout-form h4 {
	color: #333;
	font-weight: 700;
	margin-bottom: 30px;
}

.checkout-form label {
	color: #252525;
	font-size: 16px;
	margin-bottom: 5px;
}

.checkout-form label span {
	color: #d85d5c;
}

.checkout-form input {
	border: 1px solid #c2c2c2;
	border-radius: 4px;
	box-shadow: 0 0 0 1px hsla(0,0%,86.3%,.2);
}
.checkout-form input:checked {
	background: #333;
	border-color: #333;
	border: 8px solid #0fbf12;
}

.checkout-form input.street-first {
	margin-bottom: 20px;
}

.checkout-form .create-item {
	padding-top: 15px;
}

.checkout-form .create-item label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}

.checkout-form .create-item label input {
	position: absolute;
	visibility: hidden;
}

.checkout-form .create-item label input:checked~span {
	background: #333;
	border-color: #333;
}

.checkout-form .create-item label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.checkout-form .create-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}
.checkout-form .sesion{

	padding-left: 40px;
	padding-right: 40px;
	padding-top: 25px;
	padding-bottom: 25px;
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0,0,0,.1);
	background: #fff;
}

.checkout-form .place-order .order-total {
	/* border: 2px solid #ebebeb; */
/* 	padding-left: 20px;
	padding-right: 20px; */
	padding-top: 22px;
	padding-bottom: 35px;
}

.checkout-form .place-order .order-total .order-table {
/*	margin-bottom: 34px;*/
}

.checkout-form .place-order .order-total .order-table li {
	list-style: none;
	color: #252525;
	font-size: 15px;
	text-transform: uppercase;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 5px;
	padding-top: 30px;
	font-weight: 700
}

.checkout-form .place-order .order-total .order-table li:first-child {
	border-bottom: 1px solid #e5e5e5;

	padding-top: 0;
}
.checkout-form .place-order .order-total .order-table  .subtotal{
    text-transform: capitalize;
}
.checkout-form .place-order .order-total .order-table li .subtotal span{
    float: right;
}
.checkout-form .place-order .order-total .order-table li.fw-normal {
	font-weight: 300;
	text-transform: capitalize;
	display: flex;
}
.checkout-form .place-order .order-total .order-table li.fw-normal .cant{
    position: absolute;

}
.checkout-form .place-order .order-total .order-table li.fw-normal .cant p{

    margin-bottom: 5px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color: var(--danger);
    border-radius: 100%;
    font-weight: 300;
    color: #fff;
    right: auto;
    bottom: auto;
    padding-right: 0;
    font-size: 14px;
    left: 0;
    padding-left: 9px;
}
.checkout-form .place-order .order-total .order-table li.fw-normal h6{
   width: 100% !important;
    vertical-align: baseline;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.checkout-form .place-order .order-total .order-table li.fw-normal .cart-detalle{
   padding-left: 20px;
   display: flex;
   /* justify-content: space-between;*/
    align-items: center;
    flex-wrap: wrap;
    flex: fit-content;
}
.checkout-form .place-order .order-total .order-table li.fw-normal .cart-detalle span{
    float:left;
}
.checkout-form .place-order .order-total .order-table li.fw-normal .cart-product-image {
    width: 21%;
}
.checkout-form .place-order .order-total .order-table li.fw-normal span {
	font-weight:600;
	/*padding-left:10px;*/
}

.checkout-form .place-order .order-total .order-table li.total-price span {
	color: var(--primary);
}

.checkout-form .place-order .order-total .order-table li span {
	float: right;
	font-weight: 700;
}

.checkout-form .place-order .order-total .payment-check {
	margin-bottom: 50px;
}

.checkout-form .place-order .order-total .payment-check .pc-item label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}

.checkout-form .place-order .order-total .payment-check .pc-item label input {
	position: absolute;
	visibility: hidden;
}

.checkout-form .place-order .order-total .payment-check .pc-item label input:checked~span {
	background: #333;
	border-color: #333;
}

.checkout-form .place-order .order-total .payment-check .pc-item label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.checkout-form .place-order .order-total .payment-check .pc-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.checkout-form .place-order .order-total .order-btn {
	text-align: center;
}

.checkout-form .place-order .order-total .order-btn .place-btn {
	padding: 13px 40px 11px;
	background: #333;
	border-color: #333;
	border-radius: 5px;
	box-shadow: 0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);
	transition: all .15s ease;
}

/*---------------------
  Blog Section
-----------------------*/

.blog-section {
	padding-top: 80px;
	padding-bottom: 80px;

}

.blog-section .loading-more {
	padding-top: 0;
}

.blog-sidebar .search-form {
	margin-bottom: 55px;
}

.blog-sidebar .search-form h4 {
	color: #252525;
	font-weight: 300;
	margin-bottom: 12px;
}

.blog-sidebar .search-form form {
	position: relative;
}

.blog-sidebar .search-form form input {
	height: 46px;
	width: 100%;
	border: 2px solid #ECECEC;
	padding-left: 20px;
	font-size: 18px;
	color: #b2b2b2;
}

.blog-sidebar .search-form form button {
	position: absolute;
	right: 0;
	top: 0;
	color: #ffffff;
	background: #252525;
	border: 1px solid #252525;
	height: 46px;
	padding: 0 15px;
	cursor: pointer;
}

.blog-sidebar .blog-catagory {
	margin-bottom: 41px;
}

.blog-sidebar .blog-catagory h4 {
	color: #252525;
	font-weight: 300;
	margin-bottom: 14px;
}

.blog-sidebar .blog-catagory ul li {
	list-style: none;
}

.blog-sidebar .blog-catagory ul li a {
	font-size: 16px;
	color: #636363;
	line-height: 39px;
}

.blog-sidebar .recent-post {
	margin-bottom: 55px;
}

.blog-sidebar .recent-post h4 {
	color: #252525;
	font-weight: 300;
	margin-bottom: 28px;
}

.blog-sidebar .recent-post .recent-blog .rb-item {
	overflow: hidden;
	margin-bottom: 30px;
	display: block;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-pic {
	float: left;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-pic img {
	height: 80px;
	width: 80px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text {
	display: table;
	padding-left: 16px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text h6 {
	color: #252525;
	line-height: 24px;
	font-weight: 300;
	margin-bottom: 10px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text p {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 2px;
	line-height: 20px;
}

.blog-sidebar .recent-post .recent-blog .rb-item .rb-text p span {
	color: #b2b2b2;
	font-weight: 300;
	text-transform: capitalize;
	letter-spacing: 0;
}

.blog-sidebar .blog-tags h4 {
	color: #252525;
	font-weight: 300;
	margin-bottom: 20px;
}

.blog-sidebar .blog-tags .tag-item a {
	display: inline-block;
	font-size: 16px;
	color: #636363;
	padding: 5px 15px;
	border: 1px solid #ebebeb;
	margin-right: 5px;
	margin-bottom: 9px;
	border-radius: 2px;
}

.blog-item {
	margin-bottom: 42px;
}

.blog-item .bi-pic img {
	min-width: 100%;
	border-radius: 10px 10px 0 0;
}

.blog-item .bi-text {
	padding: 8px;
	border: 1px solid var(--primary);
	border-radius: 0 0 10px 10px;
}

.blog-item .bi-text h5 {
	color: #252525;
	line-height: 30px;
	margin-top: 12px;
	letter-spacing: 1px;
	font-size: 16px;
	padding-bottom: 6px;
}

.blog-item .bi-text p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 2px;
	line-height: 20px;
}

.blog-item .bi-text p span {
	color: #b2b2b2;
	font-weight: 300;
	text-transform: capitalize;
	letter-spacing: 0;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
	padding-top: 72px;
	padding-bottom: 80px;
}

.blog-details-inner .blog-detail-title {
	text-align: center;
	margin-bottom: 50px;
}

.blog-details-inner .blog-detail-title h2 {
	color: #252525;
	font-weight: 300;
	margin-bottom: 15px;
}
.blog-details-inner .blog-detail-title h4{
    margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color: #252525;
  letter-spacing: 2px;
  line-height: 20px;
  display: inline-block;
  position: relative;
}
.blog-details-inner .blog-detail-title p {
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 300;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 2px;
	line-height: 20px;
	display: inline-block;
	position: relative;
}

.blog-details-inner .blog-detail-title p:before {
	position: absolute;
	left: -175px;
	top: 8px;
	height: 1px;
	width: 125px;
	background: #ebebeb;
	content: "";
}

.blog-details-inner .blog-detail-title p:after {
	position: absolute;
	right: -175px;
	top: 7px;
	height: 1px;
	width: 125px;
	background: #ebebeb;
	content: "";
}

.blog-details-inner .blog-detail-title p span {
	color: #b2b2b2;
	font-size: 14px;
	font-weight: 300;
	text-transform: capitalize;
	letter-spacing: 0;
}

.blog-details-inner .blog-large-pic img {
	min-width: 100%;
	border-radius: 15px;
	z-index: 2;
  position: relative;
}

.blog-details-inner .blog-detail-desc {
	margin-top: 22px;
	margin-bottom: 32px;
}

.blog-details-inner .blog-detail-desc p {
	font-size: 18px;
	line-height: 30px;
	text-align: justify;
}

.blog-details-inner .blog-detail-desc p:first-of-type:first-letter {
	float: left;
	font-size: 60px;
	text-transform: uppercase;
	color: #252525;
	margin-top: 14px;
	margin-right: 10px;
}

.blog-details-inner .blog-quote {
	margin-bottom: 65px;
}

.blog-details-inner .blog-quote p {
	position: relative;
	color: #252525;
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	padding-left: 32px;
}

.blog-details-inner .blog-quote p span {
	color: #161715;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.blog-details-inner .blog-quote p:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 88px;
	width: 3px;
	background: #333;
	content: "";
}

.blog-details-inner .blog-more {
	margin-bottom: 32px;
}

.blog-details-inner .blog-more img {
	min-width: 100%;
}

.blog-details-inner p {

	line-height: 30px;
}
.blog-details-inner  h4{
    font-weight: 400;
}
.blog-details-inner .tag-share {
	overflow: hidden;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 54px;
	margin-top: 46px;
}

.blog-details-inner .tag-share .details-tag {
	float: left;
}

.blog-details-inner .tag-share .details-tag ul li {
	list-style: none;
	display: inline-block;
	color: #171717;
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
	margin-right: 16px;
}

.blog-details-inner .tag-share .details-tag ul li i {
	font-size: 18px;
	color: #333;
}

.blog-details-inner .tag-share .blog-share {
	float: right;
}

.blog-details-inner .tag-share .blog-share .social-links {
	display: inline-block;
}

.blog-details-inner .tag-share .blog-share .social-links a {
	display: inline-block;
	color: #171717;
	margin-left: 25px;
}

.blog-details-inner .tag-share .blog-share span {
	font-size: 16px;
	color: #2d292f;
}

.blog-details-inner .blog-post {
	padding-top: 72px;
	margin-bottom: 58px;
}

.blog-details-inner .blog-post .prev-blog {
	display: block;
}

.blog-details-inner .blog-post .prev-blog .pb-pic {
	float: left;
	position: relative;
	margin-top: 7px;
}

.blog-details-inner .blog-post .prev-blog .pb-pic i {
	position: absolute;
	left: -32px;
	top: 35%;
	font-size: 18px;
	color: #b2b2b2;
}

.blog-details-inner .blog-post .prev-blog .pb-pic img {
	height: 70px;
	width: 70px;
}

.blog-details-inner .blog-post .prev-blog .pb-text {
	display: table;
	padding-left: 20px;
}

.blog-details-inner .blog-post .prev-blog .pb-text span {
	font-size: 14px;
	color: #b2b2b2;
	letter-spacing: 2px;
}

.blog-details-inner .blog-post .prev-blog .pb-text h5 {
	font-size: 20px;
	color: #252525;
	line-height: 26px;
	font-weight: 300;
	margin-top: 10px;
}

.blog-details-inner .blog-post .next-blog {
	display: block;
}

.blog-details-inner .blog-post .next-blog .nb-pic {
	float: right;
	position: relative;
	margin-top: 7px;
}

.blog-details-inner .blog-post .next-blog .nb-pic i {
	position: absolute;
	right: -28px;
	top: 35%;
	font-size: 18px;
	color: #b2b2b2;
}

.blog-details-inner .blog-post .next-blog .nb-pic img {
	height: 70px;
	width: 70px;
}

.blog-details-inner .blog-post .next-blog .nb-text {
	display: table;
	padding-right: 20px;
	text-align: right;
}

.blog-details-inner .blog-post .next-blog .nb-text span {
	font-size: 14px;
	color: #b2b2b2;
	letter-spacing: 2px;
}

.blog-details-inner .blog-post .next-blog .nb-text h5 {
	font-size: 20px;
	color: #252525;
	line-height: 26px;
	font-weight: 300;
	margin-top: 10px;
}

.blog-details-inner .posted-by {
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding: 40px 65px;
}

.blog-details-inner .posted-by .pb-pic {
	float: left;
}

.blog-details-inner .posted-by .pb-text {
	padding-left: 22px;
	display: table;
}

.blog-details-inner .posted-by .pb-text a {
	display: block;
}

.blog-details-inner .posted-by .pb-text a h5 {
	color: #252525;
	font-weight: 300;
	margin-bottom: 13px;
}

.blog-details-inner .posted-by .pb-text p {
	line-height: 30px;
	margin-bottom: 0;
}

.blog-details-inner .leave-comment {
	padding-top: 55px;
}

.blog-details-inner .leave-comment h4 {
	color: #292f3b;
	font-weight: 300;
	margin-bottom: 35px;
}

.blog-details-inner .leave-comment .comment-form input {
	width: 100%;
	font-size: 16px;
	color: #636363;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.blog-details-inner .leave-comment .comment-form textarea {
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #636363;
	height: 116px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 45px;
}

/*---------------------
  Map
-----------------------*/

.map {
	padding-top: 80px;
	padding-bottom: 0;
}

.map-inner {
	/*height: 340px;*/
	position: relative;
}

.map-inner iframe {
	width: 100%;
}

.map-inner .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-14px, -21px);
	-ms-transform: translate(-14px, -21px);
	transform: translate(-14px, -21px);
}

.map-inner .icon i {
	font-size: 48px;
	color: #333;
}

/*---------------------
  Contact Section
-----------------------*/

.contact-section {
	padding-top: 75px;
	padding-bottom: 80px;
}

.contact-title {
	margin-bottom: 30px;
}

.contact-title h2 {
	color: #252525;
	padding-top: 20px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 35px;
}

.contact-widget .cw-item {
	background: #ffffff;
	margin-bottom: 11px;
	-webkit-box-shadow: 0px 8px 35px 10px #E8E8E8;
	box-shadow: 0px 8px 35px 10px #E8E8E8;
	padding-left: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 10px;
}

.contact-widget .cw-item .ci-icon {
	float: left;
	margin-top: 12px;
}

.contact-widget .cw-item .ci-icon i {
	font-size: 30px;
	color: #b2b2b2;
}

.contact-widget .cw-item .ci-text {
	display: table;
	padding-left: 30px;
}

.contact-widget .cw-item .ci-text span {
	color: #b2b2b2;
	font-size: 16px;
}

.contact-widget .cw-item .ci-text p {
	font-size: 18px;
	color: #252525;
	margin-bottom: 0;
}

.contact-form .leave-comment h2 {
	color: #292f3b;
    padding-top: 20px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 35px;
}

.contact-form .leave-comment p {
	margin-bottom: 38px;
}

.contact-form .leave-comment .comment-form input {
	width: 100%;
	font-size: 16px;
	color: #636363;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.contact-form .leave-comment .comment-form textarea {
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #636363;
	height: 150px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 35px;
}

.contact-form .leave-comment .comment-form .site-btn {
	padding: 13px 35px 11px;
}

/*---------------------
  Faq Section
-----------------------*/

.faq-section {
	padding-top: 80px;
	padding-bottom: 54px;
}

.faq-accordin .card {
	border: none;
	margin-bottom: 22px;
}

.faq-accordin .card .card-heading {
	font-size: 22px;
	color: #252525;
	font-weight: 300;
	cursor: pointer;
}

.faq-accordin .card .card-heading a {
	padding-left: 42px;
	display: block;
}

.faq-accordin .card .card-body {
	padding: 0;
	padding-top: 13px;
	padding-bottom: 10px;
}

.faq-accordin .card .card-body p {
	margin-bottom: 0;
}

.faq-accordin .card-heading a:after,
.faq-accordin .card-heading>a.active[aria-expanded=false]:after {
	content: "";
	font-family: "FontAwesome";
	font-size: 14px;
	color: #404040;
	height: 25px;
	width: 25px;
	text-align: center;
	line-height: 25px;
	background: #EFEFF0;
	margin-top: 3px;
	position: absolute;
	left: 0;
	top: 0;
}

.faq-accordin .card-heading a[aria-expanded=true]:after,
.faq-accordin .card-heading>a.active:after {
	content: "";
	font-family: "FontAwesome";
	float: left;
	font-size: 13px;
	color: #ffffff;
	background: #333;
}

/*---------------------
  Register Form
-----------------------*/

.register-login-section {
/*	margin-top:20px;*/
}

.register-form h2,
.login-form h2 {
	color: #252525;
	font-weight: 600;
	text-align: center;
	margin-bottom: 35px;
	font-size:25px;
	letter-spacing: 2px;
}
.register-form form .group-input .gi-more a:focus{
    color:#252525;
}
.register-form form .group-input,
.login-form form .group-input {
	margin-top: 20px;
	font-size:15px;
}
.login-form form .group-input{
    padding: 8px;
width: 100%;
max-width: 50%;
flex-basis: 50%;
}
.register-form form .group-input label,
.login-form form .group-input label {
	display: block;
	font-size: 15px;
	color: #252525;
	font-weight: 500;
}

.register-form form .group-input input,
.login-form form .group-input input {
	border: 1px solid #ebebeb;
	height: 50px;
	width: 100%;
	padding-left: 20px;
	padding-right: 15px;
	border-radius: .25rem;
}

.register-form form .register-btn,
.register-form form .login-btn,
.login-form form .register-btn,
.login-form form .login-btn {
	width: 100%;
	letter-spacing: 2px;
	margin-top: 5px;
}

.register-form .switch-login,
.login-form .switch-login {
	text-align: center;
	margin-top: 22px;
}

.register-form .switch-login .or-login,
.login-form .switch-login .or-login {
	color: #252525;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
}

.register-form .switch-login .or-login:before,
.login-form .switch-login .or-login:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #9f9f9f;
	content: "";
}

.login-form .group-input.gi-check {
	margin-bottom: 8px;
}
.register-form form  .gi-check {
	margin:  20px 0;
}
.register-form form  .gi-check .gi-more{
	overflow: hidden;
}
.register-form form  .gi-check .gi-more a{
	float: right;
    line-height: 20px;
    margin-top: -2px;
    font-size: 14px;
    color: #6B6B6B;
}
.register-form form .crear{

    text-align: center;
    margin-bottom: 4px;
}

.login-form .group-input .gi-more {
	overflow: hidden;
}

.login-form .group-input .gi-more label {
	position: relative;
	cursor: pointer;
	padding-left: 28px;
	font-size: 14px;
	color: #6B6B6B;
	float: left;
}

.login-form .group-input .gi-more label input {
	position: absolute;
	visibility: hidden;
}

.login-form .group-input .gi-more label input:checked~span {
	border-color: #6C6C6C;
}

.login-form .group-input .gi-more label input:checked~span:after {
	border-color: #6c6c6c;
}

.login-form .group-input .gi-more label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 13px;
	width: 13px;
	border: 1px solid #6C6C6C;
	border-radius: 2px;
}

.login-form .group-input .gi-more label .checkmark:after {
	left: 2px;
	top: -2px;
	width: 13px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.login-form .group-input .gi-more .forget-pass {
	 float: right;
	line-height: 20px;
	margin-top: -2px;
	font-size: 14px;
	color: #6B6B6B;
	padding-top: 0;
	padding-bottom: 10px;
}
.login-form .group-input .gi-more  a:hover{
    text-decoration:underline;
    color:#333;
}

/* ------------------------------ Responsive Media Styles ---------------------------- */

@media only screen and (min-width: 1200px) and (max-width: 1920px) {
	.grid-prod {
		display: grid;
		grid-template-columns: repeat(3,1fr);
	}
	.c-header{
	   padding: 0 80px 0 80px;
	}
}
@media only screen and (min-width: 1200px) {
	.grid-prod {
		display: grid;
		grid-template-columns: repeat(3,1fr);
	}
		.c-header{
	    padding: 0 80px 0 80px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
	.grid-prod {
		display: grid;
		grid-template-columns: repeat(3,1fr);
	}
		.c-header{
	    /*padding: 0 80px 0 80px;*/
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1920px) {
	.banner_cat {
		grid-template-columns: repeat(6, 1fr);
		gap: 10px 10px;
	}

	.inner-header .advanced-search .input-group button {
		/*right: -15px;*/
	}


}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1180px;
	}
}

/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .product-item .pi-text .ac{
        padding: 9px 10px 10px;
    }

	.inner-header .logo img {
		width: auto;

	}
	.inner-header .advanced-search .category-btn {
		max-width: 36%;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}

	.hero-items .owl-nav button[type=button] {
		left: 5px;
	}
	.hero-items .owl-nav button[type=button].owl-next {
		right: 5px;
	}
	.countdown-timer .cd-item {
		margin-right: 26px;
	}
	.product-details .quantity .primary-btn.pd-cart {
		padding: 10px 40px 10px;
	}
	.tab-item ul li a {
		padding: 18px 39px;
	}
	.inner-header .advanced-search .input-group button {
		/*right: -15px;*/
	}
	.product-shop .product-item ul li a {
		padding: 9px 12px 12px 11px;
	}
	.related-products .product-item ul li a {
		padding: 16px 12px 12px 11px;
	}
}

@media only screen and (max-width: 991px) {
     /* .menu-spacelog{
        width:20% !important;
    }*/
    .categoria_title {
      padding-top: 28px;
    }
    .partner-logo {
      padding:  0;
    }
    .logo-carousel .owl-item {
    width:auto !important;
}

    .logo-carousel .owl-nav button[type="button"]{
        display:none;
    }
    .logo-carousel-cat .owl-item {
      /* width:auto !important;*/
}

    .logo-carousel-cat .owl-nav button[type="button"]{
        display:block;
    	font-size: 14px;
    	position: absolute;
    	left: -5px;
    	top: 30%;
    	color: var(--primary);
    	opacity: 1;

    }
    .logo-carousel-cat .owl-nav button[type="button"].owl-next{
        right: -5px;
        color: var(--primary);
    }
   .logo-carousel-cat .owl-nav i{
           padding: 8px;
        background: #fff;
        border-radius: 50%;
				font-weight: 700;
        border: 1px solid var(--primary);
        box-shadow: 1px 1px 14px #00000024;
      transform: scale(.6);
   }

    .product-item .pi-text .ac{
        padding: 9px 10px 10px;
    }

	.blog-sidebar{
		display: none;
	}

	.row-menu{
		flex-wrap: nowrap;
	}

	.inner-header .nav-right {
		 text-align: center;
	}
	.banner-section {
		padding: 10px 5px 5px;
	}
	.single-banner {
		margin-top: 4px;
		margin-bottom: 10px;
	}
	.women-banner {
		padding-right: 0;
		padding-left: 0;
	}
	.product-large {
		margin-left: 0;
		margin-right: 0;
	}
	.deal-of-week {
		margin-left: 0;
		margin-right: 0;
	}
	.product-slider .owl-nav button[type=button] {
		display: none;
	}
	.cat-slider .owl-nav button[type=button] {
		display: none;
	}
	.man-banner {
		padding-right: 0;
		padding-left: 0;
	}
	.place-order {
		padding-top: 30px;
	}
	.blog-tags {
		padding-bottom: 40px;
	}
	.blog-details-inner .blog-post .prev-blog {
		margin-bottom: 40px;
	}
	.contact-form {
		padding-top: 40px;
	}
	.product-large.m-large {
		margin-top: 40px;
	}
	.hero-items .owl-nav button[type=button] {
		left: 5px;
	}
	.hero-items .owl-nav button[type=button].owl-next {
		right: 5px;
	}
	.product-shop.page-details .product-details {
		padding-top: 30px;
	}
	.inner-header .advanced-search .input-group button {
		/*right: -15px;*/
	}
}

/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .registro-usu{
        flex: 0 0 50%;
        max-width: 50%;
        margin-left: 25%;
    }

    .mobile-nav-toggle{
        right: 25px !important;
         top: 38px !important;
    }
    .container{
        max-width: 820px;
    }
    .hero-items .single-hero-items{
        height: auto !important;
         /*padding-top: 350px !important;*/
    }

    .owl-carousel .owl-item{
       /* margin-right:10px!important; */
    }
	.grid-prod{
		 display: grid;
		grid-template-columns: repeat(3,1fr);
	}
	.header-top .ht-right .login-panel {
		padding-left: 10px;
	}
	.header-top .ht-right .top-social {
		padding-right: 10px;
	}
	.header-top .ht-left .mail-service {
		padding-right: 10px;
	}
	.header-top .ht-left .phone-service {
		padding-left: 10px;
	}
	.header-top .ht-right .top-social a {
		margin-left: 10px;
	}
	.inner-header .advanced-search .category-btn {
		max-width: 40%;
		padding-right: 25px;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}
	.inner-header .nav-right li {
		margin-left: 8px;
	}
	.nav-item .nav-depart .depart-btn {
		padding: 14px 40px 14px 18px;
	}

	.instagram-photo .insta-item .inside-text h5 {
		font-size: 14px;
	}
	.tab-item ul li a {
		padding: 18px 39px;
	}
	.hero-items .off-card {
		left: 62%;
	}
	.blog-details-inner .blog-post .prev-blog {
		padding-left: 30px;
	}
	.blog-details-inner .blog-post .next-blog {
		padding-right: 30px;
	}
	.blog-sidebar,
	.produts-sidebar-filter {
		padding-top: 1px;

	}
	.checkout-content input {
		margin-top: 50px;
	}
}

/* Large Device: 480px */

@media only screen and (max-width: 767px) {
    .blog-details{
        padding-bottom: 10px;
    }
    .section-servicio{
        height: 150px !important;
        padding-top: 35px !important;

    }
    .filtros-prod .filtros{
        padding-bottom: 20px!important;
    }
     .filtros-prod{
         flex-wrap: wrap!important;
     }
    .product-show-option{
        margin-bottom: 5px;
    }

    .product-item .pi-text .ac{
        padding: 9px 10px 10px;
    }
    .cart-table table tr td h5{
		font-size: 14px;
	}
	.man-banner{
		padding-top: 30px;
		padding-bottom: 40px;
	}
	.women-banner{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.filter-control{
	    margin-bottom: 25px;
        padding-top: 15px;
	}

	.inner-header .nav-right li.cart-icon .cart-hover .select-items table tr td.si-text .product-selected p{
		font-size: 14px;
		margin-bottom: 0;
	}
	.inner-header .nav-right li.cart-icon .cart-hover .select-total span{
		font-size: 15px;
		font-weight:300;
	}
	.inner-header .nav-right li.cart-icon .cart-hover .select-total h5{
		font-size: 15px;
		font-weight:300;
	}



	.inner-header .logo .desktop{
		display: none;
	}
	.inner-header .logo .mobile{
		display: block;

	}
	.product-card{
		max-width: 100%;
	}
	.product-c{
		max-width: 50%;
	}

	.grid-prod{
		display: grid;
 		grid-template-columns: repeat(2,1fr);
	}
	.product-card .pi-text h5{

		font-weight: 300;
	}
	.product-card .pi-text .product-price{
		font-size: 14px;
	}
	.product-item .pi-text h5{
		font-size: 14px !important;
		font-weight:300;
	}
	.product-item .pi-text .product-price{
		font-size: 14px;
	}
	.row-menu{
 		flex-wrap: nowrap;
 	}
	.inner-header .nav-right li.heart-icon a{
		font-size: 16px;

	}

	.nav-movil-menu{
		top: 0;
	  justify-content: space-around;
		/* padding-left: 120px; */
		display: flex;
		padding-top: 0;

	}
	.instagram-photo .insta-item {
		width: 50%;
		height: 300px;
	}
	.copyright-reserved .copyright-text {
		float: none;
		margin-bottom: 10px;
		text-align: center;
	}
	.copyright-reserved .payment-pic {
		float: none;
		text-align: center;
	}
	.header-top .ht-left,
	.header-top .top-social {
		display: none;
	}
	.header-top .ht-right .login-panel {
		padding-top: 9px;
		padding-bottom: 7px;
	}
	.header-top .ht-right .lan-selector {
		margin-top: 5px;
		margin-bottom: 5px;
	}
	.inner-header .advanced-search .category-btn {
		display: none;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}

	.menu-space{
		padding-right: 10px;
	}
	.menu-spacelog , .menu-check{
		padding: 0;
		width: 40% !important;
	}
 .inner-header .search-mobile{

	margin-top: 35px;
	padding-left: 100px;


	}
	.inner-header .nav-right {
		 text-align: left;

	}

	.inner-header .nav-right li:first-child {
	 /*	margin-left: 0;*/
	}
	.nav-item .nav-depart .depart-btn {
		padding: 14px 50px 14px 18px;
	}
	.nav-item {
		background: transparent;
	}
	.nav-item .nav-menu {
		display: none;
	}
	.slicknav_menu {
		display: block;
		background: transparent;
		text-align: center;
		margin-top: -48px;
	}
	.slicknav_nav {
		background: #333;
	}
	.slicknav_nav ul {
		margin: 0;
		text-align: left;
	}
	.slicknav_nav a,
	.slicknav_nav .slicknav_row {
		margin: 0;
	}
	.slicknav_nav .dropdown a {
		padding-left: 25px;
	}
	.nav-item .nav-depart {
		display: none;
	}
	.slicknav_btn {
		/* border-radius: 0; */
		background-color: #333;
		display: inline-block;
		right: -16px;
		margin: 5px 5px 6px;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 8px 15px;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: #333;
		color: #fff;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: #333;
		color: #fff;
	}
	.inner-header .nav-right li.cart-icon:hover .cart-hover {
		opacity: 1;
		visibility: visible;
		top: 60px;
		transform: translate(0);
	}
	.inner-header .nav-right li.cart-icon .cart-hover {
		position: fixed;
		right: 0;
		bottom: 0;
		z-index: 99;
		font-weight: 300;
		overflow: hidden;
		opacity: 0;
		display: block;
		visibility: hidden;
		transition: all .3s ease-in-out;
		transform: translate(100%);
		height: 100% !important;
	}

	.product-show-option p {
		text-align: left;
	}
	.tab-item ul li a {
		padding: 18px 51px;
		margin-bottom: 10px;
	}
	.cart-table {
		overflow: auto;
	}
	.cart-table table tr th {
		font-size: 12px;
	}

	.hero-items .single-hero-items {
		/*padding: 120px 100px 90px;*/

		width: 100%;
        /*padding-top: 180px !important;*/
        height: auto !important;
       /*padding-top: 550px !important;*/

	}
	.hero-items .single-hero-items h1 {
		font-size: 40px;
	}
	.blog-details-inner .tag-share .details-tag ul li {
		margin-right: 10px;
	}
	.blog-details-inner .tag-share .blog-share .social-links a {
		margin-left: 15px;
	}
	.blog-details-inner .blog-detail-title p:before {
		left: -135px;
		width: 100px;
	}
	.blog-details-inner .blog-detail-title p:after {
		right: -135px;
		width: 100px;
	}
	.hero-items .off-card {
		display: none;
	}
	.ps-slider .owl-nav button[type=button] {
		left: 0;
	}
	.ps-slider .owl-nav button[type=button].owl-next {
		right: 0;
	}
	.blog-details-inner .blog-post .prev-blog {
		padding-left: 30px;
	}
	.blog-details-inner .blog-post .next-blog {
		padding-right: 30px;
	}
	.blog-details-inner .posted-by {
		padding: 40px 25px;
		text-align: center;
	}
	.blog-details-inner .posted-by .pb-pic {
		float: none;
		margin-bottom: 30px;
	}
	.blog-details-inner .posted-by .pb-text {
		padding-left: 0;
	}
	.blog-sidebar,
	.produts-sidebar-filter {
		padding-top: 1px;
	}
	.checkout-content input {
		margin-top: 50px;
	}
}


 @media (max-width: 576px){
     .product-list .product-item .cantidad .primary-btn.pd-cart.ver-prod{
        /* padding: 12px 28px !important;*/
     }
     .filtros-prod .lista .clase{
        padding-right: 10px !important;
        padding-left: 10px !important;
     }
     .filtros-prod .filtros{
         padding-right: 0!important;
     }

     .Search__wrapper {
          padding: 20px 0 20px 0 !important;
        }
     .filtros-prod h4{
         font-size:16px !important;
     }

     .hero-items .single-hero-items{
        width: 100%;
        height: auto !important;
        padding-top: 550px !important;
     }
     .footer-widget ul li a{
         font-size:15px;
     }

     .breadcrumb-text a ,.breadcrumb-text span {
         font-size:12px;
     }
     .product-details .pd-title h3{
         font-size:20px;
     }
     .title-category-home ,.ver_mas,.title-category{
         /*font-size:15px !important;*/
     }
     .title-category-home{
         padding-top:2px;
     }
   /*  .video2-box {
		 width: 100%;
        max-width: 100%;
        height: auto;
        transform: scale(1.8);
        top: 10px;
        padding: 40px 0 50px;

	 }
     #banner2 video{
         width: 80% !important;
     }
     #banner2 {
        justify-content: left!important;
     }*/
     .single-banner .inner-text h4{
         font-size:13px;
     }
     h2{
       font-size: 2rem !important;
    }

    .container, .container-sm {
        max-width: 600px !important;
        }

	 .grid-colum{
		 max-width: 80%;
	 }
 }

/* Small Device: 320px */

@media only screen and (max-width: 479px) {
    .contact-section {
      padding-top: 35px;
      padding-bottom: 0;
    }
    .contenido-banner {
        padding-bottom:20px;
    }
    .product-details .quantity{
        flex-wrap: wrap;
    }
    .product-details .quantity .pro-qty{
        margin-bottom: 10px;
    }
    .product-tab {
     padding-top: 15px;
     padding-left: 21px;
    padding-right: 21px;
    }
    .specification-table {
      padding-top: 30px;
    }
    .women-banner{
        /*padding-bottom: 10px;*/
    }
    .man-banner{
       padding-top: 12px;
    }
    .register-form form .group-input label, .login-form form .group-input label{
        font-size:16px;
    }
   .checkout-form .sesion {
      padding-left: 30px;
      padding-right: 30px;
    }
    .checkout-form .place-order .order-total .order-table li.fw-normal .cant{
        left: 36px;
    }
    .checkout-form .place-order .order-total .order-table li.fw-normal .cant p{
        width: 18px;
        height: 18px;
        line-height: 18px;
        padding-left: 5px;
    }

     .mobile-nav-toggle{

         top: 18px !important;
    }
    .clase-body{
    padding-top: 0!important;
    }
    .checkout-form h4{
        font-size:20px!important;
        margin-bottom: 20px !important;
    }
    .checkout-section{
       /* margin-top: -20px !important;*/
        padding-top: 5%;
    }

    .inner-header .nav-right{
            padding: 0;
    }
		.inner-header{
			padding: 0!important;
			margin: 5px 0;
		}

    .mobile-nav-toggle i{
        margin: 18px 15px 0 0 !important;
    }
	.mobile_user{
		display:inline-block !important;
	}

	.user_desk{
	display: none !important;
}
.user_mobile{
	display:inline-block !important;
}
    .product-item .pi-text .product-price ,
    .product-item .pi-text .product-price span{
        /*font-size:12px;*/
    }

    .product-item .pi-text .ac{

            font-size: 12px;
            letter-spacing: .5px;
    }
      .product-slider .product-item .cantidad .primary-btn.pd-cart{
            padding: 12px 38px !important;

        }
        .cat-slider .product-item .cantidad .primary-btn.pd-cart{
            padding: 12px 38px !important;

        }
    .product-list .product-item .cantidad .primary-btn.pd-cart {
	/* para cantidad y agregar   esto */
	 padding: 12px 38px !important;

}
    	.footer-section{
		padding-top: 35px;
	}
	.footer-left  {
	margin-bottom: 0;
	}
	.footer-left .footer-logo {
		margin: 0 50px;
		display:none;
	}

	.footer-widget h5{
		margin-bottom: 15px;
	}
	.footer-widget ul, .footer-widget .footer-social{
	  /* margin-left: 5%;*/
	}
    #banner{
		height: 40vh !important;
	}
	#banner video{
		height: 80%;
	}
	.inner-header .logo .mobile {
    display: block;
    width: 100%; }

	.hero-items .single-hero-items {
	/*	padding: 60px 140px 90px !important;*/
		height: auto;
		width: 100%;
		padding-top: 450px !important;
	}



	.hero-items .single-hero-items h1{
	font-size: 	30px;
	}
	.hero-items .single-hero-items p{
		font-size: 15px;
	}
/* .hero-items .single-hero-items{
	padding: 20px 10px 20px;
} */
.inner-header .logo{

	/* padding-right: 10px; */
	padding-left: 0;
}
.menu-space{
	padding-right: 15px;
}
.menu-spacelog, .menu-check{
	padding-right: 0;
	padding-left: 0;
	width: 30% !important;
}
.nav-movil-menu{

	padding-left: 1px;
}
	.movil-buscar{
		/* margin-top: 10px; */
		width: 80%;

	}

	.mobile-nav-toggle i {
			margin: 68px 15px 0 0;

	}
	.instagram-photo .insta-item {
		width: 100%;
	}
	.inner-header .advanced-search .category-btn {
		display: none;
	}
	.inner-header .advanced-search .input-group {
		max-width: 100%;
	}
	.inner-header .nav-right li.cart-icon .cart-hover {
		width: 270px;
		padding: 20px;
	}

	.countdown-timer .cd-item {
		margin-right: 5px;
		padding: 10px 6px;
	}
	.product-show-option .select-option {
		/*display: inline-block;*/
	}
	.product-show-option .select-option .sorting.nice-select {
		/*margin-bottom: 10px;*/
	}
	.product-details .quantity .primary-btn.pd-cart {
		padding: 13px 40px 10px;
	}
	.tab-item ul li a {
		padding: 18px 30px;
		margin-bottom: 10px;
	}
	.specification-table table tr td.p-catagory {
		width: 160px;
	}
	.blog-details-inner .blog-post .next-blog .nb-pic i {
		display: none;
	}
	.blog-details-inner .blog-post .prev-blog .pb-pic i {
		display: none;
	}
	.blog-details-inner .tag-share .details-tag {
		float: none;
		margin-bottom: 10px;
	}
	.blog-details-inner .tag-share .blog-share {
		float: none;
	}
	.blog-details-inner .blog-detail-title p:before {
		left: -62px;
		width: 50px;
	}
	.blog-details-inner .blog-detail-title p:after {
		right: -62px;
		width: 50px;
	}
	.blog-details-inner .posted-by .pb-pic {
		float: none;
		margin-bottom: 15px;
	}
	.blog-details-inner .posted-by .pb-text {
		padding-left: 0;
		display: block;
	}
	.checkout-form .place-order .order-total {
		padding-left: 0;
		padding-right: 0;
		padding-top: 2px;
	}
	.checkout-form label ,.checkout-form p{
	   font-size:14px !important;
	}
	.checkout-form .place-order .order-total ul li  {
	    font-size:13px !important;
	}
	.site-btn{
	    font-size:16px;
	}
	.contact-widget .cw-item .ci-icon {
		float: none;
		margin-bottom: 5px;
	}
	.contact-widget .cw-item .ci-text {
		padding-left: 0;
	}
	.benefit-items .single-benefit {
		padding-left: 15px;
		padding-right: 15px;
	}
}
/* info envio */

.tabulation-2 .nav-fill .active{

}

.tabulation-2 .nav-fill .active .nav-link{
      color: #fff !important;
    background: #333 !important;
    border: 1px solid #333 !important;
}
.tabulation-2 .nav-fill .active .nav-link span{
    color: #fff !important;
}
.tabulation-2 .nav-pills .nav-item1 .nav-link {

      border-radius: 4px;
      color: #000000;
      border: 1px solid rgba(0, 0, 0, 0.1);
      justify-content: center;
      display: flex;
}
  .tabulation-2 .nav-pills .nav-item1 .nav-link span {
		font-size: 20px;
    color: #333; }
  .tabulation-2 .nav-pills .nav-item1 .nav-link.active {
    color: #fff;
    background: #333;
    border: 1px solid #333;

   }
   .tabulation-2 .nav-pills .nav-item1 .nav-link.active span {
      color: #fff; }

.tabulation-2 .tab-content {
  background: #fff;
  padding-top: 20px;
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

.nav-fill .nav-item1 {
	list-style: none;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;

}

.tabulation-2 .nav1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
/* nuevo estilo */
a{
	color: #252525;
}
a:hover{
	color: #333;
}



#header {
  /* height: 150px; */
  transition: all 0.5s;
  z-index: 8;
  transition: all 0.5s;
  /* padding: 20px 0; */
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
	display: block;

}
.fixed-top {
  position: fixed;
	top: 0;
right: 0;
left: 0;
z-index: 1030;
 }

 @media (max-width: 768px){
    .login-form form .group-input{
             flex-grow: 0;
    max-width: 100%;
    flex-basis: 100%;
     }
  	.inner-header .nav-right .mobile{
	display:inline-block;
	}
     	.inner-header .desktop{
	display: none;
	}
	 .grid-prod{
		 display: grid;
	    grid-template-columns: repeat(2,1fr);
	 }
	 .product-shop{
		 padding: 20px 0 40px
	 }
	 .breadcrumb-text {

	 	padding: 20px 0;

	 }
	 .nav-item{
		 margin-top: 0;
	 }
 }
 .nav1{
 	list-style: none;
 	text-align: center;
 }

 .product-details .pd-desc ul li {
 	padding-left: 10px;
 	color: #212529;
 	list-style:unset;
 	margin-left: 20px;
 }
 .clas-i{
 	/*padding-right: 10px;*/
 	font-size: 24px;
 }


/* checkbox comprobante  boleta*/
.checkout-form .boleta {
	padding-top: 15px;
}

.checkout-form .boleta label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}

.checkout-form .boleta label input {
	position: absolute;
	visibility: hidden;
}

.checkout-form .boleta label input:checked~span {
	background: #333;
	border-color: #333;
}

.checkout-form .boleta label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.checkout-form .boleta label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

/* checkbox comprobante  factura*/
.checkout-form .factura {
	padding-top: 15px;
}

.checkout-form .factura label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}

.checkout-form .factura label input {
	position: absolute;
	visibility: hidden;
}

.checkout-form .factura label input:checked~span {
	background: #333;
	border-color: #333;
}

.checkout-form .factura label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.checkout-form .factura label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}
/* boton crear */
.btn-primary{
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 20px;
	font-weight:300;
	padding: 0.5em 1.2em;
	background: #333;
	border: 2px solid;
	border-color: #333;
	position: relative;}
.btn-primary:hover{
	color: rgba(255, 255, 255, 1) !important;
   /* box-shadow: 0 4px 16px rgba(49, 138, 172, 1); */
	 box-shadow: 0 4px 10px RGB(40,44,52);
   transition: all 0.2s ease;
 background:#333;
border-color:#333;}


/* Desktop Navigation */

.nav-item .main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}
nav-item .container .main-nav .ul_1 {
	display: flex;
}

.nav-item .main-nav,
.nav-item .main-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-item .main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.nav-item .main-nav .ul_1 .depart-btn:before{
    position: absolute;
	color: #ffffff;
	right: -1px;
	top: 4px;
	/*content: "";*/
	font-family: FontAwesome;
	font-size: 14px;
}
.nav-item .main-nav .ul_1 .depart-btn:hover{

	color: #ffffff;

}
.nav-item .main-nav a {
  display: block;
  position: relative;
	padding: 10px 15px 10px 0;
 /*  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;*/
}
.nav-item .main-nav a::after{
	content:none!important;
}
.nav-item .main-nav a:hover,
.nav-item .main-nav .active > a,
.nav-item .main-nav li:hover > a {
 /* color: #212121!important;*/
  text-decoration: none;
}

	.nav-item .main-nav .drop-down ul {
		display: block;
		position: absolute;
		left: 0;
		top: calc(100% + 30px);
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background-color: #fff;
		box-shadow: 0 0 8px rgba(9,13,113,.58);
		transition: ease all 0.3s;
		width: 200px;
		border-radius: 0;
		padding: 5px 0;
	}

.nav-item .main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-item .main-nav .drop-down li {
	min-width: 180px;
	position: relative;

}

.nav-item .main-nav .drop-down ul a {
   padding: 5px 26px 5px;
	font-size: 15px!important;
	font-weight: 400 !important;
  color: #252525;
	text-transform: lowercase !important;
	border: none;
}
.nav-item .main-nav .drop-down ul a:first-letter {
    text-transform: uppercase !important;
}
.nav-item .main-nav .drop-down ul a:hover,
.nav-item .main-nav .drop-down ul .active > a,
.nav-item .main-nav .drop-down ul li:hover > a {
  color: var(--primary);
}
.nav-item .main-nav .drop-down li:hover{

    color:  #ED2325;
}
.nav-item .main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.nav-item .main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
	box-shadow: 0 0 1px rgba(9,13,113,.58);
	padding: 0px;
  margin: 4px 0;
	background: #f4f2e6;
}

.nav-item .main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-item .main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-item .main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
.nav-item .main-nav .drop-down .drop-down:hover > .ul_3 {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.nav-item .main-nav .drop-down .drop-down .ul_3{
    display: block;
  position: absolute;
  top: 0;
  left: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  /*padding: 10px 0;*/
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 25%);
  transition: ease all 0.3s;
  width: auto;
}
.nav-item .main-nav .drop-down .ul_3 a:hover{
   color:#ED2325;
}
/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -3000px;
  width: 300px;

  /*background: rgba(255, 255, 255, 8);*/
  background: #f6f6f6;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav .ul_1{
    display: block;
    padding: 12px;
}
.mobile-nav .ul_1 li{
    background: #fff;
  border-radius: 6px;
  margin-bottom: 6px;
  box-shadow: 0 5px 20px rgb(20 77 84/5%);
  transition: all .5s;
}
.mobile-nav .ul_1 li:hover, .mobile-nav .ul_1 .drop-down.active {
  /*  background:#D1D4FD;*/
    border-radius: 6px;

}

.mobile-nav .ul_1 li .ul_2 li{
    box-shadow: none;
}
.mobile-nav .ul_1 li .ul_2 li:hover{
    background:none;
}
.mobile-nav .ul_1 .drop-down .ul_2 {
  /*display: block;*/
  background: rgba(255, 255, 255, 8);
}
.mobile-nav .ul_1 .drop-down .a_nav {
  font-size:20px;
  font-weight: 500;
  /*border-bottom: 2px solid;*/
  /*color: #333;*/
  color: #333;
    justify-content: left;
    display: flex;
    padding: 15px;
}
.mobile-nav .ul_1 .drop-down .a_nav:after {
    position: absolute;
    color: #252525;
    right: 22px;
    top: auto;
    content: "";
    font-family: FontAwesome;
    font-size: 20px;
    /*transform: rotate(45deg);*/
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.mobile-nav .ul_1 .drop-down.active .a_nav:after {
    position: absolute;
    color: #252525;
    right: 22px;
    top: auto;
    content: "";
    font-family: FontAwesome;
    font-size: 20px;
    -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #252525;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #ED2325;
  text-decoration: none;
}

.mobile-nav .ul_2 .drop-down > a:after {
  content: "\f067";
  font-family: FontAwesome;
  padding-right: 10px;
  position: absolute;
  right: 15px;
  font-size: 10px;
  top: 10px;
}

.mobile-nav .ul_2 .active.drop-down > a:after {
  content: "\f068";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
  font-size: 15px;
}

.mobile-nav-toggle {
  /* position: fixed;
  right: 15px;
  top: 30px; */
	order:1;
  z-index: 99;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 38px 15px 0 0;
  color: #252525;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/* menu */
.menu-space{
	justify-content: space-between;
	/* display: flex; */
		/* padding-top: 15px; */
	width: 40%;
}
.menu-spacelog{
	/* justify-content: space-between;
	display: flex;
	width: 50%; */
}
.menu-check{
	justify-content: space-between;
	display: flex;
	width: 30%;
}
.row-menu{
	/* flex-wrap:nowrap; */
	display:flex;
	justify-content: space-between;
	    align-items: center;
}

.two-columnas{
width: 48%;
display: inline-block;
}
/* cantidad carro */
.product-list .product-item .cantidad {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 33px;
}
.product-list .product-item .cantidad .cantidad_agregar{
    justify-content: center;
    display: flex;
    width: 100%;
}
.product-list .product-item .cantidad .lu{

	margin-bottom: 33px;


}
.product-list .product-item .cantidad .lu li{
	list-style: none;
	display: inline-block;
	background: #ffffff;
	font-size: 12px;


}

.product-list .product-item .cantidad .pro-qty {
	/* width: 80px; */
	height: 46px;
	border: 2px solid #ebebeb;
	padding: 0 2px;
	float: left;
	/* margin-right: 14px; */

}

.product-list .product-item .cantidad .pro-qty .qtybtn {
	font-size: 24px;
	color: #b2b2b2;
	float: left;
	line-height: 38px;
	cursor: pointer;
	width: 18px;
}

.product-list .product-item .cantidad .pro-qty .qtybtn.dec {
	font-size: 30px;
}

.product-list .product-item .cantidad .pro-qty input {
	text-align: center;
	width: 52px;
	font-size: 14px;
	font-weight: 300;
	border: none;
	color: #4c4c4c;
	line-height: 40px;
	float: left;

}


.product-list .product-item .cantidad .cantidad_agregar a {
	/* para cantidad y agregar   esto */
	 height: 45px;
      min-width: 64px;
      padding: 0 26px;
      align-items: center;
      border-radius: 62.5rem;
      display: inline-flex;
      justify-content: center;
      outline: 0;
      position: relative;
      text-decoration: none;
      text-indent: 0.0892857143em;
      text-transform: uppercase;
      transition-duration: .28s;
      transition-property: box-shadow,transform,opacity;
      user-select: none;
      vertical-align: middle;
      white-space: nowrap;
      font-weight: 700;
      font-size: 14px;
      background: #fff;
      box-shadow: inset 0 0 0 .0625rem #2e2f32;
      color: #2e2f32;

}
.product-list .product-item .cantidad .cantidad_agregar a:hover{
    background: #F5F5F5!important;
	color: #2e2f32 !important;
	border-color: #F5F5F5!important;
}
/* carousel */
.product-card {
	margin-bottom: 26px;
}

.product-card:hover .pi-pic .icon {
	top: 15px;
	opacity: 1;
}

.product-card:hover .pi-pic ul {
	bottom: 0;
}

.product-card .pi-pic {
	overflow: hidden;
	position: relative;
}

.product-card .pi-pic img {
	min-width: 100%;
}

.product-card .pi-pic .sale {
	color: #ffffff;
	font-size: 10px;
	background: #76BC42;
	position: absolute;
	left: 0;
	top: 20px;
	padding: 5px 10px;
	text-transform: uppercase;
}

.product-card .pi-pic .sale.pp-sale {
	background: #333;
}

.product-card .pi-pic .icon {
	font-size: 20px;
	color: #252525;
	position: absolute;
	right: 21px;
	top: -15px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.product-card ul {
	/* position: absolute; */
	left: 0;
	bottom: -52px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	width: 100%;
}

.product-card ul li {
	list-style: none;
	display: inline-block;
	background: #ffffff;
}

.product-card ul li.w-icon.active a {
	background: #333;
	color: #ffffff;
}
.product-card ul li.w-icon.active  i {
	padding-right: 10px;
}

.product-card ul li a {
	font-size: 16px;
	font-weight: 300;
	color: #252525;
	display: block;
	padding: 16px 18px 12px 19px;
}

.product-card .pi-text {
	text-align: center;
	padding-top: 26px;
}

.product-card .pi-text .catagory-name {
	font-size: 10px;
	color: #b2b2b2;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.product-card .pi-text a {
	/* ordenar el block del mismo tamaño */
	display: inline-block;
	height: 54px;
}

.product-card .pi-text a h5 {
	color: #252525;
	font-size: 16px;
	display: -webkit-box !important;

	height: auto !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-card .pi-text .product-price {
	color: #333;
	font-size: 17px;
	font-weight: 300;
}

.product-card .pi-text .product-price span {
	font-size: 14px;
	font-weight: 300;
	color: #b2b2b2;
	text-decoration: line-through;
}
/* whatsapp */
.btn-whatsapp {
    display:block;
    /* width:55px; */
    height:40px;
    color:#fff;
    position: fixed;
    right:20px;
    bottom:45px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    z-index:999;
}
.btn-whatsapp1 {
    width: 56px;
    height: 56px;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 8px 2px rgba(0,0,0,.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0,0,0,.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,.14);
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 2;
}
.btn-whatsapp1 a:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url(../img/wsp_logo.svg) center center no-repeat;
      background-size: auto;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
}
.btn-whatsapp1 a:after{
    content: '';
opacity: 0;
position: absolute;
z-index: 2;
width: 100%;
height: 100%;
left: 0;
top: 0;
 background: transparent url(../img/wsp_logo.svg) center center no-repeat;
  background-size: auto;
background-size: 14px auto;
-webkit-background-size: 14px auto;
}
.salir{
	padding-right: 5px;
}
.buscar{
	text-align: center;
}
/* buscardor mobil */
.inner-header .nav-right li.buscar-icon {
	position: relative;
	padding: 16px;
}

.inner-header .nav-right li.buscar-icon .buscar-hover {
		/*opacity: 1;
	visibility: visible;
	top: 60px;*/
	}
	.open {
	opacity: 1 !important;
	visibility: visible !important;

	}

.inner-header .nav-right li.buscar-icon a {
	color: #fff;
	position: relative;
	display: inline-block;
}

.inner-header .nav-right li.buscar-icon a span {
	position: absolute;
	right: -8px;
	top: -1px;
	height: 15px;
	width: 15px;
	background: #333;
	color: #ffffff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 300;
	text-align: center;
	line-height: 15px;
}

	.inner-header .nav-right li.buscar-icon .buscar-hover {
		/* position: absolute; */
		position: fixed;
		left: 0;
		right: 0;
		top: 60px;
		background: #ffffff;
		z-index: 888888;
		text-align: center;
		padding: 30px;
	    opacity: 0;
		visibility: hidden;
		-webkit-box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
		box-shadow: 0 13px 32px rgba(51, 51, 51, 0.1);
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
/* video baner */
.video-box {
		 width: 100%;
		 max-width: 100%;
		 height: auto;

	 }
		 #banner {
		     position: relative;
		     height: 60vh;
		     width: 100%;
		     display: flex;
		     align-items: center;
		     justify-content: center;
		 }

		 #banner video {
		     width: 100%;
		     height: 100%;
		     position: absolute;
		     top: 0;
		     left: 0;
		     z-index: 5;
		     object-fit: cover;
		     font-family: 'object-fit: cover';
		 }

	.video2-box {
		 width: 100%;
		 max-width: 100%;
		 height: auto;
		 padding:10px;

	 }
		 #banner2 {
				 position: relative;
				 width: 100%;
				 display: flex;
				 align-items: center;
				 justify-content: center;
		 }
		 #banner2 video {
				 width: 100%;

				 z-index: 5;
				 object-fit: cover;
				 font-family: 'object-fit: cover';
		 }
		 .img-thumbnail{
	        border:none;
	        border-radius: 15px;
        }

        .product-slider .product-item .cantidad {
	         display: -webkit-box;
	        display: -ms-flexbox;
	        display: flex;
	        margin-bottom: 33px;
        }
        .cat-slider .product-item .cantidad {
	         display: -webkit-box;
	        display: -ms-flexbox;
	        display: flex;
	        margin-bottom: 33px;
        }

         .product-slider .product-item .cantidad .primary-btn.pd-cart{
            padding: 14px 70px 10px;

        }
         .cat-slider .product-item .cantidad .primary-btn.pd-cart{
            padding: 14px 70px 10px;

        }
		.owl-carousel .owl-item {
		/*border: 1px solid #f0f0f0 !important;*/
		/*margin-top: 15px;
        margin-bottom: 0;
        background-color: #fff !important;
        border-radius: 5px !important;*/
}
       .partner-logo .owl-carousel .owl-item{
        margin-top: 15px;
        margin-bottom: 15px;
        }


        .owl-carousel .owl-item:hover .product-item ul li.w-icon.active .ac {
        	/* background:#767DF7;*/
        }
         .mobile_user{
            display: none ;
        }
        .user_mobile{
		display: none ;
}
        .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th
{
	display: grid;
	border: none !important;
}
.table-bordered{
	border: none !important;
}
.table-striped>tbody>tr:nth-of-type(odd){
	background-color: #fff!important;
}
.row:before{
	content: none !important;
}
div.dataTables_filter label {
display: none !important;
}
div.dataTables_length label{
	display: none !important;
}

.Header__user__icon {
  display: inline-block;
  position: relative;
  background: #fec600;
  font-size: 16px;
  width: 28px;
  height: 28px;
  color: #3f3820;
  text-align: center;
  border-radius: 14px;
  padding-top: 5px;
  text-transform: uppercase;
  font-weight: 300 !important;
}
/* Dropdown Button */
.dropbtn {
  background-color: transparent;
  color: #252525;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: transparent;
	color: var(--gray-dark);
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 220px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.37);
  z-index: 1;
  left: -120px;
	top: 40px;
}
.Header__dropdown__iconList__container{
	text-align: left! important;
	border-radius:0! important;
}
.Header__dropdown__iconList__item{
    padding: 0 !important;
}
.Header__dropdown__iconList__item{
    display: flex !important;
align-items: center !important;
}
/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: transparent}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

	.form-inline{
	        margin-right: 15px;
    margin-left: 15px;

	}
	.span_user {
  padding-left: 5px !important;
  background: transparent!important;
  color: #333 !important;
  font-size: 18px !important;
  position: relative !important;
  font-weight: 500 !important;
}
.show {display:block;}
#sys-notification {
    position: fixed;
    top: 10px;
    width: 100%;
    z-index: 9999;
}
/* carrito mini */
.cart-mini {
  position: relative;
  z-index: 20; }
  .cart-mini .dropdown-menu {
    padding: 20px;
    min-width: 400px;
    top: 25px; }
  .cart-mini a {
    color: #000 !important;
    display:inline-flex !important;
  }
  .cart-mini .btn:hover strong {
    color: #fff !important; }
		.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
		  outline: 0; }

		.btn-group > .btn + .dropdown-toggle {
		  padding-left: 8px;
		  padding-right: 8px; }
			.dropdown .dropdown-menu {
			  display: none; }

			.open > .dropdown-menu {
			  margin-top: -5px; }

					.dropdown {
					  position: relative; }

					.dropdown-toggle:focus {
					  outline: 0; }

					.dropdown-menu {
					  position: absolute;
					  top: 100%;
					  left: auto;
					  z-index: 1000;
					  display: none;
					  float: left;
					  min-width: 200px;
					  padding: 10px 0;
					  margin: 2px 0 0;
					  list-style: none;
					  font-size: 14px;
					  text-align: left;
					  background-color: #fff;
					  border: 0;

					  border-radius: 2px;
					  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
					  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
					  background-clip: padding-box;
					  right:10px;
					  }
				.dropdown-menu.pull-right {
					    right: 0;
					    left: auto; }
				.dropdown-menu .divider {
					    height: 1px;
					    margin: 9px 0;
					    overflow: hidden;
					    background-color: #e5e5e5; }
					  .dropdown-menu > li > a {
					    display: block;
					    padding: 3px 20px;
					    clear: both;
					    font-weight: normal;
					    line-height: 1.428571429;
					    color: #333333;
					    white-space: nowrap; }

					.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
					  text-decoration: none;
					  color: #262626;
					  background-color: #f5f5f5; }

					.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
					  color: #fff;
					  text-decoration: none;
					  outline: 0;
					  background-color: #fc5c3c; }

					.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
					  color: #777777; }
					.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
					  text-decoration: none;
					  background-color: transparent;
					  background-image: none;
					  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
					  cursor: false; }

					.open > .dropdown-menu {
					  display: block;

					 }
					.open > a {
					  outline: 0; }

					.dropdown-menu-right {
					  left: auto;
					  right: 0; }

					.dropdown-menu-left {
					  left: 0;
					  right: auto; }
						.inner-header .nav-right li.cart-icon .cart-hover .select-items table {
							width: 100%;
						}
	.minicart__card__close span{

	      font-weight: 300 !important;
	}
    .minicart__card__name , .minicart__total_price_sku ,.minicart__topbar__title{
        text-align: left !important;
    }



    .minicart__footer__btn{
        background: #fff !important;
    }

    span.minicart__footer_toh--price {

    right: 15px !important;
}
.minicart__footer_toh--discount{
    top:0 !important;
}
@media (min-width:768px) {
   .checkout-section{
       padding-top: 5%;
   }
    .minicart__body {
    background: #fff !important;
    }
    .minicart {
      position: absolute;
      bottom: 0 !important;
      left: auto;
      right: 1px !important;
      top: 0 !important;}
    }
    .minicart__content{
        margin-top: 0 !important;
    }
/* estilo modal */
.modal{
    position: fixed !important;;
    background-color: transparent !important;
    font-family: "Muli", sans-serif !important;
}
.modal-backdrop{
	z-index: 0  !important;
	background-color: rgba(0,0,0,.5) !important;
}
.fade:not(.show) {
  opacity: 1 !important;
}
.fade.in {
  opacity: 1  !important;
}
.modal.left .modal-dialog,
	.modal.right .modal-dialog {
		position: fixed ;
		margin: auto;
		width: 360px;
		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;
	}

/*Left*/
	.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;
	}

/*Right*/
	.modal.right.fade .modal-dialog {
		right: -320px;
		-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 STYLE ----- */
	.modal-content {
		border-radius: 0;
		border: none;
	}

	.modal-header {
		border-bottom-color: #EEEEEE;
		/*background-color: #FAFAFA;*/
		background: #f6f6f6;
		padding: 15px 1rem !important;
	}

/* ----- v CAN BE DELETED v ----- */


.demo {
	padding-top: 60px;
	padding-bottom: 110px;
}

.btn-demo {
	color: #fff;
  vertical-align: baseline;
	font-size: 20px;

}
.btn-demo:hover{
	color:#fff!important
}
.btn:focus, .btn.focus {
	box-shadow: none !important;
}
.btn-demo:focus {
	outline: 0;
}

.demo-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 15px;
	background-color: #212121;
	text-align: center;
}

.demo-footer > a {
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
}
.Header__menuButton{
	color:var(--gray1) !important;
}
.Header__dropdown__iconList__item li:hover{
    background-color: transparent !important;

}
.Header__dropdown__iconList__container li:not(.Header__dropdown__iconList__item--welcome):hover span {
    color: var(--primary);
}
.Header__dropdown__iconList__container li:not(.Header__dropdown__iconList__item--welcome):hover a {
    color: var(--primary);
}
.dropdown-toggle::after {
    display:none!important;
}
.swal2-styled.swal2-confirm {
    color:#fff!important;
    background-color: #333;
}
.swal2-styled.swal2-confirm a:hover{
    color:#fff !important;
}
.clase-body{
    padding-top: 20px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .1;
    /* background: #000000; */
		padding-top: 50%;
		color: #000;
		font-size: 20px;
		font-weight:300;
}
.gris {
	filter: grayscale(1);
	opacity: .3;
}
/* Style the accordion  */
.filtro-lateral{
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    background: #fafafa;
    overflow: hidden;
    padding: 10px;
}
.filtro-lateral h4{
     color: var(--primary);
      font-weight: 500;
      padding: 18px;
      padding-top: 18px;
      border-bottom: 1px solid #f0f0f0;
      padding-top: 8px;
			font-size: 20px;
}
/* Style the buttons that are used to open and close the accordion panel */
.filtro-lateral .accordion{
  background-color: #FAFAFA;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-bottom: 1px solid #f0f0f0;
 font-size: 18px;
  font-weight: 400;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.filtro-lateral .filtro-lateral-active, .accordion:hover {
  background-color: #f0f0f0;
}

/* Style the accordion panel. Note: hidden by default */
.panel_acordeon {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion:after {
  content: '\f067'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: var(--secondary);
  float: right;
  margin-left: 5px;
  font-family: FontAwesome;
  padding-top: 3px;
}

.filtro-lateral-active:after {
  content: "\f068"; /* Unicode character for "minus" sign (-) */
  font-family: FontAwesome;
}
.filtro-lateral-active>a {
 font-weight: 650;
text-decoration: none;
}
.filtro-lateral .accordion a:hover{
    color:#252525;
}
.filtro-lateral .rows_acordeon .menu_acordeon a:hover{
    color:#252525;
}
.filtro-lateral .rows_acordeon{
    padding: .8125rem 0;

border-bottom: 1px dashed silver;
}
.filtro-lateral .rows_acordeon .menu_acordeon{
   cursor: pointer;
    font-size: 14px;
    list-style: none;
}

.Search__wrapper{
    padding: 40px 0 20px 0;
    }
.Search__wrapper .Search__title h4{
    font-size:22px;
}
.producto_mobile{
        padding-right: 0 !important;
    padding-left: 0!important;
    }

    /*Loading page*/
.jm-loadingpage {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: url(../img/logo-loading.png) center no-repeat #fff;
}
/*Loading page*/

/*---------------------
  Categorias logo
-----------------------*/
.categorias{
    background-color: #333;
      width: 100%;
}
.categorias__container{
    display:flex;
  height: 150px;
/*justify-content: center;*/
overflow: auto;;
}
.categorias__item {
  height: 150px;
  max-width: 116px;
  flex: auto;
  text-align: center;
  vertical-align: top;
  box-sizing: border-box;
  max-width: 88px;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
}
.categorias__item a {
  display: block;
  min-width: 88px;
  max-width: 88px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
  text-align: center;
  vertical-align: top;
  box-sizing: border-box;
  padding: 4px 4px 2px;
  height: 56px;
}
.categorias__item span {
  font-size: 32px;
  min-width: 32px;
  margin: auto;
}

/* carusel categoria */
.catHome__header {
  background: #ffffff00;
  color: black;
  margin: 10px 0 40px;
  /*border-radius: 25px 25px 0 30px;*/
  position: relative;
 /* border-bottom: 1px solid gray;*/
 text-align: center;
}
.text-category-home {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  /*background: #6c6c6c;*/
  /*border-radius: 25px;*/
  display: inline-block;
}
.text-category-home-re{
     width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      height: 40px;
    background: #333;
    border-radius: 5px;
  display: inline-block;
}
.ver_mas{
  float: right;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  align-items: center;
  padding-right:20px;
  padding-top: 10px;
}
.title-category{
    margin-top: 10px;
    float: left;
    margin-left: 20px;
    font-size: 17px;
    margin-right: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 40px 6px 40px;
    position: relative;
		letter-spacing: 5px;
}
.title-category-home {
    width: auto;
    text-align: center;
     margin-top: 10px;
    /*border-radius: 20px 10px 20px 20px;*/
    float: left;
    margin-left: 20px;
    color: #252525;
    margin-right: 20px;
		padding: 0 40px 6px 40px;
  position: relative;
  border-bottom: 3px solid var(--primary);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1.5px;
}
/* slider carusel categoria*/
.cat-slider .owl-nav button[type=button] {
	font-size: 30px;
	position: absolute;
	left: -62px;
	top: 25%;
	color: #171717;
	opacity: 0.3;
}

.cat-slider .owl-nav button[type=button].owl-next {
	left: auto;
	right: -62px;
	color: #171717;
	opacity: 1;
}

.cat-slider .owl-dots {
	text-align: center;
	margin-top: 0;
}

.cat-slider .owl-dots button {
	width: 6px;
	height: 6px;
	background: #D8D9DA;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.cat-slider .owl-dots button:last-child {
	margin-right: 0;
}

.cat-slider .owl-dots button.active {
	width: 30px;
	background: #252525;
	border-radius: 50px;
}
.cat_header {
 		background: wheat;
    color: black;
    margin: 20px 0 0;
    border-radius: 5px;
    position: relative;
    text-align: center;

}
.text_cat_header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /*height: 40px;*/
  border-radius: 25px;
  display: inline-block;
}
/*nuevo hoy 24*/
.banner-section .cate{
  /*width: 90px;*/
}
.cat_log{
   margin-right: 10px!important;
}
.cat_container{
    padding-right: 5px;
    padding-left: 5px;
   /* border: 1px solid;
    border-radius: 0px 0 8px 8px;
    border-top: none;*/
}


/*----------------------------------------*/
/* cart agregar cant
/*----------------------------------------*/
.spinner .stepper .pro-qty{
    display: flex;
    justify-content: space-between;
}
.spinner .stepper .pro-qty .dec{
    float: left;
    font-size: 18px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    margin-top: 3px;
}
.spinner .stepper .pro-qty .inc{
    float: left;
    font-size: 18px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    margin-top: 3px;
}
.spinner .stepper .pro-qty .stepper-value{

    float: left;
    width: calc(100% - 72px);
    border: none;
    outline: none;
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #333;
    font-family: Muli,sans-serif;
    font-weight: 300;
    line-height: 24px;
    appearance: textfield;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #dedede;
    width: calc(100% - 80px);
    height: 30px;
    font-size: 15px;

}
/* ---cart cantidad-----*/
.inner-header .nav-right li .car-cant{

}
.inner-header .nav-right li .car-cant span{
  font-family: "Muli", sans-serif;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #F75B22;
  border-radius: 50%;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 11px;
  position: absolute;
  right: 6px;
  top: 4px;
}
.inner-header .nav-right button .car-cant{
    position: absolute;
   right: 0px;
    top: 30px;
    list-style: none;
    display: inline-block;
    font-size: 20px;
    margin-left: 8px;
}
.inner-header .nav-right button .car-cant span{
        font-family: "Muli", sans-serif;
    position: absolute;
    right: 5px;
    top: -20px;
    height: 17px;
    width: 17px;
    background: #F75B22;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 300;
    text-align: center;
    /*line-height: 15px;*/
}
.btn:focus{


}
/*---formulario------*/
.titulo-form h2{
    color: #252525;
    font-weight: 300;
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
}
.titulo-form h4{
    color: #252525;
    font-weight: 300;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 35px;
}
.login-form h5 {
   padding-bottom: 15px;
}
.register-form,.login-form{

   /* border: 1px solid #dcdcdc;*/
    box-sizing: border-box;
    border-radius: 8px;
    padding: 20px;
}
.register-form form .group-input input, .login-form form .group-input .form-i{
    border-radius: .25rem;
}
.login-form form .group-input .datos-l{
    position: relative;
    width: 100%;
    display: block;
}
.login-form form .group-input .datos-l span{
    position: absolute;
    z-index: 1;
    font-size: 12px;
    line-height: 15px;
    color: #7e7e7e;
    margin-bottom: 0;
   font-style: normal;
    display: inline-block;
    background-color: #fff;
    left: 12px;
    /*top: -9px;*/
    width: auto;
    padding: 0 4px;
}
.register-form form .boton-for, .login-form form .boton-for{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}
.register-form form .boton-for button,.login-form form .boton-for button{
    width: 200px;

    border-radius: 5px;
}
.register-form form .boton-for button:hover,.login-form form .boton-for button:hover{
    background:#CE1013;
}
.login-form form .boton-for input:hover{
    background:#CE1013;
}
.register-form form .group-input input:focus,
.login-form form .group-input input:focus{
    border:1px solid #333;
}
.login-form form .form-group select,.login-form form .form-group input{
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.login-form form .form-group select:focus{
    border:1px solid #212529;
    box-shadow:none;
}

.form-group .form-select select:focus{
    border:1px solid #212529;
    box-shadow:none;
}

 .nav-lateral{
    background: #fff;
    border: 1px solid #e7e7e7;
    box-sizing: border-box;
    border-radius: 8px;
    width: 100%;
    min-width: 280px;
    height: max-content;

    display: flex;
    align-items: top;
    justify-content: top;
    flex-direction: column;
    padding: 0;
    margin-top: 0;
}
.nav-lateral .nav-pills .nav-lat .nav-link{
    border-bottom: 1px dashed #ebebeb;
}
.nav-lateral .nav-pills .nav-lat a:focus{
    color: #252525;
}
.fade1:not(.show) {
  opacity: 0 !important;
}
.fade1.in {
  opacity: 0 !important;
}
.tabulation-2 .tab-content .form-group label{
   flex-grow: 0;
	max-width: 30%;
	flex-basis: 40%;
	font-weight: 400;
	padding-left: 0;
	line-height: 2;
}
.tabulation-2 .tab-content .form-group .seleccion{
    width: 100%;
}
.tabulation-2 .tab-content .form-group select,.tabulation-2 .tab-content .form-group  input{
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.tabulation-2 .tab-content .form-group  select:focus,.tabulation-2 .tab-content .form-group input:focus{
    border:1px solid #212529;
    box-shadow:none;
}
.login-form form .perfil-usu{
    width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;

}
.ver-todo{
    text-decoration: underline;
    line-height: 20px;

}
.mobile-nav .drop-down .ver  a:hover,.nav-item .main-nav .drop-down .ver a:hover{
    text-decoration: underline;
}
.nav-item .main-nav ul .titulo a:hover,.nav-item .main-nav ul .titulo .active > a,
.nav-item .main-nav .ul_1 li:hover > a{
    /* color:red; */
}
.text-right-menu{
	    text-align: right!important;
			display: flex;
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
.banner-prod {
	 padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    background: #fff;
}
.filtros-prod{
    margin-right: 0;
    margin-left: 0;
    flex-wrap: nowrap;
    display: flex;
   justify-content: space-between;
}
.filtros-prod .filtros {
    padding-right: 90px;
    align-items: center;
    display: flex;
    width: 100%;
}
.filtros-prod .lista{
    display: flex;
    justify-content: space-between;
    border: 1px solid #a9a9a9;
    border-radius: 5px;
    margin-right: -15px;
margin-left: -15px;
}
.filtros-prod .lista .clase{
    padding-right: 20px;
    padding-left: 20px;
}
.filtros-prod h4 {
  font-size: 22px;
  color: #252525;
}
.phone-service i, .mail-service i{
    margin-right: 5px;
font-size: 16px;
color: #6E6E6E;
}
button, input, optgroup, select, textarea{
	font-weight: 400;
	letter-spacing: 1px;
}
.section-servicio{
    width: 100%;
height: 300px;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
position: relative;
padding-top: 80px;
}
.bread-servicio{
    color: #fff;
    font-size: 40px;
}
.mobile-nav .ul_1 .menu-p .a_nav {
  font-size: 20px;
  font-weight: 300;

  color: #333;
  justify-content: left;
  display: flex;
  padding: 15px;
}
    .na{
        position: sticky;
    }
    .header-scrolled{
         position: fixed;
    }
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
    display:none;
}
.hero-items .owl-nav.disabled {
     display:none;
}
.banner-movil {
  display: none;
}
@media only screen and (max-width: 576px) {
	.desk_user {
	 display: none;
 }
  .banner-movil {
    display: block !important;
  }
  .banner-desck {
    display: none !important;

  }
}
.heading_container{
   /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0 40px;
  text-align:center;
}
.heading_container h3 {
	font-weight: 700;
	color: var(--primary);
	position: relative;
	text-transform: uppercase;
	display: inline-flex;
    align-items: center;
    border: 2px solid var(--secondary);
    border-radius: 10rem;
    padding: 6px 45px;
}
.heading_container hr {
    margin: 0 10px;
    border: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 200px;
    height: 3px;
    background-color: currentColor;
}
@media only screen and (max-width: 576px) {
 .heading_container h3{
     font-size:25px;
 }
}
.register-form form .group-input label{
    text-align: left;
}
.register-form form .boton-for {
    color: #ffffff;
  background: #333;
  border: 1px solid #333;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 10px 45px 10px;
  cursor: pointer;
  border-radius: .25rem;
  margin-top: 20px;
}
.register-form form .crear .gi-more {
     color: #ffffff;
  border: 1px solid #333;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 45px 10px;
  cursor: pointer;
  border-radius: .25rem;
}
.msm-alert{
    font-size: 13px;
  text-align: right;
  color: var(--red);
}


.btn-registro button{
    color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 45px 10px;
  cursor: pointer;
  /*border-radius: 30px;*/
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-registro button:hover{
    color: rgba(255, 255, 255, 1) !important;
   /* box-shadow: 0 4px 16px rgba(49, 138, 172, 1); */
	 box-shadow: 0 4px 10px RGB(40,44,52);
       transition: all 0.2s ease;
     background:#333;
    border-color:#333;
}
.btn-second input{
 color: #333;
  background: #fff;
  background-color: rgb(255, 255, 255);
  background-color: #fff;
  border: 1px solid #333;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 45px 10px;
  cursor: pointer;
  border-radius: .25rem;
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-second input:hover{
  color: #fff;
  background: #333;
}
.border-lat{
    padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 576px) {
  .border-lat{
    padding-left: 0;
    padding-right: 0;
  }
}
.wall-reg{
  background: #fafafa;
  padding-bottom: 10px;
}
.nav-item .nav-menu li a i{
    padding-right: 10px;
}
.ul_1{
   display:flex;
}
@media only screen and (max-width: 992px) {
  .mobile-nav .ul_1 .drop-down .a_nav i{
   display:none;
  }
}
.hero-section  video{
    width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  object-fit: cover;
  font-family: 'object-fit: cover';
}
@media only screen and (max-width: 767px) {
  .order {
    order: 2;
  }
}
@media only screen and (max-width: 479px) {
  .product-item ul li.w-icon.active a {
    padding: 0 30px;
    height: 35px;
    font-size: 14px;
  }
	.product-item {
		/* padding-bottom: 10px;*/
	}
}
.product-slider .owl-stage-outer{
    padding-bottom: 10px;
}
@media only screen and (max-width: 479px){
    .product-item .pi-pic{
        /*min-height: 180px;*/
    }
}
:root{
	--primary: #ED2325;
	--secondary: #FC9402;
	--success: #27A327;
	--info: #0098EA;
	--danger: #F75B22;
	--color1:#F6F6F6;
	--color2:#e7e7e7;
	--gray1:#252525;
	--fw-3:300;
	--fw-4:400;
	--fw-5:500;
	--fw-6:600;
	--fw-7:700;
	--fw-8:800;
	--fw-9:900;
}
strong {
	font-weight: bold;
}
.title-d {
	text-align: center;
	position: absolute;
	margin-top: -20px;
}
.footer_info{
    border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  margin-right: 24px;

  padding-right: 15px;
  padding-left: 15px;
  justify-content: center;

  margin: 10px;
}
.title-d .d {
	display: inline-block;

	font-weight: 800;
	padding: 6px 18px;
	color: #ffffff;
	background: var(--primary);
	text-transform: uppercase;
	border-radius: 3px;
	border: 2px solid var(--primary);
}
.title-d h5 {
	color: whitesmoke;
}
.tag-item {
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 300;
	color: #333;
    padding-bottom:10px;
	line-height: 20px;
}
.tag-item i{
    margin-right: .5rem;
}
.bg-color2 {
	background: var(--color2);
}
.btn-c1 {
	height: 45px;
	min-width: 64px;
	padding: 0 26px;
	align-items: center;
	/*border-radius: 62.5rem;*/
	border-radius: 5px;
	display: inline-flex;
	justify-content: center;
	outline: 0;
	position: relative;
	text-decoration: none;
	text-indent: 0.0892857143em;
	text-transform: uppercase;
	transition-duration: .28s;
	transition-property: box-shadow,transform,opacity;
	user-select: none;
	vertical-align: middle;
	white-space: nowrap;
	font-weight: 700;
	font-size: 14px;
	background: #fff;
	box-shadow: inset 0 0 0 .0625rem #ED2325;
	color: var(--primary);
}
	.btn-c1:hover, btnc1:focus {
		background: #ED2325;
	}
.product-item .pi-pic {
	align-content: center;
}
table .grid-prod td{
	padding:0 !important;
}
.p-r{
    position: relative;
}
.content-top{
    transform: rotate(45deg);
  position: absolute;
  width: 2rem;
  height: 2rem;
  right: 0;
  margin-right: .5rem;
  top: -5px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.37);
}
.t-a-center{
    text-align:center;
}
.foot-image{
    width: 45px;
  margin: 10px;
}
.fw-300{
    font-weight:300;
}
.fw-500{
    font-weight:500;
}
.fw-700{
    font-weight:700;
}
.single-banner h6{
    font-weight: 400;
}
.single-banner p{
    font-size:14px;
    line-height: 20px;
    color: #212529;
}
.footer-slider .owl-dots {
	text-align: center;
	margin-top: 0;
}

.footer-slider .owl-dots button {
	width: 6px;
	height: 6px;
	background: #D8D9DA;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.footer-slider .owl-dots button:last-child {
	margin-right: 0;
}

.footer-slider .owl-dots button.active {
	width: 30px;
	background: var(--primary);
	border-radius: 50px;
}
.product-slider .owl-dots.disabled {
    display: block;
}
.prod-tb{
    margin: 0 7px 7px 0;
}
.bt-fil{
 position: relative;
  right: initial;
  margin: 25px auto 8px;
  width: 180px;
  height: 37px;
  font-size: 16px;
}
.bt-fil a{
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  width: 100%;

}
/*--------pagination---------*/
.pagination>li {
    display: inline
}
.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    margin: 0 1px;
    border-radius: 3px;
    width: 32px;
      height: 32px;
      justify-content: center;
      align-items: center;
      display: flex;
}
.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}
.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {

    background-color:#d8d9f9;
    border-radius: 4px;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 2;
    color: var(--primary);
    cursor: default;
    border-radius: 3px;
  background-color:#d8d9f9;
}
.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: transparent;
    border-color: #ddd
}
.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px
}
.pagination > .next a,.pagination > .prev a,.pagination > .prev a:focus,.pagination > .next a:focus{
    background-color: transparent;
}
.pagination > .next a:hover,.pagination > .prev a:hover{
    color: var(--primary);
    background-color:transparent;
}
.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}
.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}
.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px
}
.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}
.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}

.content-fil{
    width: 330px;
   position: relative;
}

.prod-shop{
    margin-bottom: 26px;
}
@media only screen and (max-width: 992px) {

    .content-fil{
        display:none;
    }
}
@media only screen and (max-width: 767px) {
    .conten-margin-list{
        padding-right: 0;
        padding-left: 0;
    }
    .margin-prod .product-item{
        margin: 20px 3% 0 15px;
    }
    .margin-prod:nth-child(2n+2) .product-item{
        margin: 20px 15px 0 3%;
    }
    table .grid-prod tr:nth-child(2n+2){
    margin: 0 0 20px 3%;
   }
    .footer-widget{
		margin-bottom: 20px;
        text-align: center;
        margin-left: 2%;

	}
}
@media (max-width: 576px) {
  .cont-resp {
    padding-right: 15px;
   padding-left: 15px;
  }
}
.pd-table-list{
    padding-right: 15px;
    padding-left: 15px;
}
table .grid-prod tr{
    margin: 0 5% 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px){
     table .grid-prod tr:nth-child(3n+3){
      margin: 0 0 20px 0;
   }
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
     table .grid-prod tr:nth-child(3n+3){
      margin: 0 0 20px 0;
   }
}
@media only screen and (min-width: 1200px) and (max-width: 1920px) {
     table .grid-prod tr:nth-child(3n+3){
      margin: 0 0 20px 0;
   }
}
.pr-pl-65{
    padding-right: 65px;
  padding-left: 65px;
}
@media only screen and (max-width: 991px) {
    .pr-pl-0{
        padding-right: 0;
        padding-left: 0;
    }
}
.bg-modal{
    width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 8;
  margin-top: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s ease;
  cursor: pointer;
}
.bg-modal.active {
  visibility: visible;
  opacity: .6;
}
.close-filt{
    display:none;
}
.product-show-option{
    display:none;
}
@media only screen and (max-width: 991px){
   .produts-sidebar-filter .md-mobile{
        display: none;
        position: fixed;
        z-index: 24;
        height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        overflow-y: scroll;
        width: 330px;
    }
    .produts-sidebar-filter .md-mobile.active{
        display:block;
    }
    .close-filt{
        display:block;
    }
    .product-show-option{
         display:block;
    }
}
.g-pop{
    overflow:hidden;
}
.pl-8{
    padding-left: 8px;
}
.bg-color1{
    background:var(--color1);
}
.c-color1{
    color:var(--color1);
}
.c-border2{
    border: 1px solid var(--primary);
}
.c-border2:hover {
   border: 1px solid var(--primary);
   border-radius: 12px;
 }
.list-category{
    display: grid;
   grid-auto-flow: column;
   overflow: auto;
     padding: 10px 0;
}
.list-category::-webkit-scrollbar {
    width: 12px;
}
.list-category::-webkit-scrollbar-thumb {
    /*background-color: #797979;*/
    background-color: rgba(0,0,0,.1);
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}
.list-category::-webkit-scrollbar-track {
    border-radius: 10px;
}
.list-category {
  /*scrollbar-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, 0);*/
  scrollbar-color: rgba(0, 0, 0,.1) rgb(225, 225, 225);
    scrollbar-width: thin;
}
.category-image{
    width: 150px;
}
.category-image .inner-text{
    position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
}
.content-img{
    min-height: 150px;
    align-content: center;
}
.content-img:before{
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #191919;
  opacity: 0.3;
  border-radius: 10px;;
  z-index: 1;
}
.category-image .inner-text h4{
    color: #fff;
}
.modulo-title{
    text-align: center;margin-bottom: 25px;
}
.modulo-title h2
{
    color: #252525
}
@media only screen and (max-width: 576px) {
    .c-w-100{
    max-width:100%;
    }
    .pd-16{
        padding-right:  16px;
    }


}
@media only screen and (max-width: 479px) {
     .title-d h5 {
        font-size:16px;
    }
    .blog-details-inner .blog-detail-title h4{
        font-size:25px
    }
    .mod-about::after{
        left: -17px !important;
        top: -10px !important;
    }
    .blog-details-inner .blog-detail-title{
        margin-bottom: 25px;
    }
    .blog-section{
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .about-txt p{
        font-size: 16px !important;
    }
    .tab-pane .container-box-mod {
        min-width: auto !important;
    }
    .section-box-1{
        place-items: normal!important;
    }

}
.block-img{
    margin-right: 10px;
}
.section-category{
    padding: 80px 50px;
    background: var(--white);
}
@media only screen and (max-width: 991px){
    .section-category{
    padding: 30px 5px;
    }
}

.w-14 svg{
    width: 14px !important;
}
.btn-demo svg, .heart-icon svg, .buscar-icon svg{
    width:28px;
}
.lh-0{
    line-height: 0;
}
@media only screen and (min-width: 1200px) {
   .container-fluid{
    max-width: 1600px;
    }
    .banner-prod{
        padding: 0 80px;
    }
}
.gr-ckt label{
    margin-left: 10px;
}
.m10{
    margin: 10px;
}
.mod-about{
    position :relative;
}
.mod-about::after {
 border-radius: 15px;
  content: "";
  left: -23px;
  height: 110%;
  position: absolute;
  top: -14px;
  width: 50%;
  z-index: 1;
  background-color: var(--primary);
  opacity: .8;
}
.mb-20{
    margin-bottom: 20px
}
.about-txt{
    display: inline-flex;
  flex-wrap: wrap;
  align-content: center;
}
.about-txt p{
    font-size: 19px;
  color: #212529;
}
.section-box-1{
    display: grid;
  place-items: center;
}
.container-box-mod {
    height: 100%;
  margin: 23px 17px 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  max-width: 496px;
  border-radius:12px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
	border: 1px solid #ed2325;
}
.tab-filter-nav  li{
    list-style: none;
  display: inline-block;
  font-size: 20px;
  color: #b2b2b2;
  margin-right: 22px;
  position: relative;
  cursor: pointer;
  transition: all .5s;
}
.tab-filter-nav li a{
    color: #b2b2b2;
    font-family: "Muli", sans-serif;
  font-size: 17px;
  font-weight: 400;
}
.tab-filter-nav li.active a{
    color: #171717;
    transition: all .5s;
}
.tab-filter-nav  li:before {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #171717;
    content: "";
    opacity: 0;
    transition: all .2s;
}
.tab-filter-nav  li.active:before {
    opacity: 1;
}
.ptb-60{
    padding-top: 60px;
  padding-bottom: 60px;
}
.ptb-40{
    padding-top: 40px;
  padding-bottom: 40px;
}
.mg-0{
    margin:0;
}
.tab-pane .container-box-mod {
    min-width: 406px;
}
.tab-pane .container-box-mod .register-form{
    width:100%;
}
.gr-ckt p{
    margin-bottom: 0;
}
.faq-accordin1{

}
.faq-accordin1 .accordion1 .card .card-heading a{
    cursor: pointer;
}
.faq-accordin1 .accordion1 .card .card-heading a:hover{
    color:var(--primary);
}

.accordion1 .card .card-heading a i{
    margin-right: .5rem;
}
.faq-accordin1 .accordion1 .card{
    border:none;word-wrap: normal;
}
.faq-accordin1 .accordion1 .card .card-body{
    padding: .5rem;
}
.tag-list .tag-item .t-maps a,.tag-list .tag-item .t-waze a,.tag-list .tag-item .t-location a{
    display:flex;font-weight: 500;cursor: pointer;
}
.tag-item .t-location i{
    font-size: 19px;
}
.tag-list .tag-item .t-maps a:before{
    content: "";
  background-image: url(../img/icons/maps.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}
.tag-list .tag-item .t-waze a:before{
    content: "";
  background-image: url(../img/icons/waze.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}
.tag-maps{
    display:flex; gap: 30px;
}
.heading_container h2{
    font-weight: 700;
  color: var(--primary);
  position: relative;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;

  padding: 6px 45px;
}
.product-thumbs-track .owl-stage{
    display: flex;
}
.product-thumbs-track .owl-item{
    display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  background:#fff;
}
.r-pag{
    display: flex;
  flex-wrap: nowrap;
  margin-right: 15px;
  margin-left: 15px;
  justify-content: center;
}
.prod-search{
    display:block;
}
@media (max-width: 576px){
    .blok-c-xs{
        padding-right: 20px;
  padding-left: 20px;
    }

}
@media (max-width: 768px){
     .total-prd {
     margin-bottom: 0!important;
    }
    .total-prd .list{
        border:none !important;
        background:transparent !important;
    }
}
.fl-category {
  /*  margin-top: 6px;*/
}
.fl-category ul{
    padding: 0 10px;
}
.fl-category ul li{
    list-style: none;
    transition: all .5s;
}
.fl-category ul li:hover{
    background: #d8d9f9;
  border-radius: 4px;
}
.fl-category ul li a{
	display: inline-block;
	color: #636363;
	font-size: 12px;
	line-height: 39px;
	margin-left: 8px;
	font-weight: 700;
	letter-spacing: .5px;
}
.fl-category  .fw-title{
    margin-bottom: 10px;
}
.total-prd {
    margin-bottom: 10px;
}
.total-prd .list{
    display: flex;
  justify-content: space-between;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background: #fafafa;
}
.total-prd .list .clase{
    padding-right: 20px;
  padding-left: 20px;
}
.total-prd .list p{
    margin-bottom: 0;
  color: #636363;
  line-height: 39px;
}
.pg-f > li > a{
    cursor: pointer;
}
 .pp-detalle{
        width: 400px;
    }
 @media (max-width: 815px){
    .pp-detalle{
        width: auto;
    }
 }
.plr-25{
    padding-right: 25px;
  padding-left: 25px;
}
.bxs-none{
	box-shadow: none;
}
.div-Search_{
	font-size: 20px;
  color: #ffffff;
  position: absolute;
  right: 0px;
  top: 0px;
	padding: 12px 16px 12px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}
.div-Search_ i{
	color:var(--primary)
}
.inner-header .advanced-search .input-group input:focus{
	border-color:var(--primary)
}
.bg_color{
	background: #f4f2e680;
}
.bg_color3{
	background:#ffffff;
}
