/*=========================================*/
/*=========================================*/
/*=== SCREEN (start) ===*/

/* ====================================== */
/* ========== GENERAL SETTINGS ========== */

@font-face {
	font-family: 'archivo_medium';
	src: url("../fonts/custom/Archivo-Medium.ttf");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'archivo_regular';
	src: url("../fonts/custom/Archivo-Regular.ttf");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'helvetica';
	src: url("../fonts/custom/Helvetica-LT-Std-Black-Condensed.otf");
	font-weight: normal;
	font-style: normal;
}

@media screen {
	:root{
		--blanco: #FFF;
		--gris: #bababa;
		--negro: #000;
		--principal: #000;
		--azul: #404C56;
		--link-boton: #37424C;
		--bk_color_serv: #f5f5f5;
		--text_cart_placeholder: #78828E;
		--amarilllo: #e4b835;
	}
	html{
		scroll-behavior: smooth;
		-webkit-font-smoothing: antialiased;
	}
	html, body, h1, h2, h3, h4, h5, h6 {
		font-size: 14px;
	}
	
	h1,h2,h3,h4,h5,h6{
		font-family: 'helvetica' , sans-serif !important;
	}
	body{
		font-family: 'archivo_regular' , sans-serif !important;
	}
}
@media screen and (max-width: 1920px) {
	html, body, h1, h2, h3, h4, h5, h6 {
		font-size: 0.729vw;
	}
}
@media screen and (max-width: 1199px){
	html, body, h1, h2, h3, h4, h5, h6 {
		font-size: 1.168vw;
	}
}
@media screen and (max-width: 991px){
	html, body, h1, h2, h3, h4, h5, h6 {
		font-size: 1.413vw;
	}
}
@media screen and (max-width: 768px){
	html, body, h1, h2, h3, h4, h5, h6 {
		font-size: 1.823vw;
	}
}
@media screen and (max-width: 540px){
	html, body, h1, h2, h3, h4, h5, h6 {
		font-size: 2.593vw;
	}
}
@media screen{

	body{
		background: #fff;
	}

	body, a, h1, h2, h3, h4, h5, h6 {
		color: var(--negro);
	}

	h1, h2, h3, h4, h5, h6 { margin: 0;	padding: 0; }

	b, strong { font-family: 'archivo_medium' , sans-serif !important; }
	
	i, em { font-style: italic; }	

	a{
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	a:hover{ cursor: pointer; }
	
	a:hover,
	a:focus,
	.header_redes .social:hover,
	.header_redes .social:focus {
		color: #999;
	}

	.home .main-h1 {
		font-size: 0;
		width: 1px;
		height: 1px;
		display: inline-block;
		overflow: hidden;
		position: absolute!important;
		border: 0!important;
		padding: 0!important;
		margin: 0!important;
		clip: rect(1px,1px,1px,1px);
		color: #000 !important;
	}	

	.pagina_fija {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}	

	.panel{
		border: 0px solid transparent;
	}	

	.modal{
		z-index: 1054;
	}	

	/* ====== TOP ====== */
	.top{
		position: relative;
	}

	.section_home{
		scroll-margin-top: 2.5rem
	}

	

}/* termina @media screen */


/* ============================================== */
/* ========== ALTO MINIMO DE LA PAGINA ========== */
/* Alto de la pagina para que el footer quede fijo abajo cuando hay poco contenido - Restarle a 100vh (alto del viewport) el tamaño del footer en px para cada version */

@media screen and (min-width: 1200px) {
	#soporte_pagina > .soporte{
	  	min-height: calc(100vh - 70px); 
	}
}/* termina @media screen and (min-width: 1200px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
	#soporte_pagina > .soporte{
	  	min-height: calc(100vh - 70px);
	}    
}/* termina @media screen and (min-width: 992px) and (max-width: 1199px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
	#soporte_pagina > .soporte{
		min-height: calc(100vh - 90px);
	}
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */
@media screen and (max-width: 767px) {
	#soporte_pagina > .soporte{
		min-height: calc(100vh - 191px);
	}
}/* termina @media screen and (max-width: 767px)


/* ======================================= */
/* ========== UTILITY CLASSES ========== */

@media screen{

	.soporte .container.editorial{
		padding-bottom: 90px;
	}
	.content.content_contacto{
		padding-bottom: 70px;
	}

	.btn {
		font-size: 1.14286rem;
		font-style: normal;
		font-weight: 500;
		line-height: 3rem;
		letter-spacing: -0.02286rem;
		color: var(--blanco);
		background-color: var(--negro);
		width: 13.57143rem;
		text-transform: none;
		border-radius: 50px;
		padding: 0.45rem 2.07rem 0.45rem 2.36rem;
		display: inline-block;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.btn:hover,
	.btn:focus{
		color: #fff;
		opacity: 0.7;
	}
	.primary-btn {
		width: auto;
	}
	.primary-btn svg {
		margin-left: 4.93rem;
	}
	.primary-btn:focus {
		outline: none;
		outline-offset: 0;
	}
	

	.btn.secondary-btn {
		color: #222;
		background-color: transparent;		
		border: 1px solid #222;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;		
	}
	.btn.secondary-btn:hover {
		text-decoration: none !important;
	}

	.relative{
		position: relative;
	}
	
	.embed-responsive {
		position: relative;
		display: block;
		width: 100%;
		padding: 0;
		overflow: hidden;
	}
	
	.embed-responsive::before {
		display: block;
		content: "";
	}
	
	.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: 0;
	}
	
	.embed-responsive-21by9::before {
		padding-top: 42.857143%;
	}
	
	.embed-responsive-16by9::before {
		padding-top: 56.25%;
	}
	
	.embed-responsive-4by3::before {
		padding-top: 75%;
	}
	
	.embed-responsive-1by1::before {
		padding-top: 100%;
	}	

	.color_white{
		color: #ffffff !important;
	}
	
	.bg_white{
		background: #ffffff !important;
	}
	
	.bg-light-gray {
		background: #f6f6f6 !important;
	}
	
	.border-top-1 {
		border-top: 1px solid;
	}
	
	.border-gray {
		border-color: #ccc;
	}
	
	.img-responsive{
		display: inline-block !important;
	}
	
	.grayscale_filter{
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}
	
	.rounded-circle {
		border-radius: 100%;
		-moz-border-radius: 100%;
		-webkit-border-radius: 100%;	
	}

	.p-x-0{
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.p-r-0{
		padding-right: 0px;
	}
	
	.p-l-0{
		padding-left: 0px;
	}	

	.m-t-15 {
		margin-top: 15px;
	}
	.m-t-30 {
		margin-top: 30px;
	}	

	/* Hover - Grow */
  
	.hvr-grow {
		display: inline-block;
		vertical-align: middle;
		-webkit-transform: perspective(1px) translateZ(0);
		transform: perspective(1px) translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-property: transform;
		transition-property: transform;
	}
  
	.hvr-grow:hover,
	.hvr-grow:focus,
	.hvr-grow:active {
		-webkit-transform: scale(1.03);
		transform: scale(1.03);
	}
  
	/* Hover - Bounce In */
  
	.hvr-bounce-in {
		display: inline-block;
		vertical-align: middle;
		-webkit-transform: perspective(1px) translateZ(0);
		transform: perspective(1px) translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
	}
  
	.hvr-bounce-in:hover,
	.hvr-bounce-in:focus,
	.hvr-bounce-in:active {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
		transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
	}
  
	/* Hover - Underline From Left */
  
	.hvr-underline-from-left {
		display: inline-block;
		vertical-align: middle;
		-webkit-transform: perspective(1px) translateZ(0);
		transform: perspective(1px) translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		position: relative;
		overflow: hidden;
	}
  
	.hvr-underline-from-left:before {
		content: "";
		position: absolute;
		z-index: -1;
		left: 0;
		right: 100%;
		bottom: 0;
		background: #000;
		height: 2px;
		-webkit-transition-property: right;
		transition-property: right;
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-timing-function: ease-out;
		transition-timing-function: ease-out;
	}
  
	.hvr-underline-from-left:hover:before,
	.hvr-underline-from-left:focus:before,
	.hvr-underline-from-left:active:before {
		right: 0;
	}  

	
}/* termina @media screen */

@media screen and (min-width: 768px) and (max-width: 991px) {
	.sm-m-top-0{
		margin-top: 0px;
	}
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */


/* ======================================= */
/* ========== DEFAULT IMAGE ========== */

@media screen{

	.default {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.default .default_image{
		display: block !important;
	}
	
	.default_logo{
		display: inline-block;
		position: absolute;
		width: 60%;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%); /* IE 9 */
		-webkit-transform: translate(-50%,-50%); /* Safari */
		right: auto;
		-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
		filter: grayscale(100%);
		opacity: 0.3;
	}

}/* termina @media screen */


/* ============================ */
/* ========== ALERTS ========== */

@media screen{
	.alert {
		font-size: 1.15rem;
		border-radius: 0;
		padding: 30px;
	}
	
	.alert-success{
		color: #468847;
		background-color: #fff;
		border-color: #468847;
	}
	
	.alert-danger {
		color: #b94a48;
		background-color: #fff;
		border-color: #b94a48;
	}
	.alert p {
		color: #333;
		font-size: 14px;
		line-height: 1.3;
		margin-top: 10px;
	}
}/* termina @media screen */

@media screen and (max-width: 767px) {
	.alert {
		padding: 20px;
	}
}

/* ======================================= */
/* ========== BOTONES FLOTANTES ========== */

@media screen{

	.floating-buttons{
		position: fixed;
		bottom: 15px;
		right: 15px;
		z-index: 1056;
		text-align: right;
	}
	  
	.floating-buttons .btn-whatsapp a{
		color: #fff;
		background-color: #4dc247;
		border-radius: 100px;
		-moz-border-radius: 100px;
		-webkit-border-radius: 100px;
		border: 0;
		position: relative;
		opacity: 1;
		display: inline-block;
		margin-top: 10px;
		width: 70px;
		height: 70px;
		text-align: left;
		padding: 16px 0px 16px 19px;
		overflow: hidden;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;   
	}
	  
	.floating-buttons .btn-whatsapp a:hover{
		width: 200px;
	}
	  
	.floating-buttons .btn-whatsapp .fab.fa-whatsapp{
		font-size: 36px;
		color: #fff;
		text-align: left;
	}
	  
	.floating-buttons .btn-whatsapp span{
		position: absolute;
		top: 24px;
		right: -10px;
		font-size: 18px;
		line-height: 1;
		font-weight: 400;
		opacity: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	  
	.floating-buttons .btn-whatsapp a:hover span{
		opacity: 1;
		right: 30px;
	}

}/* termina @media screen */


/* ===================================== */
/* ========== BOTON IR ARRIBA ========== */

@media screen{
	.go-up-hide{
		display: none;
	}
	.go-up-show{
		display: block;
	}
	.go-up-btn{
		color: #000;
		background: #fff;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		padding-top: 10px;
		margin: 10px 16px 0 0;
		cursor: pointer;
		display: inline-block;
		text-align: center;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.go-up-btn .fa{
		font-size: 21px;
		line-height: 1;
		font-weight: 400;
	}
	.go-up-btn:hover{
		color: #fff;
	}
}/* termina @media screen */


/* ===================================== */
/* ========== HOME SECTIONS ========== */

@media screen{

	.home #hlt-contact,
	.home #hlt-contents,
	.home #hlt-products,
	.home #hlt-text {
		padding-top: 120px;
		padding-bottom: 150px;
	}

	.home #hlt-contents,
	.home #hlt-products{
		padding-bottom: 80px;
	}
	.home #hlt-contents{
		background-color: #f5f5f5;
	}
	.home #hlt-contact{
		background-color: #1f1f1f;
		color: #fff;
	}

	.home #hlt-contact .content header .title,
	.home #hlt-contact .content p,
	.home #hlt-contact .content a{
		color: #fff !important;
	}
	.home #hlt-contact .content a:hover,
	.home #hlt-contact .content a:focus{
		color: var(--amarilllo) !important;
	}
	.home #hlt-contact .btn{
		background-color: var(--amarilllo) !important;
	}
	

}/* termina @media screen */

@media screen and (min-width: 992px) and (max-width: 1199px) {

	.home #hlt-contact,
	.home #hlt-contents,
	.home #hlt-products,
	.home #hlt-text {
		padding-top: 90px;
		padding-bottom: 120px;
	}
	.home #hlt-contents,
	.home #hlt-products{
		padding-bottom: 50px;
	}

}/* termina @media screen and (min-width: 992px) and (max-width: 1199px) */


@media screen and (min-width: 768px) and (max-width: 991px) {

	.home #hlt-contact,
	.home #hlt-contents,
	.home #hlt-products,
	.home #hlt-text {
		padding-top: 90px;
		padding-bottom: 120px;
	}
	.home #hlt-contents,
	.home #hlt-products{
		padding-bottom: 50px;
	}

}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 767px) {

	.home #hlt-contact,
	.home #hlt-contents,
	.home #hlt-products,
	.home #hlt-text {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.home #hlt-text {
		padding-top: 70px;
	}
	.home #hlt-contents,
	.home #hlt-products{
		padding-bottom: 30px;
	}

}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== TITULOS ========== */

@media screen{

	.title,
	.content .title,
	.accesos_rapidos .title{
		color: var(--negro);
		text-align: center;
		font-size: 2.42857rem;
		font-style: normal;
		font-weight: 400;
		line-height: 200%;
		letter-spacing: -0.04857rem;
		text-transform: none;
		margin-bottom: 4.29rem;
	}

	.accesos_rapidos .title,
	#marks-carousel .title{
		margin-bottom: 65px;
	}

	.content header .title{
		font-size: 26px;
		line-height: 36px;
		font-weight: 700;
		letter-spacing: 0.075em;
		text-align: left;
		margin-bottom: 20px;
		text-transform: none;
	}

	.title_sep,
	.title_sep_white{
		text-align: center;
		width: 30px;
		height: 3px;
		background: #d6d6d6;
		margin: 0px auto 50px auto;
	}

	.title_sep.has_subsection_desc,
	.title_sep.has_hlt_desc {
		margin: 0px auto 30px auto;	
	}

	.title_sep_white{
		background: #fff !important;
	}

}/* termina @media screen */

@media screen and (max-width: 767px) {

	.title_sep,
	.title_sep_white{
		margin: 0px auto 30px auto;
	}

}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== SOPORTES ========== */

@media screen{

	.sop{
		background: #fff;
		padding: 95px 0px 40px 0px;
	}

	.list_contents,
	.list_subsections{
		padding: 0 0px;
		margin-top: 50px;
	}

	.related .list_contents,
	.related .list_products {
		margin-top: 30px;
	}

	.content{
		position: relative;
		padding-top: 70px;
	}
	.home .box.content{
		padding-top: 0px;
	}

}/* termina @media screen */

@media screen and (max-width: 991px) {

	.list_products{
		margin-top: 50px;
	}

}/* termina @media screen and (max-width: 767px) */

@media screen and (max-width: 767px) {

	.sop{
		padding: 50px 0 70px;
	}

}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== HEADER ========== */

@media screen{
	
	#header {
		background: var(--negro);
		background: #141414;
		background: #fff;
		padding-top: 1.96rem;
    	padding-bottom: 1.7rem;
		position: relative;
		border-bottom: 1px solid #d6d6d6;
	}

	#header.header-reverse,
	#header_fixed.header-reverse {
		border-bottom: 0;
		background: #222;
	}
	
	#header .container{
		position: relative;
	}
	
	#header .logo{
		position: relative;
	}
	
	#header_fixed{
		/* background-color: var(--negro); */
		background-color: #fff;
		-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
		-moz-box-shadow:    0px 0px 5px 0px rgba(0, 0, 0, 0.3);
		box-shadow:         0px 0px 5px 0px rgba(0, 0, 0, 0.3);
		position: fixed;
		width: 100%!important;
		padding: 0px 0px;
		left: 0px;
		z-index: 1020;
		-webkit-transition: all 1.5s ease-in-out;
		-moz-transition: all 1.5s ease-in-out;
		-o-transition: all 1.5s ease-in-out;
		-ms-transition: all 1.5s ease-in-out;
		transition: all 1.5s ease-in-out;
		padding-top: 1.96rem;
    	padding-bottom: 1.7rem;
	}
	
	#header_fixed .logo{
		position: relative;
	}
	
	#header_fixed .menu{
		margin: 0;
	}
	/*	
	#header_fixed  .nav_menu > li > a{
		padding:1.2rem 10px 1.2rem 10px !important;
	}
	*/
	
	.header_fixed_anim{
		top: -100%;
	}
	
	.header_fixed_anim2{
		top: 0%;
	}
	
	#header .logo a,
	#header_fixed .logo a{
		display: inline-block;
	}

	#header .logo a img,
	#header_fixed .logo a img{
		max-width: 220px;
    	width: 100%;
	}	

}/* termina @media screen */

@media screen and (min-width: 768px) and (max-width: 991px) {
	#header {
		padding: 15px 0;
	}	
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 991px) {
	.home #header{
		z-index: 50;
		padding: 15px 0;
	}

	#header{
		padding: 15px 0;
		z-index: 50;
	}
	#header .logo a img,
	#header_fixed .logo a img{
		max-width: 200px;
	}

}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== HEADER (ESTORE) ========== */

@media screen{

	.header .box-shopping-cart,
	.header .box-account,
	.header .box-search-desktop {
		font-size: 18px;
	}

	#header_fixed .box-search-desktop {
		display: none;
	}
	
	.header .box-shopping-cart .shopping-cart {
		margin-right: 0;
	}
	
	.header .box-shopping-cart a,
	.header .box-account a,
	.header .box-search-desktop a{
		padding: 0 10px;
	}

	.header .box-shopping-cart a {
		position: relative;
	}
	
	.header .box-account a {
		padding-right: 0;
	}
	
	.header .box-account button,
	.header .box-shopping-cart button {
		color: #000;
		position: relative;
		font-size: 18px;
		padding: 0 10px;
		margin: 0;
		border: 0;
		background: transparent;
		outline: none;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;		
	}
	
	.header .box-account button {
		padding: 0 0 0 15px;
	}
	
	.header .box-account button:hover,
	.header .box-account button:focus,
	.header .box-account a:hover,
	.header .box-account a:focus,
	.header .box-shopping-cart button:hover,
	.header .box-shopping-cart button:focus,
	.header .box-shopping-cart a:hover,
	.header .box-shopping-cart a:focus {
		color: #999;
	}
	
	.header-reverse .box-account button {
		color: #fff;
	}
	
	.header .box-shopping-cart .shopping-cart span {
		font-size: 11px;
		font-weight: 700;
		line-height: 1;
		min-width: 15px;
		height: 15px;
		padding: 0 2px;
		position: absolute;
		bottom: 0;
		right: 0;
		color: #fff;
		background-color: #666;
	}
	
	.header .box-account button span {
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.1em;
		margin-left: 3px;
		text-transform: uppercase;
		position: relative;
		top: -2px;
	}
	
	.header .box-account .dropdown-menu,
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu {
		position: absolute;
		top: 100%;
		left: auto;
		right: -42px;
		text-align: center;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
		z-index: 1000;
		float: left;
		min-width: 160px; 
		/*width: 100% !important;*/
		padding: 15px 30px;
		margin: 10px 0 0 0;
		font-size: 12px;
		line-height: 1;
		list-style: none;
		border: none !important;
		border-radius: 0;
		-webkit-box-shadow: 0 20px 12px rgba(0, 0, 0, 0.175);
				box-shadow: 0 20px 12px rgba(0, 0, 0, 0.175);
		background-clip: padding-box;
		-webkit-animation-duration: 0.4s;
		animation-duration: 0.4s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
	}
	
	.header .box-account .dropdown-menu {
		background-color: #222;
		left: auto;
		right: 0;
		-webkit-transform: translate(0, 0) !important;
		transform: translate(0, 0) !important;		
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu {
		padding: 0;
		padding-top: 10px;
		margin-top: 0;
		min-width: 400px;
		background: transparent;
	}
	
	.header .box-account .dropdown-menu:after,
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu:after {
		bottom: 100%;
		left: auto;
		right: 27px;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-color: rgba(255, 255, 255, 0);
		border-bottom-color: #d6d6d6;
		border-width: 6px;
		margin-left: -5px;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu:after {
		right: 52px;
		top: -2px;
	}
	
	.header-reverse .box-account .dropdown-menu:after,
	.header-reverse .box-shopping-cart .shopping-dropdown .dropdown-menu:after {
		border-bottom-color: #fff;
	}
	
	.header .box-account .dropdown-menu h6.title {
		white-space: nowrap;
		font-size: 1.15rem;
		line-height: 1;
		font-weight: 700;
		letter-spacing: 0.02em;
		margin-bottom: 10px;
		color: #fff;
	}
	
	.header-reverse .box-account .dropdown-menu h6.title {
		color: #333;
	}
	
	.header .box-account .dropdown-menu .buttons {
		white-space: nowrap;
	}
	
	.header .box-account .dropdown-menu .buttons a {
		padding: 0;
		color: #fff;
		display: inline-block;
		/* text-transform: uppercase; */
		border-right: 1px solid #fff;
		padding: 0 10px;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.05em;
	}
	
	.header-reverse .box-account .dropdown-menu .buttons a {
		color: #333;
		border-color: #ccc;
	}
	
	.header .box-account .dropdown-menu .buttons a:last-child {
		border: 0;
	}
	
	.header .box-account .dropdown-menu .buttons a i {
		margin-right: 4px;
	}
	
	.header .box-account .dropdown-menu .buttons a:hover,
	.header .box-account .dropdown-menu .buttons a:focus {
		opacity: 0.7;
		text-decoration: none;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu h5.title {
		padding: 20px;
		margin: 0;
		font-size: 0.95rem;
		background-color: #222;
		color: #fff;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu h5.title.bg_white {
		color: #333;
		border-bottom: 1px solid #d2d2d2;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body{
		padding: 0;
		background: #fff;
		max-height: 59vh;
		overflow: auto;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body .product {
		text-align: left;
		font-size: 0.95rem;
		line-height: 1.2;
		margin-top: 0;
		padding: 20px;
		border-bottom: 1px solid #d2d2d2;
	}
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body .product:last-child {
		margin-bottom: 0;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body .product figure{
		width: 100px;
		margin-right: 20px;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body .product .product-name {
		width: 150px;
		margin-right: 20px;
		font-size: 0.95rem;
		line-height: 1.2;
	}  
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body .product .quantity {
		margin-right: 20px;
		width: 50px;
		text-align: right;
	}  
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body .product .subtotal {
		text-align: right;
		width: 80px;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-body .product .total {
		border-top: 1px solid #ccc;
		padding-top: 12px;
		margin-top: 12px;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-footer {
		background: #222;
		color: #fff;
		padding: 0px;
	}

	#header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-footer .edit_carro_dropdown{
		background: #007bff;
		padding: 15px 20px;
		-webkit-transition: all 0.3s ease-in-out;
	    -moz-transition: all 0.3s ease-in-out;
	    -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		border: 1px solid #007bff;
	}

	#header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-footer .edit_carro_dropdown:hover{		
		background-color: #fff !important;
    	border-color: #fff !important;
	}

	#header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-footer .edit_carro_dropdown a{
		color: #fff;
	}

	#header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-footer .edit_carro_dropdown:hover a{
		color: #007bff;
	}

	#header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-footer .total {
		font-size: 12px;
		letter-spacing: 0.05em;
		color: #fff;
		padding: 15px 20px;
	}
	
	.header .box-shopping-cart .shopping-dropdown .dropdown-menu .dropdown-footer .btn {
		display: inline-block;
		color: #fff;
		font-size: 0.95rem;
		line-height: 1;
		text-transform: uppercase;
		background: none;
		letter-spacing: 0.05em;
	}
}/* termina @media screen */

@media screen and (max-width: 991px) {

	.header .box-account {
		display: none !important;
	}	
	.header .box-menu {
		order: 1;
	}
	.header .box-shopping-cart .shopping-cart a {
		padding: 0 15px;
	}
	.header .box-shopping-cart .shopping-cart span {
		right: 5px;
	}	
	.box-search-desktop {
		display: none;
	}	

}/* termina @media screen and (max-width: 991px) */

@media screen and (max-width: 767px) {

	.header .box-shopping-cart .shopping-cart{
		line-height: 1;
	}
	.box-search-desktop {
		display: none;
	}

}/* termina @media screen and (max-width: 767px) */	


/* ================================== */
/* =========== BREADCRUMB =========== */

@media screen {

	.box-breadcrumbs {
		background: #eeeeee;
	} 
	
	.box-breadcrumbs .breadcrumb {
		padding: 18px 0;
		margin-bottom: 0;
		list-style: none;
		background-color: transparent;
		border-radius: 0;
		font-size: 12px;
		line-height: 1.2;
		font-weight: 400;
		opacity: 1;
	}

	.box-breadcrumbs .breadcrumb li a {
		color: #000;
		opacity: 0.7;
	}

	.box-breadcrumbs .breadcrumb li a:hover,
	.box-breadcrumbs .breadcrumb li a:focus {
		opacity: 0.5;
		text-decoration: none;
	}

	.box-breadcrumbs .breadcrumb > li + li:before {
		color: #000;
	}

	.box-breadcrumbs .breadcrumb > .active {
		color: #000;
		opacity: 0.4;
	}

}/* end @media screen  */


/* ===================================== */
/* ========== FOOTER ========== */

/* ========== FOOTER ========== */

@media screen{

	#footer{
		padding: 20px 0px;
		color: #fff;
	}

	#footer .box{
		flex: 1;
		display: flex;
    	-ms-flex-pack: center;
    	justify-content: center;
	}
	#footer .box:nth-child(2){
		text-align: center;
	}
	#footer .box-container .box:first-child > span {
		margin-right: auto;
	}
	#footer .box-container .box:last-child > span {
		margin-left: auto;
	}

	.sep_footer{
		width: 100%;
		height: 1px;
		background-color: rgba(255, 255, 255, 0.40);
		margin-bottom: 2.29rem;
	}

	.footer_text h6{
		margin-top: 0;
		font-size: 11px;
		line-height: 1;
	}

	.footer_text{
		font-size: 9px;
		line-height: 1;
		letter-spacing: 0;
	}

	.footer_text,
	.footer_text h6{
		font-weight: 400;
		color: #fff;
	}

	.footer_redes{
		position: relative;
	    gap: 10px;
    	display: flex;
    	align-items: baseline;
	}
	#footer .logo{
		position: relative;
	}

	#footer .logo a{
		display: inline-block;
	}
	#footer .logo a img{
		width: 6.72729rem;
		margin-bottom: 3.36rem;
	}

	#footer .contacto_fotter h6,
	#footer .mapa_fotter h6,
	#footer .footer_redes h6{
		color: #fff;
		font-size: 14px;
		letter-spacing: 0.075em;
		font-weight: 700;
		text-transform: uppercase;
		margin-bottom: 10px;
	}

	#footer .footer_text h6{
		color: var(--gris);
		font-size: 1rem;
		font-style: normal;
		font-weight: 400;
		line-height: 180%; /* 1.8rem */
		letter-spacing: -0.02rem;
	}

	#footer .contacto_fotter{
		color: var(--blanco);
		text-align: center;
		font-size: 1.28571rem;
		font-style: normal;
		font-weight: 400;
		line-height: 170%; /* 2.18571rem */
		letter-spacing: -0.02571rem;
		position: relative;
		margin-bottom: 4.14rem;
	}

	#footer .mapa_fotter  ul.menu_footer{
		list-style: none;
		padding-inline-start: 0px;
	}

	#footer .mapa_fotter  ul.menu_footer li a{
		color: #fff;
		font-size: 0.95rem;
		letter-spacing: 0.05em;
		line-height: 24px;
		font-weight: 400;
		text-transform: capitalize;
	}

	#footer .mapa_fotter  ul.menu_footer li:hover a,
	#footer .mapa_fotter  ul.menu_footer li:focus a,
	#footer .mapa_fotter  ul.menu_footer li.active a{
		color: var(--gris) !important;
		text-decoration: none;
	}

	#footer .desarrollo{
		margin-top: 10px;	
		text-align: center;
	}	
	#footer .desarrollo h6{
		margin-bottom: 0px;
		color:#fff; 
		text-transform: uppercase;
		border-top: 1px solid #fff;
		padding-top: 25px;
		font-size: 10px;
		line-height: 10px;
		font-weight: 400;
	}	

	.footer_dinamic a{
		color: var(--gris);
		font-size: 1rem;
		font-style: normal;
		font-weight: 400;
		line-height: 180%; /* 1.8rem */
		letter-spacing: -0.02rem;
		display: block;
		padding-top: 0;
		text-decoration: none;
		opacity: 1;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;	
		transition: all 0.3s ease-in-out;
	}

	.footer_dinamic a:hover,
	.footer_dinamic a:focus{
		opacity: 0.5;
	}



}/* termina @media screen */

@media screen and (max-width: 991px) {

	.footer_dinamic img{
		margin-top: -2px;
	}

}/* termina @media screen and (max-width: 991px) */

@media screen and (min-width: 768px) and (max-width: 991px) {

	.footer_dinamic{
		float: right;
	    padding-top: 0px;
	}	
	.footer_dinamic a{
		font-size: 9px;
	}
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 767px) {

	#footer {
        padding: 45px 15px 40px 15px;
        text-align: center;
    }


	#footer .box-container {
		align-items: center !important;
	}
	#footer .box-container .box {
        flex: initial;
        display: block;
        justify-content: initial;
    }
	#footer .box{
		width: 100%;
	}
	#footer .box-container .box:first-child > span {
		margin-right: 0;
	}
	#footer .box-container .box:last-child > span {
		margin-left: 0;
	}
	.footer_redes {
        margin-top: 0;
        margin-bottom: 30px;
        display: block;
    }
	.footer_text h6 {
        margin-bottom: 0px;
    }



	#footer .box-container .box.mapa_fotter{
		display: none;
	}
	#footer .box-container .box.contacto_fotter,
	#footer .box-container .box .footer_redes{
		margin-top: 30px;
	}


}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== REDES SOCIALES ========== */

@media screen{

	.social{
		color: #fff;
		width: 30px;
		height: 30px;
		padding: 0px 0px 0 0;
		margin: 0px 5px 0 5px;
		overflow: hidden;
		border-radius: 0%;
		font-size: 14px;
		font-weight: normal;
		line-height: 1.428571429;
	}

	.header_redes{
		position: relative;
		gap: 10px;
    	display: flex;
    	align-items: baseline;
	}

	.header_redes .social{
		margin: 0px 0px 0 0px;
		background: transparent;
		padding: 0 0 0 0;
		width: auto;
		height: auto;
		font-size: 18px;
		line-height: normal;
		color: var(--negro);
	}

	.header_redes .social:hover,
	.header_redes .social:focus{
		background: transparent;
		color: var(--amarilllo);
	}

	ul.menu_collapse li.header_redes_movil{
		margin: 0px !important;
		padding: 0px 0 0px 0 !important;
		list-style: none;
		border-bottom: 1px solid #e7e7e7;
		background: #f2f2f2;
		display: flex;
		justify-content: center;
		align-items: center;
	}


	.header-reverse .header_redes .social i{
		color: #fff;
	}

	.header-reverse .header_redes .social:hover{
		opacity: 0.7;
	}

	.footer_redes .social{
		color: var(--gris);
		text-align: center;
		font-size: 16px;
		font-style: normal;
		opacity: 1;
		font-weight: 500;
		line-height: 180%;
		letter-spacing: -0.02286rem;
		text-decoration-line: underline;
		width: auto;
		height: auto;
		background: none;
		text-transform: none;
		margin: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	.footer_redes .social:hover,
	.footer_redes .social:focus {
		opacity: 0.5;
	}


}/* termina @media screen */

@media screen and (max-width: 992px) {
	.header_redes {
		display: none;
	}
}/* termina @media screen and (max-width: 991px) */

@media screen and (min-width: 768px) and (max-width: 991px) {
	.footer_redes .social i{
		font-size: 21px;
	}
	.footer_redes .social{
		margin: 0 3px;
	}	
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 767px) {

	.footer_redes{
		margin-top: 0;
		margin-bottom: 30px;
		display: block;
	}
	.footer_redes .social{
		text-align: center;
		margin: 0px 3px 0px 3px;
	}
	.footer_redes .social i{
		font-size: 24px;
	}

}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== MENU PRINCIPAL (web) ========== */

@media screen{

	.menu{
		margin: 0;
		position: relative;
	}

	ul.nav_menu{
		position: relative;
	}

	.nav_menu >li+li{
		margin-left: 0px;
	}

	
	.nav_menu > li > a{
		color: var(--blanco);
		color:var(--negro);
		text-align: center;
		font-size: 1.14286rem;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.02286rem;
		border-radius: 0px !important;
		padding: 10px !important;
		margin: 0 0px 0 0px;
		text-transform: none;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	.nav_menu > li > a:hover,
	.nav_menu > li > a:focus {
		color: var(--amarilllo);
		text-decoration: none;
		background: none;
	}

	.nav_menu > li.active > a,
	.nav_menu > li.active > a:hover,
	.nav_menu > li.active > a:focus{
		color: var(--amarilllo);
		background: none;
	}

	.header-reverse .nav_menu > li > a:hover,
	.header-reverse .nav_menu > li > a:focus,
	.header-reverse .box-shopping-cart .shopping-cart a:hover,
	.header-reverse .box-shopping-cart .shopping-cart a:focus,
	.header-reverse .box-shopping-cart .shopping-dropdown button:hover,
	.header-reverse .box-shopping-cart .shopping-dropdown button:focus,
	.header-reverse .box-account button:hover,
	.header-reverse .box-account button:focus,
	.header-reverse .box-account a:hover,
	.header-reverse .box-account a:focus,
	.header-reverse .box-search-desktop a:hover,
	.header-reverse .box-search-desktop a:focus {
		opacity: 0.7;
	}

	.header-reverse .nav_menu > li > a,
	.header-reverse .nav_menu > li.active > a,
	.header-reverse .nav_menu > li.active > a:hover,
	.header-reverse .nav_menu > li.active > a:focus,
	.header-reverse .box-shopping-cart .shopping-cart a,
	.header-reverse .box-shopping-cart .shopping-cart a:hover,
	.header-reverse .box-shopping-cart .shopping-cart a:focus,
	.header-reverse .box-shopping-cart .shopping-dropdown button,
	.header-reverse .box-shopping-cart .shopping-dropdown button:hover,
	.header-reverse .box-shopping-cart .shopping-dropdown button:focus,
	.header-reverse .box-account button,
	.header-reverse .box-account button:hover,
	.header-reverse .box-account button:focus,
	.header-reverse .box-account a,
	.header-reverse .box-account a:hover,
	.header-reverse .box-account a:focus,
	.header-reverse .box-search-desktop a,
	.header-reverse .box-search-desktop a:hover,
	.header-reverse .box-search-desktop a:focus {
		color: #fff;
	}

	.header-reverse .nav_menu > li.active > a,
	.header-reverse .nav_menu > li.active > a:hover,
	.header-reverse .nav_menu > li.active > a:focus {
		opacity: 1;
	}

	.header-reverse .box-shopping-cart .shopping-cart span {
		background: #fff;
		color: #222;
	}

	.submenu_dropdown {
		position: absolute;
		top: 100%;
		left: 50%;
		right: auto;
		text-align: center;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		z-index: 1000;
		display: none;
		float: left;
		min-width: 160px; 
		/*width: 100% !important;*/
		padding: 0px 0;
		margin: 0px 0 0 0;
		font-size: 14px;
		line-height: 1;
		list-style: none;
		background-color: #fff;
		border: none !important;
		border-radius: 0px;
		-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
				box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
		background-clip: padding-box;
		-webkit-animation-duration: 0.4s;
		animation-duration: 0.4s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
	}
	  
	.nav_menu > li:last-child .submenu_dropdown{
		right: 0px;
		left: auto;
		-webkit-transform: translate(0, 0) !important;
		transform: translate(0, 0) !important;
	}
	  
	.nav .open > a,
	.nav .open > a:hover,
	.nav .open > a:focus{
		background-color: transparent !important;
		border-color: transparent !important;
	}
	  
	
	  
	.header-reverse .submenu_dropdown:after {
		border-bottom-color: #fff;
	}
	  
	.nav_menu > li:last-child .submenu_dropdown:after{
		left: auto;
		right: 20%;
	}
	  
	.submenu_dropdown > li > a {
		font-size: 11px;
		text-transform: uppercase;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
		display: block;
		padding: 12px 15px;
		clear: both;
		font-weight: 600;
		line-height: 1.428571429;
		white-space: nowrap;
		text-align: center;
		filter:none !important;
		background-image: none !important; 
		letter-spacing: 0.15em;
	}
	
	.submenu_dropdown > li:last-child{
		display: none;
	}
	  
	.submenu_dropdown > li > a:hover,
	.submenu_dropdown > li > a:focus{
		color: var(--amarilllo);
		text-decoration: none;
		/* background-color: var(--negro); */
	}
	
	.submenu_dropdown > .active > a,
	.submenu_dropdown > .active > a:hover,
	.submenu_dropdown > .active > a:focus {
		font-family: 'archivo_medium';
		text-decoration: none;
		/* background-color: var(--negro); */
		outline: 0;
		color: var(--amarilllo);
	}	
	
	.submenu_dropdown .divider {
		height: 1px;
		margin: 0px 0;
		overflow: hidden;
		background-color: #d6d6d6;
	}


	.menu > ul > li > a:before{
		content: "";
		position: absolute;
		z-index: 1;
		left: 50%;
		right: 50%;
		bottom: 0;
		background: var(--amarilllo);
		height: 1px;
		-webkit-transition-property: left, right;
		transition-property: left, right;
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-timing-function: ease-out;
		transition-timing-function: ease-out;
	  }
	
	
	  .menu > ul > li > a:hover:before,
	  .menu > ul > li > a:focus:before,
	  .menu > ul > li.active > a:before{
		left: 0;
		right: 0;  
	  }

}/* termina @media screen */


/* ================================================================ */
/* ========== MENU PRINCIPAL (mobile) / SUBMENU (mobile) ========== */

@media screen{
	.navbar-toggle {
		overflow: hidden;
	}
	
	.navbar-toggle .icon-bar {
		border-radius: 0px !important;
		-webkit-transition: opacity, -webkit-transform;
		transition: opacity, -webkit-transform;
		transition: opacity, transform;
		transition: opacity, transform, -webkit-transform;
		-webkit-transition-duration: 200ms;
				transition-duration: 200ms;
		-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
				transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
	}
	
	.header-reverse .navbar-toggle .icon-bar{
		background-color: #fff !important;
	}
	
	.navbar-toggle:not(.collapsed) .icon-bar:nth-child(1) {
		-webkit-transform: translateY(6px) rotate(45deg);
				transform: translateY(6px) rotate(45deg);
	}
	
	.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
		opacity: 0;
		-webkit-transform: translateX(-100%);
				transform: translateX(-100%);
	}
	
	.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
		-webkit-transform: translateY(-6px) rotate(-45deg);
				transform: translateY(-6px) rotate(-45deg);
	}
	
	.menu_mobile_btn{
		padding: 0 !important;
		margin: 0;
		font-size: 22px;
		line-height: 22px;
		font-weight: 400;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}

	.home #collapseMenu{
		padding-top: 80px;
    	background: #141414;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 40;
	}
	#collapseMenu{
		padding-top: 80px;
    	background: #141414;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 40;
	}


	/* #collapseMenu.in{
		padding-top: 60px;
    	background: #141414;
	} */
	
	ul.menu_collapse{
		margin: 0px !important;
		padding: 0px !important;
		text-align: center;
	}
	
	.header-reverse ul.menu_collapse{
		border-top: 1px solid #ccc;
	}
	
	ul.menu_collapse li{
		margin: 0px !important;
		padding: 0px 0 0px 0 !important;
		list-style: none;
		border-bottom: 1px solid #e7e7e7;
		background: #f2f2f2;
		border-radius: 0px;
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
	}
	
	ul.menu_collapse>.active>a,
	ul.menu_collapse>.active>a:hover,
	ul.menu_collapse>.active>a:focus{
		color: #fff;
	}
	
	ul.menu_collapse li a{
		display: block;
		margin: 0;
		padding: 20px 40px;
		list-style: none;
		font-size: 1.15rem;
		line-height: 1.15rem;
		font-weight: 400;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}
	
	ul.menu_collapse li.hasSubs > a{
		position: relative;
	}
	
	ul.menu_collapse li.hasSubs > a:after{
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f106";
		display: inline-block;
		color: inherit;
		position: absolute;
		right: 15px;
		top: 21px;
		margin: 0;
		text-align: center;
		color: #b2b2b2;
	}
	
	ul.menu_collapse>.active.hasSubs > a:after{
		color: #fff;
	}
	
	ul.menu_collapse li.hasSubs > a.collapsed:after{
		content: "\f107";
	}
	
	ul.menu_collapse li a:hover,
	ul.menu_collapse li a:focus {
		text-decoration: none;
	}
	
	ul.menu_collapse li a i {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	ul.submenu_collapse{
		margin: 0px 0 0px 0 !important;
		padding: 0px !important;
		text-align: center;
	}
	
	ul.submenu_collapse li{
		margin: 0px !important;
		padding: 0px 0 0px 0 !important;
		list-style: none;
		border-bottom: 1px solid #f1f1f1;
		background: #fff;
		border-radius: 0px;
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
	}
	
	ul.submenu_collapse > li:first-child{
		border-top: 1px solid #f1f1f1;
	}
	
	ul.submenu_collapse > li:last-child{
		border-bottom: 0px;
	}
	
	ul.submenu_collapse>.active>a,
	ul.submenu_collapse>.active>a:hover,
	ul.submenu_collapse>.active>a:focus{
		font-weight: 700;
	}
	
	ul.submenu_collapse li a{
		margin: 0px !important;
		padding: 20px 0 20px 0 !important;
		list-style: none;
		font-size: 1.15rem;
		line-height: 1.15rem;
		font-weight: 400;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}
	
	ul.submenu_collapse li a:hover,
	ul.submenu_collapse li a:focus {
		text-decoration: none;
	}

}/* termina @media screen */

@media screen and (min-width: 992px) { /*- Modificar para cambiar la medida a la que se muestra o no el botón del menú móvil-*/
	.navbar-toggle {
		display: none !important;
	}
}


/* ==================================== */
/* =========== MENU SIDEBAR / MENU CATALOGO =========== */
  
@media screen {
		
	.box-btn-openSideBarMenu {
		line-height: 1;
		font-size: 1px;
	}

	.btn-openSideBarMenu{
		display: inline-block;
		float: none;
		padding: 5px;
		margin: 0;
		cursor: pointer;
	}

	#sidebar-menu{
		height: 100%; /* 100% Full-height */
		width: 320px; /* 0 width - change this with JavaScript */
		padding: 0 30px;
		position: fixed; /* Stay in place */
		z-index: 1057; /* Stay on top */
		top: 0;
		left: -350px;
		background-color: #fff; /* Black*/
		overflow-x: hidden; /* Disable horizontal scroll */
		transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
		-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
		-moz-box-shadow:    0 3px 9px rgba(0, 0, 0, 0.5);
		box-shadow:     0 3px 9px rgba(0, 0, 0, 0.5);
	}
  
	#sidebar-menu-overlay{
		position: fixed;
		background-color: rgba(0, 0, 0, 0.6) !important;
		height: 100%;
		width: 100%;
		top: 0px;
		left: 0px;
		z-index: 1031;
		display: none;
	}

	#sidebar-menu .box {
		padding: 30px 0;
		border-bottom: 1px solid #ccc;
	}

	#sidebar-menu .box.sidebar-search { 
		padding: 10px 0;
	}

	#sidebar-menu .box.sidebar-bottom {
		font-size: 12px;
		border-bottom: 0;
	}

	#sidebar-menu .sidebar-account .btn-login-mobile {
		font-size: 14px;
		line-height: 1;		
		margin: 0;
		padding: 0;
		background: transparent;
		border: 0;
		display: block;
		outline: none;
		text-decoration: none;
	}
	#sidebar-menu .sidebar-account .btn-login-mobile i {
		margin-right: 5px;
	}

	#sidebar-menu .sidebar-account .title{
		font-size: 1.15rem;
		line-height: 1.2;
		margin-bottom: 10px;
		text-align: left;
	}

	#sidebar-menu .sidebar-account .buttons {
		font-size: 14px;
		line-height: 1;
	}

	#sidebar-menu .sidebar-account .buttons a {
		padding: 0;
		color: #000;
		display: inline-block;
		border-right: 1px solid #ccc;
		padding: 0 10px;
		font-size: 12px;
		line-height: 1;
	}

	#sidebar-menu .sidebar-account .buttons a:first-child {
		padding-left: 0;
	}

	#sidebar-menu .sidebar-account .buttons a:last-child {
		border: 0;
	}

	#sidebar-menu .sidebar-account .buttons a i {
		margin-right: 4px;
	}

	#sidebar-menu .sidebar-account .buttons a:hover,
	#sidebar-menu .sidebar-account .buttons a:focus {
		color: #000;
	}

	#sidebar-menu .sidebar-account .closebtn {
		display: block;
		text-align: right;
		font-size: 1.15rem;
	}
	
	#sidebar-menu .sidebar-catalogue ul,
	#sidebar-menu .sidebar-nav ul,
	#desktop-nav-catalogue ul{
		margin: 0;
		padding: 0;
		list-style: none;
	}

	#sidebar-menu .sidebar-catalogue ul li,
	#sidebar-menu .sidebar-nav ul li,
	#desktop-nav-catalogue ul li {
		margin-bottom: 0;
		background-color: transparent;
		border: 0;
		border-radius: 0;
		-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}

	#sidebar-menu .sidebar-catalogue ul li a,
	#sidebar-menu .sidebar-nav ul li a,
	#desktop-nav-catalogue ul li a {
		display: block;
		font-size: 1.15rem;
		line-height: 1.2;
		font-weight: 400;
		padding: 6px 0;
		overflow-wrap: break-word;
	}

	#desktop-nav-catalogue ul li a {
		font-size: 18px;
		padding: 8px 0;
	}

	#sidebar-menu .sidebar-catalogue ul li a:hover,
	#sidebar-menu .sidebar-catalogue ul li a:focus,
	#sidebar-menu .sidebar-nav ul li a:hover,
	#sidebar-menu .sidebar-nav ul li a:focus,
	#desktop-nav-catalogue ul li a:hover,
	#desktop-nav-catalogue ul li a:focus {
		color: #000;
		outline: none;
		text-decoration: none;
	}

	#sidebar-menu .sidebar-catalogue ul .active > a,
	#sidebar-menu .sidebar-nav ul .active > a,
	#desktop-nav-catalogue ul .active > a {
		font-weight: 700;
	}	

	#sidebar-menu .sidebar-catalogue ul li.title,
	#desktop-nav-catalogue ul li.title {
		margin-bottom: 0;
	}
	
	#sidebar-menu .sidebar-catalogue ul li.title a,
	#desktop-nav-catalogue ul li.title a {
		padding: 0;
	}

	#sidebar-menu .sidebar-catalogue ul li.title a h5,
	#desktop-nav-catalogue ul li.title a h5 {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 10px;
		padding: 0;
		text-transform: uppercase;
		text-align: left;
	}	

	#desktop-nav-catalogue ul li.title a h5 {
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;		
	}

	#desktop-nav-catalogue ul li.title a h5 {
		font-size: 24px;
		margin-bottom: 15px;
		text-transform: none;
	}

	#sidebar-menu .sidebar-catalogue ul li ul,
	#sidebar-menu .sidebar-nav ul li ul,
	#desktop-nav-catalogue ul li ul {
		padding-left: 15px;
		padding-bottom: 15px;
	}

	#sidebar-menu .sidebar-catalogue ul li ul li a,
	#sidebar-menu .sidebar-nav ul li ul li a,
	#desktop-nav-catalogue ul li ul li a {
		font-size: 14px;
	}



}/* termina @media screen */	

@media screen and (max-width: 991px) {
	
	.btn-openSideBarMenu {
		padding: 10px;
		padding-right: 0;
	}

}/* termina @media screen and (max-width: 991px) */


/* ==================================== */
/* =========== BUSQUEDA =========== */

@media screen{
	
	#collapseSearchDesktop {
		background: #fff;
		border-bottom: 1px solid #eeeeee;
	}
	.home #collapseSearchDesktop{
		border-top: 1px solid #d6d6d6;
	}
	.home #collapseSearchDesktop.reverse {
		border-top: 0;
	}
	#collapseSearchDesktop .container {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	#collapseSearchDesktop .form-control {
		height: 47px !important;
		border-right: 0 !important;
	}

	.box-search-desktop .fa-search:before {
		content: "\f00d" !important;
	}

	.box-search-desktop .collapsed .fa-search:before {
		content: "\f002" !important;
	}

	.box-search-mobile {
		position: relative;
		margin-left: 0;
		width: 290px;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
	}

	.box-search-mobile input.texto{
		border:0;
		height: 45px;
		padding: 0 0 0 0;
		font-size: 12px;
		line-height: 1;
		font-weight: 400;
		color: #000;
		background-color: #eeeeee;
		outline: none;
		width: 100%;
		border-radius: 500px;
		-moz-border-radius: 500px;
		-webkit-border-radius: 500px;		
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	.box-search-mobile input.texto:-moz-placeholder {color: #000;}
	.box-search-mobile input.texto::-moz-placeholder {color: #000;}
	.box-search-mobile input.texto:-ms-input-placeholder {color: #000;}
	.box-search-mobile input.texto::-webkit-input-placeholder {color: #000;}	

	.box-search-mobile input.texto {
		font-size: 14px;
		background-color: #fff;
		padding: 0 22px 0 0;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;			
	}

	.box-search-mobile .btn-search {
		color: #000 !important;
		border-radius: 500px;
		-moz-border-radius: 500px;
		-webkit-border-radius: 500px;			
		background-color: #fff;
		position: absolute;
		top: 0;
		right: 0;
		height: 45px;
		width: 50px;
		text-decoration: none;
	}

}/* termina @media screen */


/* ===================================== */
/* ========== SLIDE CAROUSEL ========== */

@media screen{
	/*
	.home .carousel-inner .item .carousel-img {
		height: 100%;
		aspect-ratio: 16 / 9;
	}
	*/

	.carousel-img{
		text-align: center;
	}

	.carousel-img img{
		display: inline-block;
	}

	.carousel-caption {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 100%;
		z-index: 10;
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 0;
		padding-right: 0;
		text-align: center;
		text-shadow: none !important;
		background: none;
		max-width: 46.71429rem;
		width: 100%;
	}	

	.carousel-caption h2{
		color: var(--blanco);
		text-align: center;
		font-size: 7.14286rem;
		font-style: normal;
		font-weight: 600;
		line-height: 101%; /* 7.21429rem */
		letter-spacing: -0.21429rem;
		margin: 0px 0 4.29rem 0;
		padding: 0px;
	}

	.carousel-caption p{
		font-size: 18px;
		line-height: 1.7;
		font-weight: 400;
		padding: 0;
		margin: 0px 0 4.29rem 0;
	}

	.carousel-caption h2,
	.carousel-caption p{
		display: inline-block;
	}
	.carousel-caption a{
		display: inline-block;
		color: var(--link-boton);
		background: var(--blanco);
		padding: 1.29rem 2.71rem;
		border-radius: 0;
		text-decoration: none;
	}
	.carousel-caption a svg{
		margin-left: 0.86rem;
		vertical-align: middle;
	}
	.carousel-caption a:hover,
	.carousel-caption a:focus{
		opacity: 0.7;
	}

	.carousel_control{
		position: absolute;
		top: 0px;
		height:100%;
		width: 150px;
		display: block;
		z-index: 15;
	}

	.carousel_control.left{
		color: #fff;
		left: 0px;
		opacity: 0;
		background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.0001)));
		background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.2) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
		background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
		background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
		background-repeat: repeat-x;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}

	.carousel_control.right {
		color: #fff;
		right: 0px;
		opacity: 0;
		background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.2)));
		background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.2) 100%));
		background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
		background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
		background-repeat: repeat-x;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	#carousel_slide_home:hover .carousel_control{
		opacity: 1;
	}

	.carousel_control i{
		font-size: 32px;
		color: #fff;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.carousel_control.left i{
		left: 30px;
	}

	.carousel_control.right i{
		right: 30px;
	}

	.carousel_control_mobile{
		width: 100%;
	}
	.carousel_control_mobile a{
		display: inline-block;
		width: 50%;
		padding: 10px;
		text-align: center;
		text-decoration: none;
		color: #fff;
	}
	.carousel_control_mobile .right{
		border-left: 1px solid #fff;
	}

	.carousel-indicators {
		position: absolute;
		bottom: 15px;
		left: 50%;
		margin-left: 0px;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		z-index: 15;
		width: 60%;
		padding-left: 0;
		text-align: center;
		list-style: none;
	}

	.carousel-indicators li {
		display: inline-block;
		width: 10px;
		height: 10px;
		margin: 0px 4px 0 4px;
		text-indent: -999px;
		cursor: pointer;
		border: 1px solid #fff;
		background-color: rgb(255, 255, 255) !important;
		background-color: rgba(255, 255, 255, 0) !important;	
		border-radius: 10px;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}

	.carousel-indicators li:hover {
		-webkit-transform: scale(1.3);
		-ms-transform: scale(1.3);
		transform: scale(1.3);
		border: 1px solid #fff;
		background-color: rgb(255, 255, 255) !important;
		background-color: rgba(255, 255, 255, 0.5) !important;	
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}

	.carousel-indicators .active,
	.carousel-indicators .active:hover {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		width: 10px;
		height: 10px;
		margin: 0px 4px 0 4px;
		background-color: rgb(255, 255, 255) !important;
		background-color: rgba(255, 255, 255, 1) !important;	
		border: 1px solid #fff;
		cursor: default;
	}

}/* termina @media screen */

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.carousel-caption p {
		font-size: 19px;
	}
}/* termina @media screen and (min-width: 992px) and (max-width: 1199px) */

@media screen and (min-width: 768px) and (max-width: 991px) {
	.carousel-caption{
		padding: 100px 0 45px;
	}	
	.carousel-caption h2{
		font-size: 32px;
	}
	.carousel-caption p{
		font-size: 1.15rem;
		line-height: 1.7;
		margin-top: 5px;
	}
	.carousel-caption h2{
		max-width: 700px;
	}
	.carousel-caption p{
		max-width: 600px;
	}
	.carousel-indicators{
		margin-bottom: 0;
	}
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */




@media screen and (max-width: 767px) {

	.item a:hover{
		text-decoration: none !important;
	}

	.carousel-caption{
		padding: 100px 30px 60px;
	}

	.carousel-caption h2{
		max-width: 700px;
        font-size: 4rem;
        letter-spacing: -0.15rem;
	}
	.carousel-caption p {
		font-size: 1.4rem;
		line-height: 1.5;
	}

}	


/* ===================================== */


/* ====== MODULO HIGHLIGHTED 3 - ICONOS HOME ====== */

@media screen {
	.accesos_rapidos{
	    background: var(--bk_color_serv);
		background: #fff;
		position: relative;
		text-align: center;
		padding: 6.43rem 0 7.5rem;
	}
  
	.accesos_rapidos .box{
		display: flex;
		flex-wrap: wrap;
		justify-content: center !important;
		padding: 0 15px;
		gap: 3.57rem;
	}
	.accesos_rapidos .box .icono{
		/*
		position: relative;
		margin:0 1.65rem;
		padding: 3.57rem 3.29rem 3.57rem 3.57rem;
		max-width: 24.28571rem;
		width: 100%;
		height: auto;
		flex-shrink: 0;
		border-radius: 0;
		background: #FFF;
		box-shadow: 3px 3px 15px 4px rgba(0, 0, 0, 0.05);
		text-align: left;
		*/

		position: relative;
		padding-bottom: 00px;
	}
	.accesos_rapidos .icono a{
	  text-decoration: none !important;
	  position: relative;
	}
	/* .accesos_rapidos .icono figure img{
	  height: 70px;
	} */
	.accesos_rapidos .icono h2 {
		color: var(--negro);
		font-size: 1.57143rem;
		font-style: normal;
		font-weight: 600;
		line-height: 200%;
		letter-spacing: -0.03143rem;
		margin-bottom: 1.14rem;
	}
	.accesos_rapidos .icono p {
		color: var(--text_cart_placeholder);
		font-size: 1.07143rem;
		font-style: normal;
		font-weight: 400;
		line-height: 160%;
		letter-spacing: -0.02143rem;
		width: 17.42857rem;
		height: auto;
		flex-shrink: 0;
	}
  }

  @media screen and (max-width: 768px) {
	
  }


  @media screen {
	.portfolio{
	  background: #f5f5f5;/* var(--gris) /*azul*/
	  position: relative;
	  text-align: center;
	  padding: 5rem 0 10.14rem; 
	}

	/*
	.portfolio .title{
		color: var(--blanco) !important;
	}
	*/
  
	.portfolio .box{
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center !important;
	  padding: 0 15px;
	  gap: 3.57rem;
	}
	.portfolio .box .icono{
		position: relative;
		flex: 1 1 auto;
		padding: 0 0 0 0;
		max-width: 24.28571rem;
		width: 100%;
		height: auto; /*32.85714rem;*/
		flex-shrink: 0;
		border-radius: 0rem;
		/*
		background: #FFF;
		box-shadow: 3px 3px 15px 4px rgba(0, 0, 0, 0.05);
		*/
		text-align: left;
	}
	.portfolio .icono a{
		text-decoration: none !important;
		position: relative;
	}
	.portfolio .icono figure img{
		border-top-left-radius: 0rem;
		border-top-right-radius: 0rem;
		overflow: hidden;
	  	margin-bottom: 2.36rem;
	}
	.portfolio .icono .text{
		padding: 0 2.79rem 0rem 0rem;
	}
	.portfolio .icono p{
		margin: 0 0;
		color: var(--text_cart_placeholder);
		flex-shrink: 0;
		font-size: 1.07143rem;
		font-style: normal;
		font-weight: 400;
		line-height: 160%;
		letter-spacing: -0.02143rem;
	}
	.portfolio .icono h2{
		color: var(--negro);
		font-size: 1.57143rem;
		font-style: normal;
		font-weight: 600;
		line-height: 200%; /* 3.14286rem */
		letter-spacing: -0.03143rem;
		margin-bottom: 0;
	}
	
  }

  @media screen and (max-width: 768px) {
	.portfolio .box{
		gap: 5.57rem
	}
  }
/* =========== HIGHLIGHTED TYPE 20 LOGOS CARROUSEL =========== */

@media screen {
	#marks-carousel {
		background: #fff;
		padding: 10.64rem 0 18rem 0;
		position: relative;
	}
	#marks-carousel .title{
		margin-bottom: 8rem;
	}
	#marks-carousel .arrow_content{
		margin-top: 5rem;
		text-align: center;
	}
	#marks-carousel .box-mark {
		text-align: center;
		padding: 0 15px;
	}
	#marks-carousel .owl-carousel .owl-item img {
		display: inline-block !important;
		/*width: auto !important;*/
		width: 80% !important;
		aspect-ratio: 1/1;
		object-fit: contain;
		filter: grayscale(1);
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	#marks-carousel .owl-carousel .owl-item:hover img {
		filter: grayscale(0);
	}

	#marks-carousel .owl-carousel .owl-height {
		height: auto !important;
	}

	#marks-carousel .arrow_content .owl-prev,
	#marks-carousel .arrow_content .owl-next {
		position: relative;
		z-index: 10;
		background: var(--blanco);
		outline: none;
		border: 1px solid #D2D2D2;
		border-radius: 100%;
		width: 40px;
		height: 40px;
		opacity: 1;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		margin: 0 10px;
	}
	#marks-carousel .arrow_content .owl-prev:hover,
	#marks-carousel .arrow_content .owl-next:hover {
		background: var(--azul);
		border: 1px solid var(--azul);
	}

	#marks-carousel .arrow_content .owl-prev img,
	#marks-carousel .arrow_content .owl-next img{
		vertical-align: unset;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	#marks-carousel .arrow_content .owl-prev:hover img,
	#marks-carousel .arrow_content .owl-next:hover img{
		filter: grayscale(1) invert(1);
	}
	#marks-carousel .arrow_content .owl-prev {
		left: 0;
		padding: 0;
	}
	#marks-carousel .arrow_content .owl-next {
		right: 0;
		padding: 0;
	}
	#marks-carousel .arrow_content .owl-prev i,
	#marks-carousel .arrow_content .owl-next i {		
		font-size: 15px;
		line-height: 1;
	}
	#marks-carousel .arrow_content .owl-prev.disabled,
	#marks-carousel .arrow_content .owl-next.disabled {
		opacity: 0.3;
	}
	
}

@media screen and (max-width: 768px) {
	#marks-carousel .title{
		margin-bottom: 1rem;
	}
	#marks-carousel .arrow_content{
		margin-top: 1rem;
	}
}



/* ========== VIDEO DESTACADO SOBRE EL SLIDE PARA VERSION DESKTOP (HIGHLIGHTED 17) ========== */

@media screen{
	.slide-home-video-box {
		position: relative;
	}
	.slide-home-video {
		position: relative;
		width: 100%;
		height: 100%;
	}
	.slide-home-video:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

/* ===================================== */
/* ========== TEXTO DESTACADO (HIGHLIGHTED 6) ========== */

@media screen{

	.home #hlt-text .box{
		position: relative;
		text-align: left;
	}

	.home #hlt-text .box .title{
		font-size: 36px;
		line-height: 1.2;
		margin-bottom: 50px;
	}

	.home #hlt-text .box p{
		color: var(--negro);
		text-align: left;
		font-size: 1.2rem;
		font-style: normal;
		font-weight: 400;
		line-height: 200%; /* 4.85714rem */
		letter-spacing: -0.04857rem;
		margin: 0px ;
		padding: 0px;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		max-width: 67.14286rem;
		width: 100%;
	}

	.home #hlt-text .box .fck img{
	display: inline-block;
	max-width: 100%;
	height: auto;
	}

	.home #hlt-text .box .btn {
		margin-top: 50px;
	}

}/* termina @media screen */

@media screen and (min-width: 992px) and (max-width: 1199px) {

	.home #hlt-text .box{
		background-attachment: scroll;
		background-position: center center;
	}

}/* termina @media screen and (min-width: 992px) and (max-width: 1199px) */

@media screen and (min-width: 768px) and (max-width: 991px) {
	.home #hlt-text .box{
		background-attachment: scroll;
		background-position: center center;
	}	
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 767px) {

	.home #hlt-text .box{
		background-attachment: scroll;
		background-position: center center;
	}
	.home #hlt-text .box .title{
		margin-bottom: 30px;
	}
	.home #hlt-text .box p {
		font-size: 2rem;
		line-height: 160%;
	}
	.home #hlt-text .box .btn {
		margin-top: 40px;
	}	

}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== IMAGEN DESTACADA (HIGHLIGHTED 10) ========== */

@media screen{

	.sop_home_imagen_destacada{
		/*height: 600px;*/
		position: relative;
		background-color: #fff;
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		text-align: center;
	}

}/* termina @media screen */




/* ===================================== */
/* ========== DATOS DE CONTACTO (HIGHLIGHTED 7) ========== */

@media screen{

	.home #hlt-contact .box{
		position: relative;
		text-align: center;
	}

	.mod_contacto{
		text-align: left;
	}

	.mod_contacto .title_sep_white{
		width: 20px;
		height: 2px;
		margin: 0px 0px 20px 0px;
	}

	.mod_contacto .text{
		margin-top: 0px;
	}

	.mod_contacto .text .info {
		margin-bottom: 40px;
	}

	.mod_contacto .text .info .fck-editor {
		margin-top: 30px;
	}

	.mod_contacto .text .info .fck-editor p {
		margin-top: 0;
	}

	.mod_contacto .text .info p{
		font-size: 1.15rem;
		line-height: 1.6;
		font-weight: 400;
		text-align: center;
		margin-top: 30px;
		margin-bottom: 0;
	}

	.sop-mapa{
		position: relative;
	}

	.sop-mapa iframe{
		width: 100%;
		display: block;
		filter: grayscale(100%);
	}

}/* termina @media screen */

@media screen and (max-width: 991px) {
	.mod_contacto .title_sep_white{
		margin: 0px auto 20px auto;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.mod_contacto .text {
		margin-top: 0px;
		margin-bottom: 30px;
	}
	.mod_contacto .text h3{
		margin-top: 0px;
	}
	.mod_contacto .text h3,
	.mod_contacto .text p{
		text-align: center;
	}	
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 767px) {

	.mod_contacto{
		text-align: center;
		margin-left: 0px;
		margin-right: 0px;
	}
	.mod_contacto .text{
		margin-top: 0px;
		margin-bottom: 30px;
		padding-right: 0;
		padding-left: 0;
	}
	.mod_contacto .text h3,
	.mod_contacto .text p{
		text-align: center;
	}
	.mod_contacto .map{
		padding-left: 0px;
		padding-right: 0px;
	}

}/* termina @media screen and (max-width: 767px) */




/* ===================================== */
/* ========== LISTADOS ========== */
/* NOVEDADES (HIGHLIGHTED 2)*//* EDITORIALES *//* RELACIONADOS *//* SUBSECCIONES */

@media screen{

	.home #hlt-contents .box,
	.home #hlt-products .box {	
		position: relative;
		/* background: #fff; */
	}

	

	.related{
		margin-top: 30px;
	}
	
	.related .title{
		text-transform: none;
		text-align: left;
		margin-bottom: 0;
	}	

	.box-destacados {
		margin-top: 50px;
		position: relative;
	}

	.list-card {
		margin-bottom: 70px;
	}

	.list-card a {
		text-decoration: none;
	}

	.list-card figure {
		margin-bottom: 20px;
		overflow: hidden;
		position: relative;
		background: var(--negro);
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}

	.list-card figure:hover img{
		opacity: 0.3;
	}

	.list-card figure img.hvr {
		display: inline-block;
		vertical-align: middle;
		-webkit-transform: perspective(1px) translateZ(0);
		transform: perspective(1px) translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-property: transform;
		transition-property: transform;
	}

	.list-card:hover figure img.hvr,
	.list-card:focus figure img.hvr,
	.list-card:active figure img.hvr {
		-webkit-transform: scale(1.02);
		transform: scale(1.02);
	}

	.list-card .text h1{
		font-size: 1.29rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		font-weight: 700;
		margin: 0;
		padding: 0 15px 0 0;	
	}

	/* .list-card:hover .text h1 a{
		color: var(--negro);
	} */

	.list-card .text h1 a:hover{
		opacity: 0.7;
	}

	.list-card .price {
		font-size: 1.15rem;
		line-height: 1.5;
		font-weight: 700;
		white-space: nowrap;
	}

	.list-card .text p {
		font-size: 1.15rem;
		line-height: 1.6;
		letter-spacing: 0.015em;
		font-weight: 400;
		margin: 0 0 0px 0;
		padding: 10px 0 0 0;	
	}

	.list-card .text .date { 
		font-size: 1rem;
		line-height: 1;
		font-weight: 400;
		font-style: italic;
		margin-bottom: 1rem;
	}

	.list-card figure  .btn {
		font-size: 11px;
		letter-spacing: 0.15em;
		font-weight: 500;
		width: 140px;
		text-align: center;
		padding: 18px 12px;
		background: transparent;
		border: 1px solid #fff;
		color: #fff;
		position: absolute;
		top: 50%;
		right: 50%;
		transform: translate(50%,-50%);
		opacity: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;	
	}

	.list-card figure:hover .btn{
		opacity: 1;
	}


}/* termina @media screen */

@media screen and (max-width: 767px) {
	.home #hlt-contact .box .title,
	.home #hlt-text .box .title,
	.home #hlt-contents .box .title,
	.home #hlt-products .box .title,
	.subsection-title.title{
		font-size: 26px;
	}
}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== PAGINADOR ========== */

@media screen{

	#paginador_contenedor{
		margin: 10px 0px 50px 0px;
		padding:0px 0 0px 0;
		position: relative;
		text-align: center;
	}

	#paginador_contenedor span{
		color: #d6d6d6;
	}

	#paginador_contenedor span,
	#paginador_contenedor a{
		display: inline-block;
		line-height: 1;
		padding: 0px 10px;
	}

	#paginador_contenedor a{
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	#paginador_contenedor span.numero{
		padding: 0px 10px 0 10px;
		font-weight: 700;
		font-size:14px;
		color: #333 !important;
	}

}/* termina @media screen */



/* ===================================== */
/* ========== CONTENIDOS / PRODUCTOS ========== */

@media screen{

	.content header .title_sep,
	.descargas .title_sep,
	.galeria_de_imagenes .title_sep,
	.related .title_sep,
	.content_video .title_sep,
	.box-form-consulta .title_sep{
		text-align: left;
		width: 100%;
		border-top:1px solid #d6d6d6;
		background: transparent;
		margin: 0 0 27px 0;
	}

	.content header .title_sep,
	.galeria_de_imagenes .title_sep{
		margin: 0;
	}

	.content_contacto header .title{
		text-align: center;
		text-transform: uppercase;
	}

	.content .source{
		font-size: 12px;
		line-height: 24px;
		font-weight: 400;
		margin: 0 0 20px 0;
	}

	.content .source i{
		font-weight: 700;
	}

	.content .desc,
	.galeria_de_imagenes .desc,
	.sop > .desc,
	.desc_list,
	#hlt-contents .desc-hlt,
	#hlt-products .desc-hlt{
		font-size: 1.15rem;
		line-height: 1.6;
		font-weight: 400;
		letter-spacing: 0.015em;
		margin: 0 0 0px 0;
	}

	.desc_list,
	#hlt-contents .desc-hlt,
	#hlt-products .desc-hlt{
		text-align: center;
		margin-top: 30px;
		margin-bottom: 0;	
	}

	.sop > .desc{
		font-size: 14px;
	}

	.content .desc{
		font-size: 15px;
		line-height: 26px;
		margin: 0 0 30px 0;
		letter-spacing: 0.075em;
		font-size: 400;
	}

	.cart-end .desc {
		margin: 0 0 30px 0;
	}

	.galeria_de_imagenes .desc{
		margin-top: 15px;
		margin-bottom:0;
	}

	.content .date{
		font-size: 1.15rem;
		line-height: 1;
		font-style: italic;
		margin: 35px 0 0;
		padding: 0 0 0 0;
	}

	.content .main_img,
	.product .main_img {
		padding: 0;
		margin: 0 0 50px 0;
		position: relative;
	}

	.product .main_img {
		margin: 0;
	}	

	.content-template .product header {
		border-bottom: 1px solid #ccc;
		padding-bottom: 25px;
		margin-bottom: 25px;
	}

	.content-template .product .title {
		text-align: left;
		margin-bottom: 0;
	}

	.content-template .product h1.title {
		font-size: 32px;
	}

	.content-template .product .price {
		margin-top: 15px;
		font-size: 18px;
	}

	.content-template .product .code {
		font-size: 18px;
		margin-bottom: 20px;
	}	

	.content-template .product .summary {
		font-size: 1.15rem;
		line-height: 1.5;
		margin: 0 0 25px 0;
	}	

	.content .texto,
	.content p,
	.content-template .product .description {
		font-size: 15px;
		line-height: 26px;
		letter-spacing: 0.075em;
		font-weight: 400;
	}

	.content-template .product .description {
		margin-top: 50px;
	}	

	.content .texto{
		margin: 0 0 50px 0;
		text-align: left;
		position: relative;
	}

	/* .content header .title,
	.content .desc,
	.content .texto,
	.content .main_img {
		padding: 0 390px 0 0;
	} */

	.content header .sub-title,
	.product header .sub-title,
	.section-head h2.sub-title {
		font-size: 12px;
		letter-spacing: 0.075em;
		text-transform: capitalize;
		color: var(--gris);
		margin-bottom: 15px;
	}

	.content .texto img{
		max-width: 100%;
		height: auto;
		display: inline-block;
	}

	.content p{
		padding: 0px;
		margin: 0px;
	}

	.content ul{
		text-align: left;
	}

	.content .texto a{
		text-decoration: underline;
	}

	.content .texto.hlt_contact{
		margin-bottom: 45px;
		font-size: 15px;
		line-height: 26px;
		letter-spacing: 0.075em;
		text-align: center;
	}

	.content_video{
		margin-top: 80px;
	}
	.content_video .title{
	  	text-align: left;
	}	

	#content-downloads {
		margin-top: 30px;
		margin-bottom: 50px;
	}
	
	.descargas,
	.descargas .title{
	  text-align: left;
	}
	
	.descargas .title{
		margin-bottom: 0;
	}
	
	.descargas .box {
		margin-top: 15px;
	}
	
	.descargas a{
	  font-size: 1.15rem;
	  text-align: left;
	  text-decoration: none;
	}
	
	.descargas a em{
		color: #999;
	}	

}/* termina @media screen */


@media screen and (min-width: 1200px) {

	#hlt-contents .desc-hlt,
	#hlt-contents .title-hlt,
	#hlt-products .desc-hlt,
	#hlt-products .title-hlt{
		padding: 0 200px;
	}
}/* termina @media screen and (min-width: 1200px) */

@media screen and (min-width: 992px) and (max-width: 1199px) {

	/* .content header .title,
	.content .desc,
	.content .texto,
	.content .main_img {
		padding-right: 190px;
	} */

	#hlt-contents .desc-hlt,
	#hlt-contents .title-hlt,
	#hlt-products .desc-hlt,
	#hlt-products .title-hlt{
		padding: 0 100px;
	}

}/* termina @media screen and (min-width: 992px) and (max-width: 1199px) */

@media screen and (min-width: 768px) and (max-width: 991px) {
	.fck_template {
		padding: 0 0px;
	}	
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (min-width: 768px) and (max-width: 991px) {
	/* .content header .title,
	.content .desc{
	  padding-right: 30px;
	} */
	.content .texto{
	  padding-right: 0;
	}
	
  
	#hlt-contents .desc-hlt,
	#hlt-contents .title-hlt,
	#hlt-products .desc-hlt,
	#hlt-products .title-hlt {
	  padding: 0 30px;
	}
	.content .main_img{
		padding-right: 0;
	}
	.product .main_img {
		margin-top: 30px;
	}		
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 767px) {
	.content header .title,
	.content-template .product h1.title {
		padding: 0;
		font-size: 26px;
	}
	.content .desc,
	.galeria_de_imagenes .desc,
	.sop > .desc{
		padding: 0 0px;
	}
	.content .desc,
	.content .texto,
	.content p {
		font-size: 1.15rem;
	}
	.content .texto{
		padding: 0 0px;
	}
	#hlt-contents .desc-hlt,
	#hlt-contents .title-hlt,
	#hlt-products .desc-hlt,
	#hlt-products .title-hlt{
	  padding: 0 15px;
	}
	.content .main_img{
		padding-right: 0;
	}
	.fck_template .col{
		margin-bottom: 15px;
	}
	.fck_template .col p{
		text-align: center;
	}
	.fck_template .col-text-left,
	.fck_template .col-text-right{
		text-align: center;
	}
	.quote .fa-quote-left{
		top: 10px;
		left: 10px;
	}
	.quote .fa-quote-right{
		bottom: 10px;
		right: 0px;
	}
	.quote p{
		font-size: 18px;
		line-height: 30px;
		font-weight: 300;
		font-style: italic;
		padding: 0 50px !important;
	}
	.box_00,
	.box_01,
	.box_02,
	.box_03{
	  padding: 30px 30px;
	  font-size: 1.15rem;
	}	
	.content_video{
		margin-top: 50px;
	}	
	.product .main_img {
		margin-top: 30px;
	}	
}/* termina @media screen and (max-width: 767px) */

/* ============================ */
/* ========== QUANTITY / COMMENTS ========== */

@media screen {
	.content-template .sop .product .quantity,
	.cart-table .cart-table-column.product-quantity .quantity,
	.card-product .quantity {
		color: #000;
		padding: 0 0;
	}

	.content-template .sop .product .quantity,
	.cart-table-column.product-quantity .quantity,
	.card-product .quantity {
		display: inline-block;
		border: 1px solid #909090;
		margin-right: 15px;
	}

	.cart-table-column.product-quantity .quantity {
		margin: 0;
	}

	.content-template .product .box-cart-add {
		margin-top: 30px;
	}

	.content-template .sop .product .quantity span,
	.cart-table .cart-table-column.product-quantity .quantity span,
	.card-product .quantity span {
		display: block;
		font-size: 11px;
		line-height: 1;
	}

	.content-template .sop .product .quantity .btn,
	.cart-table .cart-table-column.product-quantity .quantity .btn,
	.card-product .quantity .btn {
		padding: 12px 12px;
		background: transparent;
		font-size: 11px;
		line-height: 1;
		color: #333;
		outline: none;
	}

	.content-template .sop .product .quantity .btn:hover,
	.content-template .sop .product .quantity .btn:focus,
	.cart-table .cart-table-column.product-quantity .quantity .btn:hover,
	.cart-table .cart-table-column.product-quantity .quantity .btn:focus,
	.card-product .quantity .btn:hover,
	.card-product .quantity .btn:focus, {
		box-shadow: none;
		background: transparent;
		color: #000;
		opacity: 1;
	}

	.content-template .sop .product .quantity .btn:focus,
	.cart-table .cart-table-column.product-quantity .quantity .btn:focus,
	.card-product .quantity .btn:focus, {
		outline: none;
	}

	.content-template .sop .product .quantity input,
	.cart-table .cart-table-column.product-quantity .quantity input,
	.card-product .quantity input {
		background: transparent;
		color: #000;
		border: 1px solid #ccc;
		border-top: 0;
		border-bottom: 0;
		text-align: center;
		padding: 3px 0;
		font-size: 12px;
		line-height: 1;
		width: 50px;
	}

	.content-template .sop .product .quantity input:focus,
	.cart-table .cart-table-column.product-quantity .quantity input:focus {
		background-color: transparent;
		outline: none;
	}

	.content-template .product .comments {
		margin-bottom: 30px;
	}

	.content-template .product .comments textarea {
		padding: 12px;
	}

	.btn-add-cart .btn {
		/* margin-top: 30px; */
		padding-top: 13px;
		padding-bottom: 13px;
		font-size: 12px;
	}

	.btn-add-cart .btn:focus {
		color: #fff;
		outline: none;
		outline-offset: 0;
	}

	#cart-detail .cart-general-comments {
		width: 540px;
	}
	#cart-detail .cart-general-comments .form-control{
		height: 183px !important;
	}
	#cart-confirm .cart-general-comments {
		font-size: 1.15rem;
		padding-right: 30px;
	}

}

@media screen and (max-width: 767px) {
	#cart-detail .cart-general-comments {
		width: 100%;
	}
	#cart-confirm .cart-general-comments {
		padding: 30px;
		border: 1px solid #ccc;
	}	
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	#cart-detail .cart-general-comments {
		width: 320px;
	}
}

/* ================================================================ */
/* ========== CARRO ========== */

@media screen {

	.template-cart #cart-detail .alert,
	.template-cart #cart-confirm .alert{
		margin-bottom: 0;
		margin-top: 50px;
		padding: 70px;
	}

	.cart-table {
		margin-top: 50px;
	}
	.cart-table .cart-table-head {
		border-top: 1px solid #bbbbbb;
		color: #000;
		line-height: 1;
		font-weight: 700;
	}
	.cart-table .cart-table-row {
		border-bottom: 1px solid #bbbbbb;
	}
	.cart-table .cart-table-row:hover {
		background-color: #f2f2f2;
	}
	.cart-table .cart-table-row:first-child:hover {
		background-color: transparent;
	}	
	.cart-table .cart-table-column {
		padding: 25px 10px;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.cart-table .cart-table-head .cart-table-column {
		padding-top: 14px;
		padding-bottom: 14px;
	}
	.cart-table .cart-table-column.product-remove {
		width: 5%;
	}
	.cart-table .cart-table-column.product-image {
		width: 10%;
	}
	.cart-table .cart-table-column.product-name {
		width: 41%;
	}
	/* .cart-table .cart-table-column.product-code { width: 14%; } */
	/* .cart-table .cart-table-column.product-size { width: 14%; } */
	.cart-table .cart-table-column.product-price { width: 12%; }
	.cart-table .cart-table-column.product-quantity {
		width: 20%;
	}
	.cart-table .cart-table-column.product-total {
		width: 12%;
	}
	/* Se suma el porcentaje de product-remove en caso de que esta como una columna, porque el mismo no esta en el resumen del carro */
	#cart-confirm .cart-table .cart-table-column.product-name {
		width: 54%;
	}
	#cart-confirm .cart-table .cart-table-column.product-quantity {
		width: 12%;
	}
	.cart-table .cart-table-column>div {
		width: 100%;
	}
	.cart-table .cart-table-column.product-image .default {
		border: 1px solid #ccc;
	}
	.cart-table .cart-table-column.product-price>div, .cart-table .cart-table-column.product-total>div, #cart-confirm .cart-table .cart-table-column.product-quantity>div {
		text-align: right;
	}
	.cart-table .cart-table-column.product-remove {
		font-size: 1.15rem;
	}
	.cart-table .cart-table-column.product-remove a {
		color: #fff;
		background-color: #222;
	    width: 18px;
		height: 18px;
		text-decoration: none;
	}
	.cart-table .cart-table-column.product-remove a i {
		font-size: 11px;
		line-height: 18px !important;
	}
	.cart-table .cart-table-column.product-remove a:hover {
		background-color: #333;
	}
	.cart-table .cart-table-column.product-name .name {
		color: #000;
		font-size: 1.15rem;
		font-weight: 700;
	}
	.cart-table .cart-table-column.product-name .name:hover {
		color: #666;
		text-decoration: none;
	}
	.cart-table .cart-table-column.product-name .info {
		font-size: 0.95rem;
		font-weight: 400;
		margin-top: 5px;
	}	
	.cart-table .btn-refresh a {
		padding: 12px 40px;
		font-size: 12px;
		letter-spacing: 0.07em;
	}

	.cart-table .cart-table-foot {
		width: 300px;
	}		

	.cart-table .cart-table-foot .title {
		background-color: #d2d2d2;
		padding: 13px;
		font-size: 12px;
		letter-spacing: 0.07em;
	}

	
	.cart-table .cart-table-foot .cart-table-foot-row {
		padding: 30px 15px;
		border-bottom: 1px solid #7c7c7c;
		font-size: 14px;
	}

	
	.cart-table .cart-table-foot .cart-table-foot-row:hover {
		background-color: #f2f2f2;
	}

	.cart-table .cart-table-foot .cart-table-foot-row.total {
		border-bottom: 0;
		font-weight: 900;
	}

	.cart-table .cart-table-foot .btn {
		width: 100%;
		padding: 12px;
		font-size: 12px;
		letter-spacing: 0.07em;
		text-transform: uppercase;
		display: block;
	}


}

/* end @media screen  */

@media screen and (min-width: 768px) {

	.cart-table .cart-table-column.product-price strong,
	.cart-table .cart-table-column.product-quantity strong,
	.cart-table .cart-table-column.product-total strong {
		display: none;
	} 

} 

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.cart-table .cart-table-column.product-name {
		width: 35%;
	}	
	#cart-confirm .cart-table .cart-table-column.product-name {
		width: 50%;
	}	
	#cart-confirm .cart-table .cart-table-column.product-quantity {
		width: 10%;
	}
	.cart-table .cart-table-column.product-price,
	.cart-table .cart-table-column.product-total {
		width: 15%;
	}	
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.cart-table .cart-table-column.product-name {
		width: 24%;
	}
	.cart-table .cart-table-column.product-price,
	.cart-table .cart-table-column.product-total {
		width: 20%;
	}	

	#cart-confirm .cart-table .cart-table-column.product-name {
		width: 38%;
	}

	.cart-table .cart-table-column.product-quantity {
		width: 21%;
	}

	#cart-confirm .cart-table .cart-table-column.product-quantity {
		width: 12%;
	}

	#cart-confirm .cart-table .cart-table-column.product-price,
	#cart-confirm .cart-table .cart-table-column.product-total {
		width: 20%;
	}

}

@media screen and (max-width: 767px) {

	.template-cart {
		text-align: center;
	}

	#cart-detail,
	#cart-confirm {
		max-width: 360px;
		display: inline-block;
	}

	.cart-table {
		font-size: 14px;
	}
	.cart-table .cart-table-head { display: none !important; }

	.cart-table .cart-table-row {
		border-bottom: 0;
		padding: 0;
		margin-bottom: 70px;
		position: relative;
	}
	.cart-table .cart-table-row,
	.cart-table .cart-table-row:hover {
		background: #f5f5f5;
	}	
	.cart-table .cart-table-column { 
		padding: 0;
	}	
	.cart-table .cart-table-column.product-image {
		-ms-flex-order:-2;
		order: -2;
		width: 100% !important;
	}	
	.cart-table .cart-table-column.product-image div {
		width: auto;
	}
	
	.cart-table .cart-table-column.product-name {
		-ms-flex-order:-1;
		order: -1;
		text-align: left;
	}
	.cart-table .cart-table-column.product-name,
	.cart-table .cart-table-column.product-price {
		padding: 20px 0;
		line-height: 1.2;
	}

	.cart-table .cart-table-column.product-name {
		width: 100% !important;
	}

	.cart-table .cart-table-column.product-name .info {
		margin-top: 10px;
	}

	.cart-table .cart-table-column.product-quantity {
		width: 50% !important;
		padding-left: 15px;
	}

	.cart-table .cart-table-column.product-price {
		width: 50% !important;
		padding: 0;
		padding-right: 15px;
	}	

	.cart-table .cart-table-column.product-total {
		width: 100% !important;
	}

	.cart-table .cart-table-column.product-name {
		padding: 20px 15px 25px;
	}

	.cart-table .cart-table-column.product-name .name { 
		font-size: 18px;
	}

	.cart-table .cart-table-column.product-remove {
		z-index: 1;
		-ms-flex-order:1;  order: 1;
		position: absolute;
		top: -10px;
		left: -10px;
		width: auto !important;
	}

	.cart-table .cart-table-column.product-remove a {
		width: 35px;
		height: 35px;
	}
	.cart-table .cart-table-column.product-remove a i {
		font-size: 1.15rem;
		line-height: 35px !important;
	}

	#cart-confirm .cart-table .cart-table-column.product-quantity > div {
		text-align: left;
	}

	.cart-table .cart-table-column.product-price > div{
		text-align: right;
	}

	.cart-table .cart-table-column.product-total > div {
		text-align: center;
	}

	.cart-table .cart-table-column.product-price .text,
	.cart-table .cart-table-column.product-quantity .text,
	.cart-table .cart-table-column.product-total .text {
		display: inline-block;
	}

	.cart-table .cart-table-column.product-quantity {
		order: -1;
		text-align: left;
	}

	.cart-table .cart-table-column.product-total {
		font-size: 1.15rem;
		order: 2;
		
	}		
	.cart-table .cart-table-column.product-total > div{
		margin-top: 30px;
		padding: 15px;
		background: #222;
		color: #fff;
	}


	.cart-table .cart-table-foot {
		width: 100%;
		margin-top: 30px;
	}
	#cart-confirm .cart-table .cart-table-foot {
		border-top: 1px solid #7c7c7c;
	}
	.cart-table .btn-refresh a {
		width: 100%;
	}
	
}

/* termina @media screen and (max-width: 767px) */


/* ===================================== */


/* ============================================== */
/* =========== PLUGINS REDES SOCIALES =========== */

@media screen{
	.content .redes_plugins{
		position: relative;
		margin-top: 0;
		margin-bottom: 35px;
	}

	.product .redes_plugins {
		margin-top: 30px;
	}
	
	.redes_plugins .plugin{
		float: left;
	}
	
	.redes_plugins .face{
		margin: 0px 15px 0 0 !important;
	}
	
	.redes_plugins .twit{
	  	margin:0px 15px 0 0 !important;
		width: 60px !important; 
	}
	
	.redes_plugins .whatsapp{
	  	margin: -1px 0 0 0;
	}
	
	.plugin_face{
		margin:-4px 15px 0 !important;
	}
	
	.plugin_twit{
		width: 60px !important; 
	}
}/* termina @media screen */

@media screen and (max-width: 375px) {
	.redes_plugins .plugin{
		float: none;
	}
	.redes_plugins .twit{
		margin-bottom: 6px !important;
	}
	.redes_plugins .face{
		margin-bottom: 12px !important;
	}
}/* termina @media screen and (max-width: 767px) */


/* ============================================== */
/* =========== FCK =========== */

@media screen{
	.fck_h3{
		font-size: 28px;
		line-height: 1.2;
		font-weight: 400;
	}

	.fck_h4{
		font-size: 26px;
		line-height: 1.2;
		font-weight: 400;
	}

	.fck_h5{
		font-size: 24px;
		line-height: 1.2;
		font-weight: 400;
	}

	.fck_h6{
		font-size: 21px;
		line-height: 1.2;
		font-weight: 400;
	}
	
	.fck_h3 b,
	.fck_h3 strong,
	.fck_h4 b,
	.fck_h4 strong,
	.fck_h5 b,
	.fck_h5 strong,
	.fck_h6 b,
	.fck_h6 strong{
		font-weight: 700;
	}
	
	.fck_h3 u,
	.fck_h4 u,
	.fck_h5 u,
	.fck_h6 u{
		text-decoration: none;
		border-bottom: 1px solid #d6d6d6;
		padding-bottom: 5px;
	}
	
	.box_00{
		border: 1px solid;
		padding: 30px;
	}
	
	.box_01{
		border: 1px dashed;
		padding: 30px;
	}
	
	.box_02{
		color: #fff;
		padding: 30px;
	}
	
	.box_03{
		background: #d6d6d6;
		border: 1px solid #b6b6b6;
		padding: 30px;
	}
	
	.box_00,
	.box_01,
	.box_02,
	.box_03{
		padding: 50px;
		font-size: 18px;
	}	
	.fck_template{
		margin-left: 0px;
		margin-right: 0px;
		margin-bottom: 30px;
	}
	
	.fck_template figure figcaption{
		color: #fff;
		text-align: center;
		padding: 10px 10px 12px 10px;
		font-size: 10px;
		line-height: 12px;
		font-weight: 400;
	}
	
	.fck_template .col p{
		padding: 0 0px;
	}
	
	.fck_template .col-text-left{
		text-align: left;
	}
	
	.fck_template .col-text-right{
		text-align: right;
	}
	
	.quote{
		position: relative;
	}
	
	.quote .fa-quote-left{
		position: absolute;
		top: 10px;
		left: 0px;
	}
	
	.quote .fa-quote-right{
		position: absolute;
		bottom: 10px;
		right: 0px;
	}
	
	.quote .fa{
		font-size: 42px;
	}
	
	.quote p{
		font-size: 21px;
		line-height: 30px;
		font-weight: 300;
		font-style: italic;
		padding: 0 40px !important;
	}
}/* termina @media screen */


/* ============================================== */
/* =========== GALERIA DE IMAGENES RELACIONADA =========== */

@media screen{
	.galeria_de_imagenes {
		margin-top: 30px;
		margin-bottom: 50px;
	}

	.product .galeria_de_imagenes {
		margin-top: 50px;
		margin-bottom: 0;
	}
	
	.galeria_de_imagenes header{
		position: relative;
	}
	
	.galeria_de_imagenes .title{
		text-transform: none;
		margin-top: 40px;
		margin-bottom: 0;
		text-align: left;
	}
	
	.galeria_de_imagenes .modulo{
		position: relative;
		margin:0;
		margin-top: 25px;
	}
	
	.galeria_de_imagenes .modulo .col{
		position: relative;
		padding: 0 0;
	}
	
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev,
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next{
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: 10;
		background: #000;
		outline: none;
		border:0;
		width: 30px;
		height: 30px;
		opacity: 0.7;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev{
		left: 0;
		padding: 0;
	}
	
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next{
		right: 0;
		padding: 0;
	}
	
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev i,
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next i{
		font-size: 21px;
		line-height: 1.4;
	  	color: #fff;
	}
	
	
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev:hover,
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next:hover {
		opacity: 1;
	}
	
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-prev.disabled,
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage-outer .owl-next.disabled{
	  	opacity: 0;
	}
}/* termina @media screen */

@media screen and (max-width: 767px) {

	.galeria_de_imagenes .modulo {
		padding: 0 0;
		margin-right: 0;
		margin-left: 0;
	}

}/* termina @media screen and (max-width: 767px) */


/* ============================================== */
/* =========== FORMULARIO DE CONSULTA =========== */

@media screen{
	.box-form-consulta{
		margin-bottom: 50px;
	}
	
	.box-form-consulta .title{
		margin-top: 30px;
		margin-bottom: 30px;
		text-align: left;
	}
}/* termina @media screen */


/* ============================================== */
/* =========== FORMULARIOS =========== */

@media screen{
	textarea,
	input[type="text"],
	input[type="button"],
	input[type="submit"],
	input[type="password"]{
		-webkit-appearance: none;
	}
	
	.home .form_contacto .form-group{
		text-align: left;
	}
	
	.form-group label {
		font-weight: 400;
	}
	
	.form-control {
		display: block;
		/*width: 35.78571rem;*/
		max-width: 100%;
		height: auto;
		color: var(--negro);
		color: #C4C4C4;#C4C4C4;
		font-size: 1.14286rem;
		font-style: normal;
		font-weight: 400;
		line-height: 3rem;
		letter-spacing: -0.02286rem;
		background-color: transparent;
		border: 1px solid #C4C4C4;
		border-radius: 30px;
		-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 00);
		box-shadow: inset 0 0px 0px rgba(0, 0, 0, 00);
		-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
		transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		padding: 0.64rem 2.21rem;
	}
	
	.form-control:hover {
		border: 1px solid var(--amarilllo);
	}
	
	.form-control:focus{
		border: 1px solid var(--amarilllo);
		outline: 0;
		-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 0, 0);
			box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 0, 0);
	}

	textarea.form-control {
		border-radius: 30px;
	}
	
	.form_contacto{
		padding: 0;
		text-align: center;
		margin: 0 auto;
		/*width: 35.78571rem;*/
		max-width: 100%;
	}
	
	.content_contacto .form_contacto,
	.content .form_contacto {
		text-align: center;
	}
	
	.form_contacto h5{
		margin-bottom: 15px;
	}

	
	/* Placeholders */
	
	.form-control:-moz-placeholder,
	.form-control::-moz-placeholder,
	.form-control:-ms-input-placeholder,
	.form-control::-webkit-input-placeholder {
		color: #757575;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;	
		transition: all 0.2s ease-in-out;
	}
	
	.form-control:hover:-moz-placeholder,
	.form-control:focus:-moz-placeholder,
	.form-control:hover::-moz-placeholder,
	.form-control:focus::-moz-placeholder,
	.form-control:hover:-ms-input-placeholder,
	.form-control:focus:-ms-input-placeholder,
	.form-control:hover::-webkit-input-placeholder,
	.form-control:focus::-webkit-input-placeholder {
		color: #757575;
	}
	
	/* Autofill */
	
	input:-webkit-autofill,
	input:-webkit-autofill:focus,
	input:-webkit-autofill:active,
	input:-webkit-autofill:hover {
		box-shadow: 0 0 0 50px #ffffff inset!important;
		-webkit-box-shadow: 0 0 0 50px #ffffff inset!important;
		-webkit-text-fill-color: #696969;
	}
	
	/* Recaptcha */
	
	.grecaptcha-badge { visibility: hidden; }

	.form_contacto .campo_obligatorio {
		color: var(--text_cart_placeholder);
		text-align: left;
		font-size: 1.14286rem;
		font-style: normal;
		font-weight: 400;
		line-height: 3rem;
		letter-spacing: -0.02286rem;
	}
	
	p.recaptcha-terms{
		font-size: 9px !important;
		line-height: 1.2 !important;
		font-weight: 400 !important;
		color: #ccc !important;
	}
	
	p.recaptcha-terms a{
		color: #a2a2a2 !important;
	}
	
	.mod_contacto p.recaptcha-terms {
		text-align: center;
	}
}/* termina @media screen */

@media screen and (min-width: 992px) and (max-width: 1199px) {

}/* termina @media screen and (min-width: 992px) and (max-width: 1199px) */

@media screen and (max-width: 767px) {



	.content_contacto .form_contacto,
	.content .form_contacto{
		padding-right: 0;
	}	

}/* termina @media screen and (max-width: 767px) */


/* ===================================== */
/* ========== POP UP PRE HOME ========== */

@media screen and (min-width: 1200px) {
	.popup_prehome .modal-dialog{
		width: 920px !important;
	}
}/* termina @media screen and (min-width: 1200px) */

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.popup_prehome .modal-dialog {
		width: 800px !important;
	}
}/* termina @media screen and (min-width: 992px) and (max-width: 1199px) */

@media screen and (min-width: 768px) and (max-width: 991px) {
	.popup_prehome .modal-dialog {
		width: 600px !important;
	}	
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

@media screen and (max-width: 767px) {
	.popup_prehome .modal-dialog{
		width: 100% !important;
	}
}/* termina @media screen and (max-width: 767px) */


/*==================================== */
/*=== CSS OWL CAROUSEL ===*/

@media screen and (min-width: 768px) {
	.galeria_de_imagenes .modulo .owl-carousel .owl-stage{
		display: flex;
	}
	.galeria_de_imagenes .owl-stage-outer{
		max-height: 200px !important;/* Alto del soporte, debe ser igual al alto de la imagen */
	}
	.galeria_de_imagenes .owl-gallery-image{
		width: auto !important;
		height: 200px !important; /* Alto de la imagen, debe ser igual al alto del soporte */
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.galeria_de_imagenes .owl-gallery-image:hover{
		opacity: 0.8 !important;
	}
} /* termina @media screen and (min-width: 768px) */
  
@media screen and (max-width: 767px) {
	.galeria_de_imagenes .owl-gallery-image{
		max-width: 100% !important;
		height: auto !important;
		display: inline-block;
	}
}/* termina @media screen and (max-width: 767px) */
  


/* =============================== */
/* ======= COLORES NEUTROS =======*/


@media screen{
	
	ul.menu_collapse>.active,
	.carousel_control_mobile a,
	.fck_template figure figcaption,
	.box_02,
	#footer{
		background-color: #fff;
	}
	.form-control:hover,
	.form-control:focus{
		border-color: var(--amarilllo) !important;
	}
	.navbar-toggle .icon-bar{
		background-color: #222;
	}
}/* termina @media screen */

@media screen and (min-width: 768px) {
	.go-up-btn:hover{
		background-color: #222;
	}	
}/* termina @media screen and (min-width: 768px) */


/* ======================================= */
/* ========== LOGIN ========== */

@media screen {

	.content-template.template-login .main-content,
	.content-template.template-register .main-content,
	.content-template.template-reset-pass .main-content {
		width: 100%;
		max-width: 360px;
		text-align: center;
	}

	.content-template.template-register .main-content {
		max-width: 500px;
	}

	.box-form-login .formulario .form-group,
	.box-form-register .formulario .form-group,
	.box-form-remember-pass .formulario .form-group,
	.box-form-edit-pass .formulario .form-group {
		text-align: left;
	}

	.box-form-login .formulario p.recaptcha-terms,
	.box-form-register .formulario p.recaptcha-terms,
	.box-form-remember-pass .formulario p.recaptcha-terms,
	.box-form-edit-pass .formulario p.recaptcha-terms {
		padding: 0 15px;
		margin: 0;
	}

	.box-form-login .formulario .btn,
	.box-form-register .formulario .btn,
	.box-form-remember-pass .formulario .btn,
	.box-form-edit-pass .formulario .btn {
		min-width: 200px;
	}

	.buttons-box {
		color: #808080;
	}
		
	.buttons-box a{
		display: inline-block;
		border:0;
		line-height: 1;
		letter-spacing: 0;
		font-weight: 500;
		font-size: 14px;
		-webkit-transition: all 0s ease-in-out;
		-moz-transition: all 0s ease-in-out;
		-o-transition: all 0s ease-in-out;
		-ms-transition: all 0s ease-in-out;
		transition: all 0s ease-in-out;
	}
		
	.buttons-box a:hover,
	.buttons-box a:focus{
		text-decoration: underline;
	}
		
	.buttons-box #show_frm_remember_pass,
	.buttons-box #show_frm_login{
		color: #808080;
		margin-top: 30px;
		font-weight: 400;
		margin-bottom: 60px;
	}	

	.buttons-box .btn.btn.secondary-btn {
		font-size: 12px !important;
	}

}

/* LISTADOS (flex) + Cards */
@media screen {
	.list-flex-row {
		margin-left: -15px;
		margin-right: -15px;
	}

	.list-flex-col {
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 70px;
	}

	.card a {
		text-decoration: none;
	}

	.card figure {
		overflow: hidden;
	}

	.card figure img.hvr {
		display: inline-block;
		vertical-align: middle;
		-webkit-transform: perspective(1px) translateZ(0);
		transform: perspective(1px) translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-property: transform;
		transition-property: transform;
	}

	.card:hover figure img.hvr,
	.card:focus figure img.hvr,
	.card:active figure img.hvr {
		-webkit-transform: scale(1.02);
		transform: scale(1.02);
	}

	.card-body {
		padding: 20px 0;
	}

	.card-body .title{
		font-size: 18px;
		line-height: 1.3;
		letter-spacing: 0.01em;
		font-weight: 700;
		margin: 0;
		padding: 0 15px 0 0;	
		text-align: left;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;		
	}
	.card:hover .title {
		color: #222222;
	}
	.card-body .title:hover {
		opacity: 0.7;
	}

	.card-product .card-price {
		font-size: 1.15rem;
		line-height: 1.5;
		font-weight: 700;
		white-space: nowrap;
	}
	.card-body .summary {
		font-size: 1.15rem;
		line-height: 1.6;
		letter-spacing: 0.015em;
		font-weight: 400;
		margin: 0 0 0px 0;
		padding: 10px 0 0 0;		
	}
	.card-footer .button-link {
		font-size: 11px;
		padding: 10px 12px;
		background-color: transparent;
		border: 1px solid #222;
		color: #222;
	}
	.card-footer .comments {
		margin-bottom: 15px;
	}

	.card:hover .button-link{
		background-color: #222;
		color: #fff;
	}

	.card .button-link:hover{
		opacity: 0.7;
	}	

	.card .btn-add-cart .btn {
		width: 100%;
	}

}

@media screen and (min-width: 376px) and (max-width:767px) {
	.card .btn-add-cart .btn {
		width: auto;
	}
}


/*=== SCREEN (termina) ===*/
/*=========================================*/
/*=========================================*/


/*=========================================*/
/*=== CSS IMPRESION (inicio) ===*/
/*=========================================*/

@media print{
	body{
		font-size: 11pt;
		line-height: 16pt;
		color: #000;
	}

	@page {
		size: A4;
		margin: 2cm 1.5cm;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
	  page-break-after: avoid;
	}

	h1{
		font-size: 24pt;
		line-height: 32pt;
		margin: 0;
	}
	h2{
		font-size: 21pt;
		line-height: 28pt;
		margin: 0;
	}
	h3{
		font-size: 18pt;
		line-height: 24pt;
		margin: 0;
	}
	h4{
		font-size: 16pt;
		line-height: 21pt;
		margin: 0;
	}
	h5{
		font-size: 14pt;
		line-height: 18pt;
		margin: 0;
	}
	h6{
		font-size: 14pt;
		line-height: 18pt;
		margin: 0;
	}

	.content .title{
		margin-bottom: 0.5cm;
	}

	.content .desc,
	.galeria_de_imagenes .desc,
	.sop > .desc {
		font-size: 11pt;
		line-height: 16pt;
		font-weight: 400;
		margin: 0 0 1cm 0;
	}

	.content .main_img{
		margin: 0 0 1cm 0;
	}

	.sec_img{
		margin: 0 0 1cm 0;
	}

	.content .texto{
		margin: 0 0 1cm 0;	
	}

	table,
	figure {
	  page-break-inside: avoid;
	}

	img {
	   max-width: 70% !important;
     height: auto !important;
	}

	.logo_print{
		border-bottom: 0.5pt solid #ccc;
		margin:0 0 1.5cm 0 !important;
		padding:0 0 1cm 0 !important
	}

	.footer_print{
		font-size: 10pt;
		line-height: 16pt;
		border-top: 0.5pt solid #ccc;
		margin: 1.5cm 0 0 0;
		padding: 1cm 0 0 0;
	}

	.galeria_de_imagenes{
		display: none !important;
	}

	.fck_h3{
		font-weight: 400;
	}
	.fck_h4{
		font-weight: 400;
	}
	.fck_h5{
		font-weight: 400;
	}
	.fck_h6{
		font-weight: 400;
	}
	.fck_h3 b,
	.fck_h3 strong,
	.fck_h4 b,
	.fck_h4 strong,
	.fck_h5 b,
	.fck_h5 strong,
	.fck_h6 b,
	.fck_h6 strong{
		font-weight: 700;
	}
	.fck_h3 u,
	.fck_h4 u,
	.fck_h5 u,
	.fck_h6 u{
		text-decoration: none;
		border-bottom: 1px solid #000;
		padding-bottom: 5px;
	}
	.box_00{
		border: 1px solid #000;
		padding: 30px;
	}
	.box_01{
		border: 1px dashed #000;
		padding: 30px;
	}
	.box_02{
		border: 1px solid #ccc;
		color: #000;
		padding: 30px;
	}
	.box_03{
		background: #dcdcdc;
		border: 1px solid #b6b6b6;
		color: #000;
		padding: 30px;
	}
  .grecaptcha-badge { visibility: hidden; }
}




/*=========================================*/
/*=== CSS IMPRESION (termina) ===*/
/*=========================================*/





