@charset "UTF-8";

@import url("cuadratico.min.css");

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    outline: none !important;
    margin: 0;
    padding: 0;
}

body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #333;
}

@media (min-width: 767px) {
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
}

a,
a:hover,
a:focus,
a:active { 
	outline: none;
	color: #006cbf;
	/*color:#0967DC*/
	font-weight: 400;
}
a:focus,
a:active { text-decoration: none; }
a[href^=tel] { color: inherit; text-decoration: none; }

.clearfix {
	clear: both;
}

.container {
	width: 100%;
	max-width: 1680px;
	padding-left: 40px;
	padding-right: 40px;
}
.container.content {
	max-width: 1398px;
}
.container.content-small {
	max-width: 1385px;
}
.container.content-mini {
	max-width: 1240px;
}
.container.content-short {
	max-width: 1180px;
}
.bloque-formulario {
	padding-top: 85px;
	max-width: 860px;
}
.bloque-formulario > svg {
	display: block;
	margin: 0 auto 40px auto;
}
.bloque-formulario form {
	margin-top: 40px;
}
.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}
.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}
p { margin: 0 0 20px 0;	}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.flex-row {
	display: flex;
	flex-wrap: wrap;
}

@media (max-width: 992px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.flex-row > [class^="col-"],
	.flex-row > [class*=" col-"] {
		width: 100%;
		margin-bottom: 40px;
	}
}

/* Header */
.form-search {
	display: none;
	position: fixed;
	z-index: 999999;
	top: 125px;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, .8);
	transition: all .2s;
}
.scroll .form-search {
	top: 85px;
}
.form-search input {
	border: none;
	display: block;
	width: 100%;
	background: none;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	padding: 30px;
	text-align: center;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 8000;	
	background-color: #fff;
	padding: 46px 0;
	box-shadow: 0px 4px 8px 0px #00000033;
	transition: all .2s;
}
.scroll header {
	padding: 26px 0;
}
header .top {
	height: 31px;
	background: #06a7e2;
	color: #fff;
	text-align: right;
	font-size: 16px;
	line-height: 31px;
}
header .top a {
	color: #fff;
	text-decoration: none;
}
header .top .phone {
	float: right;
}
header .top .whatsapp {
	margin-left: 15px;
	padding-left: 15px;
	border-left: 1px solid #0092c7;
}
header .top .whatsapp i {
	color: #00e676;
}
.idiomas {
	position: relative;
	color: #fff;
	margin-left: 44px;
}
.idiomas > a {
	display: flex;
	align-items: center;
	font-size: 17px;
	line-height: 17px;
	font-weight: 500;
}
.idiomas > a i {
	display: block;
	margin-left: 10px;
}
.idiomas > a svg {
	display: block;
	margin-right: 10px;
}
.idiomas a {
	color: #333;
}
.idiomas a:hover {
	text-decoration: none;
}
.idiomas ul {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	right: 0;
	top: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 99;
	transition: all .2s;
}
.idiomas:hover ul {
	opacity: 1;
	visibility: visible;
}
.idiomas ul li {
	display: block;
	padding: 5px 20px;
	text-align: center;
	background-color: #fff;
}
.idiomas ul li:first-child {
	padding-top: 15px;
}
.idiomas ul li:last-child {
	padding-bottom: 15px;
}
.idiomas ul li a {
	display: block;
	color: #333;
	font-size: 17px;
	line-height: 17px;
	font-weight: 500;
	text-align: center;
	padding: 5px 0;
	border-bottom: 1px solid transparent;
	transition: all .2s;
}
.idiomas ul li a:hover {
	text-decoration: none;
	border-color: #BEC400;
}
.idiomas a.activo {
	border-color: #BEC400;
}
header > .container {
	display: flex;
	align-items: center;
}
header .logo img {
	width: 169px;
	height: 33px;
	transition: all .2s;
}
.scroll header .logo img {
	width: 169px;
	height: 33px;
}

header .top .social li a {
	display: block;
}
header .top .social li a:hover {
	animation: rotacion .2s;
}

@media (max-width: 730px) {
	header {
		padding: 26px 0;
	}
	header .logo img {
		width: 169px;
		height: 33px;
	}
}

@keyframes rotacion {
	0%   {transform: rotate(0deg);}
	25%  {transform: rotate(-15deg);}
	50%  {transform: rotate(0deg);}
	75%  {transform: rotate(15deg);}
	100% {transform: rotate(0deg);}
}
/* Fin Header */

/* Menu */
nav.menu {
	margin-left: auto;
	text-align: left;
}
nav.menu .navigation {
	display: flex;
	align-items: center;
}
nav.menu .navigation > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
nav.menu .navigation > ul > li {
	display: block;
	margin-left: 40px;
}
nav.menu .navigation > ul > li a {
	display: block;
	font-size: 17px;
	line-height: 17px;
	font-weight: 500;
	color: #333;
	padding: 7px 0;
	transition: all .2s;
	position: relative;
}
nav.menu .navigation > ul > li span {
	display: block;
	font-size: 17px;
	line-height: 17px;
	font-weight: 500;
	color: #333;
	padding: 7px 0;
	position: relative;
}
nav.menu .navigation > ul > li a:hover {
	text-decoration: none;
}
nav.menu .navigation > ul > li a::after,
nav.menu .navigation > ul > li span::after {
	position: absolute;
	width: 0;
	height: 2px;
	content: '';
	left: 50%;
	bottom: 0;
	background: #BEC400;
	transform: translateX(-50%);
	transition: width .2s;
}
nav.menu .navigation > ul > li span::after,
nav.menu .navigation > ul > li a:hover::after {
	width: 100%;
}
nav.menu .navigation > ul > li.desplegable span::after,
nav.menu .navigation > ul > li.desplegable a:hover::after {
	display: none;
}
nav.menu .navigation > ul > li a i {
	font-size: 18px;
	margin-left: 5px;
}
nav.menu .navigation > ul > li .menu-wrapper {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	top: 80px;
	left: 0;
	width: 100%;
	padding: 45px 0 0 0;
	transition: all .2s;
}
.scroll nav.menu .navigation > ul > li .menu-wrapper {
	top: 60px;
	padding: 25px 0 0 0;
}
nav.menu .navigation > ul > li .menu-wrapper .menu-container {
	background-color: #EDF1F8;
	padding: 0 20px;
	box-shadow: 0px 4px 8px 0px #00000033;
	position: relative;
	overflow: hidden;
}
nav.menu .navigation > ul > li .menu-wrapper .menu-container::before {
	position: absolute;
	content: '';
	top: -8px;
	left: 0;
	width: 100%;
	height: 10px;
	box-shadow: 0px 4px 8px 0px #00000033;
}
nav.menu .navigation > ul > li .menu-wrapper .menu-container .menu-content {
	max-width: 1490px;
	margin: 0 auto;
	padding: 50px 0;
}
.menu-title {
	font-size: 26px;
	line-height: 26px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 23px 0;
}
nav.menu .navigation > ul > li ul.submenu {
	opacity: 0;
	visibility: hidden;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .2s;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	margin: 0 -15px;
}
nav.menu .navigation > ul > li ul.submenu li {
	display: block;
	padding: 0 15px;
}
nav.menu .navigation > ul > li ul.submenu li a {
	display: block;
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	color: #333;
	margin: 0;
	padding: 0;
}
nav.menu .navigation > ul > li ul.submenu li a:hover {

}
nav.menu .navigation > ul > li ul.submenu li a:hover::after {
	display: none;
}
nav.menu .navigation > ul > li ul.submenu li a figure {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 17px;
}
nav.menu .navigation > ul > li ul.submenu li a figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
nav.menu .navigation > ul > li:hover .menu-wrapper {
	opacity: 1;
	visibility: visible;
}
nav.menu .navigation > ul > li:hover ul {
	opacity: 1;
	visibility: visible;
}
.navigation-top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: 25px;
}
.navigation-top > a {
	display: block;
	margin-left: 30px;
}
.navigation-top a svg {
	display: block;
}
.navigation-top > a:hover {
	animation: rotacion .2s;
}

@media (max-width: 1198px) {
	nav.menu .navigation {
		position: fixed;
		top: 0;
		left: 100%;
		width: 100%;
		max-width: 450px;
		height: 100%;
		background: rgba(0, 0, 0, .8);
		overflow: auto;
		z-index: 9;
		padding: 0;
		margin: 0;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		transform: translate3d(0, 0, 0);
		transition: transform 250ms ease;
	}
	body.offcanvas .navigation {
		transform: translate3d(-100%,0,0);
	}
	nav.menu {
		float: none;
		text-align: left;
	}
	nav.menu .navigation > ul {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 20px;
	}
	nav.menu .navigation > ul > li {
		display: block;
		margin: 0;
		padding: 0;
	}
	nav.menu .navigation > ul > li + li {
		border-top: none;
	}
	nav.menu .navigation > ul > li > a,
	nav.menu .navigation > ul > li > span {
		display: block;
		color: #fff;
		border-radius: 0 !important;
		padding: 10px;
		font-size: 25px;
		line-height: 30px;
	}
	nav.menu .navigation > ul > li a:hover,
	nav.menu .navigation > ul > li > span {
		background: #06a7e2;
	}
	nav.menu .navigation > ul > li a::after,
	nav.menu .navigation > ul > li span::after {
		display: none;
	}
	nav.menu .navigation > ul > li ul.submenu {
		position: static;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		overflow: hidden;
		transition: all .2s;
	}
	nav.menu .navigation > ul > li ul.submenu.abierto {
		opacity: 1;
		visibility: visible;
		height: auto;
	}
	nav.menu .navigation > ul > li ul.submenu li {
		background: #0082b2;
		text-align: left;
		padding: 0 !important;
	}
	nav.menu .navigation > ul > li ul.submenu li a {
		display: block;
		color: #fff;
		padding-left: 20px;
	}
	nav.menu .navigation > ul > li ul.submenu li a::before {
		content: '\2022\00a0';
	}
	nav.menu .navigation > ul > li ul.submenu li a:hover::after {
		display: none;
	}
	nav.menu .navigation > ul > li ul.submenu::before {
		display: none;
	}
	nav.menu .navigation > ul > li.desplegable,
	.scroll nav.menu .navigation li.desplegable {
		height: auto;
	}
	nav.menu .navigation > ul > li.desplegable > a > i {
		transform: rotate(0deg);
		transition: all .2s;
	}
	nav.menu .navigation > ul > li.desplegable.abierto > a > i {
		transform: rotate(-180deg);
	}
	#menu-categorias-movil h2 {
		color: #fff;
		font-size: 16px;
		line-height: 16px;
		display: block;
		margin: 0;
		padding: 15px 10px;
		color: #06a7e2;
		background: #f9f9f9;
	}
}
/* Fin menu */

/* Banner */
.banner-principal {
	background-color: #EDF1F8;
	padding: 100px 0 400px 0;
	text-align: center;
	background-image: url(../img/carros.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.banner-principal.banner-profesionales {
	background-image: none;
	padding: 70px 0;
}
.banner-principal h1 {
	max-width: 810px;
	padding: 65px 0 0 0;
	margin: 0 auto 50px auto;
	background-image: url(../svg/hojas.svg);
	background-position: top center;
	background-repeat: no-repeat;
}
.banner-principal p {
	max-width: 810px;
	margin-left: auto;
	margin-right: auto;
}

.banner-interior {
	background-color: #EDF1F8;
	padding: 65px 0;
}
.banner-interior p:last-child {
	margin: 0;
}

#banner-home {
	position: relative;
	width: 100%;
	margin: 125px 0 0 0;
	overflow: hidden;
}
.bxslider {
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	transform: translateX(0%);
	transition: all .2s;
}
.bxslider li {
	display: block;
	flex: 0 0 100%;
	/*position: absolute;*/
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index:-1;
}
.bxslider li.active {
	display:block;
	z-index:0;	
}
.bxslider li img {
	display: block;
	width: 100%;
	height: auto;
}
.bxslider li .banner-claim {
	color: #fff;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: normal;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 35px;
}
.bxslider li .banner-claim.mostrar_capa {
	background: rgba(0, 0, 0, .2);
}
.banner-claim .label {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 20px;
	display: block;
}
.banner-claim .label .banner-title {

}
.banner-claim .label .banner-description {

}
.banner-navigation {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}
.banner-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
.banner-navigation li {
	display: block;
	margin: 0 7px;
}
.banner-navigation li a {
	display: block;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 3px solid #fff;
	border-radius: 50%;
}
.banner-navigation li a:hover {
	background: #666;
}
.banner-navigation li a.active {
	background: #333;
}

@media (max-width: 730px) {
	#banner-home {
		margin-top: 85px;
	}
	.bxslider li .banner-claim {
		font-size: 25px;
		line-height: 30px;
	}
	.banner-claim .label {
		padding: 20px;
	}
	.banner-claim .label::before,
	.banner-claim .label::after {
		display: none;
	}
}
@media (max-width: 480px) {
	.bxslider li .banner-claim {
		font-size: 20px;
		line-height: 25px;
	}
}
/* Fin Banner */

/* Offcanvas */
#btn-offcanvas,
.button-close,
#btn-offcanvas span,
.button-close span {
	display: none;
}
#offcanvas-overlay {
	display: none;
}

@media (max-width: 1198px) {
	.button-close {
		cursor: pointer;
		display: block;
		position: absolute;
		top: 95px;
		right: 24px;
		border: none;
		border-radius: 0;
		background: none;
		color: #fff;
	}
	#btn-offcanvas {
		display: block;
		position: absolute;
		top: 55px;
		right: 20px;
		border: none;
		background: none;
		border-radius: 0;
		cursor: pointer;
		-webkit-appearance: none;
		-webkit-transition: top .2s;
		transition: top .2s;
	}
	.scroll header #btn-offcanvas {
		top: 32px;
	}
	#btn-offcanvas .ico,
	.button-close .ico {
		font-size: 25px;
		vertical-align: middle;
	}
	#offcanvas-overlay {
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		height: 100%;
		background-color: rgba(0,0,0,0.7);
		cursor: pointer;
		z-index: 3;
		overflow: hidden;
	}

	body.offcanvas {
		height: 100%;
		overflow: hidden;
	}	
}

@media (max-width: 730px) {
	#btn-offcanvas {
		top: 32px;
	}
}
/* Fin Offcanvas */

/* main */
main {
	padding-bottom: 100px;
}
.interior main {
	padding-top: 125px;
}
main.padding {
	padding-bottom: 200px;
}
.home main {
	padding-bottom: 0;
}

@media (max-width: 730px) {
	.interior main {
		padding-top: 85px;
	}
}
/* Fin main */

/* Filas */
.bloques-mini__item {
	display: flex;
	padding: 110px 0;
}
.bloques-mini__item.reverse {
	flex-direction: row-reverse;
}
.bloques-mini__item .bloque-mini__text {
	flex: 0 0 55%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 142px 0 20px;
}
.bloques-mini__item .bloque-mini__text p:last-child {
	margin: 0;
}
.bloques-mini__item.reverse .bloque-mini__text {
	padding: 0 20px 0 124px;
}
.bloques-mini__item .bloque-mini__text .bloque-mini__title {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 30px;
}
.bloques-mini__item .bloque-mini__image {
	flex: 0 0 45%;
}
.bloques-mini__item .bloque-mini__image figure {
	display: block;
	border-radius: 26px;
	width: 100%;
	height: 400px;
	overflow: hidden;
}
.bloques-mini__item .bloque-mini__image figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bloques-item {
	display: flex;
	background-color: #EDF1F8;
}
.bloques-item.reverse {
	flex-direction: row-reverse;
}
.bloques-item .bloques-texto {
	display: flex;
	align-items: center;
	flex: 0 0 50%;
	padding: 0 152px 0 20px;
}
.bloques-item.reverse .bloques-texto {
	padding: 0 20px 0 164px;
}
.bloques-item .bloques-foto {
	flex: 0 0 50%;
	background-position: center;
	background-size: cover;
	min-height: 800px;
}
.bloques-item .bloques-texto p:last-child {
	margin: 0;
}
.bloques-item .bloques-texto > div {
	max-width: 500px;
	margin-left: auto;
}
.bloques-item.reverse .bloques-texto > div {
	margin-left: 0;
	margin-right: auto;
}

.tabs {
	display: flex;
	align-items: center;
	margin-bottom: 90px;
}
.tabs .tab {
	margin-right: 10px;
}
.tabs .tab a {
	display: block;
	text-decoration: none;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	color: #333;
	background-color: #EDF1F8;
	border: 1px solid #C2CAD7;
	border-radius: 10px;
	padding: 20px 30px;
	transition: all .2s;
}
.tabs .tab.active a,
.tabs .tab a:hover {
	background-color: #333;
	color: #fff;
	border-color: #333;
}

.fila-home {
	background-color: #EDF1F8;
	border-radius: 26px;
	overflow: hidden;
	display: flex;
	margin-bottom: 100px;
}
.fila-home .fila-home__texto {
	flex: 0 0 52%;
	padding: 20px 140px 20px 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.fila-home .fila-home__texto h2 {
	font-size: 38px;
	line-height: 44px;
	font-weight: 400;
	padding: 0;
	margin: 0 0 25px 0;	
}
.fila-home .fila-home__texto h2 strong {
	font-weight: 700;
}
.fila-home .fila-home__texto p:last-child {
	margin: 0;
}
.fila-home .fila-home__imagen {
	flex: 0 0 48%;	
}
.fila-home .fila-home__imagen figure {
	display: block;
	width: 100%;
	height: 500px;
}
.fila-home .fila-home__imagen figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fila {
	padding: 160px 0;
	display: flex;
	background-color: #fff;
}
.fila.reverse {
	flex-direction: row-reverse;
	background-color: #EDF1F8;
}
.fila .fila-texto {
	display: flex;
	align-items: center;
	flex: 0 0 53%;
	padding: 0 140px 0 20px;
}
.fila.reverse .fila-texto {
	padding: 0 20px 0 155px;
}
.fila-texto.large {
	width: 100%;
}
.fila.large .fila-texto {
	border: none;
}
.fila .fila-texto p:last-child {
	margin: 0;
}
.fila .fila-texto > div {
	max-width: 500px;
	margin-left: auto;
}
.fila.reverse .fila-texto > div {
	margin-left: 0;
	margin-right: auto;
}

.fila .fila-foto {
	flex: 0 0 47%;
}
.fila .fila-foto figure {
	display: block;
	border-radius: 26px;
	overflow: hidden;
	width: 518px;
	height: 400px;
}
.fila.reverse .fila-foto figure {
	margin-left: auto;
}
.fila .fila-foto figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 992px) {
	.fila {
		display: block;
	}
	.fila.reverse {
		flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
	}
	.fila .fila-texto,
	.fila.reverse .fila-texto {
		width: 100%;
		padding: 40px 40px 25px 40px;
		border-left: none;
		border-right: none;
	}
	.fila .fila-foto {
		width: 100%;
		height: 200px;
	}
}
@media (max-width: 580px) {
	.fila .fila-texto,
	.fila.reverse .fila-texto {
		padding: 30px;
	}
	.fila .fila-foto {
		height: 150px;
	}
}
/* Fin filas */

/* Caja */
.box {
	overflow: hidden;
	background: #fff;
	margin-bottom: 20px;
	padding: 45px 50px;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);	
}
.texto-home {
	margin: 50px 0;
}

@media (max-width: 992px) {
	.box {
		padding: 40px;
	}
}

@media (max-width: 580px) {
	.box {
		padding: 30px;
	}
}
/* Fin caja */

/* Textos */
.iconos-envio {
	border-top: 1px solid #C2C8D4;
	padding: 60px 0;	
}
.iconos-envio ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.iconos-envio ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 50px;
}
.iconos-envio ul li div {
	height: 25px;
	margin-bottom: 19px;
}
.iconos-envio ul li svg {
	display: block;
}

.description-wrapper {
	border-top: 1px solid #C2C8D4;
	border-bottom: 1px solid #C2C8D4;
	padding: 110px 0;
}
.description-wrapper p:last-child {
	margin: 0;
}
.description-wrapper h2 {
	font-size: 38px;
	line-height: 38px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 30px 0;
}

.bloque-destacado {
	background-color: #555A6B;
	padding: 120px 0;
}
.bloque-destacado .titular {
	color: #fff;
}

.bloque-home {
	background-color: #EDF1F8;
	padding: 40px 0;
	margin-bottom: 150px;
}
.bloque-home > div {
	display: flex;
	align-items: center;
	justify-content: center;
}
.bloque-home .bloque-home__title {
	display: inline-block;
	font-size: 38px;
	line-height: 38px;
	font-weight: 400;
	padding: 40px 0;
	margin: 0;
	background-image: url(../svg/hojitas.svg);
	background-repeat: no-repeat;
	background-position: right;
}
.bloque-home .bloque-home__title strong {
	font-weight: 700;
}
.bloque-home .button {
	margin-left: 50px;
}

.bloque-video .titular {
	margin-left: auto;
	margin-right: auto;
	max-width: 722px;
	padding-bottom: 30px;
	background-image: url(../svg/subrayado.svg);
	background-repeat: no-repeat;
	background-position: bottom;
}
.bloque {
	padding-top: 140px;
}
.bloque.bloque-padding {
	padding-bottom: 140px;
}
.intro {
	padding-top: 50px;
}
.intro.intro-large {
	padding-top: 70px;
}
.page h2:not(.titular) {
	font-size: 24px;
	line-height: 24px;
	font-weight: 700;
	color: #333;
	padding: 0;
	margin: 0 0 20px 0;
}
.page h3:not(.titular) {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: #333;
	padding: 0;
	margin: 0 0 20px 0;
}
.page blockquote {
	margin: 40px 0;
	background-color: #EDF1F8;
	padding: 40px;
	border-radius: 10px;
}
.page blockquote p:last-child {
	margin: 0;
}
.fila .page h2:not(.titular) {
	margin-bottom: 25px;
}
.page ul,
.page ol {
	margin: 0 0 15px 30px;
}
.page ul ul,
.page ul ol,
.page ol ol,
.page ol ul {
	margin: 10px 0 15px 30px;
}
.page table {
	width: 100%;
	border: 1px solid #ccc;
	border-collapse: collapse;
}
.page table td {
	border: 1px solid #ccc;
	padding: 5px;
	min-width: 200px;
}
.page table thead td {
	background: #eee;
}
.table-container,
.layoutArea .column {
	overflow-x: auto;
}
.titular {
	font-size: 34px;
	line-height: 38px;
	font-weight: 700;
	color: #333;
	padding: 0;
	margin: 0 0 10px 0;
}
.titular.titular-large {
	margin-bottom: 30px;
}
.titular.titular-small {
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 35px;
}
.titular.titular-linea {
	padding-bottom: 20px;
	border-bottom: 1px solid #C2CAD7;
}

#mapa {
	width: 100%;
	height: 486px;
	background-color: #e5e3df;
}

.video-container {
	margin-top: 80px;
}
.bloque-descripcion__gallery .video-container {
	margin: 0;
	border-radius: 26px;
  	overflow: hidden;
}
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
    padding-bottom: 75%;
}

@media (max-width: 992px) {
	.page table td {
		white-space: nowrap;
	}
}

@media (max-width: 767px) {

}
/* Fin textos */

.preguntas-wrapper {
	margin-top: 40px;
}
.preguntas-wrapper .preguntas {
	background-color: #EDF1F8;
	border-radius: 26px;
	padding: 30px 40px;
	cursor: pointer;
	margin-bottom: 10px;
	text-align: left;
}
.preguntas-wrapper .preguntas .pregunta {
	font-size: 17px;
	line-height: 24px;
	font-weight: 500;
	display: flex;
	align-items: center;
}
.preguntas-wrapper .preguntas .pregunta h2,
.preguntas-wrapper .preguntas .pregunta h3 {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
}
.preguntas-wrapper .preguntas .pregunta::after {
	display: block;
	font-family: 'FontAwesome';
	content: '\f107';
	color: #332C22;
	font-size: 22px;
	line-height: 17px;
	font-weight: 400;
	margin-left: auto;
	transform: rotate(0);
	transition: all .2s;
}
.preguntas-wrapper .preguntas.abierto .pregunta::after {
	transform: rotate(-180deg);
}
.preguntas-wrapper .preguntas .respuesta {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
	margin-top: 0;
	transition: all .2s;
}
.preguntas-wrapper .preguntas .respuesta p:last-child {
	margin: 0;
}
.preguntas-wrapper .preguntas.abierto .respuesta {
	opacity: 1;
	visibility: visible;
	height: 100%;
	margin-top: 22px;
}

/* Formularios */
.caja-privacidad {
	font-size: 12px;
	line-height: 16px;
	margin-top: 20px;
}

.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.button-wrapper button {
	margin-left: auto;
}
.agree-label {
	margin: 0;
}
.contact-form {
	max-width: 600px;
	margin: auto;
	padding: 20px 0 0 0;
}
form label {
	font-size: 16px;
	color: #1d1d1b;
	font-weight: normal;
}
.form-group.from-group-website {
	display: none;
}
.form-control {
	border-radius: 10px;
	appearance: none;
	border: 1px solid #8FA0B9;
	padding: 20px;
	margin: 0;
	height: auto;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	color: #333;
	background-color: #fff;
	-webkit-appearance: none;
}
.form-control:focus {
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-color: #8FA0B9;
}
.has-success .form-control,
.has-success .form-control:focus  {
	border-color: #8FA0B9;
}
.has-danger .form-control,
.has-danger .form-control:focus {
	border-color: #d90000;
}
textarea.form-control {
	height: 150px;
	resize: vertical;
}
select.form-control {
	cursor: pointer;
	padding-right: 44px;
	background: #fff url(../svg/select.svg) no-repeat top 50% right 24px;
}
.form-group.relativa label.error {
	top: 10px;
	right: 15px;
}
.pristine-error {
	display: block;
	position: absolute;
	top: 15px;
	right: 20px;
}
.form-group.relativa {
	margin-bottom: 20px;
}
.form-group.relativa .form-control {
	padding: 30px 20px 10px 20px;
}
.form-group.relativa .label {
	position: absolute;
	pointer-events: none;
	top: 22px;
	left: 30px;
	transition: 0.2s ease all;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	color: #333;
}
.form-control:focus ~ .label,
.form-control:not(:placeholder-shown) ~ .label {
	top: 12px;
	left: 30px;
	opacity: 1;
	font-size: 12px;
	line-height: 12px;
	color: #008ecc;
}
.suma-wrapper {
	display: inline-flex;
	align-items: center;
	position: relative;
	margin-right: 20px;
}
.suma-wrapper .suma {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	text-align: right;
	margin-right: 10px;
	white-space: nowrap;
}
.suma-wrapper .suma-input-wrapper {
	width: 70px;
}
.suma-wrapper .suma-input-wrapper input {
	text-align: center;
	padding: 10px;
}
.label-captcha {
	font-size: 12px;
}
.privacidad {
	text-align: right;
	padding-top: 35px;
}

label.cursor {
	cursor: pointer;
}
.flex-label {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.flex-label.flex-label-center {
	justify-content: center;
}
input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	margin: 0 10px 0 0;
	font: inherit;
	color: currentColor;
	width: 24px;
	min-width: 24px;
	height: 24px;
	border: 1px solid #8FA0B9;
	border-radius: 4px;
	cursor: pointer;
}
input[type="checkbox"]::before {
	display: block;
	content: "";
	width: 14px;
	height: 14px;
	background: #333;
	margin: 4px 0 0 4px;
	transform: scale(0);
	border-radius: 4px;
	transition: 120ms transform ease-in-out;
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}

@media (max-width: 992px) {
	.suma {
		text-align: left;
		padding-top: 10px;
	}
	.privacidad {
		padding-top: 0;
		text-align: left;
	}
	
	.button-wrapper {
		flex-direction: column;
		justify-content: center;
	}
	.button-wrapper button {
		margin-left: 0;
	}
	.agree-label {
		margin: 0 0 20px 0;
	}
}
/* Fin formularios */

/* Botones */
.button {
	text-decoration: none;
	border: none;
	appearance: none;
	border-radius: 10px;
	color: #fff;
	background: #333;
	padding: 18px 20px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: 17px;
	line-height: 17px;
	font-weight: 500;
	transition: all .2s;
}
.button::after {
	font-family: 'FontAwesome';
	content: '\f105';
	font-size: 20px;
	margin-left: 10px;	
}
.button.button-icon::after,
.button.button-back::after {
	display: none;
}
.button.button-back::before {
	font-family: 'FontAwesome';
	content: '\f104';
	font-size: 20px;
	margin-right: 10px;
}
.button.button-large {
	width: 100%;
	padding: 22px 20px;
	justify-content: center;
}
.button.button-submit {
	width: 100%;
	justify-content: center;
	padding: 30px;
}
.button > svg {
	display: block;
	margin-left: 12px;
}
.button:hover {
	color: #fff;
	text-decoration: none;
	background: #BEC400;
	font-weight: 500;
}
.button i {
	margin-left: 5px;
	vertical-align: 1px;
}
.button.back i {
	margin-left: 0;
	margin-right: 5px;
}
.button.small {
	padding: 10px;
}
/* Fin botones */

/* Paginacion */
.paginacion {
	overflow: hidden;
	float: right;
	padding-bottom: 20px;
}
.paginacion a,
.paginacion span {
	display: block;
	width: 33px;
	height: 33px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	background-color: #5a6771;
	float: left;
	transition: background-color .2s;
	margin: 0 0 0 7px;
}
.paginacion a:hover,
.paginacion span {
	text-decoration: none;
	background-color: #06a7e2;
}
/* Fin paginacion */

/* Archivos */
.archivos {
	padding: 20px 0;
	overflow: hidden;
	margin: 0 -5px;
}
.archivos .archivo {
	float: left;
}
.archivos .archivo a {
	margin: 0 5px 10px 5px;
}
.archivos .archivo a:hover {
	text-decoration: none;
}
.archivos .archivo svg {
	width: 22px;
	height: 25px;
	vertical-align: -5px;
}

@media (max-width: 560px) {
	.archivos .archivo {
		float: none;
	}
}
/* Fin Archivos */

.blog-listing {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -10px;
}
.blog-listing .blog-listing__item {
	flex: 0 0 33.333333%;
	padding: 10px;
}
.blog-listing .blog-listing__item .blog-listing__link {
	display: block;
	background-color: #EDF1F8;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	color: #333;
	padding: 0 25px 25px 25px;
}
.blog-listing .blog-listing__item .blog-listing__link .blog-listing__image {
	display: block;
	margin: 0 -25px 25px -25px;
}
.blog-listing .blog-listing__item .blog-listing__link .blog-listing__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1, 1);
	transition: all .2s;
}
.blog-listing .blog-listing__item .blog-listing__link:hover .blog-listing__image img {
	transform: scale(1.05, 1.05);
}
.blog-listing .blog-listing__item .blog-listing__link .blog-listing__title {
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
	padding: 0;
	margin: 0 0 20px 0;
}
.blog-listing .blog-listing__item .blog-listing__link .blog-listing__more::after {
	font-family: 'FontAwesome';
	content: '\f105';
	margin-left: 10px;
}
.blog-listing .blog-listing__item .blog-listing__link .blog-listing__more span {
	text-decoration: none;
}
.blog-listing .blog-listing__item .blog-listing__link:hover .blog-listing__more span {
	text-decoration: underline;
}

.category-home-listing {
	display: flex;
	flex-wrap: wrap;
	margin: 25px -10px 0 -10px;
}
.category-home-listing .category-home-listing__item {
	flex: 0 0 20%;
	padding: 10px;
}
.category-home-listing .category-home-listing__item .category-home-listing__link {
	display: block;
	position: relative;
	text-decoration: none;
	color: #fff;
	background-color: #333;
	background-size: cover;
	border-radius: 20px;
	overflow: hidden;
	padding-bottom: 180%;
}
.category-home-listing .category-home-listing__item .category-home-listing__link::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #685D5D80;
}
.category-home-listing .category-home-listing__item .category-home-listing__link .category-home-listing__title {
	position: absolute;
	display: block;
	width: 100%;
	text-align: center;
	bottom: 22px;
	transform: translateY(0);
	transition: all .2s;
}
.category-home-listing .category-home-listing__item .category-home-listing__link:hover .category-home-listing__title {
	transform: translateY(-10px);
}

@media (max-width: 992px) {
	.category-home-listing .category-home-listing__item {
		flex: 0 0 25%;
	}
}

@media (max-width: 767px) {
	.category-home-listing .category-home-listing__item {
		flex: 0 0 33.33333%;
	}
}

@media (max-width: 620px) {
	.category-home-listing .category-home-listing__item {
		flex: 0 0 50%;
	}
}

.category-listing {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.category-listing .category-listing__item {
	flex: 0 0 12.50%;
	padding: 15px;
}
.category-listing .category-listing__item .category-listing__link {
	display: block;
	text-decoration: none;
	color: #333;
}
.category-listing .category-listing__item .category-listing__link .category-listing__image {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 17px;
}
.category-listing .category-listing__item .category-listing__link .category-listing__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.category-listing .category-listing__item .category-listing__link .category-listing__title {
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	margin: 0;
	padding: 0;	
}

.columns {
	display: flex;
	margin-bottom: 170px;
}
.columns .columns-sidebar {
	flex: 0 0 360px;
	margin-right: 80px;
}
.columns .columns-content {
	width: 100%;
}
.content-top {
	display: flex;
	align-items: center;
	margin-top: -20px;
}
.content-top .content-top__left {
	font-weight: 500;
}
.content-top .content-top__right {
	margin-left: auto;
}
.sidebar-title {
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	border-bottom: 1px solid #8FA0B9;
}

.filter-wrapper {
	margin-bottom: 40px;
}
ul.filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.filter-list li {
	padding: 7px 0;
}
ul.filter-list label {
	margin: 0;
	padding: 0;
	font-weight: 600;
}
.rs-container .rs-scale span ins {
	display: none;
}
ul.filter-list li > a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	color: #333;
	text-decoration: none;	
}

/* Slider */
.rs-container {
	margin-top: 45px;
	height: 26px;
	margin-left: 15px;
	margin-right: 15px;
}
.rs-container .rs-selected {
	background-color: #333;
	border: none;
	height: 4px;
	top: 10px;
}
.rs-container .rs-bg,
.rs-container .rs-selected {
	border: none;
	height: 4px;
	top: 10px;
	border-radius: 4px;
}
.rs-container .rs-pointer {
	background-color: #333;
	height: 26px;
	width: 26px;
	border: none;
	box-shadow: none;
	border-radius: 4px;
}
.rs-container .rs-pointer::after,
.rs-container .rs-pointer::before {
	display: none;
}
.rs-tooltip {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	color: #333;
	position: static;
	border: none;
	background: none;
	height: auto;
	min-width: 0;
}
/* Fin Slider */

.cart-listing {
	display: flex;
	margin: 0 -20px;
}
.cart-listing .cart-listing__item {
	flex: 0 0 25%;
	padding: 20px;
}
.cart-listing .cart-listing__item .cart-listing__container {
	display: block;
	text-align: center;
}
.cart-listing .cart-listing__item .cart-listing__link {
	display: block;
	text-decoration: none;
	color: #333333;
	text-decoration: none;
	text-align: center;
}
.cart-listing .cart-listing__item .cart-listing__link .cart-listing__image {
	display: block;
	position: relative;
	padding-bottom: 150%;
	overflow: hidden;
	margin-bottom: 14px;
}
.cart-listing .cart-listing__item .cart-listing__link .cart-listing__image img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	object-fit: contain;
	transform: translate(-50%, -50%) scale(1, 1);
	transition: all .2s;
}
.cart-listing .cart-listing__item .cart-listing__link:hover .cart-listing__image img {
	transform: translate(-50%, -50%) scale(1.05, 1.05);
}
.cart-listing .cart-listing__item .cart-listing__link .cart-listing__title {
	font-size: 16px;
	line-height: 20px;
	font-weight: 800;
	color: #333;
	margin: 0 0 4px 0;
	padding: 0;
}
.cart-listing .cart-listing__item .cart-listing__link .cart-listing__price {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #333;
	padding: 0;
	margin: 0 0 9px 0;
}
.cart-listing .cart-listing__item .cart-listing__link .cart-listing__price span {
	margin: 0 6px;
}
.cart-listing .cart-listing__item .cart-listing__link .cart-listing__price .tachado {
	text-decoration: line-through;
}
.cart-listing .cart-listing__item .cart-listing__link .cart-listing__price .oferta {
	font-weight: 600;
	color: #fff;
}
.cart-listing .cart-listing__item .cart-listing__container .colores {
	list-style: none;
	margin: auto 0 0 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-listing .cart-listing__item .cart-listing__container .colores li {
	display: block;
	margin: 0 3px;
}
.cart-listing .cart-listing__item .cart-listing__container .colores li span {
	display: block;
	cursor: pointer;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #626262;
}
.cart-listing .cart-listing__item .cart-listing__container .colores img {
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
}

@media (max-width: 992px) {
	.cart-listing .cart-listing__item {
		flex: 0 0 33.3333%;
	}
}

@media (max-width: 730px) {
	.cart-listing .cart-listing__item {
		flex: 0 0 50%;
	}
}

.radios-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	overflow: hidden;
	padding: 5px;
}
.radios-wrapper label {
	position: relative;
	display: block;
	margin: 0 10px 10px 0;
	cursor: pointer;
}
.radios-wrapper label input {
	position: absolute;
	left: -500px;
}
.radios-wrapper label input + figure,
.radios-wrapper label input + .option-color {
	display: block;
	position: relative;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	text-indent: -1000px;
	border: 1px solid #626262;
}
.radios-wrapper label input + figure::before,
.radios-wrapper label input + .option-color::before {
	position: absolute;
	content: '';
	left: -5px;
	top: -5px;
	width: 30px;
	height: 30px;
	border: 2px solid transparent;
	border-radius: 50%;
	transition: all .2s;
}
.radios-wrapper label input:checked + figure::before,
.radios-wrapper label input:checked + .option-color::before {
	border: 2px solid #626262;
}
.radios-wrapper label input + figure > span {
	display: none;
}

ul.breadcrumbs {
	list-style: none;
	margin: 40px 0;
	padding: 0;
	display: flex;
	align-items: center;
}
ul.breadcrumbs li {
	display: flex;
	align-items: center;
}
ul.breadcrumbs li::after {
	content: '/';
	margin: 0 5px;
}
ul.breadcrumbs li:last-child::after {
	display: none;
}
ul.breadcrumbs li a {
	display: block;
	color: #333;
	text-decoration: none;
}
ul.breadcrumbs li a:hover {
	text-decoration: underline;
}

.bloque-descrption {
	margin-bottom: 50px;
}

.bloque-descripcion {
	margin-top: 70px;
}
.bloque-descripcion h2 {
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	margin: 0 0 24px 0;
	padding: 0;
}
.bloque-descripcion h3 {
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	margin: 0 0 24px 0;
	padding: 0;
}
.bloque-descripcion + .bloque-descripcion {
	margin-top: 40px;
}
.bloque-descripcion p:last-child {
	margin: 0;
}
.bloque-descripcion ul {
	margin: 0 0 20px 0;
	list-style: none;
}
.bloque-descripcion ul li {
	margin: 0 0 10px 0;
}
.bloque-descripcion ul li::before {
	content: '\2022';
	font-size: 20px;
	margin-right: 5px;
}
.bloque-descripcion ul:last-child {
	margin-bottom: 0;	
}

.productos-detalle {
	display: flex;
	margin-bottom: 150px;
}
.productos-detalle .productos-detalle__image {
	flex: 0 0 650px;
	margin-right: 100px;
}
.productos-detalle .productos-detalle__image a {
	display: block;
}
.productos-detalle .productos-detalle__image figure {
	display: block;
}
.productos-detalle .productos-detalle__image figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.productos-detalle .productos-detalle__text {
	width: 100%;
}
.productos-detalle .productos-detalle__description {
	margin-top: 47px;
}
.productos-detalle .productos-detalle__options {
	margin-top: 47px;
}
.productos-detalle--titular {
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	margin: 0 0 15px 0;
}

.productos-detalle__gallery {
	display: flex;
	margin: 20px 0 0 0;
}
.productos-detalle__gallery .productos-detalle__gallery--item {
	flex: 0 0 25%;
	padding: 10px;
}
.productos-detalle__gallery .productos-detalle__gallery--item a {
	display: block;
	text-decoration: none;
	border: 1px solid #D2D2D2;
	border-radius: 10px;
	overflow: hidden;
}
.productos-detalle__gallery .productos-detalle__gallery--item.productos-detalle__gallery--video a {
	position: relative;
}
.productos-detalle__gallery .productos-detalle__gallery--item.productos-detalle__gallery--video a::after {
	position: absolute;
	content: url(../svg/video.svg);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.productos-detalle__gallery .productos-detalle__gallery--item a figure {
	display: block;
	position: relative;
	padding-bottom: 100%;
}
.productos-detalle__gallery .productos-detalle__gallery--item a figure img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1, 1);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .2s;
}
.productos-detalle__gallery .productos-detalle__gallery--item a:hover figure img {
	transform: translate(-50%, -50%) scale(1.05, 1.05);
}
.productos-detalle__quantities {
	margin-top: 35px;
}
.productos-detalle__cantidades {
	display: flex;
	align-items: center;
}
.productos-detalle__cantidades button {
	appearance: none;
	cursor: pointer;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	background-color: #EDF1F8;
	width: 54px;
	height: 54px;
	border: 1px solid #8FA0B9;
}
.productos-detalle__cantidades button svg {
	display: block;
}
.productos-detalle__cantidades button.button-less {
	border-radius: 10px 0 0 10px;
}
.productos-detalle__cantidades button.button-more {
	border-radius: 0 10px 10px 0;
}
.productos-detalle__cantidades input {
	border: none;
	border-top: 1px solid #8FA0B9;
	border-bottom: 1px solid #8FA0B9;
	background: none;
	background-color: #fff;
	text-align: center;
	width: 54px;
	height: 54px;
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: #333;
}

.productos-detalle__buttons {
	margin-top: 45px;
	display: flex;
	align-items: flex-end;
}
.productos-detalle__buttons .productos-detalle__precios {
	flex: 0 0 40%;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
}
.productos-detalle__buttons .productos-detalle__precios > span {
	display: block;
	margin-top: 10px;
}
.productos-detalle__buttons .productos-detalle__precios .price {
	font-size: 32px;
	line-height: 32px;
	font-weight: 700;
	color: #333;
}
.productos-detalle__buttons > button {
	margin-left: auto;
}

.productos-detalle__availability {
	margin-top: 25px;
	display: flex;
	align-items: center;
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.productos-detalle__availability svg {
	display: block;
	margin-right: 10px;
}
.productos-detalle__availability.productos-detalle__availability--ok {
	color: #5DBA00;
}

.icon-list {
	list-style: none;
	margin: 70px 0 0 0;
	padding: 0;
}
.icon-list li {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}
.icon-list li svg {
	display: block;
	margin-right: 20px;
}

.bloque-descripcion__columns {
	display: flex;
}
.bloque-descripcion__columns .bloque-descripcion__columns--left {
	flex: 0 0 283px;
	margin-right: 186px;
}
.bloque-descripcion__columns .bloque-descripcion__columns--left figure {
	display: block;
}
.bloque-descripcion__columns .bloque-descripcion__columns--left figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bloque-descripcion__columns .bloque-descripcion__columns--right {
	width: 100%;	
}
.bloque-descripcion__gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -10px 0 -10px;
}
.bloque-descripcion__gallery + .bloque-descripcion__gallery {
	margin-top: 0;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item {
	flex: 0 0 33.33333%;
	padding: 10px;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item:nth-child(4) {
	flex: 0 0 66.66666%;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item.bloque-descripcion__gallery--video {
	flex: 0 0 100%;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item a {
	display: block;
	position: relative;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item.bloque-descripcion__gallery--video a::after {
	position: absolute;
	content: url(../svg/video.svg);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item a > span {
	display: block;
	position: absolute;
	left: 20px;
	bottom: 18px;
	background-color: #333333;
	border-radius: 8px;
	padding: 11px;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	color: #fff;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item a figure {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 115%;
	border-radius: 26px;
	overflow: hidden;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item:nth-child(4) a figure {
	padding-bottom: 55.8%;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item.bloque-descripcion__gallery--video a figure {
	padding-bottom: 54%;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item a figure img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%) scale(1, 1);
	transition: all .2s;
}
.bloque-descripcion__gallery .bloque-descripcion__gallery--item a:hover figure img {
	transform: translate(-50%, -50%) scale(1.05, 1.05);
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	z-index: 9000;
	background: rgba(0, 0, 0, .7);
}
.overlay .popup {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 90%;
	min-width: 350px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 10px;
	padding: 25px;
	text-align: center;
}

/* Items (Galerias, Noticias) */
a.img-responsive {
	display: block;
	margin: 20px auto;
	width: auto;
}
a.img-responsive img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
	margin: 0 -10px;
}
.gallery .gallery-item {
	flex: 0 0 33.3333%;
	padding: 10px;
}
.gallery .gallery-item a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}
.gallery .gallery-item a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1, 1);
	transition: all .2s;
}
.gallery .gallery-item a:hover img {
	transform: scale(1.05, 1.05);
}

.items,
.galerias {
	padding-bottom: 20px;
}
.galerias [class^="col-"],
.galerias [class*=" col-"],
.items [class^="col-"],
.items [class*=" col-"] {
	padding-bottom: 20px;
}
.galerias a {
	display: block;
	overflow: hidden;
}
.galerias a img {
	transition: transform .2s;
}
.galerias a:hover img {
	transform: scale(1.1, 1.1);
}
.items .item {
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);	
}
.items .item a {
	color: #1d1d1b;
	text-decoration: none !important;
}
.items .item figure {
	position: relative;
	overflow: hidden;
}
.items .item a figure img {
	transition: transform .2s;
}
.items .item a:hover figure img {
	transform: scale(1.1, 1.1);
}
.items .item .texto {
	background: #fff;
	text-align: center;
	padding: 20px;
	height: 90px;
	overflow: hidden;
}
.items .item.noticia .texto {
	text-align: left;
	height: auto;
}
.items .item .texto h3 {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 23px;
	color: #1d1d1b;
	font-weight: normal;
	height: 50px;
	overflow: hidden;
}
.items .item.noticia .texto h3 {
	margin-bottom: 15px;
}

@media (max-width: 560px) {
	.galerias [class^="col-"],
	.galerias [class*=" col-"],
	.items [class^="col-"],
	.items [class*=" col-"] {
		width: 100%;
	}
	.items .item .texto,
	.items .item .texto h3 {
		height: auto;
	}
}
/* Fin Items */

/* INSTAGRAM POPUP BOF */
body.popup {
	overflow-y: hidden;
    height: 100%;
}
.instagram_overlay {
	display: none;
	position: fixed;
	background: #fff;
	width: 100%;
	height: 100%;
	z-index: 9999;
	top: 0;
	left: 0;
}
.instagram_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -495px;
    margin-top: -300px;
    width: 990px;
    height: 600px;
    display: block;
    font-family: 'Georgia';
    text-align: left;
}
.instagram_close {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 30px;
    height: 30px;
    border: 0;
    outline: none;
    z-index: 9999;
	background-color: transparent;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23171717%22%20transform%3D%22translate%28-.438%20-.387%29%22%3E%3Crect%20width%3D%221%22%20height%3D%2237.824%22%20x%3D%2215.161%22%20y%3D%22-3.573%22%20transform%3D%22rotate%2845%2015.339%2015.339%29%22%2F%3E%3Crect%20width%3D%2237.824%22%20height%3D%221%22%20x%3D%22-3.573%22%20y%3D%2215.161%22%20transform%3D%22rotate%2845%2015.339%2015.339%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}
.instagram_foto {
	float:left;
	width: 600px;
	height: 600px;
	/*background: #eee;*/
	text-align: center;
}
.instagram_foto img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.instagram_content {
    margin-top: px;
    height: auto;
    margin-top: 0;
    height: 600px;
    overflow: hidden;

    width: calc(100% - 600px);
    height: 600px;
    padding-left: 42px;
}
.instagram_content .user_data {
    position: relative;
    width: 332px;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 24px;
    height: 50px;
}
.userImage {
    width: 33px;
    height: 33px;
    display: inline-block;
}
.userImage img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(23, 23, 23, 0.07);
}
.userInfo {
	height: 33px;
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 38px);
	padding-left: 4px;
}
.userInfo p {
    margin: 0;
    height: 16.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 100% !important;
}
.userInfo p:first-child {
    vertical-align: top;
}
.userInfo p:last-child {
    vertical-align: bottom;
}
.go-to-instagram {
    position: absolute;
    top: 20px;
    right: 2px;
    transform: translateY(-50%);
}
.mediaInfo {
    margin: 10px 0;
    color: #666;
}
.mediaInfo > div:not(:last-child) {
    padding-right: 8px;
}
.mediaInfo > div {
    display: inline-block;
    width: auto;
    height: 16px;
}
.mediaInfo > div > i {
    display: inline-block;
    width: 16px;
    height: 14px;
    background-size: 16px auto;
    background-position: center center;
    vertical-align: top;
}
.mediaInfo > div.mediaCommentsCount i {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2217px%22%20height%3D%2215px%22%20viewBox%3D%220%200%2017%2015%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate%28-211.000000%2C%20-2140.000000%29%22%20fill-rule%3D%22nonzero%22%20fill%3D%22%23171717%22%3E%3Cpath%20d%3D%22M211.559672%2C2148.1844%20C211.112418%2C2145.11543%20213.268112%2C2142.21606%20216.453651%2C2141.0071%20C219.852148%2C2139.76935%20223.649331%2C2140.82921%20225.481666%2C2143.70372%20C226.766506%2C2145.68337%20226.98237%2C2148.42928%20226.044193%2C2150.62286%20C226.200392%2C2151.01185%20226.371256%2C2151.41013%20226.616208%2C2151.96395%20C226.660696%2C2152.06453%20226.843302%2C2152.47601%20226.889935%2C2152.58145%20C227.088118%2C2153.02957%20227.230628%2C2153.35897%20227.369772%2C2153.69443%20L227.752999%2C2154.61833%20L226.783989%2C2154.37039%20C225.638035%2C2154.07719%20225.012213%2C2153.92465%20223.083889%2C2153.46255%20C217.999092%2C2155.56274%20212.253425%2C2153.37119%20211.559672%2C2148.1844%20Z%20M223.157316%2C2152.45183%20C223.23192%2C2152.46971%20223.23192%2C2152.46971%20223.283245%2C2152.48201%20C224.63417%2C2152.80573%20225.353055%2C2152.97918%20226.04905%2C2153.15286%20C226.025363%2C2153.09905%20226.000846%2C2153.04349%20225.975384%2C2152.98592%20C225.929091%2C2152.88125%20225.746494%2C2152.46979%20225.70167%2C2152.36845%20C225.410672%2C2151.71053%20225.22094%2C2151.26485%20225.036207%2C2150.7939%20L224.957813%2C2150.59404%20L225.048727%2C2150.39957%20C225.943076%2C2148.48643%20225.778569%2C2145.99802%20224.640634%2C2144.24469%20C223.071203%2C2141.78264%20219.773587%2C2140.86222%20216.802176%2C2141.94437%20C214.026223%2C2142.99794%20212.176879%2C2145.48526%20212.550031%2C2148.046%20C213.151869%2C2152.54537%20218.267897%2C2154.45258%20222.842678%2C2152.47895%20L223.157316%2C2152.45183%20Z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.mediaInfo > div.mediaLikesCount i {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2015%22%20height%3D%2215%22%20width%3D%2217%22%20data-type%3D%22tint%22%3E%3Cg%3E%3Cpath%20d%3D%22M6.762%2012.224c-.581-.449-1.089-.816-2.253-1.64-.093-.07-.44-.325-.483-.356-.629-.464-.99-.773-1.29-1.13C1.78%207.952%201.33%206.382%201.56%204.913c.353-1.936%202.116-3.523%203.85-3.408.978.061%202.15.757%202.623%201.593l.412.731.446-.71c.539-.858%201.726-1.553%202.698-1.614%201.735-.115%203.499%201.472%203.854%203.42l.984-.179c-.442-2.421-2.63-4.39-4.902-4.239-1.064.067-2.26.669-3.043%201.514C7.734%201.178%206.545.575%205.474.508c-2.272-.15-4.46%201.818-4.9%204.239C.296%206.516.829%208.376%201.97%209.739c.363.435.773.785%201.462%201.293l.49.36c1.162.824%201.662%201.186%202.245%201.636l1.755%201.243.053.033c-.165-.087.28.196.493.196.213%200%20.658-.283.492-.195.923-.65.923-.65%201.792-1.265%201.165-.824%201.673-1.192%202.27-1.653l.482-.355c.689-.508%201.099-.858%201.462-1.293%201.18-1.326%201.745-3.254%201.462-4.983l-.987.161c.235%201.432-.242%203.056-1.232%204.17-.308.368-.67.677-1.299%201.14l-.492.363c-.59.456-1.09.818-2.244%201.634l-1.707%201.21-1.705-1.21z%22%20fill%3D%22%23171717%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.mediaInfo > div > div {
    display: inline-block;
    font-size: 14px;
    line-height: 14px !important;
    padding-left: 2px;
}
.scrollbarComments {
	font-family: 'Georgia';
}
.description p {
	font-family: 'Georgia' !important;
    margin: 0;
    line-height: 1.4 !important;
    color: #555;
}
.description p a {
	color: #003569;
	text-decoration: none;
}
.userName {
	font-weight: bold;
	color: #222;
}

.instagram {
	overflow: hidden;
}
.instagram i {
	font-size: 32px;
	color: #030303;
}
.instagram h3 {
	font-size: 22px;
	line-height: 22px;
	text-transform: uppercase;
	color: #1d1d1b;
	margin: 2px 0 0 0;
	padding: 0;
	font-weight: bold;
}
.instagram p.user {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 20px 0;
}
.instagram .instagram-item {
	display: block;
	float: left;
	width: 25%;
	padding: 0;
}
.instagram .instagram-item a {
    display: block;
    position: relative;
    padding-bottom: 100%;
    cursor: pointer;
    overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	text-decoration: none !important;
}
.instagram .instagram-item a div.label {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.7);
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 10px 30px;
	transition: opacity .2s, visibility .2s;
}
.instagram .instagram-item a:hover div.label {
	opacity: 1;
	visibility: visible;
}
.instagram .meta {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	line-height: 20px;
}
.instagram .meta .likes,
.instagram .meta .comments {
	margin: 0 10px;
}
.instagram .meta span {
	vertical-align: 5px;
}

@media (max-width: 767px) {
	.instagram_overlay {
	    overflow: auto;
	    -webkit-overflow-scrolling: touch;
	}
	.instagram_popup {
		top: 50px;
	    left: 0;
	    margin-left: 0;
	    margin-top: 0;
	    width: 100%;
	    height: auto;
	    padding: 20px;
	}
	.instagram_foto {
		float: none;
		width: 100%;
		height: auto;
	}
	.instagram_content {
		float: none;
		width: 100%;
		height: 100%;
		padding-left: 0;
	}
	.instagram_content .user_data {
		width: 100%;
		margin-top: 20px;
	}
	.mediaInfo {
		width: 100%;
	}
	.instagram_close {
		top: 20px;
		right: 20px;
	}
}
@media (max-width: 560px) {
	.instagram .instagram-item {
		width: 50%;
	}
}
/* INSTAGRAM POPUP EOF */

/* Instagram */
.instagram-title {
	margin-top: 200px;
	margin-bottom: 25px;
	padding-left: 55px;
	background: url(../img/instagram.png) no-repeat top left;
}
.instagram a {
	color: #0c73f0;
}
/* Fin instagram */

/* Newsletter */
.newsletter-wrapper {
	background-color: #EDF1F8;
	padding: 80px 0;
}
.newsletter-wrapper .newsletter-title {
	font-size: 38px;
	line-height: 38px;
	font-weight: 700;
	color: #333;
	padding: 110px 0 0 0;
	margin: 0 0 20px 0;
	background-image: url(../svg/newsletter.svg);
	background-repeat: no-repeat;
	background-position: top center;
}
.newsletter-wrapper form {
	max-width: 780px;
	margin: 0 auto;
}

.newsletter {
	text-align: center;
	margin-top: 140px;
}
.newsletter-titulo {
	position: relative;
	padding-top: 90px;
	margin-bottom: 30px;
}
.newsletter-titulo h3 {
	text-transform: uppercase;
	margin-bottom: 5px;
}
.newsletter-titulo h4 {
	font-weight: normal;
}
.newsletter-titulo::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 124px;
	background-image: url(../img/img-newsletter.jpg);
	background-repeat: no-repeat;
	background-position: 60% 0;
}
.newsletter-fields {
	position: relative;
}
.newsletter-fields label.error {
    top: 12px;
}
.newsletter-controles {
	max-width: 740px;
	margin: auto;
}
.newsletter-options {
	position: relative;
	padding: 20px 0;
	vertical-align: middle;
	border-bottom: 1px dotted #CCC;
	margin-bottom: 20px;
}
.newsletter-options p {
	position: relative;
	font-size: 13px;
	display: inline-block;
	max-width: 300px;
	vertical-align: middle;
	text-align: right;
	line-height: 1.1em;
	margin: 0 8px 0 0;
	padding-right: 15px;
}
.newsletter-options p::after,
.newsletter-options p::before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.newsletter-options p::after {
	border-color: rgba(255, 255, 255, 0);
	border-left-color: #ffffff;
	border-width: 6px;
	margin-top: -6px;
}
.newsletter-options p::before {
	border-color: rgba(40, 40, 40, 0);
	border-left-color: #282828;
	border-width: 9px;
	margin-top: -9px;
}
.newsletter-options .btn-refresh {
	width: auto;
	height: 50px;
}
.newsletter-options .form-control {
	display: inline-block;
	max-width: 100px;
	margin-left: 15px;
	text-align: center;
}
.newsletter-controles .newsletter-checkbox {
	margin-bottom: 15px;
	position: relative;
}
.newsletter-controles .newsletter-checkbox label.error {
	top: 0;
}

@media (max-width: 991px) {
	.newsletter-titulo {
		padding-top: 130px;
	}
	.newsletter-titulo::before {
		left: 50%;
		margin-left: -47px;
		width: 95px;
		background-position: 100% 0;
	}

}

@media (max-width: 580px) {
	.newsletter-options p {
		display: block;
		max-width: none;
		text-align: center;
		margin: 0 0 25px 0;
		padding: 0 0 8px 0;
	}
	.newsletter-options p::after,
	.newsletter-options p::before {
		top: 100%;
		left: 50%;
	}
	.newsletter-options p::after {
		border-top-color: #ffffff;
		border-left-color: transparent;
		margin-top: 0;
		margin-left: -6px;
	}
	.newsletter-options p::before {
		border-left-color: transparent;
		border-top-color: #282828;
		margin-left: -9px;
		margin-top: 0;
	}
}
/* Fin newsletter */

/* Footer */
.prefooter {
	background-color: #D2D808;
	padding: 55px 0;
	font-size: 38px;
	line-height: 44px;
	font-weight: 700;
}
.prefooter .container > div {
	max-width: 701px;
	margin: 0 auto;
}

.button-whatsapp {
	position: fixed;
	opacity: 0;
	bottom: 28px;
	right: 28px;
	display: block;
	width: 0;
	height: 0;
	transition: all .2s;
}
.button-whatsapp.visible {
	opacity: 1;
	width: 56px;
	height: 56px;
}
.button-whatsapp.visible:hover {
	opacity: .5;
}
.button-whatsapp svg {
	display: block;
	width: 100%;
	height: 100%;
}

footer .copy {
	margin-top: 40px;
	font-size: 16px;
	line-height: 16px;
	max-width: 349px;
}
footer {
	margin-top: auto;
	background: #333;
}
footer > .container {
	padding-top: 124px;
	padding-bottom: 40px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	color: #fff;
}
footer .container img.logo-svg {
	display: block;
	width: 169px;
	height: 33px;
}
footer .columna-pie {
	margin-left: 80px;
}
footer .columna-pie.first {
	margin-left: 0;
	margin-right: auto;
}
footer .phone {
	display: flex;
	align-items: center;
	margin-top: 100px;
}
footer .phone a {
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
}
footer .phone svg {
	display: block;
	margin-right: 17px;
	margin-left: 4px;
}
footer .address {
	margin-top: 26px;
	display: flex;
	align-items: center;
	font-weight: 15px;
	line-height: 18px;
	font-weight: 500;
}
footer .address svg {
	display: block;
	margin-right: 20px;
	margin-left: 7px;
}
footer .contact {
	display: flex;
	align-items: center;
	margin-top: 25px;
}
footer .contact a {
	font-size: 15px;
	line-height: 18px;
	font-weight: 500;
	text-decoration: underline;
}
footer .contact a:hover {
	text-decoration: none;
}
footer .contact svg {
	display: block;
	margin-right: 12px;
}
footer .columna-pie ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer .columna-pie ul li {
	margin-bottom: 8px;
}
footer .columna-pie ul li a {
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
}
footer .columna-pie a {
	color: #fff;
}

footer ul.social {
	list-style: none;
	margin: 0;
	padding: 0 0 50px 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-bottom: 1px solid #7D7D7D;
}
footer ul.social li {
	margin-left: 23px;
}
footer ul.social li a {
	display: block;
}
footer ul.social li a svg {
	display: block;
}
footer ul.social li a:hover {
	animation: rotacion .2s;
}

.logos-pie {
	padding-top: 40px;
	padding-bottom: 120px;
}

.logos-kit {
	list-style: none;
	margin: 0 -10px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.logos-kit li {
	margin: 10px;
}
.logos-kit li img {
	display: block;
}

.footer-title {
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	color: #D2D808;
	margin-bottom: 23px;
}

@media (max-width: 992px) {
	footer .columna-pie {
		text-align: center;
		float: none;
		border-left: none;
		padding: 0 0 15px 0;
	}
	footer .columna-pie.first {
		padding-bottom: 20px;
	}
	footer .social {
		float: none;
		padding: 0;
	}
	.button-whatsapp {
		bottom: 22px;
		right: 22px;
	}
}
/* Fin footer */

.alerta {
	z-index: 9999;
}
.alerta::before {
	position: absolute;
	font-family: 'FontAwesome';
	content: '\f00d';
	color: #fff;
	top: 16px;
	right: 20px;
	border: 2px solid #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	text-align: center;
	font-size: 18px;
	line-height: 25px;
	cursor: pointer;
}

.appearance {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
 }
.appearance.view {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
 .appearance.enter {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: all 1.5s cubic-bezier(0.06, 0.49, 0, 1);
}

/* Powered */
.powered {
    position: absolute;
    display: block;
    right: 10px;
    top: 32px;
    width: 45px;
    height: 18px;
    overflow: hidden;
    -webkit-transition: width .3s;
    transition: width .3s;

	display: none;
}
.powered span {
	display: none;
}
.powered-svg {
    position: absolute;
    top: 0;
    right: 0;
    height: 18px;
    fill: #AEBAC7;
    -webkit-transition: right .3s, fill .5s;
    transition: right .3s, fill .5s;
}
.powered .texto {
    opacity: 0;
    -webkit-transition: opacity .7s;
    transition: opacity .7s;
}
.powered .simbolo {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
}
.powered .simbolo_ee,
.powered .simbolo_b {
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
}
.powered .simbolo_a {
    -webkit-transform: translateX(37px);
    transform: translateX(37px);
}
.powered .simbolo_e {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}
.powered .simbolo_d {
    opacity: 1;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}
.powered .simbolo_l {
    opacity: 1;
    -webkit-transform: translateX(37px);
    transform: translateX(37px);
}
.powered .simbolo_w {
    opacity: 1;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
}
.powered .simbolo_punto {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media (min-width: 993px) {
	.powered:hover {
	    width: 171px;
	}
	.powered:hover .powered-svg {
	    fill: #1D1D1B;
	}
	.powered:hover .simbolo {
	    opacity: 1;
	    -webkit-transform: translateX(4px);
	    transform: translateX(4px);
	}
	.powered:hover .simbolo_punto {
	    opacity: 0;
	    -webkit-transform: translateX(4px);
	    transform: translateX(4px);
	}
	.powered:hover .texto {
	    opacity: 1;
	}
}

@media (max-width: 992px) {
    .powered {
        position: relative;
        margin-top: 10px;
		top: 0;
		right: 0;
    }
    .separador {
        float: none;
        border-left: none;
        margin-left: 0;
        padding: 10px 0 10px 0;
    }
    .pie-cierre ul.legal {
        float: none;
        border: none;
        margin-left: 0;
        padding: 10px 0 10px 0;
    }
}

.powered.fijado {
    width: auto;
}
.powered.fijado .powered-svg {
    position: static;
    top: auto;
    right: auto;
}
.powered.fijado .texto {
    opacity: 1;
}
.powered.fijado .simbolo {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.powered.fijado:hover {
    width: auto;
}
.powered.fijado:hover .powered-svg {
    right: auto;
    fill: #ffe1e1;
}
/* Fin Powered */

.flechas-pasarela {
  animation: flechas-animadas 1s infinite;
}
.tarjeta-pasarela {
  animation: girar-tarjeta 1s infinite;   
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 45px;
}
.lds-ellipsis div {
  position: absolute;
  top: 15px;
  width: 21px;
  height: 21px;
  border: 5px solid #E8E8E8;
  border-radius: 50%;
  background: #E8E8E8;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(4) {
  left: 0;
  background: #14a6df;
  animation: lds-ellipsis1 1.8s infinite;
}
.lds-ellipsis div:nth-child(1) {
  left: 0;
}
.lds-ellipsis div:nth-child(2) {
  left: 28px;
}
.lds-ellipsis div:nth-child(3) {
  left: 55px;
}

.shake-element {
	animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: translate(28px, 0);
  }
  75% {
    transform: translate(56px, 0);
  }
  100% {
    transform: translate(56px, 0) scale(0);
  }
}

@keyframes flechas-animadas {
  0% {
    transform: rotate(0);
    transform-origin: 50% 50%;
  }
  100% {
    transform: rotate(-360deg);
    transform-origin: 50% 50%;
  }
}

@keyframes girar-tarjeta {
  0% {
    transform: rotateY(0);
    transform-origin: 50% 50%;
  }
  50% {
    transform: rotateY(180deg);
    transform-origin: 50% 50%;
  }
  100% {
    transform: rotateY(0);
    transform-origin: 50% 50%;
  }
}

/* Carrito */
a.carrito,
a.user {
    float: right;
    color: #fff;
    font-size: 30px;
    position: relative;
    margin-top: 25px;
}
a.user {
    margin-left: 15px;
}
a.carrito .badge {
    position: absolute;
    font-size: 10px;
    top: -5px;
    right: -5px;
    background: #f00;
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
}
.carrito-info {
    clear: both;
    margin: 20px 0 0 0;
    border: 1px solid #d32424;
    color: #d32424;
    background: #fff1f1;
    padding: 15px 20px 5px 20px;
}
.texto-modificar-compra {
    float:left;
    font-size: 14px;
}
.carrito-botonera .btn-back {
    display: inline-block;
    color: #eee;
    background: #333;
    padding: 10px 20px;
    text-decoration: none;
    float: left;
    margin-top: 15px;
}
.carrito-botonera .btn-back:hover {
    background: #444;
}
.carrito-botonera .btn-back:before {
    content: '';
    display: inline-block;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    border-right: 6px solid;
    width: 0;
    height: 0;
    vertical-align: -1px;
    margin-right: 8px;
    color: #eee;
}
.borrar {
    width: 15px;
    height: auto;
}
.tbl-carrito {
    width: 100%;
    border: 1px solid #C2CAD7;
    border-collapse: collapse;
}
.tbl-carrito thead td {
    font-size: 16px;
    font-weight: 700;   
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-top: 1px solid #C2CAD7;
    border-bottom: 1px solid #C2CAD7;
    background: #EDF1F8;
}
.tbl-carrito thead td div {
    padding: 15px 10px;
    margin: 0;
}
.tbl-carrito thead td.image {
    width: 100px;
    text-align: center;
}
.tbl-carrito thead td.name {
    text-align: left;
}
.tbl-carrito thead td.quantity {
    width: 140px;
}
.tbl-carrito thead td.price {
    width: 125px;
    text-align: right;
}
.tbl-carrito thead td.total {
    width: 125px;
    text-align: right;
}
.tbl-carrito thead td.total div {
    padding-right: 30px;
}
.tbl-carrito thead td.remove {
    width: 90px;
    text-align: center;
}
.tbl-carrito td.name {
    line-height: 15px;
}
.tbl-carrito td.name a {
    line-height: 20px;
}
.btn-carrito {
    border:none;
    background:none;    
}
.tbl-carrito tbody > tr:nth-of-type(odd) {
    /*background-color: #EDF1F8;*/
}
.tbl-carrito tbody td {
    padding: 15px 0;
    border-bottom: 1px solid #C2CAD7;
}
.tbl-carrito tbody td.name {
    padding-left: 15px;
}
.tbl-carrito tbody td.name a {
	display: block;
    text-decoration: none;
	color: #333;
	margin-bottom: 5px;
}
.tbl-carrito tbody td.name .referencia {
	display: block;
	margin-bottom: 5px;
}
.tbl-carrito tbody td.remove {
    text-align: center;
}
.tbl-carrito tbody td.remove a {
    display: inline-block;
    color: #b4b1ae;
}
.tbl-carrito tbody td.remove a:hover {
    color: #000;
}
.tbl-carrito tbody td.remove span {
    display: none;
}
.tbl-carrito tbody td.image {
    padding-left: 0;
    padding-right: 0;
}
.tbl-carrito tbody td.image img {
    margin: auto;
    border: 1px solid #dedede;
}
.tbl-carrito tbody td.quantity {
    text-align: center;
}
.tbl-carrito tbody td.quantity .form-control {
    display: block;
    float: left;
    width: 53px;
	border-radius: 0;
    height: 43px;
    border: none;
    background-color: #fff;
    text-align: center;
    border: 1px solid #b6b6b6;
    font-size: 16px;
    font-weight: normal;
    color: #606060;
    border-left: none;
    border-right: none;
}
.tbl-carrito tbody td.price,
.tbl-carrito tbody td.total {
    text-align: right;
    padding-right: 10px;
}
.tbl-carrito tbody td.total {
    padding-right: 30px;
}
.tbl-carrito .lnk-producto {
    font-weight: 700;
    color: #4b4b4b;
}
.quantity-ctrl {
    display: inline-block;
}
.quantity-ctrl form {
    display: inline-block;
}
.btns-carrito {
    display: block;
    float: right;
}
.btns-carrito a {
    width: 17px;
    height: 18px;
    display: block;
    color: #fff;
    background-color: #aaa6a3;
    font-size: 11px;
    margin: 0 0 3px 3px;
    line-height: 18px;
}
.btns-carrito a:hover,
.btns-carrito a:active,
.btns-carrito a:focus {
    background-color: #000008;
}
.quantity-ctrl .form-control {
    display: block;
    float: left;
}
.bloque-medidas {
    padding-top: 20px;
}
.bloque-medidas,
.bloque-medidas label {
    font-size: 15px;
}
.bloque-medidas label.cursor {
    font-weight: bold;
    padding-bottom: 10px;
}
.capa-medidas {
    display: none;
    padding-bottom: 20px;
}
.capa-medidas.abierto {
    display: block;
}
.form-control.medidas {
    display: inline-block;
    width: 60px;
    margin-left: 5px;
    margin-right: 5px;
    text-align: right;
    padding: 5px 10px;
}
.carrito-resumen {
    background: #EDF1F8;
    padding: 25px 30px;
    border-left: 1px solid #C2CAD7;
    border-right: 1px solid #C2CAD7;
    border-bottom: 1px solid #C2CAD7;
    overflow: hidden;
}
.carrito-cupon {
    float: left;
}
.carrito-cupon form {
    overflow: hidden;
}
.carrito-cupon input {
    float: left;
}
.carrito-cupon input.form-control {
    width: 200px;
}
.carrito-portes {
    float: left;
    font-size: 15px;
    line-height: 18px;
}
.carrito-portes ul {
    margin: 10px 0 0 20px;
}
.carrito-importes {
    float: right;
    color: #55514d;
}
.carrito-resumen .totales .term {
    display: inline-block;
    text-align: right;
    font-weight: 400;
}
.carrito-resumen .totales .importe {
    font-size: 17px;
    font-weight: 400;   
    display: inline-block;
    min-width: 130px;
    text-align: right;
    float: right;
}
.carrito-resumen .totales.total {
    padding-top: 20px;
}
.carrito-resumen .totales.total .term {
    font-weight: 700;
}
.carrito-resumen .totales.total .importe {
    font-size: 22px;
    font-weight: 700;   
}
.carrito-resumen .iva {
    color: #999;
    text-align: right;
    font-size: 14px;
    padding-top: 5px;
}
.carrito-botonera {
    overflow: hidden;
    margin-top: 20px;
}
.carrito-botonera .btn-checkout {
    float: right;
}
.carrito-botonera .btn-checkout.block {
    display:block;
    float: none;
    width:100%;
}
.quantity-ctrl button {
    display: block;
    float: left;
    width: 43px;
    height: 43px;
    border: none;
    background: none;
    text-align: center;
    border: 1px solid #8FA0B9;
    font-size: 20px;
    font-weight: bold;
	background-color: #EDF1F8;
    color: #606060;
}
.btn-carrito-mas {
	border-radius: 0 10px 10px 0;
    width: 43px;
    cursor: pointer;
    border-right: none;
}
.btn-carrito-menos {
	border-radius: 10px 0 0 10px;
    width: 43px;
    cursor: pointer;
    border-left: none;
}
.btn-carrito-mas svg,
.btn-carrito-menos svg {
    width: 11px;
    height: auto;
    margin-top: 3px;
}
.btn-accion {
    margin-top: 18px;
}

.show-container {
    border: 1px solid #C2CAD7;
	border-radius: 10px;
    padding: 12px 15px;
    background: none;
    width: 400px;
    margin: 0 auto 10px auto;
}
.show-link {
    cursor: pointer;
    padding: 0;
    font-weight: 600;
    position: relative;
}
.show-link svg.logo-camion {
    vertical-align: -3px;
    margin-right: 5px;
}
.show-link i,
.show-link svg.flecha {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    margin-left: 2px;
    transition: transform .2s;
}
.show-link.up i,
.show-link.up svg.flecha {
    transform: rotate(180deg);
}
.show-content {
    padding: 10px 0;
	transition: all 0.2s;
}
.show-content:not(.active) {
  display: none;
}
.show-content .form-control {
	padding: 10px 20px 10px 10px;
	background: #fff url(../svg/select.svg) no-repeat top 50% right 10px;
}
.show-content .total-envio {
    font-weight: bold;
    padding-top: 10px;
    text-align: right;
    font-size: 20px;
}
.show-content .columna-gastos-carrito {
    text-align: right;
}

@media (max-width: 992px) {
    .show-container .col {
        padding-bottom: 10px;
    }
    .show-content .total-envio {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .show-container {
        width: 100%;
        max-width: 400px;
    }
    .show-content .total-envio,
    .show-content .columna-gastos-carrito {
        text-align: center;
    }
    div.search {
        display: none;
    }
    input.search {
        display: none;
    }
    button.search {
        background: none;
    }
    form.search {
        padding-right: 5px;
    }
    .tbl-carrito,
    .tbl-carrito tbody,
    .tbl-carrito tr {
        display: block;
    }
    .tbl-carrito thead {
        display: none;
    }
    .tbl-carrito tbody td {
        display: block;
        width: 100% !important;
        text-align: center !important;
        padding: 10px 10px;
        border-bottom: none;
    }
    .tbl-carrito tbody td.remove {
        padding-bottom: 0;
        padding-top: 30px;
        font-size: 14px;
    }
    .tbl-carrito tbody td.remove span {
        display: inline-block;
    }
    .tbl-carrito tbody td.remove a {
        width: auto;
        height: auto;
        line-height: 1em;
    }
    .tbl-carrito tbody td.remove a:hover {
        text-decoration: none;
    }
    .tbl-carrito td.price:before,
    .tbl-carrito td.total:before {
        content: attr(data-label);
    }
    .tbl-carrito td.total {
        padding: 0 10px 35px 10px;
        border-bottom: 1px solid #c7c7c7;
    }
    .carrito-cupon {
        float: none;
        text-align: center;
    }
    .carrito-cupon form {
        overflow: hidden;
        padding: 0 0 40px 0;
    }
    .carrito-cupon input {
        float: none;
    }
    .carrito-cupon input.form-control {
        width: 250px;
        margin: 0 auto;
    }
    .carrito-portes {
        float: none;
        width: 100%;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #ccc;
        text-align: center;
    }
    .carrito-importes {
        width: 100%;
        float: none;
    }
    .carrito-resumen .totales {
        overflow: hidden;
    }
    .carrito-resumen .totales .term,
    .carrito-resumen .totales .importe {
        float: left;
        width: 50%;
        min-width: 0;
        padding: 0 5px;
    }
    .carrito-resumen .totales .importe {
        text-align: left;
    }
    .carrito-resumen .iva {
        text-align: left;
        padding-left: 50%;
    }
    .carrito-resumen .iva:before {
        display: inline-block;
        width: 5px;
        content: ' ';
    }
    .carrito-botonera {
        text-align: center;
    }   
    .carrito-botonera .btn-back,
    .carrito-botonera .btn-checkout {
        float: none;
        display: inline-block;
        margin-bottom: 20px;
    }
    .carrito-botonera .btn-acceder.verde {
        float: none;
        margin-top: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 250px;
    }
    .texto-modificar-compra {
        float:none;
        text-align:center;
        border-bottom:1px dotted #ddd;
        padding-bottom:20px;
        margin-bottom:20px;
    }
}
/* Fin Carrito */

/* Checkout */
.aviso {
    padding: 20px;
    color: #fff;
    margin: 0 0 20px 0;
}
.aviso.success {
    background: #83ae00;
}
.checkout_content .form-group {
    margin-bottom: 15px;
}
label.error {
    top: 35px;
    right: 20px;
}
.relativo label.error {
    top: 11px;
    right: 15px;
}
.valida-input {
    position:relative;  
}
.valida-input label.error {
    top:10px;
    right:10px;
}
.checkbox {
    position:relative;  
}
.checkbox label.error {
    top:0;
    right:-20px;
}
#privacidad,
#condiciones {
    display:none;
    padding:20px;
    max-width:700px;    
}
select.error {
    border: 1px solid #d90000;
}
textarea {
    resize: vertical;
}
.cursor {
    cursor: pointer;
}
.bloque-login {
    overflow:hidden;
    border: 1px solid #dcdcdc;
    background: #ececec;
    margin: 0 10px 10px 10px;
    padding: 0;
}
.bloque-login.grande {
    border: none;
    background: none;
    padding: 0;
}
.bloque-password {
    border:1px solid #dcdcdc;
    padding:10px;
    background:#f6f6f6;
    overflow:hidden;
    margin:0 10px 15px 10px;    
}
.bloque-resumen {
    padding-bottom: 30px;
}
.bloque-resumen.required, .bloque-agree.required {
    position:relative;  
}
.bloque-resumen.required label.error, .bloque-agree.required label.error {
    top:0;
}
.toggle-view {
    clear: both;
    overflow: hidden;
    padding-top: 10px;
    background: #f7f7f7;
}
.toggle-view.big {
    padding: 0;
    background: none;
}
.bloque-login h3 {
    margin: 0;
}
h3 .show_div {
    display: block;
    font-size: 18px;
    font-weight: bold !important;
    color: #4b4b4b !important;
    position: relative;
    padding: 10px 5px;
}
h3 .show_div:hover {
    text-decoration: none;
}
h3 .show_div:after {
    font-family: 'FontAwesome';
    content: '\f078';
    position: absolute;
    right: 5px;
    top: 10px;
    transition: transform .2s;
}
h3 .show_div.abierto:after {
    transform: rotate(-180deg);
}
h3 .show_div svg {
    width: 31px;
    height: 25px;
    margin-right: 5px;
    vertical-align: -5px;
}
h3 .show_div svg.user {
    width: 22px;
    height: 25px;
    margin-left: 3px;
    margin-right: 7px;
}
h2.numero {
    position: relative;
    font-size: 25px;
    font-weight: 600;
    text-transform: none;
    margin: 0.67em 0 28px 0;
    padding: 0 0 15px 0;
}
h2.numero span {
    display:inline-block;
    color:#fff;
    background:#06a7e2;
    text-align:center;
    width:25px;
    height:25px;
    font-size:18px;
    line-height:25px;
    border-radius:50%;
}
h2.numero:after {
    position: absolute;
    top: 100%;
    left: 0;
    content: '';
    width: 100px;
    height: 4px;
    background-color: #06a7e2;
}
.titulo-guion.margen {
    margin-top: 50px;
}
.oculto {
    display:none;
}
.tbl-envios {
    width: 100%;
    border-collapse: collapse;
}
.tbl-envios td {
    padding:0 10px;
}
.tbl-pagos {
    width: 100%;
    border-collapse: collapse;
}
.tbl-pagos label {
    border-radius: 10px;
}
.tbl-pagos td {
    padding:0 10px;
}
.columnas-resumen {
    clear:both;
    margin-right: 600px;
}
.columnas-resumen-variable {
    width: 100%;
    float: left;
}
.columnas-resumen-fija {
    width: 580px;
}
.resumen {
    position: absolute;
    right: 0;
    top: 0;
    bottom:auto;
}
.resumen.fijo {
    position:fixed;
    left:50%;
    top:150px;
    bottom:auto;
    margin-left:140px;
}
.resumen.bottom {
    position: absolute;
    top:auto;
    bottom:0;   
}
.checkout_content {
    position:relative;  
}

@media (max-width: 1400px) {
    .resumen.fijo {
        position:fixed;
        left:auto;
        right:10px;
        top:110px;
        bottom:auto;
        margin-left:0;
    }
}

@media (max-width: 1138px) {
    .resumen {
        position:static !important;
    }
    .columnas-resumen {
        margin-right: 0;
    }
    .columnas-resumen-variable {
        float: none;
    }
    .columnas-resumen-fija {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    #resumen-pedido {
        width: 100%;
    }
    #resumen-pedido.affix {
        position: relative;
        top: auto;
    }
    .micuenta-paso,
    .login-cuenta {
        padding-left: 0;
    }
    #form-login .col-pass {
        text-align: center;
    }
    #form-login .btn-submit,
    .micuenta-paso .btn-carrito {
        display: block;
        margin: auto;
        max-width: 270px;
    }
    .titular-paso {
        margin-left: 60px;
    }
    .login-cuenta .intro {
        text-align: center;
    }
}

@media (max-width: 1095px) {
    #resumen-pedido {
        width: 100%;
    }
    .modificar-pedido {
        float: none;
        max-width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }
    .resumen-importes {
        width: 100%;
        float: none;
    }
    .resumen-importes .totales .term,
    .resumen-importes .totales .importe {
        float: left;
        width: 50%;
        min-width: 0;
        padding: 0 5px;
    }
    .resumen-importes .totales .importe {
        text-align: left;
    }
    .resumen-importes .iva {
        text-align: left;
        padding-left: 50%;
    }
    .resumen-importes .iva:before {
        display: inline-block;
        width: 5px;
        content: ' ';
    }
}

.cursor-label {
    cursor: pointer;
    display: block;
    border: 1px solid #dcdcdc;
    background: #f9f9f9;
    padding: 20px;
    overflow: hidden;
    font-style: normal;
    color: #4b4b4b;
    font-size: 15px;
    transition: background .2s;
    position: relative;
}
.cursor-label.check {
    border: 1px solid #143c6d;
    background: #f0f0f0;
}
.cursor-label:hover {
    background: #f0f0f0;
}
.cursor-label span.lc {
    float: left;
    padding-left: 20px;
    line-height: 17px;
    font-weight: normal;
}
.cursor-label span.lc.cc {
    padding-left: 0;
}
.cursor-label input {
    position: absolute;
    left: 15px;
    top: 27px;
}
.cursor-label svg {
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 15px;
}
.cursor-label svg.ico-tarjetas {
    position: absolute;
    right: 0;
    top: 25px;
    width: auto;
    height: auto;
}
@media (max-width: 540px) {
    .cursor-label input {
        left: 10px;
    }
    .cursor-label span.lc.cc {
        padding-left: 10px;
    }
    .cursor-label svg {
        display: none;
    }
}
.cursor-label.envios {
    line-height: 32px;
    border-radius: 10px;
}
.cursor-label.envios span.lc {
    font-weight: bold;
}
.cursor-label.envios span.cc {
    padding-top: 7px;
}   
.cursor-label.envios svg {
    width: 32px;
    height: 32px;
}
.cursor-label.envios input {
    top: 25px;
}
.cursor-label svg.transferencia {
    width: 38px;
    height: 38px;
}
.cursor-label svg {
    fill: #4b4b4b;
}
.cursor-label span.rc {
    float: right;
    font-weight: bold;
}
/* Fin checkout */

#website {
    display: none;
}
.caja-login {
    border-radius: 20px;
	background-color: #EDF1F8;
	padding: 50px 90px;
	max-width: 554px;
	margin: auto;
}
.caja-login h2 {
	padding: 0;
	margin: 0 0 25px 0;
	display: flex;
	align-items: flex-end;
	font-size: 24px;
	line-height: 24px;
	font-weight: 500;
	color: #333;
}
.caja-login h2 > svg {
	display: block;
	margin-right: 10px;
}
.caja-login h3 {
	padding: 0;
	margin: 80px 0 30px 0;
	text-align: center;
	font-size: 24px;
	line-height: 24px;
	font-weight: 500;
	color: #333;
	position: relative;
}
.caja-login h3::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	background: #56938D;
}
.caja-login h3 span {
	position: relative;
	background: #EDF1F8;
	padding: 0 20px;
}
.caja-login .button {
	width: 100%;
	justify-content: center;
	margin-top: 20px;
}

@media (max-width: 992px) {
    .caja-login {
        padding: 40px 60px;
    }
}

@media (max-width: 730px) {
    .caja-login {
        padding: 30px;
    }
}

/* Cuenta */
ul.cuenta {
	list-style: none;
	padding: 0;
	text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 30px -5px;
}
ul.cuenta li {
	display: block;
    flex: 0 0 25%;
	padding: 5px;
}
ul.cuenta li a,
ul.cuenta li span {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 100%;
	padding: 30px 20px;
	height: auto;
    border: 1px solid #DDD9D1;
	background: #fff;
	border-radius: 20px;
    text-decoration: none;
	color: #323232;
	text-transform: uppercase;
    transition: all .2s;
}
ul.cuenta li a svg,
ul.cuenta li span svg {
    display: block;
    margin-right: 10px;
}
ul.cuenta li span {
	color: #aaa !important;
	background: #e2e2e2 !important;
	cursor: default;
}
ul.cuenta li a i,
ul.cuenta li span i {
	margin-right: 5px;
	color: #e5a948;
	font-size: 30px !important;
	line-height: 30px !important;
	vertical-align: -7px;
}
ul.cuenta li span i {
	color: #ccc;
}
ul.cuenta li a:hover,
ul.cuenta li a.selected {
    background: #F1F0E4;
}
ul.cuenta li span.activo {
	color: #222220 !important;
	background: #eee !important;
	border-color: #e5a948;	
}
ul.cuenta li span.activo i {
	color: #e5a948;
}

section.pedidos .pedidos_top {
	overflow: hidden;
}
section.pedidos .pedidos_top {
	overflow: hidden;
    display: flex;
	padding: 0 15px;
	font-weight: bold;
}

section.pedidos .pedido {
	border: 1px solid #DDD9D1;
    border-radius: 10px;
	margin: 10px 0 0 0;
}

section.pedidos .pedido .linea_pedido {
	overflow: hidden;
	padding: 15px;
	display: table;
	width: 100%;
}

section.pedidos .left {
	width: 20%;
}
section.pedidos .pedido .left {
	float: none;
}
section.pedidos .acciones_pedido {
	text-align: right;
}
section.pedidos .pedido .left {
	display: table-cell;
	vertical-align: middle;
}
section.pedidos .pedido .acciones_pedido a {
	background-color: #222220;
	color: #fff;
	display: inline-flex;
    align-items: center;
	padding: 5px 10px;
	font-size: 14px;
    text-decoration: none;
	-webkit-transition: background-color .2s, color .2s;
	transition: background-color .2s, color .2s;
}
section.pedidos .pedido .acciones_pedido a:hover {
	background-color: #000;
}
section.pedidos .pedido .acciones_pedido a:after {
	display: inline-block;
	font-family: 'FontAwesome';
	content: '\f0d7';
	font-size: 16px;
	vertical-align: 1px;
	margin-left: 5px;
	color: #fff;
	transition: transform .2s;
}
section.pedidos .pedido .acciones_pedido a.selected:after {
	transform: rotate(180deg);
}
section.pedidos .detalles_pedido {
	display: none;
	background: #F1F0E4;
	padding: 20px;
	border-top: none;
	overflow: hidden;
	position: relative;
}
section.pedidos .detalles_pedido:before {
	position: absolute;
	content:'';
	top: 0;
	left: 50%;
	width: 0; 
	height: 0;
	margin-left: -5px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #fff;
}
section.pedidos .detalles_pedido .datos_pedido {
	float: left;
	width: 50%;
}
section.pedidos .productos_pedido {
	padding-top: 10px;
}
section.pedidos .productos_pedido .producto_pedido {
	display: table;
	width: 100%;
}
section.pedidos .productos_pedido .producto_pedido .left,
section.pedidos .productos_pedido .producto_pedido .right {
	float: none;
	display: table-cell;
	vertical-align: middle;
	padding: 10px;
	border-top: 1px solid #ccc;
}
section.pedidos .productos_pedido .producto_pedido .producto_top {
	border: none;
	font-weight: bold;
}

section.pedidos .productos_pedido .producto_pedido .right {
	text-align: right;
}
section.pedidos .productos_pedido .producto_pedido .producto_nombre {
	min-width: 64%;
}
section.pedidos .productos_pedido .producto_pedido .producto_cantidad,
section.pedidos .productos_pedido .producto_pedido .producto_precio {
	width: 12%;
    white-space: nowrap;
}
section.pedidos .productos_pedido .producto_pedido .producto_total {
	width: 12%;
	font-weight: bold;
    white-space: nowrap;
}
section.pedidos .totales_pedido {
	border-top: 1px solid #ccc;
	padding-top: 10px;
	overflow: hidden;
}
section.pedidos .totales_pedido .total_pedido {
	clear: right;
	display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 5px;
}
section.pedidos .totales_pedido .total_pedido .col-right {
    margin-left: 10px;
}
section.pedidos .totales_pedido .total_pedido.total {
	font-weight: bold;
}

.direcciones {
	display: table;
	width: 100%;
}
.direcciones .direccion {
	display: table-row;
}
.direcciones .direccion .datos {
	text-align: left;
	display: table-cell;
	vertical-align: middle;
	border-bottom: 1px dotted #ccc;
	padding: 10px 5px;
}
.direcciones .direccion .acciones {
	text-align: right;
	display: table-cell;
	vertical-align: middle;
	border-bottom: 1px dotted #ccc;
	padding: 10px 5px;
}
.direcciones .direccion .acciones a {
	line-height: 18px;
}
.direcciones .direccion .acciones a svg {
	width: 15px;
	height: 15px;
}

.buttons-welcome {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}
.buttons-welcome > span {
    display: block;
    margin: 10px;
}

@media (max-width: 580px) {
	ul.cuenta li {
		flex: 0 0 100%;
	}
	ul.cuenta.big li a,
	ul.cuenta.big li span {
		padding: 30px 15px;
	}
    section.pedidos .pedido .acciones_pedido a > span {
        display: none;
    }
    section.pedidos .pedido .acciones_pedido a::after {
        margin-left: 0;
    }
    section.pedidos .detalles_pedido {
        padding: 10px;
    }
    section.pedidos .detalles_pedido .datos_pedido {
        float: none;
        width: 100%;
        padding-top: 10px;
    }
    section.pedidos .productos_pedido .producto_pedido .producto_total,
    section.pedidos .productos_pedido .producto_pedido .producto_precio {
        font-size: 14px;
    }
    section.pedidos .left {
        font-size: 14px;
    }
}
/* Fin Cuenta */