/* https://www.onlinewebfonts.com */

@font-face {font-family: "Myriad Pro"; 
  src: url("MyriadPro/a89cf050c859a23e4b6d9cf5989acf9e.eot"); 
  src: url("MyriadPro/a89cf050c859a23e4b6d9cf5989acf9e.eot?#iefix") format("embedded-opentype"), 
  url("a89cf050c859a23e4b6d9cf5989acf9e.woff2") format("woff2"), 
  url("a89cf050c859a23e4b6d9cf5989acf9e.woff") format("woff"), 
  url("a89cf050c859a23e4b6d9cf5989acf9e.ttf") format("truetype"), 
  url("a89cf050c859a23e4b6d9cf5989acf9e.svg#Myriad Pro") format("svg"); 
}

@font-face {font-family: "Helvetica"; 
  src: url("Helvetica/a64ff11d2c24584c767f6257e880dc65.eot"); 
  src: url("Helvetica/a64ff11d2c24584c767f6257e880dc65.eot?#iefix") format("embedded-opentype"), 
  url("Helvetica/a64ff11d2c24584c767f6257e880dc65.woff2") format("woff2"), 
  url("Helvetica/a64ff11d2c24584c767f6257e880dc65.woff") format("woff"), 
  url("Helvetica/a64ff11d2c24584c767f6257e880dc65.ttf") format("truetype"), 
  url("Helvetica/a64ff11d2c24584c767f6257e880dc65.svg#Helvetica") format("svg"); 
}

/* font-family: 'Myriad Pro', 'Century Gothic', sans-serif; */

/*
font-family: 'Zilla Slab', serif;
font-family: 'Roboto Slab', serif;
font-family: 'Pathway Gothic One', sans-serif;

font-family: 'Roboto Condensed', sans-serif;
font-family: 'Oswald', sans-serif;
*/


/* Variables CSS */
:root {
  --color-sitio2: #007f4c;
  --color-sitio: #003713;
  --color-texto: white;
  --fuente-sitio: 'Helvetica', sans-serif;
  
  /* display */
  --barra-header-top:inline-block;
  --carrito-div:inline-block;
	--carrito:none;
	--buscar:inline-block;
	--mi-cuenta:none;
}


/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	font-family: var(--fuente-sitio);
}



a:not([href]):not([tabindex]) {
  color:black;
}



img{
	max-width:100%;
}
/* Parallax Scrolling */
/*.parallax{
	position: absolute;
	top: 0;
	left: 0;
}*/
.fondo {
	position: absolute;
	width:100%;
	left:0;
	top:0;
	min-height:100%;
	opacity:.5;
}
.fondo1{
	left:0;
	top:1%;
}
body{
	background:#FFF;
	overflow-x: hidden;
}
/* Header */
header {
    width: 100%;
    position: fixed;
    z-index: 900;
    color: black;
		display: block;
		/*border-bottom: solid 1px #70695C;*/
		top: 0;
		/*text-align: right;*/
		transition: all 0.5s cubic-bezier(0.33, 0, 0.2, 1) .1s;
		height: 50px;
		/*opacity:0.8;*/
    background: white;
    opacity:0.92;
	/*background-image: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,.9), rgba(255,255,255,.8), rgba(255,255,255,0.1), rgba(255,255,255,0));*/
}
header:hover{
	opacity:1;
}
.logo{
    display: inline-block;
    border-top: none;
    transition: all 0.3s ease 0s;
    position: absolute;  
    top: 1px;
    right:2vw;
    filter: invert(100%);
}
.logo.esconder {
	/*opacity:0;
	padding:1% 2%;*/
}
.logo img{
    transition: all 0.4s ease;
    vertical-align: middle;
	width: 3rem !important;
}
header img{
	transition: all 0.4s ease;
}
/* Menú */
.menuP {
    display: block;
    position: fixed;
    top: 5px;
    right: 3%;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    cursor: pointer;
    background: transparent;
    color: #FFF;
    line-height: 8px;
    z-index: 200;
    border: none;
}
.menuP:focus {
	outline: none;
}
.menuP span {
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-sitio2);
    transition: background 0s 0.3s;
    width: 60%;
    margin: auto;
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.menuP span::before,
.menuP span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 3px;
	content: "";
	background: var(--color-sitio2);
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
  	transition-duration: 0.3s, 0.3s;
  	transition-delay: 0.3s, 0s;
}
.menuP span::before {
	top: -9px;
  	transition-property: top, transform;
}
.menuP span::after {
	bottom: -9px;
  	transition-property: bottom, transform;
}
/* Menú abierto */
.menuP.activo span {
  background: none;
}
.menuP.activo span::before {
  top: 0;
  transform: rotate(45deg);
}
.menuP.activo span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.menuP.activo span::before,
.menuP.activo span::after {
  transition-delay: 0s, 0.3s;
}
.menu{
	-moz-user-select: none;
    /*background: rgba(38, 38, 38, .7); */
    min-height: 0px;
    opacity: 0;
    height: 0;
    position: fixed;
    left: 0;
    top: 38px;
    transition: all 0.5s cubic-bezier(0.33, 0, 0.2, 1) .1s;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}
.menu .logoMenu{
	display: block;
    margin: 20px auto 0 auto;
    width:200px;
}
.menu-abierto{
	opacity:1;
    min-height: 100%;
	z-index:150;
    padding:0;
}
.menu-ppal {
	width:98%;
	margin: 40px 0 0 0;
	/*padding:10px;*/
	max-width: 300px;
	font-size: 1em;
}
.menu-ppal li {
	list-style-type:none;
	margin:0;
	transition: all linear 0.1s;
}
.menu-ppal li ul {
	/*left:250px;*/
	width: 260px;
	display:none;
	position:absolute;
	top: inherit;
	background-color: white;
	text-align: left;
	padding: 0;
	box-shadow:1px 1px 3px black;
	border-radius:5px;
}
.menu-ppal li ul a{
	width: 100%;
}

.menu-ppal li a {
    color: black;
	font-size:1.1rem;
	font-weight:bold;
	font-family:var(--fuente-sitio);
    text-decoration:none;
	/*text-transform:uppercase;*/
    vertical-align:middle;
    width:100%;
	display:block;
	background:transparent;
	transition: all linear 0.1s;
	border-radius:15px;
	padding: 3px 5px 0px 5px;
}
.menu-ppal li a:hover {
  color: white;
}

.menu-ppal li:hover {
	background-color:var(--color-sitio2);
	text-decoration:none;
	box-shadow:1px 1px 3px black;
  border-radius:3px;
  transform:scale(1.03);
}

.menu-ppal .activo {
	color:white;
	background-color:var(--color-sitio2);
	border-radius:3px;
  box-shadow:1px 1px 3px black;
}

.menu-ppal .activo a{
	color: black;
}

@media (min-width: 820px) {
	
	header .container{
		/*position: relative;
    height: 60px;*/
	}
	.menuP{
		display: none;
	}
	.menu {
    position: relative;
    opacity: 1;
    width: 100%;
    height: auto;
    overflow: visible;
    /* background: #FFFFFF; */
    display: inline-block;
    vertical-align: top;
    margin-top: -27px;
    text-align: center;
    float: right;
	}
	.menu .logoMenu{
		display: none;
	}
	.menu-ppal {
		margin: 0;
		max-width: none;
	}
	.menu-ppal li {
    color:white;
		display: inline-block;		
		/* border-left: solid 1px #70695C; */
		/*margin: 0 4px 0 4px;*/
	}
	.menu-ppal li a {
    padding: 2px 5px 3px 5px;
		font-size:1rem;
		font-family: var(--fuente-sitio);
    margin: 0 3px 0 3px;
		/*line-height: 57px;*/
		/*letter-spacing: 2px;*/
	}
	.contactos, .mapa, .mapa iframe, .abajo .videoWrapper{
		/*height: 100% !important;*/
	}
}
.menu-ppal li:hover ul {
    display:block;
}
.menu-ppal li ul li {
	float: none;
	display: block;
}
.menu-ppal li img {
    display:inline-block;
    vertical-align:middle;
}
#map{
	display:none;
}
@media(min-width: 48em){
	#map{
		display:block;
		width: 100%;
		height:450px;
	}
}
#map img{
	max-width:none;
}
.contactos {
	/*background: #373F40;
	padding: 2% 10% 2% 5%;
	color: #FFF;
	position: relative;*/
}
.contactos::before {
	position: absolute;
	content: "";
	width: 233px;
	height: 100%;
	top: 0;
	left: -233px;
	background: url(/imagenes/fondo-mapa.png) top left no-repeat;
	background-size: 100% 100%;
 }
.contactos .float{
	float:left;
	padding-right:20px;
	width:70%;
}
.contactos input {
	padding: 15px;
	border: none;
	border-radius: 5px;
	margin-top: 20px;
	width: 100%;
	background:rgba(255, 255, 255, 0.8);
}
.contactos .action-button {
	background: #FF4033;
	color: white;
	border: 0 none;
	cursor: pointer;
	border-radius:5px;
	float:left;
	width:30%;
}
.contactos .action-button:hover, .contactos .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #d11883;
}
@media(min-width: 48em){
.contactos span{
	float:left;
	width:50%;
	padding-bottom:25px;
}
.contactos input {
	font-size: 1.2em;
}
}
.principal{
	position: relative;
	background: #FFF;
    margin-top: 50px;
}
/* Servicios */
.productos{
	background:#FFF;
	position:relative;
	padding:4% 0;
	overflow:hidden;
}
.productos h1, .productos p{
	position:relative;
}
.productos h2{
	text-align:center;
	line-height: 1em;
	overflow:hidden;
	padding:11px;
	font-size:1.5em;
	white-space:normal;
}
.productos a.imagen, .contenidos a.imagen{
    overflow: hidden;
    position: relative;
    height: 264px;
    width: 100%;
    max-width: 100%;
	text-align:center;
	display:block;
	border-radius:50%;
	box-shadow:2px 2px 3px rgba(0,0,0,0.36);
	transition:box-shadow 0.1s linear;
	perspective:1px;
	margin:auto;
}
.productos a.imagen:after{
	position:absolute;
	top:-68%;
	left:0;
	right:0;
	margin:auto;
	content:'';
	background:rgba(255,255,255,0.80);
	width:100%;
	height:100%;
	z-index:1;
	border-radius: 50%;
}
.wide{
	position:relative;
}
.wide span{
	position:absolute;
	top:-11px;
	left:0;
	right:0;
	margin:auto;
	width:171px;
	height:73px;
	z-index:1;
}
.contenidos h3{
	color: #176eb5;
}
.contenidos a.imagen{
    width: 281px;
}
.productos a.imagen img, .contenidos a.imagen img {
    bottom: -100%;
    height: 100%;
    left: -100%;
    margin: auto;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
    transition: all 0.15s linear 0s;
}
.productos div span:hover{
	box-shadow:none;
}
.productos .texto{
	background:#0092DA;
	border-radius:5px;
	padding:20px;
	width:235px;
	margin:-60px auto auto auto;
	white-space:normal;
	text-align:center;
	position:relative;
	color:#FFF;
	font-size:1.3em;
	box-shadow:3px 3px 3px rgba(0,0,0,0.36);
}
.productos .link{
	color:#FFF;
	font-size:5em;
	font-weight:bold;
	font-family: var(--fuente-sitio);
	margin:-30px auto auto auto;
	display:block;
	width:130px;
	position:relative;
	text-align:center;
}
/* staff */
.staff{
	background:#002038;
	overflow:hidden;
	position:relative;
	text-align:center;
}
.staff h1{
	background:#001331;
	color:#FFF;
	padding:5px 2%;
	text-align:left;
	margin-bottom:10px;
}
.staff .division{
	padding:0 1%;
	position:relative;
}
.staff a.imagen{
	border-radius: 5px;
    height: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
	display:block;
	perspective:1px;
	background:#000;
}
.staff a.imagen img{
	height:auto;
    width: 100%;
	opacity:1;
	transition: all 0.5s ease 0s;
}
.staff article{
	padding:10%;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	color:#FFF;
	opacity:0;
	transform:scale(.5);
	transition: all 0.5s ease 0s;
	font-size:1.2em;
}
.staff h2{
	font-size:1em;
	margin-top:5px;
}
.staff h3{
	font-size:1em;
	color:#FFF;
}
.staff a.imagen:hover img{
	transform:rotate(-5deg) scale(1.2);
	opacity:.5;
}
.staff a.imagen:hover article{
	opacity:1;
	transform:scale(1);
}
.staff .quehacemos{
	color:#FFF;
	text-align:center;
	font-size:1.3em;
	padding:0 10%;
	margin-top:20px;
}
.staff .quehacemos h1{
	color:#00A0DF;
	text-align:center;
	background:none;
	font-size:1.8em;
}
@media(min-width: 48em){
    .staff .division{
    	display:inline-block;
    	width:30%;
    	position:relative;
    }
}
.mapa{
	position:relative;
}
.mapa iframe{
	display: block;
}
/*Contactos*/
/*Pie de página*/
footer{
	background: #E0490C;
	width:100%;
	padding:11px 0;
	position:relative;
	color: #1F1F1F;
	font-size: 1em;
	line-height: 1;
}
footer a{
	color:#fff;
}
footer a:hover{
	text-decoration:underline;
}
footer .container{
	position: relative;
}
footer .logoFooter{
	position: absolute;
	top: 0;
	right: 0;
}
.mapaNavegacion{
	overflow: hidden;
	font-size:1.1em;
	background-color:#202020;
	position: relative;
	padding-top: 15px;
	line-height: 1.1;

  position: relative;
  width: 100%;  
  bottom:0;
}
.mapaNavegacion h2{
	color:white;
	margin-bottom:3px;
	font-size:1.1em;
	text-transform:uppercase;
	font-weight: bold;
}
.mapaNavegacion nav{
	text-align:center;
}
.mapaNavegacion nav ul{
	/*width:40%;*/
	display:inline-block;
	text-align:left;
	vertical-align:top;
	list-style:none;
	padding:0;
}

@media(min-width: 48em){
	.mapaNavegacion nav ul{
		width:100%;
	}
}
/*.mapaNavegacion ul li:before{
	content: "\2014\a0";
	color: #252525;
}*/
.mapaNavegacion ul li a{
	color:white;
	text-decoration:none;
	letter-spacing:1px;
	font-size:1em;
}
.mapaNavegacion ul li a:hover{
	text-decoration:underline;
}
.creditos{
	text-align:center;
}
.imagenLista{
    height: 180px;
    overflow: hidden;
    position: relative;
	display:block;
	width:100%;
}
.lista{
	width:100%;
	padding:1% 2%;
}
@media(min-width: 48em){
.imagenLista{
    height: 220px;
	width:25%;
	float:left;
}
.lista{
	width:73%;
    min-height: 220px;
	float:left;
}
}
.imagenLista img{    
	bottom: -100%;
    left: -100%;
    margin: auto;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
    width: 100%;
}
.imagenInterna{
	margin-bottom:11px;
}
.contenidoInterno{
	padding:2% 0;
	position:relative;
	height:auto;
	background:#FFF;
}
.contenidoInterno h1{
	color:#b4c834;
	margin-bottom:11px;
}
@media(min-width: 48em){
.imagenInterna{
	float:left;
	margin:0 11px 11px 0;
	width:33.3%;
	position:relative;
}
}
.contenidoInterno h2{
	color:#000;
}
.container .link {
    padding: 11px;
    color: #000;
    display: inline-block;
    margin-top: 20px;
	border-radius: 3px;
}
.clear{
	clear:both;
}
div.productos{
	border-radius: 5px;
    height: 250px;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 0 5px;
    position: relative;
    width: 100%;
	text-align:center
}
@media(min-width: 48em){
div.productos{
    float: left;
    width: 33%;
}
}
div.productos img{
    position:absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto; 
    /*height: 100%;*/
    min-width: 100%;
    min-height: 100%;
	max-width:none;
	-webkit-transition: all 0.15s linear;
	   -moz-transition: all 0.15s linear;
	     -o-transition: all 0.15s linear;
	        transition: all 0.15s linear;
}
div.productos a:hover img{
	transform:scale(1.05,1.05);
}
div.productos a{
	display:block;
	overflow:hidden;
	color:#FFF;
	width:100%;
	height:100%;
	position:relative;
	border-radius:5px;
	-webkit-transition: all 0.1s linear;
	   -moz-transition: all 0.1s linear;
	     -o-transition: all 0.1s linear;
	        transition: all 0.1s linear;
}
div.productos a:hover .tituloProducto{
    background:rgba(180,200,52,0.80);
}
div.productos .tituloProducto {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 5px 5px;    
	bottom: 0;
    left: 0;
	text-align:left;
    padding: 11px;
    position: absolute;
    width: 100%;
	font-size:1em;
	font-weight:normal;
	font-family: var(--fuente-sitio);
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
	     -o-transition: all 0.2s linear;
	        transition: all 0.2s linear;
}
.carrito{
	display: var(--carrito);
	height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    /* background: #ff6600; */
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    /* padding-top: 2px; */
}
#basketWrap {
	display:none;
	position:absolute;
	width:260px;
	right:0;
	top:50px;
	padding:11px;
	border-radius:5px 0 5px 5px;
	background:#FFF;
}
.carrito:hover #basketWrap{
	display:block;
}
.carrito h1 span{
	width:20px;
	height:20px;
	border-radius:50px;
	background:#FFC926;
	text-align:center;
	box-shadow:1px 1px 2px rgba(0,0,0,0.50);
	font-size:.8em;
	display:inline-block;
}
.precio{
	color:black;
	padding:11px 0;
	text-align:left;
/*	border-top:solid 1px #eae9e9;
	border-bottom:solid 1px #eae9e9;*/
	height:60px;
	margin:11px 0;
	font-size:1.75rem;
	font-weight:bold;
}
.descripcionProducto{
	background:#fbfbfb;
	border:solid 1px #ebebeb;
	padding:11px 5%;
	margin-top:20px;
	border-radius:3px;
}
.descripcionProducto h1{
	font-size:1.5em;
}
.tags{
	margin-top:11px;
	clear:both;
}
.tags h2{
	padding-bottom:5px;
	margin-bottom:10px;
	border-bottom:solid 1px #DDD;
}
.cantidad{
	margin:0 11px;
	clear:both;
	text-align:center;
	float:left;
}
#cantidad{
	text-align:center;
}
td.label {
    font-weight: 400;
}
.data-table {
    width: 100%;
	color:#000;
}
#giftreg-table {
    clear: both;
}
.data-table th {
    font-size: 1em;
    padding: 15px;
    text-transform: uppercase;
	border-bottom:solid 1px #918E8A;
	color: #8B9092;
	font-weight: normal;
}
.data-table th select{
    text-transform:none;
}
.data-table .padding{
    padding:0;
}
.data-table th.wrap {
    white-space: normal;
}
.data-table th a {
    color: #000;
}
.data-table th a:hover {
    color: #999;
}
.data-table td {
    color: #384361;
    padding: 15px;
    vertical-align: middle;
}
.titulo_responsive{
	display: none;
}
@media (max-width: 769px){
	.data-table td, .data-table th {
		display: block;
	}
	.data-table thead {
		display: none;
	}
	.titulo_responsive{
		display: inline-block;
	}
}
.data-table thead th {
	color: black;
	font-weight: bold;
}
.data-table tfoot {
    border-bottom: 1px solid #D9DDE3;
}
.data-table tfoot tr.first {
    border-top: 1px solid #C1DBE4;
}
.data-table tfoot tr {
}
.data-table tbody td {
    border-bottom: 1px solid #C1DBE4;
}
.data-table tfoot td {
    padding: 15px;
}
.data-table tbody.odd tr {
}
.data-table tbody.even tr {
    background: none repeat scroll 0 0 #FCFCFC;
}
.data-table tbody.odd tr td, .data-table tbody.even tr td {
    border-bottom: 0 none;
}
.data-table tbody.odd tr.border td, .data-table tbody.even tr.border td {
    border-bottom: 1px solid #D9DDE3;
}
.data-table tbody td h5.title {
    color: #444444;
    font-size: 1em;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
.data-table tbody td .option-label {
    font-style: italic;
    font-weight: bold;
}
.data-table tbody td .option-value {
    padding-left: 10px;
}
.imgCarro{
	width:100px;
}
#shopping-cart-table label {  
	display: inline-block;  
	cursor: pointer;  
	position: relative;  
	padding-left: 25px;   
	font-size: 13px;  
}  
#shopping-cart-table input[type=radio] {  
    display: none;  
} 
#shopping-cart-table label:before {  
	content: "";  
	display: inline-block;     
	border-radius: 8px;   
  
	width: 16px;  
	height: 16px;  
   
	position: absolute;  
	left: 0;  
	bottombottom: 1px;
	box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);  
}  
#shopping-cart-table input[type=radio]:checked + label:before {  
	content:'\2022';  
	color: #f3f3f3;  
	font-size: 30px;  
	text-align: center;  
	line-height: 18px;  
}
input[disabled]{
	border:none;
	color:#000;
	background:none;
}
.cart form{
	overflow:hidden;
	border-radius:5px;
	position:relative;
	padding:0 0 0 15px;
	background-color:#EEEEEE;
}
.productoC{
	padding:11px;
	margin-bottom:5px;
	border-radius:5px;
	background:#FFF;
}
.productoC a{
	display:block;
	float:left;
	width:20%;
	margin:0 15px 0 0;
}
.productoC h2{
	text-align:left;
	font-size:1.2em;
}
.productoC a img{
	width:100%;
}

#confirmar{
	float:left;
	width:70%;
}
#shopping-cart-table{
}
.formularioPayu{
}
.formularioPayu .margen{
	padding:15px;
	position:relative;
}
@media (min-width: 48em){
.formularioPayu .margen{
	margin:auto;
	width:90%;
}
}
.formularioPayu .margen input{
	width:100%;
	border-radius:3px;
	border:solid 1px #F5F5F5;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
	margin-bottom:5px;
	padding:5px;
	width:40%;
	float:right;
	color: white;
    font-size: 1rem;
    background-color: red;
    border-radius: 15px;
    padding: 5px 20px;
	text-decoration:none;
	transition: all 0.3s ease;	
}
.formularioPayu .margen input:hover{
	font-size: 1.1rem;
}

#cmdEnviar{
	background: var(--color-sitio)!important;
    color: white;
    margin-top: 15px;
    overflow: hidden;
    border: none;
    font-size: 1em!important;
    transition: all 0.3s ease;
    cursor: pointer;
    /* box-shadow: 0 0 10px black inset; */
    /*width: 100px!important;*/
    float: right;
    margin-bottom: 20px;
    /*width:110px;*/
}
#cmdEnviar:hover{
	/*font-size:1.4em!important;*/
	transform:scale(1.1);
  box-shadow:1px 1px 3px black;
}

.cart #usarDescuento{
	background:black;
	border: none;
	color:white;
	padding: 5px 15px;
}
.fotoProducto{
	width:100%;
}
.fondoCarrito{
	background:#eae9e9;
	padding:11px;
	border-radius:3px;
	overflow:hidden;
}
.margenProducto{
	border-radius:3px;
	border:solid 1px #DADADA;
	padding:11px;
}
@media (min-width: 576px){
  .container {
      max-width: 98%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 98%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 98%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 98%;
  }
}
@media (min-width: 1550px) {
  .container {
    max-width: 98%;
  }
}
@media (min-width: 1880px) {
  .container {
    max-width: 98%;
  }
}
@media (min-width: 768px) {
  .matriz-ver {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .matriz-ver {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .matriz-ver {
    max-width: 1140px;
  }
}
.container:before,
.container:after,
.fullwidth-wrap:before,
.fullwidth-wrap:after {
  display: table;
  content: " ";
}
.container:after,
.fullwidth-wrap:after {
  clear: both;
}
.col2 .formulario3{
	width:100%;
}
@media(min-width: 48em){
	.col1{
		float:left;
		width:75%;
		padding-right:2%;
	}
	.col2{
		float:left;
		width:25%;
	}
}
.arrowback{
	background: #918E8A;
    color: #fff;
    margin-top: 11px;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
    margin-bottom: 5px;
    padding: 5px;
}
.noticia{
	background:rgba(180,200,52,0.80);
	padding:3% 2% 2% 2%;
	position:relative;
	width:100%;
	color:#FFF;
	border-radius:5px;
}
.noticia h2{
	background:#000;
	padding:5px;
	width:80%;
	margin:auto;
	left:0;
	right:0;
	text-align:center;
	position:absolute;
	top:-20px;
	text-transform:uppercase;
	color:#FFF;

	border-radius:2px;
}
.noticia h3{
	color:#000;
	font-size:1.2em;
	font-weight:bold;
	font-family: var(--fuente-sitio);	
	margin:5px 0;
}
#galeria li{
	padding:0 25px;
}
#galeria a.imagen{
	height:355px;
	width:100%;
}
.container h3{
	font-size:1.5em;
	font-weight:normal;
	font-family: var(--fuente-sitio);
	
	margin-bottom:10px;
}
.noticia .enlace{
	background:rgba(0,0,0,0.80);
	color:#FFF;
	position:absolute;
	padding:5px;
	font-size:3em;
	font-weight:bold;
	font-family: var(--fuente-sitio);
	
	text-align: center;
    line-height: 0.9em;
	right:6%;
	border-radius:2px;
}
@media(min-width: 48em){
.noticia{
	width:34%;
	float:left;
}
}
.relacionados{
	padding:2%;
	overflow:hidden;
	background:#eee;
	border-radius:5px;
	border:1px solid #E5E5E5;
	margin-top:11px;
	display:flex;
}
.productoR{
	padding:1%;
}
.productoR a{
	color:#b4c900;
}
.productoI img{
	width:100%;
}
@media(min-width: 48em){
.relacionados{
	display:flex;
	flex-flow: wrap;
}
.relacionados:after {
  content: "";
  flex: auto;
}
.relacionados h2 {
    flex: 1 1 100%;
}
.productoR{
    width: 33.3%;
}
}
.carousel img{
	width:100%;
}
.carousel li{
	list-style:none;
}
.alignleft {
    float: left;
    margin: 0 15px 15px 0;
}
.formulario3{
	background: #FFF;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
	padding: 2%;
	width:100%;
	margin:auto;
	text-align:left;
}
.formulario3 input, .formulario3 textarea, .formulario3 select {
	padding: 7px 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	font-size: 13px;
	font-family: var(--fuente-sitio);
}
/*buttons*/
.formulario3 .action-button {
	width: 145px;
	font-weight: bold;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: auto;
	background: #fff;
    height: auto;
    line-height: inherit;
}
.formulario3 .action-button:hover, .formulario3 .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #fff;
}



/*headings*/
.formulario3 h2 {
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: var(--fuente-sitio);
}
.antispam{
	display:none;
}
/*product*/
.product-preview-wrapper {
  float: none;
  display: inline-block;
  margin-right: -4px;
  vertical-align: top;
  padding-bottom: 20px;
}
.slick-slider .product-preview-wrapper {
  float: left;
  margin-right: 0;
}
.four-in-row .product-preview-wrapper {
  max-width: none;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 559px) {
  .four-in-row .product-preview-wrapper {
    width: 100%;
  }
}
@media (min-width: 560px) {
  .four-in-row .product-preview-wrapper {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .four-in-row .product-preview-wrapper {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .four-in-row .product-preview-wrapper {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .four-in-row .product-preview-wrapper {
    width: 25%;
  }
}
.product-carousel .slick-prev,
.product-carousel .slick-next {
  margin-top: -21px;
}
@media (max-width: 767px) {
  .product-carousel .slick-prev,
  .product-carousel .slick-next {
    margin-top: -72px;
  }
}
.slick-dots li button:before {
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  font-size: 12px;
  margin-top: 1px;
}
@media (min-width: 768px) {
  .animated-arrows .slick-prev,
  .animated-arrows .slick-next {
    width: 40px;
    height: 40px;
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  .animated-arrows .slick-prev .icon-wrap,
  .animated-arrows .slick-next .icon-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .animated-arrows .slick-prev::before,
  .animated-arrows .slick-prev::after,
  .animated-arrows .slick-prev .icon-wrap::before,
  .animated-arrows .slick-prev .icon-wrap::after,
  .animated-arrows .slick-next::before,
  .animated-arrows .slick-next::after,
  .animated-arrows .slick-next .icon-wrap::before,
  .animated-arrows .slick-next .icon-wrap::after {
    position: absolute;
    left: 50%;
    width: 3px;
    height: 50%;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .animated-arrows .slick-prev .icon-wrap::before,
  .animated-arrows .slick-prev .icon-wrap::after,
  .animated-arrows .slick-next .icon-wrap::before,
  .animated-arrows .slick-next .icon-wrap::after {
    z-index: 100;
    height: 0;
    -webkit-transition: height 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, transform 0.3s;
  }
  .animated-arrows .slick-prev::before,
  .animated-arrows .slick-prev .icon-wrap::before {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(-135deg);
    transform: translateX(-50%) rotate(-135deg);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
  }
  .animated-arrows .slick-next::before,
  .animated-arrows .slick-next .icon-wrap::before {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateX(-50%) rotate(135deg);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
  }
  .animated-arrows .slick-prev::after,
  .animated-arrows .slick-prev .icon-wrap::after {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .animated-arrows .slick-next::after,
  .animated-arrows .slick-next .icon-wrap::after {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  .animated-arrows .slick-prev:hover .icon-wrap::before,
  .animated-arrows .slick-prev:hover .icon-wrap::after,
  .animated-arrows .slick-next:hover .icon-wrap::before,
  .animated-arrows .slick-next:hover .icon-wrap::after {
    height: 50%;
  }
  .animated-arrows .slick-prev:hover::before,
  .animated-arrows .slick-prev:hover .icon-wrap::before {
    -webkit-transform: translateX(-50%) rotate(-125deg);
    transform: translateX(-50%) rotate(-125deg);
  }
  .animated-arrows .slick-next:hover::before,
  .animated-arrows .slick-next:hover .icon-wrap::before {
    -webkit-transform: translateX(-50%) rotate(125deg);
    transform: translateX(-50%) rotate(125deg);
  }
  .animated-arrows .slick-prev:hover::after,
  .animated-arrows .slick-prev:hover .icon-wrap::after {
    -webkit-transform: translateX(-50%) rotate(-55deg);
    transform: translateX(-50%) rotate(-55deg);
  }
  .animated-arrows .slick-next:hover::after,
  .animated-arrows .slick-next:hover .icon-wrap::after {
    -webkit-transform: translateX(-50%) rotate(55deg);
    transform: translateX(-50%) rotate(55deg);
  }
}
@media (min-width: 768px) {
  .content.boxed .slick-slider:not(.nav-inside) .slick-prev,
  body.boxed .slick-slider:not(.nav-inside) .slick-prev,
  .content.boxed .slick-slider:not(.nav-inside) .slick-next,
  body.boxed .slick-slider:not(.nav-inside) .slick-next {
    opacity: 0;
  }
  .content.boxed .slick-slider:not(.nav-inside):hover .slick-next,
  body.boxed .slick-slider:not(.nav-inside):hover .slick-next,
  .content.boxed .slick-slider:not(.nav-inside):hover .slick-prev,
  body.boxed .slick-slider:not(.nav-inside):hover .slick-prev {
    opacity: 1;
  }
}
.nav-mobile .slick-prev,
.nav-mobile .slick-next {
  top: 50% !important;
  width: 22px !important;
  height: 50px !important;
  margin-top: -25px !important;
}
.nav-mobile .slick-next {
  right: 0 !important;
}
.nav-mobile .slick-prev {
  left: 0 !important;
}
.single-slider .slick-prev {
  left: 15px;
}
.single-slider .slick-next {
  right: 15px;
}
.single-slider .slick-dots {
  bottom: -35px;
}
/* OTHER VENDORS COLORS */
.slick-dots li button:before {
  color: #878787;
}
.slick-dots li.slick-active button:before {
  color: #536dfe;
}
.animated-arrows .slick-prev::before,
.animated-arrows .slick-prev::after,
.animated-arrows .slick-prev .icon-wrap::before,
.animated-arrows .slick-prev .icon-wrap::after,
.animated-arrows .slick-next::before,
.animated-arrows .slick-next::after,
.animated-arrows .slick-next .icon-wrap::before,
.animated-arrows .slick-next .icon-wrap::after {
  background: #878787;
}
.animated-arrows .slick-prev .icon-wrap::before,
.animated-arrows .slick-prev .icon-wrap::after,
.animated-arrows .slick-next .icon-wrap::before,
.animated-arrows .slick-next .icon-wrap::after {
  background: #b4c834;
}
.single-slider .slick-prev {
  left: 15px;
}
.single-slider .slick-next {
  right: 15px;
}
.single-slider .slick-dots {
  bottom: -35px;
}
.two-in-row li {
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
	text-align:center;
}
@media (max-width: 559px) {
.two-in-row li {
    width: 100%;
}
}
@media (min-width: 560px) {
.two-in-row li {
    width: 50%;
}
}
@media (min-width: 768px) {
.two-in-row li {
    width: 50%;
}
}
@media (min-width: 992px) {
.two-in-row li {
    width: 50%;
}
}
@media (min-width: 1200px) {
.two-in-row li {
    width: 50%;
}
}
.cinta{
	padding:1% 10%;
	background:#DBDBDB;
	position:relative;
	overflow:hidden;
}
.cinta2{
	padding:4% 0;
	background:#DBDBDB;
	position:relative;
	overflow:hidden;
	min-height:349px;
}
.cinta2 h2{
	text-align:center;
	font-weight:bold;
}
.clients-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
	.cinta2 .clients-wrap {
	  width: 50%;
	  float:left;
	}
}
.certificados li{
	padding:0 11px;
}
.productoDestacado{
	position:relative;
	background:#585858;
	padding:2% 0;
	color:#FFF;
	overflow:hidden;
}
.productoDestacado h1, .productoDestacado h2 a{
	color:#B4C834;
}
.descripcion{
	/*padding:0 2%;*/
	position:relative;
}
.descripcion > a{
	display:inline-block;
	margin:11px auto;
	background:#B4C834;
	padding:5px 7px;
	border-radius:5px;
	color:#FFF;
}
.descripcion a:hover, .productoDestacado h2 a:hover{
	text-decoration:underline;
}
.productoDestacado a.imagen{
	display:block;
	overflow:hidden;
	border-radius:5px;
	position:relative;
}
@media(min-width: 48em){
.descripcion{
	/*float:left;
	width:60%;*/
}
.productoDestacado a.imagen{
	float:left;
	width:40%;
}
}
.col1 a{
	color: #AFC300;
}
.certificados{
	text-align:center;
}
.certificados li{
	display:inline-block;
}
.widetech{
	position:relative;
	background:#FFF;
	padding:4% 2%;
	text-align:center;
}
.widetech p{
	font-size:1.5em;
}
.videoWrapper {
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.miniatura{
	margin-bottom:10px; 
	float:left; 
	width:50%;
	position:relative;
}
@media(min-width: 48em){
	.miniatura{ 
		width:20%;
	}
}
.miniatura img{
	width:100%;
}
.miniatura .tituloVideo{
	position:absolute;
	width:100%;
	padding:11px;
	background:rgba(0,0,0,0.7);
	bottom:0;
	left:0;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	font-size:0.9em;
	font-weight:normal;
	font-family:var(--fuente-sitio);
	
	-webkit-transition: all 0.15s linear;
	   -moz-transition: all 0.15s linear;
	     -o-transition: all 0.15s linear;
	        transition: all 0.15s linear;
}
.linkVideo{
	color:#FFF;
}
.miniatura a:hover .tituloVideo{
    background: rgba(0,0,0,0.9);
}
#video{
	float: left;
	width: 70%;
	padding: 11px;
}
#descripcion{
	float: right;
	width: 30%;
	padding: 11px;
}

#overlay{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#666;
	z-index:1;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:#E4FF00;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color:#000;
	-webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color:#AFC300;
	-webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	  animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
@-webkit-keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
.col-md-6, .col-md-4 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
@media(min-width: 48em){
  .col-md-6 {
    width: 50%;
  }
  .col-md-4 {
    width: 33.3%;
	float:left;
  }
}
.campana {
    background: #fff;
    border: 1px solid #DCDCDC;
    margin: 10px 0;
    padding: 0;
	border-radius:2px;
}
.campana.staff {
    border: 1px solid #B4C834;
	text-align:left;
}
.campana .usuario {
    background: #E5E5E5;
    padding: 5px 12px;
	position:relative;
}
.campana.staff .usuario {
    background: #E4EBB5;
}
.mensajes{
	padding: 12px 15px;
}
.mensajes a{
	color:#62862E;
	text-decoration:underline;
}
.mensajes a:hover{
	text-decoration:none;
}
.fecha{
	position:absolute;
	top:0;
	right:0;
}
#container-inside form{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	overflow:hidden;
	position:relative;
}
#container-inside label{
    display: block;
	margin-bottom:5px;
	text-align: left;
}
#container-inside input{
	margin-bottom:10px;
}
#container-inside input[type=text], #container-inside textarea, #container-inside select, #container-inside input[type=password], #container-inside input[type=number], #container-inside input[type=email], #container-inside input[type=file]{
	width:50%;
	border-radius:5px;
	padding:10px; 
	background: #FFF;
    border: none;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
}
#container-inside .cancelar{
	color:#FFF;
	background:#62862E;
	width:150px;
	border-radius:3px;
    border: none;
	padding:9px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
	float:left;
	margin-bottom:10px;
	clear:both;
	text-align:center;
}
#container-inside .action-button{
	color:#FFF;
	background:#62862E;
	display:block;
	width:150px;
	border-radius:3px;
	margin:auto;
    border: none;
	padding:10px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
	cursor:pointer;
	float:right;
}
#container-inside .control-label{
	background:#FA7618;
	color:#FFF;
	font-weight:bold;
	padding:5px 2px;
	font-size:1.1em;
	text-align: center;
}
.pregunta{
	padding:11px;
	border-radius:3px;
	background:#F9F9F9;
	margin-bottom:11px;
	border:solid 1px #e3e3e3;
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);
}
.mitad{
	width: 49% !important;
}
#dia{
	width: 60px !important;
	margin-right:5px;
}
#mes{    
	width: 135px !important;
	margin-right:5px;
}
#anio{
	width: 97px !important;
}
#cabezote .col-md-12, #cabezote, #p-destacados .col-md-12{
	width: 100%;
	padding: 0;
}
#contenidos{
	text-align: center;
	color: #000;
	font-size: 1.5em;
}
#contenidos .imagenA{
	height: 300px;
	width:300px;
	overflow:hidden;
	border-radius:50%;
	display:block;
	position:relative;
	margin:auto;
}
#contenidos .imagenA::after
{
    box-shadow: inset 0 0 0 15px rgba(255,255,255,.58);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: -1px;
    width: 100%;
    border-radius: 50%;
}
#contenidos .imagenA img{
    bottom: -100%;
    height: 100%;
    left: -100%;
    margin: auto;
    max-width: none;
    min-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
}
#contenidos h2{
	text-align: center;
	font-size: 1.6em;
}
#contenidos h3, #tips h3{
	color: #E12219;
	font-size: 1.1em;
}
@media(min-width: 48em){
	#contenidos .campos{
		padding: 2% 5%;
	}
	#contenidos .campos p, #tips .campos p{
		text-align: justify;
	}
	#contenidos h3, #tips h3{
		font-size: 1.2em;
	}
	.listado{
		font-size: 1.1em;
		display: flex;
		flex-direction:  column-reverse;
    /*background-color: #D9D9D9;
    margin: 3px;*/
    padding-left: 3px;
    padding-right: 3px;    
	}
}

	.listado{
		font-size: 1.1em;
		display: flex;
		flex-direction:  row-reverse;
    /*background-color: #D9D9D9;
    margin: 3px;*/
    padding-left: 3px;
    padding-right: 3px;    
    width:100%;
	}

.listado img {
	border-radius: 3px;
}
.listado .link {
    float: none;
    text-align: center;
    margin: auto 0 20px 0;
    font-weight: bold;
    background: var(--color-sitio);
    border-radius: 3px;
    color: #FFF;
	width: 100%;
	text-decoration:none;
	transition:all .3s ease-in;
}
.link:hover{
	transform:scale(1.1);
}
	
.marquee0 div div,.marquee0 a,.marquee0 img{
	height: 100%;
}
.contenidoGeneral{
	background: #fff;
	position: relative;
	padding: 2% 0;
}

.flex{
    display: flex;
    flex-flow: wrap;
}
.thumbnail .img{
	display: block;
	max-height: 250px;
	overflow: hidden;
}
.fullwrap_moudle{
	position: relative;
	background: #FFF;
}

.contactenos{
	position: relative;
}
.contactenos h2{
	text-transform: uppercase;
    padding: 18px 2%;
    font-size: 2.3em;
    color: #FFF;
    font-weight: bold;
    width: 100%;
    height: 90px;
    position: absolute;
    top: -45px;
    left: 0;
	background: url(borde2.png) top left no-repeat;
	background-size: 100% 100%;
	text-align: left;
	z-index: 10;
}
.clientes{
	margin: auto;
	overflow: hidden;
	width: 90%;
    text-align: center;
}
.clientes a {
	display: inline-block;
}
.clientes img{
	max-height: 128px
}
.info-producto h2{
	color: #8B9092;
	font-size: 3em;
}
.info-producto p{
	line-height: 1.5em;
	color: #8B9092;
	font-size: 1.5em;
}
.info-producto h3{
	color: black;
	font-size: 2em;
	margin-top: 35px;
}
.info-producto .precio{
	border: none;
}
.info-producto .precio span{
	font-size:2.5em;
	font-weight:normal;
	font-family: var(--fuente-sitio);
	
	color: black;
}
.info-producto .precio span#antes{
	text-decoration:line-through;
	font-size:1.3em;
	font-weight:normal;
	font-family: var(--fuente-sitio);
	
	color:#666;
	margin-right:6px;
}
.colors{
	width: 100%;
	overflow: hidden;
}
.color{
	width:30px; 
	float: left; 
	margin-right:8px; 
	height:30px;
	border-radius:50%;
}
.info-producto nav{
	overflow: hidden;
	width: 100%;
	margin-top: 35px;
}
.info-producto nav .cesta, .info-producto nav .cesta{
	text-align: center;
	display: none;
}
.info-producto nav .cesta a, .info-producto nav .back a{
	color:white;
	background:var(--color-sitio);
	padding:12px 50px;
	text-decoration:none;
	transition:all .1s ease-in;
	display: inline-block
}
.info-producto nav .cesta a:hover{
	transform:scale(1.1);
}

.info-producto nav .back a{
	background:var(--color-sitio);
	transition: all 0.3s ease;
}

.info-producto nav .back a:hover{
	transform:scale(1.1);
}

.info-producto nav .cesta a:hover{
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
}
.info-producto .back{
	display:none;
}


.formPaypal label{
  color: transparent;
	margin-bottom: -10px;
	padding: 0 8px;
}
.formPaypal input, .formPaypal select, .formPaypal textarea{
	border-radius: 5px;
	border: 1px solid #D1CDC5;
	width: 100%;
	padding: 5px 15px;
	/*box-shadow:0 0 5px black inset;*/
	background-color: #dddddd;
}
.formPaypal .titulo-formulario{
  padding:15px;
}

.copyright{
    color:#FFF;
    text-align:center;
}
.total{
    display: inline-block;
    color: #000;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    text-align: center;
    background: #ffffffAA;;
    padding: 1px;
    position: absolute;
    right: -7px;
    top: 2px;
    border: 1px solid black;
}
#numeroXXX{
    color:#FFF;
    border-radius:50%;
    height:30px;
    width:30px;
    text-align:center;
    background:#D90111;
    padding: 4px;
}
.cabezote{
    position:relative;
    padding:2% 0;
    height:1200px;
    overflow:hidden;
    background-image: url(/imagenes/fondoCabezote.png);
    background-attachment: fixed;
}
.parallaxSeccion{
    position:absolute;
    top:0;
    left:0;
}
.parallaxCirculos{
    position:absolute;
    border-radius:50%;
    height: 19vw;
    width: 19vw;
    max-width:365px;
    max-height:365px;
    border:solid 5px #FFF;
    box-shadow:2px 2px 1px rgba(0,0,0,.3);
}
#circulo1{
    top:40px;
    left:7%;
    z-index:3;
}
#circulo4{
    top:40px;
    right:7%;
    z-index:3;
}
#circulo2{
    top:300px;
    left:3%;
    z-index:2;
}
#circulo5{
    top:300px;
    right:3%;
    z-index:2;
}
#circulo3{
    top:510px;
    left:9%;
    z-index:1;
}
#circulo6{
    top:510px;
    right:9%;
    z-index:1;
}
.parallaxFixed{
    position: fixed;
    right: 0;
    left: 0;
}
.row-fluid{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#content_wrap {
    width: 100%;
}
#servicios{
	font-size: 1.13em;
}
#ayuda h3{
	font-weight: bold;
	padding: 0 10%;
	color: #FFF;
	font-size: 2em;
}
@media (min-width: 1550px) {
  #contactos .container {
    max-width: 1170px;
  }
}
@media (min-width: 1880px) {
  #contactos .container {
    max-width: 1170px;
  }
}
.imagenA{
	display: block;
  height:auto;
  object-fit: cover;
}

.display-flex{
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
#blog h3{
	font-weight: bold;
}
#servicios .col-md-12, #blog .col-md-12, #p-destacados .col-md-12{
	padding: 0;
}
#blog .imagenA img{
    bottom: -100%;
    min-width: 100%;
	max-width: none;
    left: -100%;
    margin: auto;
    height: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
	transition: all 0.3s ease-in-out;
}
#blog .imagenA:hover img{
	transform: scale(1.05);
}
#blog h3 .link{
	color: #FFF;
	padding: 0;
	margin: 0;
}
#blog .ver-mas{
	color: #FFF;
	margin: 0;
	background: #E7521D;
	display: none;
}
#blog .col-md-2 .link{
	display: inline-block;
	font-size: 7.2em;
}
#blog{
	padding: 3% 0;
	text-align: center;
}
#blog:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FA4949;
	display: block;
	mix-blend-mode: multiply;
}
#blog h2{
	text-align: left;
	font-size: 5em;
	color: #000;
}
#blog .imagenA {
	position: relative;
	overflow: hidden;
  height: 18vw;
	width: 50%;
	margin: auto;
	display: block;
}
#blog .campos {
	text-align: right;
	font-size: 1.2em;
	line-height: 1.2em;
	margin-top: 15px;
	float: left;
	color: #FFF;
	padding-right: 2%;
}
@media(min-width: 48em){
	#blog .slick-slider {
		margin: auto;
		width: 90%;
	}
	#blog .imagenA {
		float: right;
	}
	#blog .campos {
		float: left;
		width: 50%;
	}
}
#blog .tips .campos {
	text-align: left;
	padding-left: 2%;
}
.contenidos > h2, .contenidoInterno h2{
	color: #444444;
	font-size: 2em;
	margin-bottom: 2%;
	font-weight: bold;
	text-align: left;
}
#categorias .margen{
	position: relative;
	margin: auto;
	overflow: hidden;
}
#categorias .texto{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
}
#categorias .texto, #p-destacados .imagenA img, #p-destacados h3, #p-destacados .link, #p-destacados h3 a{
	transition: all 0.3s ease-in-out;
}
#p-destacados .imagenA:hover{
	color: #D93600;
}
#p-destacados .imagenA:hover img{
	transform: scale(1.05);
}
#p-destacados .imagenA:hover .texto{
	background: rgba(243, 188, 36, .7);
}
#p-destacados .imagenA:hover h3{
	font-size: 3em;
	mix-blend-mode: multiply;
}
#p-destacados .imagenA:hover h3 a{
	color: #238C00;
}
.multiply{
	mix-blend-mode: multiply;
}
#contactos{
	padding: 57px 0;
}
#videos .row-fluid{
	align-items: center;
}
#videos h2, #contactos h2{
	color: #FFF;
}
#ayuda h2, #texto2 h2{
	color: #1A5F59;
	font-size: 1.3em;
	margin-bottom: 25px;
}
#texto2 h2{
	color: #B29246;
}
#contactos{
    position:relative;
	background: #122A4E;
}
#contactos h2{
    text-align:center;
}
#contactos #cmdEnviar {
    width: auto;
    display: inline-block;
    color: #FFF;
    background: #00BFFF;
    cursor: pointer;
    padding: 11px 35px;
    text-transform: uppercase;
    border: none;
}
.slider{
	position: relative;
	background: #00000050;
}
.padding-bottom-60{
	padding-bottom: 60px;
}
.logoBarra {
    position: absolute;
    top: 1px;
    right: 0;
    opacity: 0;
}
.logoBarra img{
	height: 95px;
}
.mapaGoogle{
	padding: 2% 0;
	background: #EEE;
	position: relative;
}
.imagenBlog{
  display: block;
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
  width: 24%;
  height:200px;
  /* height: 280px; */
  /* margin: auto auto; */
  background-color: var(--color-sitio);
  box-shadow: 3px 3px 10px var(--color-sitio);
  transition: all 0.3s ease;
  margin: 0 0 30px 0;
  border-radius:15px;
}


.imagenBlog:hover{
  background-color: var(--color-sitio2);  
  box-shadow:2px 2px 10px black;
}
.imagenBlog img {
  height: 100%!important;
  /* margin: auto; */
  width: 100%;
  /* position: absolute; */
  object-fit: cover;
  display: block;
  /* padding: 3px; */
  /* filter: invert(100%); */
  object-fit: cover;
  border-radius: 10px; 
}

#wrap-categorias .imagenBlog img {
  filter:none;
}
#wrap-categorias2 .contenidoMatriz .blog-wrap .campos a {
  color:white;
}

.productos-categorias .imagenBlog{
	height: 10vw;
	text-align: center;
}
.productos-categorias .imagenBlog img{
	position: static;
	height: 100%;
	width: auto;
	min-width: auto;
	object-fit: cover;
}
.telefonos{
	background: #E34633;
	padding: 11px 0 11px;
	text-align: right;
}
.telefonos a{
	color: #FFF;
}
.redes{
	position: fixed;
	top: 0px;
	left: 10px;
	width:70%;
  z-index:1;
}
#videos{
	padding: 4% 0;
}
.barra-cotizar{
	background: #1B1B1B;
	padding: 6px 0;
}

.whatsapp{
display: none!important;
  font-size: 2.5em;
  font-weight: normal;
  font-style: italic;
  position: absolute;
  display: inline-block;
  right: 1%;
  bottom: 30px;
	transition: all 0.3s ease 0s;	
}
.whatsapp a{
    color: black;
    font-family: "Times New Roman", Times, serif!important;
	text-decoration:none;
}
.whatsapp img{
    vertical-align: super;
    width: 50px;
}

.copy {
    text-align: left;
}
.volver{
	float: right;
	display: block;
	background: var(--color-sitio);
	color: #FFF;
	padding: 9px 20px;
	margin: 20px 5% 0 0;
	border-radius: 3px;
	text-decoration:none;
	transition: all 0.2s ease;
}
.volver:hover{
	transform: scale(1.1);
	color: #FFF;
	text-decoration:none;
}

.botonAsesoria{
    display:inline-block;
    padding:8px 15px;
    border-radius:3px;
    color:#FFF;
    background:#176EB5;
    margin:20px 0;
    font-size:1.3em;
	transition: all 0.2s ease;
	box-shadow:1px 1px 2px rgba(0,0,0,.4);
}
.botonAsesoria:hover{
    background:#000;
    color:#FFF;
    text-decoration: none;
}
.abajo{
	position: relative;
}
.categorias h3 a{
	color: #444;
}
.categorias h3{    
	font-size: 1.1em;
	text-align: center;
	font-weight: bold;
}
.marcas, .marcas ul{
	margin-bottom: 0;
	padding-left: 0;
}
.marcas ul{
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.33, 0, 0.2, 1) .1s;
}
.marcas li{
	list-style: none;
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 0;
	padding: 0.16em 0;
	border-bottom: 1px solid #e6e6e6;
	cursor: pointer;
}
.marcas li img{
	height: 30px;
}
.marcas li .arrow{
	position: absolute;
	bottom: auto;
	top: 9px;
	right: 11px;
	text-shadow: 1px 1px rgba( 0,0,0,0.3 );
	font-size: .5em;
}
.marcas li:hover ul, .marcas li:focus ul{
	max-height: 900px;
}
.marcas li ul li{
	padding: 0.40em 0 0.40em 0.86em;
}
.marcas li ul a{
	color:#009303;
}
.productos-categorias h3{
	font-size: 1.13em;
	text-align: center;
}
.productos-categorias .content-product {
	border: solid 2px #F3F3F3;
	border-radius: 5px;
	padding: 10px;
	height: 100%;
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
}
.productos-categorias .content-product:hover {
	border: solid 2px var(--color-sitio);
}
.productos-categorias .link {
	margin: auto auto 0 auto;
	font-size: 1rem;
	width: 80%;
}

.opciones {
	display:none;
}
.opciones ul .comprarDeNuevo{
    background:#FFC926;
    border:solid 1px #DCBB01;
}
.opciones ul a{
    color:#000;
}

.sliderProductos {
	overflow: hidden;
	width: 100%;
	margin-bottom: 11px;
}
.sliderProductos:after {
	padding-top: 56.25%;
	display: block;
	content: '';
}
.sliderProductos .slick-list {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.sliderProductos .slick-track {
	height: 100%;
}
.sliderProductos .slick-slide {
	height: 100%;
	text-align: center;
}
.sliderProductos .slick-slide a {
	display: inline-block;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.sliderProductos .slick-slide img {
	height: 100%;
}
.ch-popover img{
	max-width: none;
}
.ch-zoom-trigger {
	position: relative;
	overflow: hidden;
	display: inline-block;
	cursor: crosshair
}
.ch-zoom-loading,
.ch-zoom-seeker {
	position: absolute;
	z-index: 2
}
.ch-zoom-loading,
.ch-zoom-seeker {
	border: 1px solid #dedede
}
.ch-zoom-loading {
	width: 100px;
	height: 100px;
	border-radius: 5px;
	font-size: 11px;
	color: #333;
	text-align: center;
	background-color: hsla(0, 0%, 94%, .75)
}
.ch-zoom-seeker {
	cursor: crosshair;
	background-color: hsla(0, 0%, 94%, .4)
}
.ch-zoom {
	border: 1px solid #dedede;
	background-color: #fff;
	position: absolute
}
.ch-zoom .ch-popover-content {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%
}
.ch-zoom img {
	position: absolute
}
.ch-hide,
[hidden] {
    display: none
}
.arrow {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 5;
	color: #E7521D;
	text-shadow: 2px 2px rgba( 0,0,0,0.3 );
	font-size: 1.5em;
}
.arrow span{
	transition: all 0.5s cubic-bezier(0.33, 0, 0.2, 1) .1s;
}
.arrow.up span{
	transform: rotateX(180deg);
}
.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.bounce2 {
  -webkit-animation: bounce2 2s infinite;
  animation: bounce2 2s infinite;
}
.parallaxCustom {
	position: absolute;
	top: -400px;
}
.parallax1{
	top: 0;
	left: 50px;
}
.parallax2{
	top: -60px;
	left: 770px;
}
.parallax3{
	top: -12px;
	left: 610px;
}
.parallax4{
	right: 0;
}
.parallax8{
	left: 0;
}
.parallax9{
	left: 0;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  60% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  60% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
.imagen{
	position: relative;
	/*height: 46.355vw;*/
  height: 200px;
}
#servicios .slick-slide .imagen::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #DD3029;
	mix-blend-mode: multiply;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}
#servicios .slick-slide:hover .imagen::after{
	opacity: 1;
}
.categoria_modulo .palabra {
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #FA4949;
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	mix-blend-mode: multiply;
  display:none;
}
#wrap-categorias .marco{
	display: block;
	position: relative;
  height: 300px;
}
#wrap-categorias .marco .imagenA{
    position: relative;
    height: 200px;
}
#wrap-categorias .marco img{
    object-fit: cover;
    height: 130%;
    margin: auto;
    /* padding: 0 10px; */
    border-radius: 25px;
    border: 10px solid transparent;
}
#wrap-categorias .marco .campos{
	position: absolute;
	/*bottom: 15%;*/
	/*background: #0072B7;*/
	padding: 7px;
	color: black;
	width: 100%;
	/*left: 50%;
	transform: translateX(-50%);*/
	text-align: center;
	transition: all 0.2s ease-in-out;
}
#wrap-categorias .marco .campos h3{
	/*border: 1px solid #FFF;*/
	margin-bottom: 0;
	/*text-transform: uppercase;*/
	line-height: 1;
	font-size: 1em;
	padding: 5px 4px 4px 4px;
  font-size: 1.5rem;
  text-shadow:0px 0px 5px black,0px 0px 5px black,0px 0px 5px black    
}
#wrap-categorias .marco .campos a{
    color: white;
}
#wrap-categorias .marco .campos p, #wrap-categorias .marco .campos .ver-mas{
    display: none;
}
#servicios .slick-slide:hover .campos{
	background: #F4DB5E;
	color: #001826;
}
#testimonios{
	padding: 2% 0;
	background: url("/imagenes/fondo-testimonios.png") top left no-repeat;
	background-size: 100% 100%;
	color: #FFF;
	font-size: 1.5em;
}
#testimonios h2{
	color: #000;
	font-size: 3rem;
	margin-bottom: 4rem;
}
#testimonios .cursiva h2{
	color: #FA4949;
	font-family: var(--fuente-sitio);
	font-size: 4rem;
}
#testimonios .slick-slide{
	padding: 0 3rem;
}
#testimonios .slick-slide:nth-child(even){
	text-align: right;
	color: #000;
}
#testimonios .imagenA{
	display: none;
}
#testimonios .campos h3{
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 2rem;
}
#testimonios .campos h3 .link{
	padding: 0;
}
#testimonios .slick-slide:nth-child(odd) .link{
	color: #FFF;
}
#testimonios .campos p{
	line-height: 1;
	font-size: 2rem;
}
#testimonios .link{
	margin-top: 0; 
}
#aliados{
	padding: 3% 0;
	background-color: #E7E9EA;
	background: #E7E9EA url("/imagenes/fondo-aliados.png") right 6% top 150px no-repeat;
  background-attachment: fixed;
	color: #7D898E;
	font-size: 1.5em;
}
#aliados h2{
	font-size: 5rem;
	font-weight: bold;
}
.clientes{
	overflow: hidden;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.clientes div {
	display: block;
    float: left;
    width: 33.333%;
    text-align: center;
    margin-bottom: 15px;
}
@media (min-width: 650px){
	.clientes div {
		width: 25%;
		margin-bottom: 20px;
	}
}
@media (max-width: 820px) {

  a:not([href]):not([tabindex]) {
    color:white;
  }

	header{
    height: 43px;
	}
	.logo{
		position: absolute;
		top: 0;
		left: 0;
	}
	.logo img {
    width: auto !important;
    height: 40px !important;
	}
	.imagen {
    /*height: 60vw;*/
	}
	.categoria_modulo .palabra {
    font-size: 3em;
	}
	.categoria_modulo .campos {
    width: 100%;
	}
	#testimonios {
    padding: 2% 0;
    background: #FFF;
    color: #000;
    font-size: 1em;
	}
	#testimonios h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
	}
	#testimonios .slick-slide {
    padding: 1rem;
	}
	#testimonios .slick-slide:nth-child(even) {
    text-align: left;
    color: #000;
	}
	#testimonios .slick-slide:nth-child(odd), #testimonios .slick-slide:nth-child(odd) .link {
    color: #000;
	}
	#testimonios .campos h3 {
    margin-bottom: .6rem;
	}
	#testimonios .campos p {
    font-size: 1rem;
	}
	#aliados {
		line-height: 1.1;
	}
	#aliados h2 {
		font-size: 3.5rem;
	}
	#p-destacados .imagenA{
		height: 45vw;
	}
	#p-destacados .imagenA img {
    min-height: 100%;
		height: auto;
		width: 100%;
	}
	#p-destacados h3 {
    font-weight: bold;
    font-size: 1.5em;
	}
	.textoServicio {
		width: 100%;
		opacity: 0.8;
		margin-left: 0;
		margin-top: 0;
		font-size: 18px;
		color: #fff;
		padding: 5px;
	}
	.parallaxCustom {
		display: none;
	}
	.redes{
		line-height: 39px;
		position: static;
    text-align: center;
	}
	.menu .menu-ppal{
		display: none;
	}
	.menu-abierto .menu-ppal{
		display: block;
	}
	#blog{
		padding-bottom: 5%;
	}
	#blog .slick-slide{
		display: block;
	}
	.contenidos > h2, .contenidoInterno h2{
		font-size: 2.5em;
	}
	.slick-slide h3{
		margin-top: 0;
	}
	.slick-slide img{
		position: static;
		min-height: auto;
		width: 100%;
	}
	#servicios .slick-slide {
		padding: 0;
	}
    #blog{
    	font-size: 1em;
    }
	#blog h2 {
    font-size: 3em;
}
	#blog .imagenA {
		height: 60vw;
		width: 100%;
		float: none;
	}
	#blog .imagenA img{
    object-fit: cover;
		height: 100%;
		position: static;
	}
	#blog .campos {
		padding: 3% 0;
		font-size: 1.2em;
		position: static;
		float: none;
	}
	#blog h3 {
		font-size: 1.2em;
	}

  
  #wrap-categorias{
    background-position: center;
  }
  #wrap-capacitate{
    background-position: center;
  }
  
  
	#p-destacados h2 {
		font-size: 2em;
	}
	.imagenBlog{
		/*height: auto;
		max-height: 50vw;*/
	}
	.imagenBlog img{
		position: static;
	}
	.productos-categorias .imagenBlog{
		height: auto;
	}
	.linkHeader{
		margin-top: 0;
		font-size: .7em;
	}
	#video, #descripcion {
		float: none;
		width: 100%;
		padding: 0;
	}
	.clientes {
		width: auto;
		margin: 0 -15px;
	}
	.flecha{
		display: none;
	}
	header .buscar {
		position: absolute;
		width: 261px;
		left: -220px;
		top: 0;
		border-radius: 0 30px 30px 0;
		transition: all 0.5s cubic-bezier(0.33, 0, 0.2, 1) .1s;
		z-index: 10;
	}
	header .mostrar {
		left: 0px;
	}
}
.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 540px) {
    .col-sm-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 720px) {
    .col-md-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 960px) {
    .col-lg-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 1140px) {
    .col-xl-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}


/* EFP */
html {
	scroll-behavior: smooth;
}
img{
	transition: all 0.3s ease 0s;
}
img:hover{
	transform:scale(1.03);
}

.sticky{
	opacity:0.8;
	height:50px;
	transition: all 0.3s ease 0s;
}

.sticky .logo {
	/*padding: 3px 0;*/
  z-index:100;
}
.sticky .menu{
	width: 100%;
	margin-top: -27px;
}

.sticky .compre-colombiano {
	transition: all 0.3s ease 0s;
    left: 27%;
    top: 2%;
}
.sticky .whatsapp{
	bottom:-9px;
}

.div-side{
	position:absolute;
	width: 95%;
	z-index: 1;
	cursor: pointer;
}


.side-categorias{
	position:absolute;
	top:450px;
	z-index:800;
	width:100%;
	display:none;
}
.side-categorias li{
	list-style:none;
	transition: all 0.3s ease 0s;
	border-bottom: 1px solid gray;
}
.side-categorias li a{
	color:black;
	text-decoration:none;
	font-size:1.7rem;
}
.side-categorias li:hover{
	background-color:#E0E0E0;
	transform:scale(1.1);	
}

.ei-title {
	bottom: 12%!important;
}
.buscar{
	display:var(--buscar);
}

.cabezote-div {
  
}
    
.cabezote-div-txt{
    display:inline-block;
    /*float: center;*/
    text-align: center;
    width: 100%;
    height:40%;
    padding: 0px 0px;
    /* margin-right: 90px; */
    position: absolute;
    top: -5%;
    /*right: 90px;*/
    /*background-color:#0050ffbb;*/
    z-index:5;
}
.cabezote-div img{
    display:inline-block;
    position: absolute!important;
    /* position: relative; */
    bottom: -55px!important;
    left: 40px!important;
    width: 25%!important;
    z-index:1;
}

.cabezote-div h2{
	color:white;
	font-size:3em;
	font-weight:normal;
	font-family: var(--fuente-sitio);
	
	font-weight: bold!important;
	padding:0!important;
}
.cabezote-div h3{
    color: white;
    font-size: 2rem!important;
    font-weight: bold;
    font-family: var(--fuente-sitio);
    padding: 0!important;
    /*border-top: 1px solid white;
    border-bottom: 1px solid white;*/
    width: 70%;
    margin: auto auto;
    line-height: 1.2em!important;
    text-align: left;
    letter-spacing: 2px;
    line-height: 3em!important;
}
.cabezote-div p{
  margin: auto auto;
  text-align: left;
  width: 70%;
  font-size: 1.2rem!important;
  line-height: 1.5rem!important;
  color: white;
  letter-spacing: 1px;  
}

.cabezote-div .boton1,.boton2 {
    display: inline-block;
    color: white;
    font-size: 1rem;
    /* font-weight: bold; */
    background-color: #4267b2;
    border-radius: 50px;
    padding: 12px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    /* width: 14%; */
    /* text-align: left; */
    /* float: left;*/
}
.cabezote-div .boton1:hover,.boton2:hover{
	transform:scale(1.03);
}
.cabezote-div .boton1 {
    text-decoration: none;
    position: relative;
    color: white;
    margin-top: 40px;
    box-shadow: 2px 2px 5px #FFFFFF77;
}
.cabezote-div .boton2 {
  text-decoration: none;  
  position: absolute;
  bottom: -40px;
  right: 20px;
  color:black;  
}

.categorias-txt{
    text-align: center;
    /* top: 12%; */
    color: black;
    position: absolute;
    width: 100%;
    /* right: 3%; */
    line-height: 15px;
}
.categorias-txt h5{
	/*text-shadow: 1px 1px 3px white!important;*/
    padding: 0px 5px;
    /* font-weight: bold; */
    font-size: 2.5em;
	transition: all 0.3s ease;
}
.categorias-txt h5:hover{
	transform:scale(1.15);
}
    
.categorias-txt p{
	display:none;
}
.div-liquid-list-categorias{
	margin-top: 15px;
}
.liquid-list-categorias .margen{
	margin-top:10px
}

.liquid-list-categorias{
	width: 100%;
	display: inline-block;
	padding-left:7px!important; 
	padding-right:7px!important;
	height:250px;
}

.liquid-list-categorias .link{
	color: white;
    float: right;
    position: relative;
    top: -65px;
    right: 44px;
    background-color: #454246;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px black;
    border: 1px solid black;
	
	display:none;
}

.liquid-list-categorias .link:hover{
    background-color: #A78B68;
	transition: all 0.3s ease;	
    border: 1px solid white;
	transform:scale(1.1);
}
.liquid-list-categorias img:hover{
	transform:scale(1.15);
}

.div-liquid-list-mas-vendidos{
	/*border-top: 2px solid #e0e0e0;*/
    /* border-bottom: 1px solid gray; */
    padding: 30px 0px;
}
.div-liquid-list-productos{
	/*border-top: 2px solid #e0e0e0;*/
    /* border-bottom: 1px solid gray; */
    padding: 30px 0px;	
}
.div-liquid-list-productos .imagenA{
	color:black;
	text-decoration:none;
	margin-top: 8px;
	transition: all 0.3s ease;
	filter:brightness(100%);
}
.div-liquid-list-productos .imagenA:hover{
	transform:scale(1.01);
	filter:brightness(80%);
}

.div-liquid-list-productos img{
	border:1px solid black;
}

.div-liquid-list-productos .productos-txt{
	color:black;
	transition: all 0.3s ease;	
	opacity:0;
    position: absolute;
    top: 20%;
}
.div-liquid-list-productos .productos-txt:hover{
	opacity:1;
}

.div-liquid-list-productos h3{
	text-align: center;
}
.div-liquid-list-productos h5 {
	width:70%;
	margin:auto auto;
}




.contenidoMatriz .imagenA{
	display: block;
	filter: brightness(80%);
	transition: all 0.3s ease 0s;
	text-decoration:none!important;
	object-fit:cover;
}
.contenidoMatriz .imagenA img{
	/*border:1px solid black;*/
	/*box-shadow:0 0 3px black;*/
	margin: auto auto;
	width: 150px;
}
.contenidoMatriz .imagenA:hover{
	filter: brightness(100%);
}
/*.contenidoMatriz .slick-slide {
	width:33%!important;
    margin-bottom: 40px;
}*/

.contenidoMatriz .blog-wrap .campos{  
  /*height:110px;*/
  width: 73%;
  text-align: left;  
  position: relative;
  /*bottom: 45px;*/
  z-index: 5;  
}


#wrap-categorias .blog-wrap .campos{
  /*height:unset;*/
}
#wrap-categorias h1{
  color:white;
  text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black;
}
#wrap-categorias .campos{
  color:white;
}
#wrap-categorias .imagenBlog {
  /*height:55px;*/
}
#wrap-categorias .imagenBlog img {
  /*display:none; */
}


#wrap-categorias .id20200307-123409-249 {
    text-align: center;
}
    
#wrap-categorias .id20200307-123409-249 .campos {
    color: black;
    background-color: #ffffff9c;
    display:inline-block;
    width:35%;
    vertical-align:middle;
    margin: 30px;
    border-radius:15px;
}
#wrap-categorias .id20200307-123409-249 .campos p{
  padding: 20px;
  text-align: justify;
  font-size: 1.2rem;  
}
#wrap-categorias .id20200307-123409-249 .imagenA {
    display: inline-block;
    width: 35%;
    vertical-align: middle;
    margin: 30px;
    /* height: 300px; */
    /* object-fit: initial;*/
}
#wrap-categorias  .imagenA{
  opacity:0.8;
  transition: all 0.3s ease;
}
#wrap-categorias .imagenA:hover{
  opacity:1;
}

#wrap-categorias .id20200307-123409-249 img {
    object-fit: cover;
    height: 300px;
    margin: auto; 
    border-radius:15px;    
}
#wrap-categorias .id20200307-123409-249 .link {
  text-decoration:none;
    color: var(--color-sitio);
    text-decoration: none;
    font-weight: bold;  
}
#wrap-categorias .id20200307-123409-249 h3 {
    padding: 20px;
    text-align: center;
}
#wrap-categorias .id20200307-123409-249 .campos .ver-mas {
background-color: var(--color-sitio);
    position: relative;
    bottom: -17px;
    margin: auto;
    display: block;
    width: 50px;
    padding: 5px;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px black;
    text-align: center;
}

#wrap-categorias .marco{
  margin-bottom:40px;
}
#wrap-categorias #pelota{
  position:absolute;
  bottom:-103px;
}
#wrap-capacitate #pelota{
  position:absolute;
  top:-66px;
}
#wrap-capacitate #capa1{
  font-weight:bold;
  margin-left: 5%;
  margin-top: -50px;  
  color: black;  
  text-align: center;
  width: fit-content;  
}
#wrap-capacitate #capa2 a{
    font-weight: bold;
    color: var(--color-sitio2);
    text-shadow: 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white;
    margin-right: 20%;    
    text-decoration:none;
  	transition:all 0.3s ease 0s;
}
#wrap-capacitate #capa2 {
  	transition:all 0.3s ease 0s;
}
#wrap-capacitate #capa2:hover{
  transform:scale(1.1);
}
  
.contenidoMatriz .blog-wrap .campos p{
  /*display:block;*/
}

.contenidoMatriz .blog-wrap .campos h3{
  font-size:1rem;
  /*font-family:Arial;*/
  height: 20px;
}

.contenidoMatriz .blog-wrap .campos a{
 text-decoration:none!important;
 color:black;
}

.contenidoMatriz .blog-wrap .link{ 
  z-index:1;
  width:auto;
  position: absolute;
  bottom: -40px;
  right: 85px;  
  padding: 8px 40px;  
  border-radius:5px;
  background-color:black;
  box-shadow:2px 2px 3px black;
}

.matriz-listar .paginacion{
  margin-bottom:30px;
}
.matriz-listar .listado{
  /* display: contents!important; */
}
.matriz-listar h1, .matriz-listar h2{
  margin-left: 30px;
  color: var(--color-sitio);  
}
.matriz-listar .resumen{
  /*display:none;*/
  margin-left: 30px;
}
.matriz-listar .descripcion{
  margin-left: 30px;
  margin-bottom: 20px;  
    display:none;
}

.matriz-listar .imagenBlog{
  display: block;
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
  width: 24%;
  height:200px;
  /* height: 280px; */
  /* margin: auto auto; */
  /* background-color: var(--color-sitio); */
  /* box-shadow: 3px 3px 10px black; */
  transition: all 0.3s ease;
  margin: 0 0 30px 0;
}
.matriz-listar .imagenBlog img {
  height: 100%!important;
  /* margin: auto; */
  width: 100%;
  /* position: absolute; */
  object-fit: cover;
  display: block;
  /* padding: 3px; */
  /* filter: invert(100%); */
  border-radius: 10px;  
}


#wrap-productos .paginacion {
	text-align:center;
}
#wrap-productos .imagenBlog {
	height: 22vw;
	border-radius:25px 0;
	/*box-shadow:0 0 3px black;*/
	border:1px solid black;
}
#wrap-productos .imagenBlog:hover {
}
#wrap-productos .imagenBlog img{
	transition:all 0.5s ease 0s;
	object-fit:cover;
}
#wrap-productos .imagenBlog img:hover{
	/*object-fit:scale-down;
	transform:scale(0.9);*/
}
#wrap-productos .campos h3{
	color:black;
}
#wrap-productos .campos h3{
	color:black;
}

#wrap-servicios .campos{
    width: 70%;
    margin: auto auto;
	color:white;
    margin-top: 20px;	
}
#wrap-servicios .campos h3{
	font-size:1.7em;
    text-align: center;	
}
#wrap-servicios .campos p{
	font-size:1.4em;
    text-align: left;
}
#wrap-servicios .link{
    background-color: #ffffff80;
    padding: 5px 30px;
    font-size: 24px;
    color: black;
    border-radius: 10px;
    transition: all 0.3s ease;
    float: right;
    width: 190px;
	margin: auto auto;
	margin-bottom: 40px;
}
#wrap-servicios .link:hover{
	transform:scale(1.1);
	text-decoration:none;
	background-color: #ffffffFF;
}

#wrap-blog span, #wrap-blogpage{
	color:black;
}

#wrap-contacto .moudle {  
  margin-bottom: 0px;
}
#wrap-contacto .titulo-formulario{
  background-color:var(--color-sitio);
  color:white;
  height:55px;
  padding:15px;
  font-size: 1.2rem;
  width: 100%;
  margin:auto;
}
#wrap-contacto span{
  line-height: 33px;
}

#wrap-capacitate{
  /*height: 49vw;*/
}

.matriz-ver h3{
  text-align: left;
}

.matriz-ver .campos h3{
	font-size:1.75rem;
}
/*.matriz-ver .campos p{
	font-size:1.3em;
}*/

.login {
    margin: auto;
    width: 500px;
}
.cuenta {
    background: #F1F1F1;
}


.cart img{
	max-width: none;
}

.cesta-mas{
	float: none;
    margin: auto 0 40px 0;
    color: black;
    width: 100%;
    text-align: center;
	border: 1px solid #d3d3d3;
    border-radius: 3px;
    background-color: #F0F0F0;
}
.cesta-mas:hover{
	background-color: #E0E0E0;
	text-decoration:none;
	color:black;
	font-weight:bold;
}

.formulario {
    box-sizing: border-box;
    background: #FFF;
    overflow: hidden;
    position: absolute;
    width: 360px;
    top: 40px;
    right: 80px;
    max-width: 100%;
    box-shadow: 0px 0px 15px #005050;	
}

.formulario3 .action-button{
	color: black;
    font-size: 1rem;
    background-color: white;
    border-radius: 15px;
    padding: 5px 20px;
	text-decoration:none;
	transition: all 0.3s ease;	
}
.formulario3 .action-button:hover{
	font-size: 1.1rem;
}
.label-form{
    color: black;
    font-size: 1.2em;
}

.barra-header-top{
	display:var(--barra-header-top);
	background-color: var(--color-sitio);
    width: 100%;
    height: 35px;
    margin-top: 0px;
}
.barra-header{	
}
.barra-header .menu{
	margin-left:25%;
}
.barra-header .menu-ppal li a{
	color:gray;
}
.barra-header .menu-ppal li a:hover{
	color:white;
}

.redes-header {
    position: fixed;  /* FLOTANTE */
    /*position: absolute;*/
    left: 0%;
    /*right: 5%;*/
    /* width: 155px; */
    /* bottom: -35px; */
    top: 10%;
    opacity:0.6;
    transition:all 0.3s ease;
    /*height: 235px;*/
}
.redes-header:hover {
    opacity:1;
}

.redes-header-ico {
    color: black;
    margin: 0 8px;
    text-decoration: none!important;
    display:block;
}
.menu-header{
    position: absolute;
    /*right: 1%;*/
    bottom: -35px;
	left:200px;
}
.menu-header li{
	display:inline-block;
}

.texto-buscar{
	background-color:#F8F8F8; 
	border:0px; 
	width:150px; 
	height:24px; 
	font-size:12px; 
	padding:5px; 
	box-shadow: 0px 0px 2px 0 gray ;
	opacity:0.8;
  border-radius: 3px;    
}
.texto-buscar:hover{
	opacity:1;
}
.imagen-buscar{
    position: relative;
    /* margin-top: 0px; */
    width: 24px;
    top: 6px;
}

.carrito-div{
    display: var(--carrito-div);
    position: fixed;
    right: 37%;
    /* width: 155px; */
    /* bottom: -35px; */
    top: 8px;
    z-index:1;
}
.carrito img{
	width:100%;
	padding: 0px;
}
	
.tabla-carrito{
	background-color:#F8F8F8; 
	border:0px; 
	width:130px; 
	height:20px; 
	font-size:12px; 
	box-shadow: 0px 0px 2px 0 gray ;
	padding-top: 0px;
}

#nav-check {
    display: none;
}
#nav-check:checked+ul {
    display: block;
	padding: 0;
}
.infoUsuario{
	color: black;
    /* background: #E0E0E0; */
    text-decoration: none;
    /* border-radius: 0 0 5px 5px; */
    text-align: center;
    display: inline-block;
    padding: 0px 0px 0px 0px;
    position: relative;
    vertical-align: top;
    /*border: 1px solid #cacaca;*/
}
.infoUsuario form{
	display:var(--buscar);
}
.infoUsuario li{
    display:inline-block;
	padding: 0px 10px;
}
.infoUsuario li a{
    color:#000;
}
.infoUsuario label{
    cursor: pointer;
    padding: 5px 8px;
    font-size: .8em;
}
.infoUsuario label:hover{
    text-decoration:underline;
}
.infoUsuario ul{
    background-color: #FFF;
    border: 1px solid #dedede;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 2px rgba(99,99,99,.2);
    box-shadow: 2px 2px 2px rgba(99,99,99,.2);
    left: 0;
    position: absolute;
    top: 100%;
    width: 150px;
    display: none;
    z-index:10;
}
.infoUsuario ul li{
    margin: 3px 0;
    padding: 5px 15px;
}
.infoUsuario ul li a{
    color:#000;
}

.mi-cuenta{
	display:var(--mi-cuenta)!important;
}

.cuenta{
    background: #F1F1F1;
}
.cuenta .col-sm-3 nav{
    background: #FFF;
    margin-bottom:15px;
    border: 1px solid #DDD;
    padding:5px 0;
    border-radius:3px;
    border-bottom:solid 6px var(--color-sitio);
    box-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
.cuenta .col-sm-3 nav h2{
    padding:0 11px;
    font-size:1.2em;
    background-color:var(--color-sitio);
    color:white;
    border-bottom:solid 1px #DCDEE3;
}
.cuenta .col-sm-3 ul{
    list-style: none;
	padding: 0;
}
.cuenta .col-sm-3 li{
}
.cuenta .col-sm-3 a{
    color:#000;
    display:block;
    padding:5px 11px;
}
.cuenta .col-sm-3 a:hover{
    background: #F1F1F1;
    text-decoration:none;
}
.review{
    margin-top:15px;
    padding: 15px;
        box-shadow: 3px 3px 15px black;
}

}
.review form{
    width:100%;
}
.review label{
    display: block;
    margin-bottom: 3px;
}
.review .form-fullwidth{
    border-radius: 3px;
    border: 1px solid #D1CDC5;
    width: 95%;
    padding: 8px 15px;
    margin-bottom: 15px;
}
.review textarea{
    max-height: 180px;
    min-height: 65px;
    resize: none;
}
.review .form-boton{
    margin-top: 15px;
    text-align:right;
}
.review .form-boton button{
    color: white;
    background: var(--color-sitio);
    padding: 8px 20px;
    border:none;
    border-radius: 5px;
    cursor:pointer;
    box-shadow: 2px 2px 3px black;    
}

.logo-contacto{
    position: absolute;
    /* margin-left: 25%; */
    /* margin-right: auto; */
    width: 60%;
    margin-top: 46%;
}

.redes-footer{
    /* position: absolute; */
    /* margin: 3px 21px; */
    right: 23%;
    margin: auto;
    display: none;
    width: 215px;
    text-align: center;
}
.redes-footer a{
	color:white;
  font-size: 1.5rem;
  transition:all 0.3s ease;
}
.redes-footer a:hover{
  transform:scale(1.2);
}

.redes-footer-ico{
    color: white;
    margin: 0 8px;
    text-decoration: none!important;	
}
.redes-footer-ico img{
	/*width:15px;*/
}
.ul-footer li{
	color:white;
	font-size:12px;
	text-align:right; 
}
.ul-footer a{
	color:white!important;
}

.lista-de-deseos{
	display:none;
}
.fondoGeneral{
	background-color:#EEEEEE;
}

.texto-vertical{
	text-align: center;
	font-size:72px!important;
	color:white;
	transform: rotate(-90deg);
    position: absolute;
    left:  -10%;
    top: 20%;
}

.contenidoMatriz{
  width: 90%!important;
  margin: auto;
  /*margin-top: 20px!important;*/
  /*margin-bottom: 40px!important;*/
}
.rounded{
  background-color:var(--color-sitio);
  box-shadow: 0px 0px 15px black;
  /*width: 50%;*/
  margin: auto;
  display: block;  
      margin-bottom: 20px;
}

.matriz-ver .campos p{
  color:black;
}


@media (max-width: 600px) {
    .matriz-ver .campos iframe{
      width:100% !important;
      height: 49.2vw !important;
    }
}
.matriz-ver .campos img{
  height: auto !important;
}



#wrap-blog .contenidos h1{
  color:var(--color-sitio);
  font-weight:bold;
}
#wrap-blog .contenidos p{
  color:var(--color-sitio);
}

#wrap-blogpage .contenidos h1{
  color:black;
}
#wrap-blogpage .contenidos p{
  color:black;
}


#noticias h1,
#articulos h1{
  color:black;
}

#wrap-blog .noticias .imagenA, 
#wrap-blog .articulos .imagenA, 
#wrap-blogpage .articulos .imagenA{
	/*display:none;*/
  display: inline-block;
  width: 100%;  
  float:left;
  padding:20px
}

#wrap-blog .noticias .imagenA img:hover, 
#wrap-blog .articulos .imagenA img:hover, 
#wrap-blogpage .articulos .imagenA img:hover{
  box-shadow:3px 3px 10px black;
}

#wrap-blog .contenidos h3{
  color: black;
  position: absolute;
  right: 9%;
  font-size: 3rem;
  z-index:1;
}

#wrap-blog .noticias .campos, 
#wrap-blog .articulos .campos, 
#wrap-blogpage .articulos .campos{
  width: 100%;
  display: inline-block;
  margin-top:-22px;
  padding:0 20px;
}

#wrap-blog .noticias, 
#wrap-blog .articulos, 
#wrap-blogpage .articulos {
	width: 100%;
    float: center;
    /*background-color: white;*/
    /*margin-top: 2%;*/
    margin-bottom: auto;
    padding: 0px 0px;
    /*margin-top: 85px;*/
}

#wrap-blog .noticias img,
#wrap-blog .articulos img{
	width:100%;
  height:250px;
  object-fit: cover;
	/*margin: 12px auto;*/
	/*border-radius: 50%;*/
	/*background-image: radial-gradient(white, transparent);*/
	opacity: 1;
  /*border: 10px solid white;*/
  border-radius: 10px 10px 0 0px;	
	/*display:none;*/
}
#wrap-blog .noticias a, 
#wrap-blog .articulos a, 
#wrap-blogpage .articulos a{
	text-decoration: none;
  text-align: center;
    color: white;
	/*float: right;*/
	/*margin-bottom: 20px;*/
  transition: all 0.3s ease;
}
#wrap-blogpage .articulos a{
  color:black;
  padding:0;
}
#wrap-blog .noticias h3, 
#wrap-blog .articulos h3, 
#wrap-blogpage .articulos h3{
  padding: 10px;
  /* text-align: center; */
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
  background-color: var(--color-sitio);
  padding: 10px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;  
}
#wrap-blog .noticias h4, 
#wrap-blog .articulos h4, 
#wrap-blogpage .articulos h4{
  font-size: 1rem;
  color:var(--color-sitio);
  display:none;
}

#wrap-blog .noticias p,
#wrap-blog .articulos p{
    color: black; 
    font-size: 1rem;
    /* line-height: 35px; */
    /* text-align: right; */
    /* letter-spacing: 1px; */    
    width: 100%;
    background-color: #e0e0e0;
    padding: 10px 10px 30px 10px;
    margin-top: -9px; 
    border-radius: 0px 0px 15px 15px;
    min-height: 118px;      
}

#wrap-blogpage .articulos .ver-mas,
#wrap-soluciones-tic .ver-mas{
    background-color: var(--color-sitio);
    padding: 5px 30px;
    font-size: 1rem;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    float: left;
    box-shadow: 2px 2px 3px black;
    margin-bottom: 20px;
}

#wrap-blog .noticias .ver-mas,
#wrap-blog .articulos .ver-mas {
    background-color: var(--color-sitio);
    position: relative;
    bottom: 37px;
    margin: auto;
    display: block;
    width: 50px;
    text-align: center;
    padding: 5px;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 5px black;
    margin-bottom: 20px;
}

#wrap-soluciones-tic .ver-mas{
  float:unset;
}

#wrap-blog .noticias .ver-mas:hover,
#wrap-blog .articulos .ver-mas:hover,
#wrap-soluciones-tic .ver-mas:hover{
    transform:scale(1.1);
}

#wrap-contacto .campos{
  display:none;
}

.div-envios{
    border: 2px solid #C0C0C0;
    padding: 0px 11px;
}
.div-envios img{
	display: inline-block;
	position:relative;
	top: -6px;
}
.div-envios span{
    display: inline-block;
    position: relative;
    top: 7px;
    margin-left: 10px;
    font-size: 16px;
}

.descuento{
	display:none;
}

.logo-mapa{
    position: absolute;
    float: left;
    padding: 0 0px;
    width: 360px;
    /* margin-bottom: 10px; */
    left: 3%;
    bottom: 36px;
}
.mapa-navegacion-creditos{
	float: right;
    margin-right: 8%;
}
.mapa-navegacion{
  float: left;
  margin-left: 8%;
}  
    
.ampliar{
	background-color: var(--color-sitio)!important;
	transition: all 0.3s ease;
}
.ampliar:hover{
	color:white;
	transform:scale(1.1);
	text-decoration:none;
}

.compre-colombiano{
display:none;
  position: absolute;
  right: 45%;
  top: 30%;
  width: 130px;
	transition: all 0.3s ease 0s;
}

#wrap-beneficios{
  display: flex;
  justify-content: center;
  align-items: center;
}
#wrap-beneficios h2{
    color: white;
    font-size: 1.4rem;
    font-weight: normal;
    text-align: center;
    width: 42%;
    margin: 20px auto;
}

#wrap-beneficios .boton1{
  color: black;
  font-size: 1rem;
  font-weight: bold;
  background-color: white;
  border-radius: 10px;
  padding: 7px 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 14%;
  text-align: center;
  position: absolute;
  bottom: 29%;
  right: 5%;
}
#wrap-beneficios .boton1:hover{
	transform:scale(1.03);
}

#wrap-tips img {
    max-width: 50%;
    margin: auto;
}
#wrap-tips .campos {
  text-align:center;
  color:white;
}
#wrap-tips .campos p{
  display:none;
}
#wrap-tips .campos a{
  display:none;
}
#wrap-tips .campos h3 a{
  display:inline-block;
  color:white;
  transition: all 0.3s ease;
}
#wrap-tips .campos h3 a:hover{
  text-decoration:none;
  transform:scale(1.03);
}

#wrap-patrocinadores .figura {
    display: inline-block;
    margin: 10px 20px;
}
#wrap-patrocinadores .carrusel {
    filter: grayscale(100%);
    transition: all 0.2s ease 0s;
    height: 57px;
    cursor:pointer;
}
#wrap-patrocinadores .carrusel:hover {
    filter: none;
    transform: scale(1.3);
    /*box-shadow: 0 0 10px black;*/
}
#wrap-patrocinadores h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

#wrap-registrate img{
  margin: auto;
  display: block;
  width:90%;
  transition:all 0.3s ease;
} 
#wrap-registrate img:hover{
  box-shadow:3px 3px 10px gray;  
}

.nocitas {
  background: none repeat scroll 0 0 #757575;
  border-radius: 5px;
  display: inline-block;
  color: #FFFFFF;
  padding: 10px 15px;
  text-align: center;  
  cursor:pointer;
  transition: all 0.3s ease;
}
.nocitas:hover {
  transform:scale(1.02);
}

.abrir{
  margin:auto;
  display: block;
  cursor: pointer;
}

.formPaypal {
  background-color:white;
  width:65%;
  margin:auto;
  opacity: 90%;
  box-shadow: 3px 3px 10px black;  
}
.formPaypal form{
  width:80%;
  margin:auto;
}

.info-producto 
	.titulo-especificaciones,
	.especificaciones,
	.titulo-cantidad,
	.cantidad,
	.titulo-tallas,
	.tallas
{
	display:none;
}


.icono-buscar{
  display:inline-block;
  width: 85px;
  transition: all 1s ease-out;
  margin-bottom: -50px;
  cursor: pointer;
  margin-left: 0px;
  /* margin: auto;*/
}
.icono-buscar:hover{
	transform: rotate(-360deg);
}
.icono-liga{
  display:inline-block;
}
.icono-liga img{
  height:85px;
}
.busca-aqui{
  color: white;
  font-size: 1.2em;
  writing-mode: vertical-lr;
  height: 210px;
  font-weight: bold;
  margin-left: 10px; 
  /* vertical-align: middle; */
  /*padding: 10px;*/
  cursor: pointer;
  text-align: center;
  
  transform: rotate(180deg);
  /* Legacy vendor prefixes that you probably don't need... */
  /* Safari */
  -webkit-transform: rotate(180deg);
  /* Firefox */
  -moz-transform: rotate(180deg);
  /* IE */
  -ms-transform: rotate(180deg);
  /* Opera */
  -o-transform: rotate(180deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);  
}

/*.dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info{
  color:white!important;
}*/

.modal{
	display: none;
	background-color: rgba(0, 0, 0, 0.7);
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 2000;
	transition: all 0.5s ease-out;
	vertical-align: middle;
}
.modal-img{
	position:absolute;
	height:100%;
	width:50%;
	object-fit: scale-down;
	left:0;
	bottom:0px;
	padding:15px;
	border-radius: 35px;
}

.buscador{
	/*background:var(--color-sitio);*/
	padding-bottom: 10px;
	
	width:600px;
  height:305px;
	right:-518px;
	position:fixed;
	bottom:-221px;
  /*top: 50px;*/
	z-index:2000;
	transition: all 0.5s ease-out;
	border-radius: 20px 0px 0px 20px;
	/*box-shadow:0px 0px 15px black;*/
	opacity: 0.9;
}

.div-tabla-buscador{
  width:70%;
  margin:auto;
  display:none;
}


/*
.buscador:hover{
  right:0px;
}
*/
.buscador h2{
  /*background: #ffffff;*/
    text-align: left;
    font-size: 2em;
    /* color: #0065AB; */
    font-weight: normal;
    /* padding: 5px 0; */
    margin: 0 0 0px 0;
    border-radius: 20px 0 0 0;
    line-height: 5rem;
}
.buscador .col-md-2, .buscador .col-md-3, .buscador .col-md-4{
	padding-left: 0px;
}
.buscador .col-md-10 .col-md-6{
	padding-right: 0px;
	margin-bottom: 5px;
}
.buscador select{
	padding: 5px 2px;
	border-radius: 5px;
	width: 100%;
	text-transform: capitalize;
}
.buscador select option{
	text-transform: capitalize;
}
.buscador .img-buscador{
	height: 65px;
	vertical-align: top;
	padding: 15px 10px;
	background: #ffc500;
	border-radius: 5px;
}

.div-tabla-buscador a{
  color:black;
  text-decoration:none;
  padding:5px 10px;
  border-radius:3px;
  box-shadow:2px 2px 5px var(--color-site);
  transition:all 0.3s ease;
}
.div-tabla-buscador a:hover{
  background-color:var(--color-sitio);
  color:white
}


.div-home-video {
  width:600px; 
  height:335px; 
  position: absolute;
    top: 135px;
    left: 17%;
  box-shadow: 2px 2px 5px black;
}

.tabla-torneos {
  margin:auto;
  /*background-color:var(--color-sitio);*/
  background-image: url(/fotos/Image/estadio.jpg);
      /*background-position: center;*/
      background-repeat: round;
      box-shadow: 0px 0px 15px black;
          min-width: 70%;
              min-height: 400px;
}
.tabla-torneos td, .tabla-torneos th{
  padding: 5px 20px;
  text-align:center;
}
.tabla-torneos th{
  color:white;
  font-size:2rem;
}
.tabla-torneos td a{
  color: white;
  font-size: 1rem;
  background-color: var(--color-sitio);
  padding: 3px 8px;
  border-radius: 5px;
  opacity: 80%;
  transition: all 0.3s ease;
    box-shadow:3px 3px 10px black;

}
.tabla-torneos td a:hover{
  background-color: var(--color-sitio2);
  text-decoration:none;
  transform:scale(1.05);
}

.logo-contacto{
  position: absolute; 
  margin-left: 30%; 
  margin-right: auto; 
  width: 365px; 
  margin-top: 10%;
}

.adjuntoOLD{
  border: 1px solid lightgray; 
  width: 95%; 
  padding: 15px 15px 0 15px;
  background-color:white;
}

.adjunto{
	position:relative;
	margin:15px;
	padding:1px;
	width:300px;
	background-color: var(--color-sitio);
	border-radius:5px;
  transition: all 0.3s ease;
	box-shadow:3px 3px 2px black;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.adjunto:hover{
	box-shadow:3px 3px 5px black;
  transform:scale(1.03);
}
.adjunto p{
	text-align: center;
	color:white;
  margin: 12px;
}
.adjunto input{
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	width:100%;
	height:100%;
	opacity: 0;
  cursor: pointer;
}
.adjunto-info label{
  margin:15px 0;
  color:gray;
  font-size: 0.8rem;
  font-style: italic;
}

.ingreso{
  width: 80%!important;
  margin: auto;
}

.ingreso input:valid, text:valid {
  background:#00800020;
}
.ingreso input:invalid, text:invalid {
  background:#FF000020;
}
.ingreso input:valid, select:valid {
  background:#00800020;
}
.ingreso input:invalid, select:invalid {
  background:#FF000020;
}
.ingreso select {
  min-width:300px;
  height:43px;
}

.error{
  color:red;
}
.NOerror{
  color:green;
}

.enlace{
  background-color: var(--color-sitio);
  padding: 5px 30px;
  font-size: 1rem;
  color: white;
  border-radius: 5px;
  transition: all 0.3s ease;
  float: left;
  box-shadow: 2px 2px 3px black;
  /*margin-bottom: 20px;*/
  text-decoration:none;
  cursor: pointer;
  z-index:100;
  margin: 16px;
}
.enlace:hover{
  text-decoration:none;
  color:white!important;
}

.row-menu{
  width:90%; 
  margin:auto;
}

.ck-button label input {
   margin-right:100px;
}
.ck-button {
  margin:2px;
  background-color:var(--color-sitio);
  border-radius:4px;
  /*border:1px solid #D0D0D0;*/
  overflow:auto;
  float:left;
  cursor:pointer;
  /*box-shadow:3px 3px 0px;*/
  transition: all 0.3s ease;
}
.ck-button:hover{
  box-shadow:3px 3px 5px black;
}

.ck-button label {
  float:left;
  width:5.5rem;
  color:gray;
  cursor: pointer;
}
.ck-button label span {
    text-align:center;
    padding:3px 0px;
    display:block;
}
.ck-button label input {
    position:absolute;
    top:-20px;
        display: none;
}
.ck-button input:checked + span {
    background-color:var(--color-sitio2);
    color:#fff;
      box-shadow:3px 3px 5px black;

}


.ck-button-g label input {
   margin-right:100px;
}
.ck-button-g {
  margin:2px;
  /*background-color:var(--color-sitio);*/
  border-radius:4px;
  /*border:1px solid #D0D0D0;*/
  overflow:auto;
  float:left;
  cursor:pointer;
  /*box-shadow:3px 3px 0px;*/
  transition: all 0.3s ease;
}
.ck-button-g:hover{
  /*box-shadow:3px 3px 5px black;*/
}

.ck-button-g label {
  float:left;
  width:2rem;
  color:gray;
  cursor: pointer;
}
.ck-button-g label span {
    text-align:center;
    padding:3px 0px;
    display:block;
    font-size:1.5rem;
}
.ck-button-g label input {
    position:absolute;
    top:-20px;
        display: none;
}
.ck-button-g input:checked + span {
    /*background-color:var(--color-sitio2);*/
    color:goldenrod;
    text-shadow:1px 1px 3px black;

}

.separadiv{
  display:flex;
  width:100%;
}

.ingreso #fotosLogueo img{
  display:block;
  margin: 20px auto;
}
.ingreso #fotosLogueo h3{
  text-align:center;
}

.ingreso img{
  /*margin:20px;*/
}

#wrap-mapa .moudle {
    margin: 0!important;
}
#wrap-mapa .col-md-12 {
    padding: 0!important;
}
#wrap-mapa .container {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: 0;
  margin-left: 0;
}

.wrap-div{
  width:95%; 
  margin: auto;  
}

.grecaptcha-badge{
	visibility: collapse !important;
}

#wrap-imagenes .marco{
  padding:10px;
}
#wrap-imagenes .info-home img{
	width:100%;
  height:250px;
  object-fit: cover;
	/*margin: 12px auto;*/
	/*border-radius: 50%;*/
	/*background-image: radial-gradient(white, transparent);*/
	opacity: 1;
  /*border: 10px solid white;*/
  border-radius: 10px;	
	/*display:none;*/
}
#wrap-imagenes .info-home a{
  text-decoration:none;
  color:white;
  margin-bottom: 50px;
  text-shadow:0px 0px 5px black,0px 0px 5px black,0px 0px 5px black  
}
#wrap-imagenes .campos a{
    position: relative;
}
#wrap-imagenes .info-home h3{
  text-align: center;
  margin-top: -165px;
  display:none;
}  
#wrap-imagenes .info-home p{
  display:none;
}
#wrap-imagenes .info-home .ver-mas{
  display:none;
}
#wrap-capacitate .contenidos{
    flex-wrap: wrap;
    align-items: center;
    text-align:center;
}
@media (min-width: 820px) {
    #wrap-capacitate .contenidos .btn{
        margin-top: 33vw;
        padding: .6rem 1.5rem;
        font-size: 1.5rem;
        line-height: 1.7;
    }
}
#cuenta-cabezote {
  height:50px;
}

.ingreso .div-foto{
  width:31%;
  display:inline-block;
  height:250px;
  border: 10px ridge var(--color-sitio2);
}
.ingreso .foto{
  margin: auto;
  display: block;
  object-fit: contain;
  height: 100%;
}


/* EFP imagen fija en el cabezote*/
.camera_target_content{
  //background-image: url(/fotos/Image/mascara.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.camera_target_content {
  bottom: -3px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  /* top: 378px; */
  z-index: 1;
  height: 75%;
}

#page .campos h1{
  margin-left: 30px;
  color: var(--color-sitio);  
}
#page .campos p{
  margin-left: 30px;
}
#page .descripcion{
  display:none;
}

#home .camera_wrap {
  /*width: 85%!important;*/
}

#home #cabezote {
    width: 78vw;
}
#enlaces-cabezote {
  position: fixed;
  top: 50px;
  right: 0;
  background: #fff;
    width: 21vw;
    padding: .7vw 1.8vw 0 1.8vw;
}
#enlaces-cabezote a{
  display:block;
    margin-bottom: .8vw;
}
#enlaces-cabezote img{
    width: 17.4vw !important;
    height: 11.67vw !important;
}

.boton-soporte{
  font-size:20px;
  background-color: var(--color-sitio2);
  color:white;
  text-decoration: none;
  width: fit-content;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 3px 3px 5px black;
  margin: auto;
  /*margin-top:20px;*/
  display:block;
  transition: all 0.3s ease;
}
.boton-soporte i{
  font-size:48px;
  vertical-align: middle;
}
.boton-soporte:hover{
  transform:scale(1.1);
  color:white;
  text-decoration: none;
}

@media only screen and (max-width: 820px) {
  /*#cabezote {
    transform: scale(2);
    height: 200px;
    margin-top: 112px;
  }*/

  #home #cabezote {
    width:100%;
  }
  #enlaces-cabezote {
    position: unset;
    margin:auto;
    width:100%;
  }
  #enlaces-cabezote a{
    display:inline-block;
    width:33.3%;
  }
  #enlaces-cabezote a{
    display:inline-block;
  }
  #enlaces-cabezote img{
    width:100% !important;
    height:auto !important;
  }
  
  .ingreso .div-foto {
    height: 135px;
  }  
  
  #wrap-blog {
    max-height:800px;
  }

  #wrap-categorias .id20200307-123409-249 img {
      height: auto;
  }  
  
	header{
		height: 55px;
	}
	.barra-header-top{
		display:none;
	}
	
	.logo {
		top: 0px;
		left: 5px;
		padding: 0px 0;
	}
	.logo img {
		width: 7.5vw !important;
		height: auto !important;

	}
	.sticky {
		height: 55px;
	}
	.sticky .logo {
		top: 0px;
		left: 5px;
		padding: 0px 0;
	}
	.sticky .logo img {
		width: 8vw !important;
	}
	.sticky .menu {
		width: 100%;
    margin-top: 0;
	}
	.sticky .redes{
		display:block;
	}
	
	.redes{
	}
	.redes-header{
	  /*right: 20%;
    top: 7px;*/
    display:none;
	}

  .carrito-div {
		position: fixed;
		right: 26%;
		/* width: 155px; */
		/* bottom: -35px; */
		top: 6px;
	}
	.total{
		top: 1px;
	}
	
	.menu{
		background: #dffce0d9;
    top: 0px;
	}    
    
	.menu-ppal li a {
		color: black;
    font-size: 1.2rem;
	}
  .menu-ppal li:hover ul {
      display:contents;
  }

  .cabezote-div-txt {
    height:auto;
    position:unset;
  }
  .cabezote-div img {
      bottom: -20px!important;
  }
  .cabezote-div h3 {
    font-size: 1rem!important;
  }
  .cabezote-div .boton1, .boton2 {
    /*border-radius: 5px;
    padding: 3px 5px;
    width: 15%;*/
  }
  .cabezote-div .boton1{
    bottom:30px;
  }
  .cabezote-div .boton2{
    bottom:5px;
  }

  #wrap-beneficios container {
    width:none;
  }
  #wrap-beneficios .boton1 {
    width:auto;
    bottom: -25px;
  }
  #wrap-beneficios h3 {
    font-size:2rem;
  }
  
	#side-categorias{
		display:none;
	}
	#wrap-productos .imagenBlog {
		height:200px;
	}
 
	.formulario {
		position: unset;
		margin:auto;
	}
	
	.infoUsuario form{
		display:none;
	}
	.div-side{
		display:none;
	}

	.div-envios {
		margin-bottom: 8px;
	}	
	.div-envios img {
		top:-1px;
	}
	.div-envios span {
		font-size: 12px;
	}

	.noticias,
	.articulos {
		width:100%;
	}
	.noticias h3,
	.articulos h3 {
		font-size: 59px;
		line-height: 42px;
	}
	.noticias p,
	.articulos p {
		line-height: 28px;
	}
	.logo-contacto {
		position: relative;
		width: 105px;
		display: block;
		margin: auto;
    margin-bottom: 30px;
	}
	.slick-slide img {
		width:auto;
		
	}

	.menu-ppal li {
		padding: 2px 10px 12px 15px;
		font-size: 1.5em;
	}

	.texto-vertical {
		text-align: center;
		font-size: 58px!important;
		color: white;
		transform: none;
		position: unset;
		left: 0;
		top: 0;
	}	

	.contenidoMatriz .imagenBlog{
		/*text-align: center;
		margin: auto auto;
		width: 100%;*/
    height: 80px;
	}
	.contenidoMatriz .imagenBlog img {
		height: 64%;
	}
  .contenidoMatriz .blog-wrap .campos h3 {
    font-size:0.7rem;
    width: 100%;
  }
  .contenidoMatriz .blog-wrap .campos {
    /*bottom:22px;*/
  }
  #wrap-categorias .contenidoMatriz {
    /*height:215px!important;*/
  }
  
	.redes-footer {
		/*left: 15%;
		bottom: 40%;*/
	}	
	.liquid-list-categorias .link {
		top: -20px;	
	}	
	
	.compre-colombiano {
		display:none;
	}
	.whatsapp {
		display:none;
	}
	

  #wrap-categorias .id20200307-123409-249 .imagenA {
    width:auto;
    margin: 5px
  }
  #wrap-categorias .id20200307-123409-249 .campos {
    width:auto;
  }
  #wrap-categorias .id20200307-123409-249 .campos {
    margin: 5px;
  }
  
  #wrap-blog .noticias .campos,
  #wrap-blog .articulos .campos {
    /*width:auto;*/
  }

	#wrap-blog .contenidos h3 {
		text-align: center;
	}
    
	#wrap-blog .noticias h3,
	#wrap-blog .articulos h3 {
    font-size: 1rem;    
	}

  
	#wrap-blog .noticias p,h3,
	#wrap-blog .articulos p,h3 {
		width: 100%;
	}
  
  .contenidoMatriz .blog-wrap{
    /*margin-top: 20px;
    margin-bottom: 40px;*/
    flex-direction: column-reverse;    
  }
  .contenidoMatriz .blog-wrap .campos {
    width:100%;
  }  
  .contenidoMatriz .blog-wrap .imagenBlog {
    width:100%;
  }    
  .contenidoMatriz h1,
  .contenidoMatriz .resumen,
  .contenidoMatriz .descripcion
  {
    margin-left:0;
  }    
  
  
  .contenidoMatriz .contenidoMatriz{
    /*margin-top: 20px;
    margin-bottom: 40px;*/
  }
  
	.div-liquid-list-productos .productos-txt{ 
		opacity:1;
	}
	.div-liquid-list-productos h3 {
		top: 0%;
	}
	.div-liquid-list-productos h5 {
		font-size: 1em;
	}
	
	.logo-mapa {
		width:180px;
	}
	.mapa-navegacion nav{
		width:100%!important;
	}
	.div-liquid-list-productos .imagenA {
		filter: brightness(100%);
	}

  #wrap-blog .noticias .imagenA,
  #wrap-blog .articulos .imagenA {
    width:auto;
  }
  #wrap-blog .noticias .imagenA img,
  #wrap-blog .articulos .imagenA img{
    margin: auto;
  }

  #wrap-beneficios h2 {
    color: white;
    font-size: 0.8rem;  
  }

  #wrap-registrate img {
    float: unset!important;
  }

  .div-home-video {
    position: unset;
    margin: 20px auto;
  }


	.buscador{
		/*top:15%;*/
		width:350px;
		right: -265px;
	}
	.buscador h2 {
		font-size: 1em;
	}
	.busca-aqui {
		right: 68px;
	}
	.llanta-buscar {
		width: 90px;
		margin-left: 3px;		
	}
	.modal-img{
		width:55%;
	}

  .mapa-navegacion-creditos{
    margin-right: 8%;
    float:none;
  }
  
}

@media only screen and (max-width: 500px) {
  .ingreso .div-foto {
    height: 85px;
  }  

  .sticky .logo img {
    width: 14vw!important;
  }
  .buscador {
    /*top: 23%;*/
  }
  
  #wrap-categorias {
    /*height: unset!important;*/
  }  
  .container {
    max-width: 95%;
  }
  .logo img {
      width: 13vw !important;  
  }
  .contenidoMatriz {
      height: unset!important;
  }  
  .contenidoMatriz .imagenBlog {
      height: 230px;
  }
  .contenidoMatriz .imagenBlog img {
    height: 70%;
  }
  .contenidoMatriz .blog-wrap .campos h3 {
      font-size: 1.5rem;  
  }
  .contenidoMatriz .blog-wrap .campos {
      /*bottom: 58px;*/
  }

  #wrap-contacto .formPaypal {
    width:90%;
  }

  .busca-aqui {
      margin-left: 3px;  
  }

  .div-home-video {
    width: unset;
        height: 216px;
  }
  .formPaypal {
    width:100%;
  }
  
  .ul-footer li {  
    text-align:left;
  }
  
  .login {
    width: 100%;  
  }

  
}

@media only screen and (max-width: 1350px) {
	.menu-ppal {
		font-size: 0.8em;
	}
}


