/* CABECERA */
.cabecera {
	position: relative;
	padding: 12.5px 0;
	z-index: 5;
}

.cabecera:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 165px;
	background: url('../img/web/cabecera.png') no-repeat top center;
}

.cabecera .izquierda {
	float: left;
}

.cabecera .izquierda .desplegar_menu {
	display: none;
}

.cabecera .izquierda .desplegar_buscar {
	position: relative;
	display: block;
	padding: 15px 0;
	padding-left: 60px;
	padding-right: 35px;
	border-radius: 50px;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 20px;
	color: var(--negro);
	background: var(--oscuro);
}

.cabecera .izquierda .desplegar_buscar:before {
	content: '';
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	width: 40px;
	border-radius: 100%;
	background: url('../img/web/buscar.svg') no-repeat center var(--crema);
	transition: all 250ms linear;
}

.cabecera .centro {
	position: absolute;
	top: 12.5px;
	left: 50%;
	transform: translate(-50%, 0);
}

.cabecera .centro ul {
	margin: 0;
	padding: 0;
	text-align: center;
	white-space: nowrap;
}

.cabecera .centro ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 50px;
	padding: 15px 0;
}

.cabecera .centro ul li:last-child {
	margin-right: 0;
}

.cabecera .centro ul li a {
	display: block;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 20px;
	color: var(--negro);
}

.cabecera .centro ul li.sel a {
	color: var(--rojo);
}

.cabecera .centro .logo {
	display: block;
	width: fit-content;
	margin: 0 auto;
	margin-top: 25px;
}

.cabecera .centro .logo img {
	display: block;
	width: 100%;
	height: auto;
}

.cabecera .derecha {
	float: right;
	padding: 5px;
	border-radius: 50px;
	background: var(--oscuro);
}

.cabecera .derecha .desplegar_usuario {
	display: inline-block;
	vertical-align: top;
	width: 40px;
	height: 40px;
	margin-right: 5px;
	border-radius: 100%;
	background: url('../img/web/usuario.svg') no-repeat center var(--crema);
}

.cabecera .derecha .minicesta {
	position: relative;
	display: inline-block;
	vertical-align: top;
}

.cabecera .derecha .minicesta .desplegar_minicesta {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: url('../img/web/minicesta.svg') no-repeat center var(--crema);
}

.cabecera .derecha .minicesta .unidades {
	position: absolute;
    top: -10px;
    left: 10px;
    display: block;
    width: 20px;
    border-radius: 100%;
    font-family: var(--fuente_titulos);
    font-size: 1.25em;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: var(--blanco);
    background: var(--rojo);
    cursor: pointer;
}

/* DESPLEGABLE MENÚ */
#menu {
    display: none;
}

/* DESPLEGABLE BUSCAR */
.desplegable_buscar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	margin: 0 auto;
	background: var(--oscuro);
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transform: translate(0, -100%);
	transition: all 500ms linear;
}

.desplegable_buscar.desplegado {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.desplegable_buscar form {
	position: relative;
	padding: 20px 0;
	background: var(--crema);
	z-index: 2;
}

.desplegable_buscar form .interior .campo {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 60px);
	margin-right: 20px;
}

.desplegable_buscar form .interior .campo:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--negro);
	z-index: 1;
}

.desplegable_buscar form .interior .campo input[type="text"] {
	display: block;
	width: 100%;
	height: 40px;
	font-size: 1.65em;
    font-weight: 500;
    line-height: 40px;
	color: var(--negro);
	background: var(--crema);
}

.desplegable_buscar form .interior .campo input[type="text"]::-webkit-input-placeholder {
	color: var(--negro);
	opacity: 1;
}

.desplegable_buscar form .interior .campo input[type="text"]:-moz-placeholder {
	color: var(--negro);
	opacity: 1;
}

.desplegable_buscar form .interior .campo input[type="text"]::-moz-placeholder {
	color: var(--negro);
	opacity: 1;
}

.desplegable_buscar form .interior .campo input[type="text"]:-ms-input-placeholder {
	color: var(--negro);
	opacity: 1;
}

.desplegable_buscar form .cerrar_buscar {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: url('../img/web/cerrar_w.svg') no-repeat center var(--rojo);
}

.desplegable_buscar .resultados_categorias {
	display: none;
	white-space: nowrap;
	overflow: hidden;
}

.desplegable_buscar .resultados_categorias ul {
	margin: 0;
	padding: 0;
	padding-top: 20px;
	padding-bottom: 40px;
}

.desplegable_buscar .resultados_categorias ul li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 40px;
}

.desplegable_buscar .resultados_categorias ul li:last-child {
	margin-right: 0;
}

.desplegable_buscar .resultados_categorias ul li a {
	position: relative;
	display: block;
	font-size: 1.65em;
    font-weight: 500;
	line-height: 20px;
	color: var(--negro);
}

.desplegable_buscar .resultados_categorias ul li.sel a {
	color: var(--rojo);
	pointer-events: none;
}

.desplegable_buscar .resultados_productos {
	display: none;
}

.desplegable_buscar .resultados_productos .interior {
	height: calc(100vh - 200px);
	height: calc(var(--vh, 1vh) * 100 - 200px);
	overflow-y: auto;
}

.desplegable_buscar .resultados_productos .interior::-webkit-scrollbar {
	display: none;
}

.desplegable_buscar .vacio {
	display: none;
	margin-top: 40px;
}

.desplegable_buscar .vacio span {
	display: block;
	font-size: 1.45em;
    line-height: 20px;
}

/* BANNERS */
.banners {
	position: relative;
	padding: 0 40px;
	padding-bottom: 40px;
	overflow: hidden;
}

.banners .banner {
	position: relative;
	display: none;
	height: calc(100vh - 115px);
	height: calc(var(--vh, 1vh) * 100 - 115px);
	min-height: 600px;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.banners .banner:first-child {
	display: block;
}

.banners .banner:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--luto25);
	z-index: 1;
}

.banners .banner .texto {
	position: absolute;
	top: 50%;
	left: 150px;
	right: 150px;
	display: block;
	text-align: center;
	z-index: 2;
	transform: translate(0, -50%);
}

.banners .banner .texto .titulo {
	display: block;
	font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
	color: var(--blanco);
}

.banners .banner .texto .subtitulo {
	display: block;
	margin-top: 10px;
	font-family: var(--fuente_titulos);
	font-size: 8em;
	line-height: 1em;
	color: var(--blanco);
}

.banners .owl-nav [class^="owl-"] {
	position: absolute;
	top: 50%;
	left: 85px;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: url('../img/web/navegacion.svg') no-repeat center var(--crema);
	box-shadow: 0 0 0 5px rgba(244, 235, 231, .5);
	transform: translate(0, calc(-50% - 20px));
}

.banners .owl-nav .owl-next {
	left: auto;
	right: 85px;
	transform: translate(0, calc(-50% - 20px)) scaleX(-1);
}

/* ÍTEM DEL PRODUCTO */
.item_producto {
	display: inline-block;
	vertical-align: top;
	width: calc(25% - 15px);
	margin-top: 40px;
	margin-right: 20px;
}

.item_producto:nth-of-type(1),
.item_producto:nth-of-type(2),
.item_producto:nth-of-type(3),
.item_producto:nth-of-type(4) {
	margin-top: 0;
}

.item_producto:nth-of-type(4n) {
	margin-right: 0;
}

.item_producto .imagen {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.item_producto .imagen img {
	display: block;
	width: 100%;
	height: auto;
}

.item_producto .texto {
	padding-top: 15px;
}

.item_producto .texto .titulo {
	display: block;
    display: -webkit-box;
    height: 40px;
	font-size: 1.45em;
	font-weight: 600;
	line-height: 20px;
	color: var(--negro);
	overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.item_producto .texto .precios {
	margin-top: 10px;
}

.item_producto .texto .precios .precio {
	display: inline-block;
	vertical-align: top;
	font-size: 1.85em;
	font-weight: 600;
	line-height: 20px;
	color: var(--rojo);
}

.item_producto .texto .precios .precio_anterior {
	display: inline-block;
	vertical-align: top;
	font-size: 1.85em;
	font-weight: 600;
	line-height: 20px;
	text-decoration: line-through;
	opacity: .5;
}

.item_producto .texto .precios .precio_anterior:before {
	content: '/';
	display: inline-block;
	vertical-align: top;
	margin: 0 10px;
}

/* CARRUSEL */
.carrusel {
	padding: 80px 0;
	background: var(--oscuro);
}

.producto ~ .carrusel {
	background: none;
}

.carrusel .superior .izquierda {
	float: left;
	max-width: 450px;
}

.carrusel .superior .izquierda .titulo {
	display: block;
	font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
}

.carrusel .superior .izquierda .subtitulo {
	display: block;
	margin-top: 10px;
	font-family: var(--fuente_titulos);
	font-size: 5em;
	line-height: 1em;
}

.carrusel .superior .derecha {
	float: right;
	max-width: 750px;
}

.carrusel .superior .derecha .descripcion {
	font-family: var(--fuente_titulos);
	font-size: 1.65em;
	font-weight: 300;
	line-height: 25px;
}

.carrusel .superior .derecha .descripcion p {
	margin: 0;
}

.carrusel .inferior {
	margin-top: 40px;
}

.carrusel .inferior .item_producto {
	display: none;
}

.carrusel .inferior .item_producto:nth-of-type(1),
.carrusel .inferior .item_producto:nth-of-type(2),
.carrusel .inferior .item_producto:nth-of-type(3),
.carrusel .inferior .item_producto:nth-of-type(4) {
	display: inline-block;
}

.carrusel .inferior .owl-item .item_producto {
	display: block;
	width: unset;
	margin-top: 0;
	margin-right: 0;
}

.carrusel .inferior .owl-nav [class^="owl-"] {
	position: absolute;
	top: 50%;
	left: 0;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: url('../img/web/navegacion.svg') no-repeat center var(--crema);
	box-shadow: 0 0 0 5px rgba(244, 235, 231, .5);
	transform: translate(-50%, -50%);
}

.carrusel .inferior .owl-nav .owl-next {
	left: auto;
	right: 0;
	transform: translate(50%, -50%) scaleX(-1);
}

/* ANUNCIOS */
.anuncios .anuncio {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 3);
	padding-top: 40%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.anuncios .anuncio:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--luto25);
	z-index: 1;
	transition: all 250ms linear;
}

.anuncios .anuncio .texto {
	position: absolute;
	bottom: 60px;
	left: 60px;
	right: 60px;
	z-index: 2;
}

.anuncios .anuncio .texto .titulo {
	display: block;
	font-family: var(--fuente_titulos);
	font-size: 5em;
	line-height: 1em;
	color: var(--blanco);
}

.anuncios .anuncio .texto .boton {
	display: block;
	width: fit-content;
	margin-top: 20px;
	padding-right: 80px;
	font-family: var(--fuente_titulos);
	font-size: 2.5em;
	font-weight: 300;
	line-height: 1em;
	color: var(--blanco);
	background: url('../img/web/larga_w.svg') no-repeat center right;
}

/* PRESENTACIÓN */
.presentacion {
	position: relative;
	padding: 80px 0;
}

.presentacion .izquierda {
	position: absolute;
	top: 80px;
	bottom: 80px;
	left: 0;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	width: calc(50% + 80px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.presentacion .derecha {
	width: calc(50% - 80px);
	margin-left: auto;
	margin-right: 0;
	padding: 80px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	background: var(--rojo);
}

.presentacion .derecha .titulo {
	display: block;
	font-family: var(--fuente_titulos);
	font-size: 5em;
	line-height: 1em;
	color: var(--blanco);
}

.presentacion .derecha .descripcion {
	margin-top: 40px;
	font-family: var(--fuente_titulos);
	font-size: 1.65em;
	font-weight: 300;
	line-height: 25px;
	color: var(--blanco);
}

.presentacion .derecha .descripcion p {
	margin: 0;
	margin-bottom: 30px;
}

.presentacion .derecha .descripcion p:last-child {
	margin-bottom: 0;
}

.presentacion .derecha .boton {
    display: block;
    width: fit-content;
    margin-top: 40px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.65em;
    font-weight: 500;
    line-height: 20px;
    color: var(--negro);
    background: var(--blanco);
}

/* ENLACES */
.enlaces {
	background: var(--oscuro);
}

.enlaces .enlace {
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 3);
	padding-top: 50px;
	padding-bottom: 25px;
	font-family: var(--fuente_titulos);
	font-size: 1.65em;
	font-weight: 300;
	line-height: 25px;
	text-align: center;
	color: var(--negro);
	background-repeat: no-repeat;
	background-position: top 25px center;
}

.enlaces .enlace:nth-of-type(1) {
	background-image: url('../img/web/enlace_1.svg');
}

.enlaces .enlace:nth-of-type(2) {
	background-image: url('../img/web/enlace_2.svg');
}

.enlaces .enlace:nth-of-type(3) {
	background-image: url('../img/web/enlace_3.svg');
}

/* PIE */
.pie .superior {
	padding: 80px 0;
    text-align: center;
}

.pie .superior .logo {
    width: fit-content;
    margin: 0 auto;
}

.pie .superior .logo img {
    display: block;
    width: 100%;
    height: auto;
}

.pie .superior .direccion {
    display: block;
    margin-top: 40px;
    font-family: var(--fuente_titulos);
	font-size: 1.65em;
	font-weight: 300;
	line-height: 25px;
	color: var(--negro);
}

.pie .superior .redes {
    margin-top: 40px;
}

.pie .superior .redes a {
    display: inline-block;
    vertical-align: top;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--rojo);
}

.pie .superior .redes a.whatsapp {
    background-image: url('../img/web/whatsapp_w.svg');
}

.pie .superior .redes a.instagram {
    background-image: url('../img/web/instagram_w.svg');
}

.pie .superior .redes a.facebook {
    background-image: url('../img/web/facebook_w.svg');
}

.pie .superior ul {
    margin: 0;
    margin-top: 40px;
    padding: 0;
}

.pie .superior ul li {
    display: inline-block;
    vertical-align: top;
}

.pie .superior ul li:before {
    content: '/';
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    font-family: var(--fuente_titulos);
	font-size: 1.65em;
	font-weight: 300;
	line-height: 25px;
	color: var(--negro);
}

.pie .superior ul li:first-child:before {
    content: none;
}

.pie .superior ul li a {
    display: inline-block;
    vertical-align: top;
    font-family: var(--fuente_titulos);
	font-size: 1.65em;
	font-weight: 300;
	line-height: 25px;
	color: var(--negro);
}

.pie .inferior {
    padding: 42.5px 0;
    background: var(--rojo);
}

.pie .inferior .copyright {
    display: block;
    float: left;
    font-family: var(--fuente_titulos);
    font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
	color: var(--blanco);
}

.pie .inferior .sgm {
    display: block;
    float: right;
    font-family: var(--fuente_titulos);
    font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
	color: var(--blanco);
}

/* KIT */
.kit {
	padding: 40px;
}

.kit a {
	display: block;
	width: fit-content;
	margin: 0 auto;
	font-family: var(--fuente_titulos);
    font-size: 1.65em;
    font-weight: 300;
    line-height: 25px;
	text-decoration: underline;
	color: var(--negro);
}

.kit img {
	display: block;
	width: auto;
	height: auto;
	max-width: 1280px;
	margin: 0 auto;
	margin-top: 20px;
}

/* MIGAS */
.migas {
	padding: 0 40px;
	padding-bottom: 40px;
}

.migas .interior {
	position: relative;
	padding-top: 240px;
	padding-bottom: 40px;
	border-radius: 20px;
	background: url('../img/web/migas.jpg') no-repeat center;
	background-size: cover;
	overflow: hidden;
}

.migas .interior:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--luto25);
}

.migas .interior .texto {
	position: relative;
	z-index: 2;
}

.migas .interior .texto .volver {
	position: relative;
	display: block;
	float: left;
	padding: 12.5px 0;
	padding-left: 50px;
	font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
	color: var(--blanco);
}

.migas .interior .texto .volver:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 40px;
	border-radius: 100%;
	background: url('../img/web/volver.svg') no-repeat center var(--crema);
	transition: all 250ms linear;
}

.migas .interior .texto .segmentos {
	float: left;
	padding: 12.5px 0;
}

.migas .interior .texto .segmentos:before {
	content: '//';
	display: inline-block;
	vertical-align: top;
	margin: 0 20px;
	font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
	color: var(--blanco);
}

.migas .interior .texto .segmentos a,
.migas .interior .texto .segmentos span {
	display: inline-block;
	vertical-align: top;
	font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
	color: var(--blanco);
}

.migas .interior .texto .segmentos span {
	margin: 0 5px;
}

.migas .interior .texto .segmentos span:last-child {
	margin: 0;
}

.migas .interior .texto .navegacion {
	float: right;
}

.migas .interior .texto .navegacion .anterior,
.migas .interior .texto .navegacion .siguiente {
	display: inline-block;
	vertical-align: top;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: url('../img/web/navegacion.svg') no-repeat center var(--crema);
	box-shadow: 0 0 0 5px rgba(244, 235, 231, .5);
}

.migas .interior .texto .navegacion .siguiente {
	margin-left: 20px;
	transform: scaleX(-1);
}

.migas .interior .texto .navegacion .siguiente:first-child {
	margin-left: 0;
}

/* PRODUCTOS */
.productos {
	padding: 40px 0;
	background: var(--oscuro);
}

.productos .superior .pagina .titulo {
	display: inline-block;
	vertical-align: bottom;
	font-family: var(--fuente_titulos);
	font-size: 5em;
	line-height: 1em;
}

.productos .superior .pagina .subtitulo {
	display: inline-block;
	vertical-align: bottom;
	margin-left: 20px;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 25px;
}

.productos .inferior {
	margin-top: 40px;
}

.productos .inferior .vacio {
	padding-top: 20px;
}

.productos .inferior .vacio p {
	margin: 0;
    font-size: 1.45em;
    line-height: 20px;
}

/* FILTROS */
.filtros {
	position: relative;
	margin-top: 40px;
	z-index: 5;
}

.filtros .bloques {
	border-radius: 50px;
	background: var(--crema);
}

.filtros .bloques .bloque {
	position: relative;
	float: left;
}

.filtros .bloques .bloque.ordenar {
	float: right;
}

.filtros .bloques .bloque .desplegar_filtro {
	position: relative;
	display: block;
	padding: 15px 20px;
	padding-right: 40px;
	border-radius: 50px;
    font-size: 1.65em;
    font-weight: 500;
    line-height: 20px;
    color: var(--negro);
}

.filtros .bloques .bloque.desplegado .desplegar_filtro {
	color: var(--blanco);
	background: var(--negro);
}

.filtros .bloques .bloque .desplegar_filtro:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	background: url('../img/web/filtro.svg') no-repeat center;
	transform: translate(0, -50%);
	transition: all 250ms linear;
}

.filtros .bloques .bloque.desplegado .desplegar_filtro:before {
	background-image: url('../img/web/filtro_w.svg');
	transform: translate(0, -50%) rotate(180deg);
}

.filtros .bloques .bloque .desplegable_filtro {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 100%;
	margin: 0;
	padding: 20px;
	border-radius: 20px;
	background: var(--negro);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transform: translate(-20px, 0);
}

.filtros .bloques .bloque .desplegable_filtro.filtro_colores {
	width: 190px;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_ordenar {
	left: auto;
	right: 0;
	transform: translate(20px, 0);
}

.filtros .bloques .bloque.desplegado .desplegable_filtro {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.filtros .bloques .bloque .desplegable_filtro li {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed rgba(255, 255, 255, .5);
}

.filtros .bloques .bloque .desplegable_filtro li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_colores li {
	display: inline-block;
	vertical-align: middle;
	margin-top: 10px;
	margin-bottom: 0;
	margin-right: 10px;
	padding-bottom: 0;
	border-bottom: none;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_colores li:nth-of-type(1),
.filtros .bloques .bloque .desplegable_filtro.filtro_colores li:nth-of-type(2),
.filtros .bloques .bloque .desplegable_filtro.filtro_colores li:nth-of-type(3),
.filtros .bloques .bloque .desplegable_filtro.filtro_colores li:nth-of-type(4) {
	margin-top: 0;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_colores li:nth-of-type(4n) {
	margin-right: 0;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_texto li {
	display: inline-block;
	vertical-align: middle;
	margin-top: 10px;
	margin-bottom: 0;
	margin-right: 10px;
	padding-bottom: 0;
	border-bottom: none;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_texto li:nth-of-type(1),
.filtros .bloques .bloque .desplegable_filtro.filtro_texto li:nth-of-type(2) {
	margin-top: 0;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_texto li:nth-of-type(2n) {
	margin-right: 0;
}

.filtros .bloques .bloque .desplegable_filtro li a {
	display: block;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 20px;
	color: var(--blanco);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.filtros .bloques .bloque .desplegable_filtro li.sel a {
	opacity: .5;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_colores li a {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	box-shadow: 0 0 0 1px var(--blanco) inset;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_texto li a {
	padding: 2.5px 10px;
	border-radius: 5px;
	font-size: 1.25em;
	line-height: 15px;
	letter-spacing: .25em;
	text-align: center;
	color: var(--negro);
	background: var(--blanco);
}

.filtros .bloques .bloque .desplegable_filtro.filtro_colores li a:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 5px;
	background: url('../img/web/check.svg') no-repeat center rgba(255, 255, 255, .5);
	z-index: 1;
	transform: scale(0);
	transition: all 250ms linear;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_colores li.sel a:before {
	transform: none;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .precios {
	text-align: center;
	white-space: nowrap;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .precios span {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 20px;
	color: var(--blanco);
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .precios span b {
	font-weight: 500;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .precios .separador {
	margin: 0 5px;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .barra {
	position: relative;
	display: block;
	width: 200px;
	height: 30px;
	margin: 0 15px;
	margin-top: 10px;
	border: none;
	border-radius: 0;
	background: none;
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .barra:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 5px;
	background: rgba(255, 255, 255, .5);
	z-index: 1;
	transform: translate(0, -50%);
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .barra span {
	position: absolute;
	top: 0;
	bottom: 0;
	display: block;
	width: 30px;
	height: auto;
	margin: 0;
	border: none;
	border-radius: 100%;
	background: var(--blanco);
	cursor: pointer;
	transform: translate(-50%, 0);
}

.filtros .bloques .bloque .desplegable_filtro.filtro_precios .barra .ui-slider-range {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 5px;
	background: var(--blanco);
	z-index: 2;
	transform: translate(0, -50%);
}

.filtros .filtrado {
	margin-top: 10px;
	padding: 0 20px;
}

.filtros .filtrado .izquierda {
	display: inline-block;
	vertical-align: top;
	margin-right: 40px;
}

.filtros .filtrado .izquierda a {
	display: inline-block;
	vertical-align: middle;
	margin-top: 10px;
	margin-right: 20px;
	padding-right: 20px;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 20px;
	color: var(--negro);
	background: url('../img/web/desmarcar.svg') no-repeat center right;
}

.filtros .filtrado .izquierda a:last-child {
	margin-right: 0;
}

.filtros .filtrado .derecha {
	display: inline-block;
	vertical-align: top;
	margin-top: 10px;
}

.filtros .filtrado .derecha a {
	display: block;
	padding: 0 10px;
	border-left: 2.5px solid var(--negro);
	border-right: 2.5px solid var(--negro);
	border-radius: 5px;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 20px;
	color: var(--negro);
}

/* SEO */
.seo {
    padding: 80px 0;
}

.seo .descripcion {
    font-size: 1.65em;
    line-height: 25px;
}

.seo .descripcion p,
.seo .descripcion ul,
.seo .descripcion ol {
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
}

.seo .descripcion p:last-child,
.seo .descripcion ul:last-child,
.seo .descripcion ol:last-child {
	margin-bottom: 0;
}

.seo .descripcion ol {
	counter-reset: contador;
}

.seo .descripcion ul li,
.seo .descripcion ol li {
	display: block;
	margin-bottom: 10px;
}

.seo .descripcion ol li {
	counter-increment: contador;
}

.seo .descripcion ul li:last-child,
.seo .descripcion ol li:last-child {
	margin-bottom: 0;
}

.seo .descripcion ul li:before {
	content: '- ';
}

.seo .descripcion ol > li:before {
	content: counter(contador) ' - ';
}

.seo .descripcion a {
	text-decoration: underline;
	color: inherit;
	word-break: break-all;
	transition: all 250ms linear;
}

.seo .descripcion h2,
.seo .descripcion h3 {
	margin-bottom: 20px;
	font-family: var(--fuente_titulos);
    font-size: 30px;
    font-weight: 300;
    line-height: 1em;
}

.seo .descripcion h2:last-child,
.seo .descripcion h3:last-child {
	margin-bottom: 0;
}

/* PRODUCTO */
.producto {
	padding: 40px 0;
	background: var(--oscuro);
}

.producto .izquierda {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 680px;
	margin-right: 40px;
}

.producto .izquierda .imagen {
	display: block;
    border-radius: 20px;
	overflow: hidden;
}

.producto .izquierda .imagen:last-child {
	margin-bottom: 0;
}

.producto .izquierda .imagen img {
	display: block;
	width: 100%;
	height: auto;
}

.producto .izquierda .owl-nav [class^="owl-"] {
	position: absolute;
	top: 50%;
	left: 0;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: url('../img/web/navegacion.svg') no-repeat center var(--crema);
	box-shadow: 0 0 0 5px rgba(244, 235, 231, .5);
	transform: translate(-50%, -50%);
}

.producto .izquierda .owl-nav .owl-next {
	left: auto;
	right: 0;
	transform: translate(50%, -50%) scaleX(-1);
}

.producto .derecha {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 720px);
	padding: 40px;
	border-radius: 20px;
	background: var(--crema);
}

.producto .derecha .texto .titulo {
	display: block;
	font-family: var(--fuente_titulos);
	font-size: 3em;
	line-height: 1em;
}

.producto .derecha .texto .descripcion {
	margin-top: 10px;
	font-size: 1.45em;
	line-height: 20px;
}

.producto .derecha .propiedades {
	margin-top: 20px;
}

.producto .derecha .propiedades .propiedad {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted var(--luto25);
}

.producto .derecha .propiedades .propiedad:first-child {
	margin-top: 0;
}

.producto .derecha .propiedades .propiedad .inelegible {
	display: block;
	font-family: var(--fuente_titulos);
	font-size: 2em;
	line-height: 1em;
}

.producto .derecha .propiedades .propiedad .inelegible b {
	font-weight: 400;
}

.producto .derecha .propiedades .propiedad .elige {
	display: block;
	font-family: var(--fuente_titulos);
	font-size: 2em;
	line-height: 1em;
}

.producto .derecha .propiedades .propiedad ul {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	padding: 0;
}

.producto .derecha .propiedades .propiedad ul li {
	display: inline-block;
	vertical-align: top;
	padding-top: 20px;
}

.producto .derecha .propiedades .propiedad ul li:not(.especial):before {
	content: '●';
	display: inline-block;
	vertical-align: top;
	margin: 0 10px;
	font-size: 2em;
	line-height: 40px;
	color: var(--rojo);
}

.producto .derecha .propiedades .propiedad ul li:not(.especial):first-child:before {
	content: none;
}

.producto .derecha .propiedades .propiedad ul li:not(.especial) a {
	display: inline-block;
	vertical-align: top;
	padding: 7.5px 20px;
	border-radius: 40px;
   	font-family: var(--fuente_titulos);
	font-size: 1.65em;
	line-height: 25px;
	color: var(--negro);
}

.producto .derecha .propiedades .propiedad ul li:not(.especial).sel a {
	background: var(--oscuro);
}

.producto .derecha .propiedades .propiedad ul li.especial:before {
	content: '';
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}

.producto .derecha .propiedades .propiedad ul li.especial:first-child:before {
	content: none;
}

.producto .derecha .propiedades .propiedad ul li.especial a {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 5px;
	border-radius: 100%;
}

.producto .derecha .propiedades .propiedad ul li.especial a:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 100%;
	box-shadow: 0 0 0 1px var(--negro) inset;
	opacity: 0;
	transition: all 250ms linear;
}

.producto .derecha .propiedades .propiedad ul li.especial.sel a:before {
	opacity: .5;
}

.producto .derecha .propiedades .propiedad ul li.especial a span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
}

.producto .derecha .comprar {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted var(--luto25);
}

.producto .derecha .comprar .precios {
	float: left;
	padding: 10px 0;
}

.producto .derecha .comprar .precios .precio {
	display: inline-block;
	vertical-align: top;
	font-family: var(--fuente_titulos);
	font-size: 3em;
	line-height: 1em;
	color: var(--rojo);
}

.producto .derecha .comprar .precios .precio_anterior {
	display: inline-block;
	vertical-align: top;
	font-family: var(--fuente_titulos);
	font-size: 3em;
	line-height: 1em;
	text-decoration: line-through;
	opacity: .5;
}

.producto .derecha .comprar .precios .precio_anterior:before {
	content: '/';
	display: inline-block;
	vertical-align: top;
	margin: 0 20px;
}

.producto .derecha .comprar .boton {
	position: relative;
	display: block;
	float: right;
	padding: 15px 0;
	padding-left: 60px;
	padding-right: 35px;
	border-radius: 50px;
	font-size: 1.65em;
	font-weight: 500;
	line-height: 20px;
	color: var(--blanco);
	background: var(--rojo);
}

.producto .derecha .comprar .boton:before {
	content: '';
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	width: 40px;
	border-radius: 100%;
	background: url('../img/web/minicesta.svg') no-repeat center var(--blanco);
}

.producto .derecha .comprar .cantidad {
	float: right;
	margin-right: 20px;
}

.producto .derecha .comprar .cantidad .restar {
	display: inline-block;
	vertical-align: middle;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: url('../img/web/restar.svg') no-repeat center var(--crema);
}

.producto .derecha .comprar .cantidad span {
	display: inline-block;
	vertical-align: middle;
	width: 50px;
	margin: 0 5px;
	border-radius: 100%;
	font-family: var(--fuente_titulos);
	font-size: 2.5em;
	line-height: 50px;
	text-align: center;
	color: var(--blanco);
	background: var(--rojo);
}

.producto .derecha .comprar .cantidad .sumar {
	display: inline-block;
	vertical-align: middle;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: url('../img/web/sumar.svg') no-repeat center var(--crema);
}

.producto .derecha .larga {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted var(--luto25);
	font-size: 1.45em;
    line-height: 20px;
}

.producto .derecha .larga p {
	margin: 0;
	margin-bottom: 10px;
}

.producto .derecha .larga p:last-child {
	margin-bottom: 0;
}

.producto .derecha .larga h2,
.producto .derecha .larga h3 {
	margin-bottom: 10px;
	font-family: var(--fuente_titulos);
	font-size: 20px;
}

.producto .derecha .larga h2:last-child,
.producto .derecha .larga h3:last-child {
	margin-bottom: 0;
}

.producto .derecha .larga {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted var(--luto25);
	font-size: 1.45em;
    line-height: 20px;
}

.producto .derecha .opciones {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted var(--luto25);
	text-align: right;
}

.producto .derecha .opciones .favorito {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
	margin-right: 20px;
	background: url('../img/web/no_favorito.svg') no-repeat center;
}

.producto .derecha .opciones .favorito.sel {
	background-image: url('../img/web/favorito.svg');
}

.producto .derecha .opciones .compartir {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
	background: url('../img/web/compartir.svg') no-repeat center;
}

/* CONTACTO */
.contacto {
	padding-top: 205px;
	padding-bottom: 40px;
	background: var(--oscuro);
}

.contacto .superior {
	padding: 20px;
	border-radius: 20px;
	text-align: center;
	background: var(--crema);
}

.contacto .superior .titulo {
	display: block;
	font-family: var(--fuente_titulos);
	font-size: 2em;
	line-height: 1em;
}

.contacto .superior .subtitulo {
	display: block;
	margin-top: 10px;
	font-size: 1.45em;
	line-height: 20px;
}

.contacto .inferior {
	margin-top: 20px;
}

.contacto .inferior .mapa {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 10px);
	margin-right: 20px;
	border-radius: 20px;
	overflow: hidden;
}

.contacto .inferior .mapa iframe {
	display: block;
	width: 100%;
	height: 520px;
}

.contacto .inferior form {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 10px);
	padding: 20px;
	border-radius: 20px;
	background: var(--crema);
}

.contacto .inferior form .campo.grande {
	padding: 0 35px;
	padding-top: 25px;
	padding-bottom: 5px;
	border-radius: 20px;
	background: var(--blanco);
}

.contacto .inferior form .checks {
	margin-top: 20px;
}

.contacto .inferior form .botones {
	margin-top: 20px;
}

.contacto .inferior form .botones .boton {
	display: block;
	padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.65em;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: var(--blanco);
    background: var(--rojo);
}

/* CONTENIDO */
.contenido {
	padding-top: 205px;
	padding-bottom: 40px;
	background: var(--oscuro);
}

.contenido .titulo {
    display: block;
    font-family: var(--fuente_titulos);
    font-size: 5em;
    line-height: 1em;
}

.contenido .descripcion {
	margin-top: 40px;
	font-size: 1.65em;
	line-height: 25px;
}

.contenido .descripcion p,
.contenido .descripcion ul,
.contenido .descripcion ol {
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
}

.contenido .descripcion p:last-child,
.contenido .descripcion ul:last-child,
.contenido .descripcion ol:last-child {
	margin-bottom: 0;
}

.contenido .descripcion ol {
	counter-reset: contador;
}

.contenido .descripcion ul li,
.contenido .descripcion ol li {
	display: block;
	margin-bottom: 10px;
}

.contenido .descripcion ol li {
	counter-increment: contador;
}

.contenido .descripcion ul li:last-child,
.contenido .descripcion ol li:last-child {
	margin-bottom: 0;
}

.contenido .descripcion ul li:before {
	content: '- ';
}

.contenido .descripcion ol > li:before {
	content: counter(contador) ' - ';
}

.contenido .descripcion a {
	text-decoration: underline;
	color: inherit;
	word-break: break-all;
	transition: all 250ms linear;
}

.contenido .descripcion h2,
.contenido .descripcion h3 {
	margin-bottom: 20px;
	font-family: var(--fuente_titulos);
    font-size: 30px;
    font-weight: 300;
    line-height: 1em;
}

.contenido .descripcion h2:last-child,
.contenido .descripcion h3:last-child {
	margin-bottom: 0;
}

.contenido .descripcion .scroll {
	margin-bottom: 20px;
	overflow-x: auto;
}

.contenido .descripcion .scroll:last-child {
	margin-bottom: 0;
}

.contenido .descripcion .scroll table {
	width: 100%;
	min-width: 1000px;
	border-collapse: collapse;
}

.contenido .descripcion .scroll table tr:nth-of-type(odd) {
	background: var(--crema);
}

.contenido .descripcion .scroll table tr th {
	vertical-align: top;
	padding: 10px 15px;
	font-weight: 400;
	text-align: left;
	text-transform: uppercase;
	color: var(--blanco);
	background: var(--negro);
}

.contenido .descripcion .scroll table tr td {
	vertical-align: top;
	padding: 10px 15px;
	text-align: left;
}

.contenido .descripcion .scroll table tr:first-child th:first-child,
.contenido .descripcion .scroll table tr:first-child td:first-child {
	border-top-left-radius: 20px;
}

.contenido .descripcion .scroll table tr:first-child th:last-child,
.contenido .descripcion .scroll table tr:first-child td:last-child {
	border-top-right-radius: 20px;
}

.contenido .descripcion .scroll table tr:last-child th:first-child,
.contenido .descripcion .scroll table tr:last-child td:first-child {
	border-bottom-left-radius: 20px;
}

.contenido .descripcion .scroll table tr:last-child th:last-child,
.contenido .descripcion .scroll table tr:last-child td:last-child {
	border-bottom-right-radius: 20px;
}