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

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

@media screen{
	:root{
		--negro: #141414;
		--gris: #515151;
	}
	body{
		font-size: 14px;
		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-weight: 700; }
	
	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: var(--gris);
	}

	.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;
	}	

}/* 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{

	.btn {
		color: #fff;
		background-color: transparent;
		text-transform: uppercase;
		border-radius: 50px;
		font-size: 11px;
		line-height: 13px;
		font-weight: 600;
		letter-spacing: 0.15em;
		padding: 15px 40px;
		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: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: 16px;
		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;
	}

}/* 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{
		font-size: 36px;
		line-height: 1.3;
		font-weight: 700;
		text-align: center;
		margin-bottom: 20px;

	}

	.content header .title{
		font-size: 38px;
		line-height: 1.3;
		font-weight: 700;
		text-align: left;
		padding-right: 340px;
		margin-bottom: 30px;
	}

	.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: 70px 0px 120px 0px;
	}

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

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

	.content{
		position: relative;
	}

}/* 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: #fff;
		padding: 5px 0px 5px 0px;
		position: relative;
		border-bottom: 1px solid #d6d6d6;
	}
	
	.home #header {
		border-bottom: 0;
	}

	#header.header-reverse,
	#header_fixed.header-reverse {
		border-bottom: 0;
		background: #222;
	}
	
	#header .container{
		position: relative;
	}
	
	#header .logo{
		position: relative;
	}
	
	#header_fixed{
		background-color: rgba(255, 255, 255, 0.8);
		-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: 10px 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;
	}
	
	#header_fixed .logo{
		position: relative;
	}
	
	#header_fixed .menu{
		margin: 0;
	}
	
	#header_fixed  .nav_menu > li > a{
		padding: 15px 10px 15px 10px !important;
	}
	
	.header_fixed_anim{
		top: -100%;
	}
	
	.header_fixed_anim2{
		top: 0%;
	}
	
	#header .logo a img,
	#header_fixed .logo a img{
		width: 80px;
	}	

}/* 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: 767px) {

	#header{
		padding: 15px 0;
	}
	#header .logo a img,
	#header_fixed .logo a img{
		max-width: 120px;
		width: 100%;
		height: auto;
	}

}/* 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: 16px;
		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: 13px;
		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: 13px;
		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: 13px;
		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: 13px;
		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 ========== */

@media screen{

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

	.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;
	}

	#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{
		margin: 0 0 0px 0;
	}

	.footer_dinamic a{
		font-size: 9px;
		line-height: 1;
		letter-spacing: 0.05em;
		text-transform: none;
		font-weight: 400;
		color: #fff;
		display: block;
		padding-top: 0;
		text-decoration: none;
		opacity: 0.5;
		-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: 1;
	}

	.footer_dinamic img{
		color: #fff;
		float: left;
		margin-right:5px;
		margin-top: -1px;
	}

	#footer .box-container .box{
		flex: 1;
		display: flex;
		-ms-flex-pack: center;
		justify-content: center;
	}

	#footer .box-container .box:first-child > span { margin-right: auto; }

	#footer .box-container .box:last-child  > span { margin-left: auto; }

}/* 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{
		padding: 30px 15px 30px 15px;
	}
	.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_dinamic{
		float: none;
	    display: inline-block;
	    padding-top: 0px;
	}
	.footer_dinamic a{
		font-size: 9px;
	}
	#footer .box-container .box{
		flex: initial;
		display: block;
		justify-content: initial;
	}

	.footer_text h6{
		margin-bottom: 15px;
	}	

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


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

@media screen{

	.social{
		display: inline-block;
		padding: 0 0;
		margin-bottom: 0;
		font-size: 14px;
		font-weight: normal;
		line-height: 1.428571429;
		text-align: center;
		border: 1px solid transparent;
		border-radius: 0px;
		color: var(--negro);
	}

	.header_redes{
		position: relative;
	}

	.header_redes .social{
		margin: 0px 0px 0 0px;
		background: transparent;
	}

	.header_redes .social{
		margin: 0px 10px 0 10px;
	}
	
	.header_redes .social:hover,
	.header_redes .social:focus{
		background: transparent;
	}
	
	.header_redes .social i.fab.fa-facebook-f,
	.footer_redes .social i.fab.fa-facebook-f{
		font-size: 15px;
		vertical-align: bottom;
	}
	.header_redes .social i.fab.fa-instagram,
	.footer_redes .social i.fab.fa-instagram{
		font-size: 16px;
		vertical-align: bottom;
	}
	.header_redes .social i.fab.fa-twitter,
	.footer_redes .social i.fab.fa-twitter{
		font-size: 15px;
		vertical-align: bottom;
	}
	.header_redes .social i.fab.fa-linkedin-in,
	.footer_redes .social i.fab.fa-linkedin-in{
		font-size: 17px;
		vertical-align: bottom;
	}

	.header_redes .social:hover,
	.header_redes .social:focus{
		background: transparent;
	}

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

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

	.footer_redes .social{
		background: transparent;
		width: 30px;
		height: 30px;
		padding: 4px 0px 0 0;
		margin: 0px 0px 0px 0px;
	}

	.footer_redes .social i{
		color: #fff;
		-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 i,
	.footer_redes .social:focus i{
		opacity: 0.5;
	}

}/* termina @media screen */

@media screen and (max-width: 1199px) {
	.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{
		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{
		border-radius: 0px !important;
		padding: 39px 10px 30px 10px !important;
		margin: 0 0px 0 0px;
		font-size: 13px;
		line-height: 12px;
		letter-spacing: 0.15em;
		font-weight: 700;
		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;
	}

	.nav_menu > li > a:hover,
	.nav_menu > li > a:focus {
		text-decoration: none;
		background: none;
	}

	.nav_menu > li.active > a,
	.nav_menu > li.active > a:hover,
	.nav_menu > li.active > a:focus{
		color: var(--negro);
		font-weight: 700;
		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;
	}
	  
	/* .submenu_dropdown:after {
		bottom: 100%;
		left: 50%;
		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: 5px;
		margin-left: -5px;
	}
	  
	.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 {
		-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: 400;
		line-height: 1.428571429;
		white-space: nowrap;
		text-align: center;
		filter:none !important;
		background-image: none !important; 
	}
	
	.submenu_dropdown > li:last-child{
		display: none;
	}
	  
	.submenu_dropdown > li > a:hover,
	.submenu_dropdown > li > a:focus{
		color: #fff !important;
    	text-decoration: none;
    	background-color: var(--negro);
	}
	
	.submenu_dropdown > .active > a,
	.submenu_dropdown > .active > a:hover,
	.submenu_dropdown > .active > a:focus {
		font-weight: 700;
		text-decoration: none;
		background-color: var(--negro);
		outline: 0;
		color: #fff !important;
	}	
	
	.submenu_dropdown .divider {
		height: 1px;
		margin: 0px 0;
		overflow: hidden;
		background-color: #d6d6d6;
	}

}/* 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;	
	}
	
	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: 16px;
		line-height: 16px;
		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: 16px;
		line-height: 16px;
		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: 16px;
		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: 16px;
	}
	
	#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: 16px;
		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{

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

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

	.carousel-caption {
		position: absolute;
		bottom: 0px;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		left: 50%;
		width: 100%;
		z-index: 10;
		padding-top: 150px;
		padding-bottom: 70px;
		padding-left: 0;
		padding-right: 0;
		text-align: center;
		text-shadow: none !important;
		color: #fff;
		background: rgb(0,0,0);
		background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	}	

	.carousel-caption h2{
		font-size: 36px;
		line-height: 1.2;
		font-weight: 700;
		color: #fff;
		margin: 0px 0 0px 0;
		padding: 0px;
	}

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

	.carousel-caption h2,
	.carousel-caption p{
		display: inline-block;
	}

	.carousel-caption h2{
		max-width: 950px;
	}

	.carousel-caption p{
		max-width: 800px;
	}

	.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: 16px;
		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{
		font-size: 21px;
		line-height: 1.2;
	}
	.carousel-caption p {
		font-size: 14px;
		line-height: 1.5;
	}

}	

/* ===================================== */
/* ========== 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: center;
	}

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

	.home #hlt-text .box p{
		margin: 0px;
		padding: 0px;
		font-size: 17px;
		line-height: 34px;
		letter-spacing: 0.075em;
		font-weight: 300;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
	}

	.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 .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 */

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

	.sop_home_imagen_destacada{
		height: 468px;
		background-attachment: scroll;
    	background-position: top center !important;
	}

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

@media screen and (min-width: 768px) and (max-width: 991px) {
	.sop_home_imagen_destacada {
		height: 355px;
		background-attachment: scroll;
		background-position: top center !important;
	}
}/* termina @media screen and (min-width: 768px) and (max-width: 991px) */

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

	.sop_home_imagen_destacada{
		height: 173px;
		background-attachment: scroll;
		background-position: top center !important;
	}

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


/* ===================================== */
/* ========== 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: 16px;
		line-height: 30px;
		font-weight: 300;
		text-align: center;
		margin-top: 20px;
		margin-bottom: 0;
		letter-spacing: 0.075em;
	}

	.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;
	}

	.home #hlt-contents .box .title,
	.subsection-title,
	.home #hlt-contact .box .title {
		margin-bottom: 0;
		font-size: 36px;
	}

	.related{
		margin-top: 30px;
	}
	
	.related .title{
		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;
	}

	.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: 18px;
		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: #222222;
	}

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

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

	.list-card .text p {
		font-size: 16px;
		line-height: 26px;
		letter-spacing: 0.075em;
		font-weight: 300;
		margin: 0 0 0px 0;
		padding: 0 0 30px 0;
	}

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

	.list-card .btn {
		font-size: 11px;
		background-color: #aa9867;
		padding: 15px 40px;
		border: 1px solid #aa9867;
		color: #fff;
	}

	.list-card:hover .btn{
		background-color: #222;
		color: #fff;
	}

	/* .list-card .btn:hover{
		opacity: 0.7;
	} */

}/* 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:20px 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 .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: 16px;
		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: 18px;
		line-height: 1.8;
		margin: 0 0 50px 0;
	}

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

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

	.content .date{
		font-size: 16px;
		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: 16px;
		line-height: 1.5;
		margin: 0 0 25px 0;
	}	

	.content .texto,
	.content p,
	.content-template .product .description {
		font-size: 18px;
		line-height: 1.8;
		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: 16px;
		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_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: 16px;
	  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;
	}
	.content_contacto .form_contacto,
	.content .form_contacto{
	  padding-right: 245px;
	}
  
	#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: 16px;
	}
	.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: 16px;
	}	
	.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: 16px;
		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: 16px;
	}
	.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: 16px;
		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: 13px;
		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: 16px;
		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: 16px;
		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{
		margin-top: 0;
		margin-bottom: 0;
		text-align: left;
	}
	
	.galeria_de_imagenes .modulo{
		position: relative;
		margin:0;
		margin-top: 30px;
	}
	
	.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 {
		padding: 20px 30px;
		display: block;
		width: 100%;
		height: 55px;
		font-size: 13px;
		line-height: 1.5;
		background-color: #ffffff;
		border: 1px solid var(--gris);
		border-radius: 30px;
		-webkit-box-shadow: inset 0 0px 0px rgb(0 0 0 / 0%);
		box-shadow: inset 0 0px 0px rgb(0 0 0 / 0%);
		-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;
	}
	
	.form-control:hover {
		border:1px solid;
	}
	
	.form-control:focus{
		border:1px solid;
		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: 20px;
	}
	
	.form_contacto{
		padding: 0 0 0px 0;
		text-align: center;
	}
	
	.content_contacto .form_contacto,
	.content .form_contacto {
		text-align: left;
	  	padding-right: 575px;
	}
	
	.form_contacto h5{
		margin-bottom: 15px;
	}
	
	.form_contacto .btn{
		margin-top: 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; }
	
	p.recaptcha-terms{
		font-size: 11px !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) {

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

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

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

	.form_contacto{
		padding: 0;
	}

	.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{
	.navbar-toggle .icon-bar,
	ul.menu_collapse>.active,
	.carousel_control_mobile a,
	.fck_template figure figcaption,
	.box_02,
	#footer{
		background-color: #222;
	}
	.form-control:hover{
		border-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: 16px;
		line-height: 1.5;
		font-weight: 700;
		white-space: nowrap;
	}
	.card-body .summary {
		font-size: 16px;
		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) ===*/
/*=========================================*/





