@charset "UTF-8";
/*
@font-face {
  font-family: 'Bahnschrift';
  font-stretch: 82.132%;
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/Bahnschrift.woff2') format('woff2 supports variations'), url('../fonts/Bahnschrift.woff2') format('woff2-variations');
}
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-smoothing: grayscale;
    font-weight: 300;
}
b,
strong {
    font-weight: 500
}
b[data-countdown]  {
	font-weight: 700;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
}
body {
	background-color: var(--bg-color);
	color: var(--black-font);
	overflow-x: hidden;
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Typography */
.font-size-base {
	font-size: var(--font-size-base);
}
.font-size-medium {
	font-size: var(--font-size-medium);
}
.font-size-md {
	font-size: var(--font-size-md);
}
.font-size-sm {
	font-size: var(--font-size-sm);
}
.font-size-lg {
	font-size: var(--font-size-lg);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);

}
.h1, h1 {
    font-size: var(--font-size-xl);
}
.h2, h2 {
    font-size: var(--font-size-lg);
}
.h3, h3 {
    font-size: var(--font-size-md);
}





/* utils */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: var(--container);
}
.r-ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cta-color {
	color: var(--cta-color);
}
.btn {
	transition: all 0.3s ease;
	line-height: 1.5;
	border-radius: var(--form-radius);
}
.btn-default {
	border: 1px solid var(--border-color);
	background-color: #fff;
	border-radius: var(--form-radius);
}
.btn-default:hover {
	background-color: var(--border-color);
}
.btn-cta, .btn-cta:hover, .btn-cta:active, .btn-cta:hover:focus, .btn-cta:hover:active, .btn-cta:active:focus {
  background-color:var(--cta-color);
  border-color: var(--cta-color);
  color: #fff !important;
}
.btn-third, .btn-third:hover, .btn-third:active, .btn-third:hover:focus, .btn-third:hover:active, .btn-third:active:focus {
  background-color:var(--third-color);
  border-color: var(--third-color);
  color: #fff !important;
}
.btn-tertiary {
	background-color: var(--border-color);
}
.secondary-color {
	color: var(--secondary-color);
}
.d-center-all {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gap20 {
	gap: 20px;
}
.btn-transparent {
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.btn-circle {
    border-radius: 10rem;
}
.site-info {
	height: 56px;
	line-height: 56px;
	color: var(--third-color);
	font-size: var(--font-size-medium);
	overflow: hidden;
}
.site-info a {
	color: var(--third-color);
	transition: all .1s ease-in;
}
.header-conasi {
	position: sticky;
	top: 0px;
	z-index: 1030;
	background-color: var(--secondary-color);
	box-shadow: var(--shadow-top);
}
.main-header {
    background-color: var(--secondary-color);
		box-shadow: var(--shadow-top);
    position: sticky;
    top: 0px;
    z-index: 26;
}
.main-nav {
	color: #fff;
	height: 48px;
}
.header-icons {
	gap: 8px;
}
/* menu */
.menu-content {
	padding: 0;
	margin: 0;
	list-style: none;
	font-weight: 400;
}
.home-link, .header-mobile-menu {
	display: none;
}
.js-url {
	cursor: pointer;
}
/* menu mobile */
@media (max-width:991px) {
	.hide-mobile {
		display: none !important;
	}
	
}
/* menu desktop y cabecera */
@media (min-width:992px) {


}

#wrapper {
	margin-top: calc(1vw + .5rem);

}
.margin-bottom-wrapper {
	margin-bottom: calc(1vw + .5rem);
}
body#index #wrapper {
    margin-top: 0;
}


.breadcrumb {
	margin-top: calc(-1vw - 0.25rem);
	padding: 1.2rem 0;
	border-bottom:  1px solid var(--border-color);
	margin-bottom: 1.2rem;

}
.breadcrumb a, .breadcrumb {
	color: var(--soft-grey);
}
.breadcrumb > ol {
    display: flex;
    list-style: none;
    padding: 0;
    font-style: italic;
		font-size: 0.8rem;
		margin: 0;
}
.breadcrumb li:not(:last-child):after {
    display: inline-block;
    padding: 0 .5rem;
    color: var(--border-color);
    content: "/";
}

@media (max-width: 991px) {
	.breadcrumb > ol {
		display: block;
		overflow: hidden;
		height: 21px;
		white-space: nowrap;
	}
	.breadcrumb > ol > li {
		display: inline-block;
	}
	.breadcrumb li:not(:last-child)::after {
	  display: inline-block;
	  padding: 0 .3rem;
	  color: var(--border-color);
	  content: "/";
	}
	#product .breadcrumb > ol > li:last-child {
		display: none;
	}
	.breadcrumb {
  margin-top: calc(-1vw - .5rem);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}
}




/* utils */
.product-list-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-list-ul > li > a {
  padding: 4px 0;
  display: flex;
  gap: 6px;
  align-items: center;
}
.product-list-ul > li:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}
.badge {
  padding: 1px 8px;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  white-space: nowrap;
  text-align: center;
  border-radius: 20px;
  display: inline-block;
  min-width: 44px;
}
.small-badge {
	padding: 4px 10px;
	font-size: var(--font-size-sm);	
	line-height: 1.1;
	text-transform: uppercase;
}
.badge-orange {
  background-color: var(--secondary-color);
}
.badge-cta {
  background-color: var(--cta-color);
}

#notifications:empty {
	display:none !important;
	margin: 0;
}

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

/* Products */
.price {
    color: var(--cta-color);
    font-weight: 700;
    /* */
}
.product-miniature .price {
 	font-size: var(--font-size-base);
}
.card {
	background-color: #fff; 
	position: relative;
	/*border: 1px solid var(--border-color);*/
	box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
	border-radius: 6px;
	border: 1px solid #f0efea;
}
.stocks-infos {
    margin: 5px 0;
    text-transform: uppercase;
    white-space: nowrap;
	font-size: var(--font-size-sm);
}
.stocks-infos .in-stock {
	color: #94c11d;
}
.stocks-infos .out-of-stock {
	color: #D9534F;
}


/* Products list */
.products-grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 1rem;
    padding: 0;
    list-style: none;
}

@media (max-width: 768px){
	.products-grid, .layout-full-width .products-grid{
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1,1fr);
	}
}
.product-miniature{
    background-color: #fff;
    text-align: center;
	padding: 1rem;
}
.product-miniature .product-title {
    color: #6c6c6c;
    font-family: var(--font-primary);
    font-size:  var(--font-size-base);
	font-weight: 400;
    margin: 4px 0;
    height: 44px;
    overflow: hidden;
    line-height: 1.4em;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.discount-product,
.product-flag {
    background-color: var(--green-color-bg);
    display: inline-block;
    border-radius: 15px;
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-sm) !important;
    text-transform: uppercase;
		line-height: 1em;
}
@media (max-width: 768px) {
	.product-miniature .product-flags {
		height: 22px;
		max-width: 110px;
		overflow: hidden;
	}
}
.discount-percentage, .discount-product, #product span.promo-top.discount, .cn_element_products_2_unit_price .discount, .product-flags .on-sale, 
.product-flags .s-discount {
	background-color: var(--cta-color) !important;
}
.product-flags {
	position: absolute;
	top: 10px;
	left: 10px;
}
.product-flags span{
    padding: 4px 8px;
    display: inline-block;
}
/* Novedades */
.product-flag.new {
	background-color: var(--secondary-color);
}
.product-flag.out_of_stock {
	background-color: var(--danger);
}
.product-flag.outlet {
	background-color: #9A3399;
}
.product-flag.segunda_mano {
 	background-color: #00768A;
}
.discount-product{
    padding: 4px 8px;
}
.regular-price{
	color: #6c6c6c;
	text-decoration: line-through;
	font-size: 14px;
	margin-left: 8px;
}
.product-miniature .product-short {
	display: none;
}
.mini-product-actions .btn-default:not(.btn-out-of-stock) {
	display: none;
}
.products-selection{
	margin-bottom: 1.2rem;
    margin-top: 1.2rem;
	padding: 0.6rem 0.8rem;
}
.products-selection .select-title{
    padding: 0.4rem 0.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.4rem;
	justify-content: space-between;
	min-width: 190px;
}
@media (min-width: 798px) {
	.products-selection .select-title{
		width: 250px;
		max-width: 250px;
	}
}
.products-selection .select-title:hover {
    background-color: #fff;
}
.products-selection .select-title i {
	margin-right: 0;
}
.products-selection .select-title span span {
  max-width: calc(100vw - 200px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
@media (min-width: 798px) {
	.products-selection .select-title span span {
	  max-width: 210px !important;
	  overflow: hidden;
	  white-space: nowrap;
	  text-overflow: ellipsis;
	  display: block;
	}
}
.products-sort-order.dropdown .dropdown-menu {
	padding: 1rem;
	min-width: 190px;
}
.products-sort-order .dropdown-menu a{
    display: block;
    margin: 0.2rem 0;
	font-size: .86rem;
}
	
.products-selection .sort-by-row .sort-by{
    font-weight: 700;
    font-size: .86rem;
}	
@media (min-width:992px) {
	.mini-product-actions {
		margin-top: -40px;
		background-color: var(--grey-color);
		overflow: hidden;
		padding: 15px;
		text-align: center;
		position: absolute;
		margin-left: -16px;
		width: 100%;
		-webkit-transition: all .15s;
		-o-transition: all .15s;
		transition: all .15s;
		opacity: 0;
		border-top: 1px solid var(--border-color);
	}
}
@media (max-width:920px) {
	.products-grid .mini-product-actions .btn-cta{
		display: inline-block;
	}
}
@media (max-width:768px) {
	.products-grid .product-miniature{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0.8rem 0.4rem;
	}
	.products-grid .product-description{
		text-align: left;
		width: 100%;
	}
	.products-grid .thumbnail-top{
		max-width: 130px;
	}
	.products-grid .product-miniature .product-title {
		height: auto;
	}
	.item-in-carousel .product-miniature .product-title {
		font-size: var(--font-size-medium);
		line-height: 1.2;
		height: 30px;
	}
	.item-in-carousel .product-miniature {
		padding: .4rem;
	}
	.item-in-carousel .product-miniature .btn-cta {
		max-width: 100px;
		margin: auto;
		border-radius: var(--form-radius);
		line-height: 1em;
		font-size: var(--font-size-medium);
		margin-bottom: .6rem;
	}
	.products-grid .mini-product-actions .btn-cta{
		width: 50px;
		border-radius: var(--form-radius);
		font-size: 1.1rem;
		line-height: 1em;
	}
	.products-grid .mini-product-actions .btn-cta i {

	}
	.products-grid .mini-product-actions .btn span{
		display: none;
	}
	.products-grid .product-miniature .product-list-reviews {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		left: -2px;
		-webkit-transform: scale(.8) translateX(0);
		    -ms-transform: scale(.8) translateX(0);
		        transform: scale(.8) translateX(0);
		top: -8px;
	}
	.products-grid .mini-product-actions .btn-default{
		display: inline-block;
		font-size: var(--font-size-medium);
	}
}
/* bloques de banners home y subcategorías */
.subcategories-list img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}
.item-banner {
	overflow: hidden;
}

.item-banner a:hover img {
	animation: destacazoom 20s linear;
}
.item-banner figure {
	border-radius: 3px;
	overflow: hidden;
}
.item-banner .text-banner {
  display: block;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  margin-top: -50px;
  position: absolute;
  z-index: 11;
  width: 100%;  
  transition: all 300ms;
}
.item-banner .text-banner {
	width: calc(100% - 40px);
	margin-left: 15px;
	max-width: 420px;
}
.item-banner .text-banner > span {
	display: block;
	border-radius: 6px;
	padding: 0 2px 0px 12px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-shadow: 1px 1px 2px #fff;
	/* color: var(--third-color); */
}
.item-banner a:hover .text-banner > span {
	text-shadow: 1px 1px 2px var(--third-color);
}
.item-banner .text-banner > .text {
  	font-size: var(--font-size-base);
  	font-weight: bold;
  	background-color: rgba(255,255,255,0.90);
  	display: block;
  	line-height: 30px;
	height: 30px;
	border-radius: 15px;

}
.item-banner .text-banner > .description {
	background-color: rgba(255,255,255,0.75);
	border-radius: 0 0 15px 15px;
	height: 25px;
  	line-height: 20px;
  	font-size: var(--font-size-sm);
  	opacity: 0;
}
.item-banner:hover .text-banner {
	height: 55px;
	margin-top: -75px;
}

.item-banner:hover .text-banner > .text {
	border-radius: 0;
	background-color: rgba(67,157,153,0.75);
	color: #fff;
	border-radius: 15px 15px 0 0;
}
.item-banner:hover .text-banner > .description {
  	
  	background-color: rgba(102,175,172,0.75);
	color: #fff;
	opacity: 1;
}

/* conasitos común en producto, cart y checkout */
.vale-conasito {
	border: 1px dashed var(--secondary-color);
	border-radius: 8px;
	font-size: var(--font-size-sm);
	font-weight: bold;
	display: flex;
	gap: 4px;
	line-height: 1.2;
	background-color: #fff;
}
.vale-conasito a, .vale-conasito .orange-left, .vale-conasito .conasito-action {
	background-color: var(--secondary-color);
	color: #fff;
	text-decoration: underline;
	padding: 4px 6px;
	border-radius: 6px;
	border: 2px solid #fff;
	display: flex;
	align-content: center;
	flex-direction: column;
	min-width: 90px;
	text-align: right;
}
.vale-conasito .orange-left {
	text-decoration: none;
	text-align: center;
	
}
.vale-price {
  	font-size: var(--font-size-medium);
  	color: var(--cta-color);
	padding: 4px 8px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-left: 8px;
}
.conasitos-info {
	font-weight: bold;
	color: var(--secondary-color);
	margin-left: 2px;  
}/*
.info-conasitos {
	font-size: var(--font-size-sm);
	text-transform: uppercase;
}
*/
/* REVIEWS */
.block-stars {
  height: 15px;
  line-height: 15px;
  margin: 8px 0;
  font-style: normal;
}
.stars_base, .stars_base::after {
  width: 70px;
}
.stars_base, .stars_base::after, .stars_average, .stars_average::after {
  height: 15px;
  line-height: 15px;
  font-size: 14px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.stars_base::after, .stars_average::after {
  content: "\f2da\f2da\f2da\f2da\f2da";
  font-family: 'Conasi';
  color:  var(--border-color);
}
.stars_average::after {
  color: var(--secondary-color);
}
.stars_average {
  position: absolute;
}
.number_reviews {
  font-size: var(--font-size-sm);
  display: inline-block;
  line-height: 15px;
  height: 15px;
  margin-left: 6px;
  vertical-align: top;
}

/* Descripción producto, marca y categoría */
.card-contents {
	padding: calc(8px + 1.7625vw);
}
.card-contents img {
	margin: auto;
	display: block;
}
.card-contents iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: 100%;
}
.card-contents ol, .card-contents ul {
	padding-left: calc(6px + 1.7625vw);
}
@media (min-width: 1930px) {
	.card-contents {
		padding: 42px;
	}
	.card-contents ol, .card-contents ul {
		padding-left: 42px;
	}
}

/* Full width section / inside container */
.full-witdh {
  width: 100vw;
  margin-left: -15px;
  margin-right: -15px;
  overflow-x: clip;
}
.destacado-full {
  background-color: var(--grey-color);
}
@media (min-width:992px) {
	.full-witdh {
	  width: 100vw;
	  position: relative;
	  left: 50%;
	  right: 50%;
	  margin-left: -50vw;
	  margin-right: -50vw;
	}
}
.title-icon i {
  font-size: calc(99% - .5rem);
  display: flex;
  background-color: var(--green-color-bg);
  color: #fff;
  padding: .5rem;
  border-radius: 50%;
  margin-right: 1rem;
  align-items: center;
}
.line-triangle::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: var(--bg-color) transparent transparent transparent;
  left: calc(50% - 20px);
  margin-top: -40px;
}
.line-triangle-border-left {
	border-top: 1px solid var(--border-color);
	padding: 40px 0;
}

.line-triangle-border::before {
    content: '';
    position: absolute;
    width: 0;
		height: 0;
		border-style: solid;
		border-width: 20px 20px 0 20px;
		border-color: var(--border-color) transparent transparent transparent;
		margin-top: -41px;
		margin-left: 10px;
		left: calc(50% - 30px);
}
.line-triangle-border .triangle::before {
    content: '';
    position: absolute;
    width: 0;
		height: 0;
		border-style: solid;
		border-width: 18px 18px 0 18px;
		margin-left: 12px;
		left: calc(50% - 30px);
		border-color: var(--bg-color) transparent transparent transparent;
		margin-top: -41px;
}

/* modulo ps_cateogry */
.block-categories ul, .block-categories li{
	padding: 0;
	margin: 0;
	list-style: none;
}
.block-categories li {
	font-size: var(--font-size-medium);
}
.block-categories a {
	display: inline-block;
	padding: 2px 0;
}
ul.category-sub-menu {
	border-top: 1px solid var(--border-color);
}
ul.category-sub-menu > li:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}
.block-categories li[data-depth="1"] a {
	margin-left: 10px;
}
.block-categories li[data-depth="2"] a {
	margin-left: 10px;
}
/* categorias y facetas */
#toogle-filters {
	padding: 0.4rem 0.6rem;
	line-height: 1.25;
}
/* listado marcas footer */
.brand-list-home {
    display: flex;
    padding: 0;
    list-style: none;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    text-align: center;
    gap: 10px;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.brand-list-home li {
	max-width: 150px;
}
.brand-list-home a {
	display: block;
	background-color: #F0EFEA;
}
.brand-list-home img {
  width: 100%;
  height: auto;
  aspect-ratio: 100 / 90;
  object-fit: scale-down;
  mix-blend-mode: darken;
  padding: 8px; 
}
.link-brands {
	color: #8a8a8a;
}
.brands-container {
	border-bottom: 1px dotted #c1c1c1;
}

/* Footer Reviews */
.store-review {
	margin: auto;
	max-width: 800px;
	color: #8a8a8a;
	font-style: italic;

}
.item-store-review {
	font-size: var(--font-size-md);
	line-height: 1.4;
}
.review-user-info {
  font-size: var(--font-size-medium);
}
/* conasi-icons */
.footer-icons {
	margin: 70px 0;
	justify-content: space-around;
	font-size: 11px;
}
.footer-icons a {
    display: flex;
    color: #8a8a8a;
    line-height: 1.4;
    gap: .5rem;
    max-width: 196px;
    align-content: space-around;
    justify-content: space-around;
    flex-wrap: nowrap;
    font-weight: 400;
}
.footer-icons a:hover {
	color: var(--black-font);
}


.footer-icons.conasi-icons ul {
	justify-content: space-around;
}
.conasi-icons ul {
	display: flex;
	gap: 1vw;
	line-height: 1.4;
	font-weight: 400;
	font-size: 14px;

}
.conasi-icons small {
	opacity: 0.7;
}
.footer-icons .icon {
	margin-right: 0;
}
.conasi-icons i, .footer-icons .icon {
	font-size: var(--font-size-lg);
	opacity: 0.6;
	top: 0;
}
.conasi-icons span.d-flex {
	gap: .4rem;
	align-items: center;
}
.links-menu {
	margin-bottom: 20px;
}
/* Páginas cms */
.page-content-text a:not(.btn) {
	text-decoration: underline;
}
.page-content-text a:not(.btn):hover {
	color: var(--green-color);
}
.page-content-text p:last-child {
	margin-bottom: 0;
}
.page-content-text img {
	max-width: 100%;
    height: auto;
}
.page-content-text table {
	width: 100%;
}
.page-content-text h3 {
	font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
	margin-top: 1.5rem;
}

/* detalle reviews */
.bar-filter {
	gap: 1rem;
}
.bar-filter small {
	flex: 30px;
	max-width: 30px;
	text-align: right;
}
.bar-filter span {
	max-width: 80px;
	flex: 70px;
}
.bar-filter .progress {
	flex: 1;
}
.bar-filter.nofilter span, .bar-filter.nofilter small {
	opacity: 0.3;
}
.bar-filter.nofilter .underline {
	border-bottom: none;
}
.fixed-comments {
	position: sticky;
	top: 110px;
}
.logos_pago > p {
	height: 36px;
	overflow: hidden;
}
.logos_pago img {
  width: 62px;
  height: auto;
  border: 3px solid #fff;
  border-radius: 4px;
  margin: 0 2px;
  padding: 1px 0;
  background-color: #fff;
}
/* footer */
/* bloque newsletters */
.max-600 {
	max-width: 600px;
	margin: auto;
}
.input-mail .btn {
	padding-left: 20px;
	padding-right: 20px;
}
.block_newsletter {
  background-color: #fff;
  padding: 20px 10px;
  border-top: 1px solid #f0efea;
  border-bottom: 1px solid #f0efea;
}
.footer-container {
	background-color: var(--grey-color);
}
.footer-container .logos_pago > p {
	overflow: visible;
	height: auto;
}
.footer-container .logos_pago img {
	margin-bottom: 10px;
}
.footer-links {
	padding: 0;
	list-style: none;
	font-size: var(--font-size-medium);
	column-count: 3;
    column-gap: 30px;
    margin: 0 0 30px 0;
    padding-right: 20px;
}
@media (max-width: 1210px) {
	.h-m {
		display: none;
	}
}

@media (max-width: 992px) {
	.footer-links {
		column-count: 2;
	}
}
@media (max-width: 492px) {
	.footer-links {
		column-count: 1;
	}
	.links-menu > p {
		padding-left: 20px;
	}
	.links-menu > p::before {
	  content: '\f2d9';
	  margin-right: 8px;
	  font-family: 'Conasi';
	  display: inline-block;
	  position: absolute;
	  margin-left: -20px;
	}
	.links-menu.expand > p::before {
	  content: '\f2d9';
	  margin-right: 8px;
	  font-family: 'Conasi';
	  transform: rotate(180deg);
	}

	.links-menu > p {
	  padding-bottom: 8px;
	}
	.links-menu > ul {
		display: none;
	}
	.links-menu.expand > ul {
		display: block;
	}
}


.footer-links > li {
	border-bottom: 1px dotted #c1c1c1;
}
.footer-links > li > a {
	padding: 4px 0;
	display: inline-block;
}
.footer-links > li > a:hover, .show-link a:hover {
	text-decoration: underline;
}
.iconos-a {
  padding: 0;
  list-style: none;
  gap: 30px;
  justify-content: flex-end;
}
.iconos-a img {
	width: auto;
	height: 70px;
}
.rrss {
    padding: 0;
    margin: 0;
    list-style: none;
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    line-height: 1;
}
@media (max-width: 992px) {
	.rrss {
		justify-content: center;
	}
}
.rrss a i {
  margin-right: 0;
  vertical-align: top;
  top:0;
}
.rrss a {
  font-size: 38px;
  display: block;
  height: 38px;
  width: 38px;
  text-align: center;
  line-height: 38px;
  overflow: hidden;
}
a.twitter {
    color: #00aeef;
}
a.facebook {
    color:#1c75bc;
}
a.gplus, a.youtube {
    color:#cc181e;
}
.rrss a:hover {
	opacity: 0.75;
}
.rrss a.instagram {
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
	border-radius: 6px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-size: 32px;
	height: 34px;
	width: 35px;
	padding-top: 1px;
}
.rrss a.tiktok {
  background: #000;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  font-size: 26px;
  height: 34px;
  width: 35px;
  padding-top: 3px;
  ;
}
.rrss a.tiktok i {
	filter: drop-shadow(1px 2px 1px #FD3E3E) drop-shadow(0px -2px 0px #4DE8F4);
}
.info-copy {
	font-size: var(--font-size-sm);
	background-color: var(--grey-color);
	border-top: 1px solid #e1e1e1;
}
a.dipja {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-size: var(--font-size-sm);
}
a.dipja img {
	border-radius: 8px;
	padding: 4px;
	background-color: #fff;
}

.cookies-btns {
	display: flex;
	gap: 1rem;
	flex: 1;
}
.cookies-btns > button {
	flex: 50%;
	max-width: 50%;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin-right: 6px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.pointer-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.pointer-switch::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.switch input:checked + .pointer-switch {
  background-color: var(--third-color);
}

.switch input:focus + .pointer-switch {
  box-shadow: 0 0 1px var(--third-color);
}

.switch input:checked + .pointer-switch:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
#cookie-compliant a {
	text-decoration: underline;
}
#cookie-compliant .modal-content {
	max-height: calc(100vh - 1rem);
	max-height: calc(100svh - 1rem);
	
	overflow-y: auto;
}
.products-sort-order .dropdown-menu span {
    display: block;
    margin: 0.2rem 0;
    font-size: .86rem;
	cursor: pointer;
}
.category_title span, .sub_category span {
    padding: 1px 0;
    display: inline-block;
	cursor: pointer;
}
.sub_category span {
    padding-left: 8px ;
  }
@media (min-width:992px) {
	.sub_category span::before {
		content: "\f107";
		font: normal normal normal 1em/1 'Conasi';
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		color: var(--secondary-color);
		margin-right: 8px;
		font-size: 10px;
		display: inline-block;
		width: 10px;
		margin-top: 4px;
	}
	.sub_category span::before  {
		opacity: 0.5;
		margin-left: 8px;
	  }
	.category_title span::before {
		content: "\f107";
		font: normal normal normal 1em/1 'Conasi';
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		color: var(--secondary-color);
		margin-right: 8px;
		font-size: 10px;
		display: inline-block;
		width: 10px;
		margin-top: 4px;
	}
}
@media (max-width:991px) {
.menu-content li span {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    height: 48px;
    align-items: center;
    flex: 1;
    justify-content: space-between; 
  }
}
.category_title span{
	padding: 1px 0;
	display: inline-block;
}

.category_title > span {
	font-weight: bold;
}

.cookie-compliant{
    display: block; 
    background-color: rgba(255,255,255,.8);
}
.cookie-compliant .modal-body {
    padding: 1.625rem;
}
.cookie-compliant .tcb-main-description p{
    display: inline;
}
.cookies-btns {
    justify-content: center;
}
.tcb-btn-configuration{
    border: none;
    background-color: transparent;
    text-decoration: underline;
    padding: 0;
    font-weight: 300;
    font-size: 14px;
}
.tcb-btn-saveacept{
    background-color: transparent;
    font-size: .9rem;
}
/* Link BTN flex */
.link-btn-landing {
     padding: 0;
     list-style: none;
     margin: 0;
     column-count: 2;
     column-gap: 8px;
}
 .link-btn-landing > li {
}
 .link-btn-landing > li > a {
     background-color: #fff;
     margin: 8px 0;
     padding: 5px 15px;
     display: inline-block;
     font-weight: bold;
     color: #039f99;
     box-shadow: 3px 2px 4px rgba(0,0,0,.01);
     border-radius: 20px;
     text-decoration: none;
     border: 1px solid #f0f0f0;
     text-decoration: none !important;
}
 .link-btn-landing > li > a::after {
     content: "\f28f";
     margin-left: 8px;
     font-family: 'Conasi';
     font-size: 8px;
}
 .link-btn-landing > li > a:hover, .link-btn-landing > li > a:active, .link-btn-landing > li > a:focus {
     color: #fff !important;
     background-color: rgba(67, 157, 153, 0.75);
}
 @media (min-width: 1024px) {
     .link-btn-landing {
         column-count: 3;
    }
}
.card-contents ul.link-btn-landing {
    padding-left: 0;
    display: grid;
    gap: 15px;
    margin-top: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.card-contents ul.link-btn-landing > li > a {
    padding: 8px 10px;
    margin: 0;
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-right: 40px;
    position: relative;
    text-wrap: balance;
    padding-left: 30px;
    
}

.card-contents .link-btn-landing > li > a::before {
    content: "\f28f";
    font-family: 'Conasi';
    font-size: 12px;
    opacity: 0.4;
    right: 10px;
    position: absolute;
    top: 20px;
}
.card-contents .link-btn-landing > li > a::after {
	display: none;
}

/* es común de account y order */

.address-form, .js-address-form .form-fields {
  .row.alias {
    display: none;
  }
  .form-group.row {
    > * {
      flex: 0 0 100%;
      max-width: 100%;
    }
   
  }

  .form-group.row.address1, .form-group.row.company {
    max-width: 600px;
  }
  .form-group.row.phone_mobile, .form-group.row.dni {
    max-width: 400px;
  }
  .js-address-form .col-lg-9.offset-lg-3 {
		margin-left: 0 !important;
		margin-top: 1rem;
	}
}



@media(min-width: 767px) {
  .address-form, .js-address-form .form-fields {
    .form-group.row.postcode {
      clear: right;
    }
    .form-group.row.postcode, .form-group.row.city, .form-group.row.id_state, .form-group.row.id_country, .form-group.row.firstname, .form-group.row.lastname {
      width: 51%;
      display: block;
			float: left;
    }
    .form-group.row.city, .form-group.row.id_country, .form-group.row.lastname {
      float: right;
    }
    .form-group.row.company, .form-group.row.phone_mobile, .form-group.row.address1 {
      clear: both;
    }
  }
	.js-address-form .col-lg-9.offset-lg-3 {
		margin-left: 0 !important;
		margin-top: 1rem;
	}
}

/* optional forms */
.form-optional > label {
  cursor: pointer;
  position: relative;
  padding-left: 40px;
}

.form-optional > label::before {
  display: inline-block;
  font: normal normal normal 16px/1 'Conasi';
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.form-optional > label::before {
  content: "\f2d9";
}

.form-optional.expanded > label::before {
  content: "\f2d9";
	transform: rotate(180deg);
	margin-top: -9px;
}

.form-optional > div {
  display: none;
  transition: all 0.3s ease;
}

.form-optional.expanded > div {
  display: block;
}

.form-optional:has(input:not([value=""])) > div {
  display: block;
}

#connectif_under_categories {
	margin-bottom: 20px;
}

#connectif_under_categories:empty {
	display: none;
}
.product-price-and-shipping span.discount-percentage.discount-product {
	margin-left: 8px;
}

.block_newsletter .btn-secondary.disabled,
.block_newsletter .btn-secondary:disabled {
	opacity: 1; 
}

/* fix fix */
:root {
		--secondary-color: #A6C48A;
		--third-color: #598C58;
		--cta-color: #b74f53;
		--green-color-bg: #A6C48A;
}

	.price, .cta-color, .product-prices .current-price-value, .vale-price, .status-available *,
	.cn_element_products_2_unit_price {
			color: var(--black-font)  !important;
	}

	.checkout-bar li .number, .step-title > .step-number {
			background: #bed0bd;
	}

	body .cn_element_products_2_button {
			background-color: var(--cta-color) !important;
			border: none;
	}

	#connectif_under_categories .cn_element_products_3_button::before {
			background-color: #a6c48a !important;
	}

	.item-banner:hover .text-banner > .text {
			border-radius: 0;
			background-color: rgba(255,255,255,0.90);
			color: #181818;
			border-radius: 15px 15px 0 0;
	}

	.item-banner:hover .text-banner > .description {
			background-color: rgba(255,255,255,0.90);
			color: #181818;
			opacity: 1;
			font-weight: 700;
	}

	.item-banner a:hover .text-banner > span {
			text-shadow: 1px 1px 2px #fff;
	}

	body .stars_average::after, 
	body span.js-facet.js-facet-feature.label-4-o-ms::before, 
	body span.js-facet.js-facet-feature.label-5::after {
			color: #f19135 !important;
	}

	body #connectif_under_categories .cn_element_products_2_container::before {
			background-color: var(--secondary-color);
	}
	span.top-link.cta-color {
			color: var(--cta-color) !important;
	}
	body .cn_element_products_3_button {
		background-color: var(--cta-color) !important;
		font-weight: 700;
	}

span.cn_original_price[value="0%"] {
    display: none !important;
}