
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

0.0 - Variables
1.0 - Reset
2.0 - Responsive Grid
3.0 - Typography
4.0 - Elements
5.0 - Header
5.0 - Navigation
7.0 - Footer
8.0 - Main

----------------------------------------------------------------*/

/*--------------------------------------------------------------
0.0 - Variables
----------------------------------------------------------------
	
0.1 - Colores

		Principal: #cc0428; rbga(136,52,76,1);
		
		Gris:#f4f4f4;rbga(244,244,244,1);

		Gris 2: #ebebeb;rbga(244,244,244,1)	

		Textos: #555555;


--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - 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, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: none!important;
}
a:hover,
a:active {
	outline: none!important;
}
a img {
	outline: none!important;
}



/*--------------------------------------------------------------
2.0 - Responsive Grid
--------------------------------------------------------------*/

body{width: 100%;}

.columna1,.columna2,.columna3,.columna4,.columna23,.columna34,
.columna1-2, .columna1-3, .columna2-3,.columna1-4,.columna3-4,
.container, .content,
.columna1-5,.columna2-5,.columna3-5,.columna4-5,.columna5-5,
.columna6, .columna1-6
{min-height: 1px;}



.container{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	float: left;
}

.caja{
	width: 100%; 
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.content{
	width: 100%; 
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
}

.columna1-2, .columna1-3, .columna2-3,.columna1-4,.columna3-4,
.columna1-5,.columna2-5,.columna3-5,.columna4-5,.columna5-5,.columna1-6
{float: left;}

.columna1-2{width: 50%;}
.columna1-3{width: 33.333%;}
.columna2-3{width: 66.666%;}
.columna1-4{width: 25%;}
.columna3-4{width: 75%;}
.columna1-6{width: 16.666%}

.columna1-5{width: 20%;}
.columna2-5{width: 40%;}
.columna3-5{width: 60%;}
.columna4-5{width: 80%;}



.columna1,.columna2,.columna3,.columna4,.columna23,.columna34,.columna6{
	float: left;
	padding-left: 0px;
	padding-right: 0px;
	margin-right: 20px;
	margin-left: 20px;
}

.columna1 {
	/*max-width: 1140px;*/
	width: calc(100% - 40px);
	width: -moz-calc(100% - 40px);
	width: -webkit-calc(100% - 40px);
	width: -ms-calc(100% - 40px);
	width: -o-calc(100% - 40px);
}

.columna4{
	width: calc(25% - 40px);
	width: -moz-calc(25% - 40px);
	width: -webkit-calc(25% - 40px);
	width: -ms-calc(25% - 40px);
	width: -o-calc(25% - 40px);
}

.columna2{
	width: calc(50% - 40px);
	width: -moz-calc(50% - 40px);
	width: -webkit-calc(50% - 40px);
	width: -ms-calc(50% - 40px);
	width: -o-calc(50% - 40px);
}

.columna34{
	width: calc(75% - 40px);
	width: -moz-calc(75% - 40px);
	width: -webkit-calc(75% - 40px);
	width: -ms-calc(75% - 40px);
	width: -o-calc(75% - 40px);
}

.columna3{
	width: calc(33.333% - 40px);
	width: -moz-calc(33.333% - 40px);
	width: -webkit-calc(33.333% - 40px);
	width: -ms-calc(33.333% - 40px);
	width: -o-calc(33.333% - 40px);
}

.columna23{
	width: calc(66.666% - 40px);
	width: -moz-calc(66.666% - 40px);
	width: -webkit-calc(66.666% - 40px);
	width: -ms-calc(66.666% - 40px);
	width: -o-calc(66.666% - 40px);
}

.columna6{
	width: calc(16.666% - 40px);
	width: -moz-calc(16.666% - 40px);
	width: -webkit-calc(16.666% - 40px);	
	width: -ms-calc(16.666% - 40px);	
	width: -o-calc(16.666% - 40px);	
}



.movil{display: none!important;}
.escritorio{display: block;}


.derecha{text-align: right;}
.izquierda{text-align: left;}
.centro{text-align: center;}


.salto{clear: both;}



.escondido{text-indent: -99999px; position: relative;}

.oculto{display: none;}

/*--------------------------------------------------------------
3.0 - Typography
--------------------------------------------------------------*/


/* 3.1 - Fonts */


/* 3.2 - Fonticons */


/* 3.3 - Textos */

*{
    font-family: helvetica, arial, sans-serif;
    font-weight: 400;
    color: #555555;
   /*
    -webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
	*/
}

body,
button,
input,
select,
textarea,
li,
a,
p{
	font-size: 15px;
	line-height: 1.5;
	word-wrap: break-word;
	-moz-hyphens:manual;
	-webkit-hyphens:manual;
	hyphens:manual;
}


p{
	-webkit-hyphens: auto;
	   -moz-hyphens: auto;
	    -ms-hyphens: auto;
			hyphens: auto;	
}


h1, h2, h3, h4, h5, h6 {
	/*font-family: 'PermianSerif', serif;*/
}

h1 {}

h2{}

h3{font-size: 18px;text-transform: uppercase; font-weight: bold;font-family: helvetica, arial, sans-serif;}

h4{text-transform: uppercase;font-size: 14px;}

h5{
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: 700;
}

h6{}

p,address {color: #898989}

b, strong, .strong {font-weight: bold;}

em{font-style: italic;}

a, span{
	text-decoration: none;
	color: inherit;
}

a{
	/*display: inline-block;*/
}

a:hover{opacity: .7;}

footer *,h1, h2, h3, h4, h5, h6, nav *{
	-moz-hyphens:manual;
	-webkit-hyphens:manual;
	hyphens:manual;
}


::selection {
  background: #ccc; /* WebKit/Blink Browsers */
  color: #fff;
}

::-moz-selection {
  background: #ccc; /* Gecko Browsers */
  color: #fff;
}

.maven{font-family: 'Maven Pro', helvetica,arial,sans-serif}

.padding{margin-top: 20px;margin-bottom: 20px;}

.uppercase {text-transform: uppercase !important;}
.lowercase {text-transform: lowercase !important;}
.sinmayusculas {text-transform: none !important;}

/*--------------------------------------------------------------
4.0 - Elements
--------------------------------------------------------------*/



		/*--------------------------------------------------------------
		4.1 - Buttons
		--------------------------------------------------------------*/




button, .button, input[type="submit"], input[type="button"], .btn{

	-webkit-appearance:none!important;
	-webkit-border-radius: 0px 0px 0px 0px !important;

    background-color: #cc0428;
    border: 0 solid;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    min-height: 40px;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    width: auto;
    position: relative;

    margin-bottom: 10px;
    margin-right: 0px;
}

.largo, .largo{width: 100%;margin-bottom: 0px;}

button i , .button i{color: #fff;font-size: 20px;line-height: 30px}

.icon{font-family: FontAwesome;}

.claro{background-color: #ebebeb; color: #333333}

.gris{background-color: #a8a8a8}


input[type="submit"].comprar, button.comprar{
	background-color: transparent;
	border: 1px solid #464646;
	color: #464646;
	margin-top: 0px;margin-left: 20px;
	text-transform: none;
	font-weight: normal;
	font-size: 18px;
	line-height: 26px;
	padding: 10px 20px 10px 10px;
	height: 50px;
}

.comprar i{
	margin-right: 20px;
	color: #464646;
	font-size: 22px;
}


input[type="submit"].comprar:hover, button.comprar:hover{background-color: #cc0428;border-color: #cc0428;color: #fff;}
.comprar:hover i{color: #fff}

input.cantidad{height: 50px;}

input[type="number"]{text-align: center;}

/*
.sub-menu > li::before,
button::before, .button::before, input[type="submit"]::before, input[type="button"]::before{
    background-color: #81807f;
    content: "→";
    font-size: 12px;
    height: 100%;
    line-height: 40px;
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
}

.sub-menu > li:after,
button::after, .button::after, input[type="submit"]::after, input[type="button"]::after{
    width: 0px;
    height: 0px;
    border-left: 20px solid transparent;
    border-bottom: 40px solid #81807f;
    content: "";
    position: absolute;
    top: 0;
    right: 0;	
}

*/



/*
button:hover::after, .button:hover::after, input[type="submit"]:hover::after{  border-bottom: 40px solid #cc0428;}
button:hover::before, .button:hover::before, input[type="submit"]:hover::before{background-color: #cc0428;}
*/


/*
button:hover, .button:hover{
	opacity: .8;
}
*/



.tlink{
    background-color: #cc0428;
    color: #fff;
    display: block;
    font-weight: 400;
    line-height: 20px;
    height: 20px;
    max-width: 70px;
    text-align: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}


.tlink.circle {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 20px;
}

.tlink.circle.activo{
    background-color: #00ff00;
    border: 1px solid #00ff00;	
}


		/*--------------------------------------------------------------
		4.2 - Otros
		--------------------------------------------------------------*/

.list > li{margin-bottom: 3px;}

.list > li a:before{
    content: "\f105";
    font-family: FontAwesome;
    margin-right: 10px;

}

.list > li a:hover:before{
	color: #cc0428;
}


.separador{
	width: 100%;
	height: 1px;
	background-color: #7b7c7c;
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
}

		/*--------------------------------------------------------------
		4.3 - Forms
		--------------------------------------------------------------*/

		form{}

		form *{hyphens: manual;}

		fieldset{
			margin-top: 20px;
			float: left;
		}

		input, select, textarea{
			box-sizing:border-box;
			float: left;
			margin-bottom: 10px;
			width: 100%;
			border: 1px solid #d4d2d2;
			font-size: 14px;

			
   			-webkit-border-radius: 0px 0px 0px 0px !important;				
		}
		input[type="email"] {
			text-transform: lowercase;
		}
		select, input[type="search"], input[type="email"], input[type="text"]{-webkit-appearance: none !important;}

		input[type="radio"], input[type="checkbox"]{}


		input, select{height: 40px;padding: 0 10px;}

		textarea{height: 120px;resize:vertical ;padding: 10px;}

		button, input[type=submit], input[type="button"]{
			width: auto;
			float: right;
			/*margin-right: 20px;*/
			margin-top: 20px;
		}


			input[type="radio"] {
			    display: inline-block;
			    float: none !important;
			    height: auto;
			    line-height: 1;
			    margin-left: 0;
			    margin-right: 20px;
			    width: auto !important;
			}

/*
		input[type="text"],
		input[type="email"],
		input[type="search"],
		input[type="password"],
		input[type="tel"],
		textarea{
			width: 100%;
		}
*/

		label{display: none;}
		legend, .legend{
			display: block;
			float: left;
			border-bottom: 2px solid #000;
			text-transform: uppercase;
			margin-bottom: 10px;
			padding-bottom: 10px;
			width: 100%;
			font-weight: 400;
			margin-top: 20px;
		}

		#login-form input, #search-form input{font-size: 18px;}



		.fileUpload {
		    position: relative;
		    overflow: hidden;
		    width: 120px;
		    float: left;
		    margin-right: 0px;
		}

		.fileUpload input.upload {
		    position: absolute;
		    top: 0;
		    right: 0;
		    margin: 0;
		    padding: 0;
		    font-size: 20px;
		    cursor: pointer;
		    opacity: 0;
		    filter: alpha(opacity=0);
		}


		#uploadFile{
			background-color: #fff;
			width: calc(100%  - 130px);
			width: -webkit-calc(100%  - 130px);
			width: -moz-calc(100%  - 130px);
			width: -ms-calc(100%  - 130px);
			width: -o-calc(100%  - 130px);
			margin-right: 10px;
			float: left;
		}


		label[for="aceptacion"]{display: inline-block;}
		input[type="checkbox"] {
		    float: left;
		    width: auto;
		    height: auto;
		    margin-right: 5px;
		}
		.aceptacion2 {
		    float: left;
		    width: 20px;
		    height: auto;
		    margin-right: 5px;
			margin-top:0px;
		}
		.txtaceptacion { width:50%;float:left; }
		#captchaimg{width: auto;height: 40px;}

		input[placeholder], textarea[placeholder]{text-transform: uppercase;}




		/*--------------------------- Login Form ---------------------------------*/
		#login-form {
		    margin: 0 auto;
		    max-width: 450px;
		    width: 100%;
		    padding: 0 20px;
		}

		#login-form h3{
			color: #cc0428;
			font-size: 32px;
			font-weight: 300;
		}

		#login-form fieldset{margin-top: 10px;}
		#login-form fieldset:before{margin-bottom: 15px}
		#login-form fieldset:after{margin-top: 10px}
		#login-form fieldset:before,#login-form fieldset:after{
			content: "";
			display: block;
			width: 100%;
			height: 1px;
			background-color: #ccc;
		}

		#login-form label{
		    float: left;
		    line-height: 40px;
		    margin-bottom: 10px;
		    display: inline-block;			

			width: 100px;
		}

		
		#login-form input[type=text], #login-form input[type=password]  {
		    box-sizing: border-box;
		    width: calc(100% - 104px);
		    width: -ms-calc(100% - 104px);
		    width: -webkit-calc(100% - 104px);
		    width: -moz-calc(100% - 104px);
		    width: -o-calc(100% - 104px);
		    float: right;
		}

		#login-form a {
		    display: block;
		    text-align: right;
		    width: 100%;
		    float: left;
		}

		/*#login-form input.button{width: auto;float: right;}*/

		#login-form p {
		    color: inherit;
		    font-size: inherit;
		    margin-bottom: 20px;
		}




		/*--------------------------------------------------------------
		4.4 - Tablas
		--------------------------------------------------------------*/

			table{margin-bottom: 40px;}

			th, td{padding: 10px 0px; line-height: 20px}
			td{vertical-align: middle;}

			thead{background-color: #cc0428;}
			thead th{color: #fff;font-weight: normal;text-align: center;}


			tr{position: relative;}


			tbody tr:nth-child(odd){}
			tbody tr:nth-child(even){}








/*--------------------------------------------------------------
5.0 - Header
--------------------------------------------------------------*/
header{position: relative;margin-bottom: 40px;margin-top: 40px;}

.site-title-div{width: 230px;margin-right: 20px;margin-left: 20px;float: left;}

.header-info{
	width: calc(100% - 320px);
	width: -webkit-calc(100% - 320px);
	width: -moz-calc(100% - 320px);
	width: -ms-calc(100% - 320px);
	width: -o-calc(100% - 320px);
	margin-right: 20px;
	margin-left: 20px;
	float: left;}


.site-title{
    background-image: url("img/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    display: block;
    height: 130px;
    line-height: 0;
    margin: 0 auto;
    max-width: 100% !important;
    text-indent: -99999px;
    width: 100%;
    float: left;
}


.site-title:hover{}



#top-info{
	background-color: #ebebeb;
	min-height: 55px;
	float: none;
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	padding: 12px 50px;
}

#top-info > .content{
	display: block;
	padding: 15px;
}



#top-info .content > *{float: right;font-size: 14px; line-height: 20px;}

#top-info .tel{
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #a0a1a2;
}

#top-info > a{margin-right: 3%;font-size: 12px;line-height: 30px;display: block;float: left;}
#top-info i{font-size: 12px;margin-right: 10px;}



.search-form{margin-right: 5%;float: left;width: 30%; min-width: 200px;}
.search-form input{border: none;margin: 0; float: left;height: 30px;}

.search-form input[type=submit]{background-color: #fff;padding: 0px 5px;color: #555555;min-height: 0px;height: 30px;font-size: 12px;}

.search-form input[type=search]{width: calc(100% - 30px);width: -webkit-calc(100% - 30px);width: -ms-calc(100% - 30px);width: -moz-calc(100% - 30px);width: -o-calc(100% - 30px);}




#top-info .redes{
	float: right;
}

#top-info .redes li{float: left;}

#top-info .redes a {
    height: 30px;
    line-height: 30px;
    margin-left: 10px;
    width: 30px;
}

.redes a{
	float: left;
	display: block;
	border:1px solid #c2c2c2;
	text-align: center;
}
#top-info .redes i,.redes i{margin: 0;}

/*--------------------------------------------------------------
6.0 - Navigation
--------------------------------------------------------------*/

#menu-principal{margin-bottom: 30px;min-height: 45px;}

#menu-principal > *{float: right;}

#menu-principal .menu, nav .cuenta {
    min-height: 50px;
    display: inherit;
	padding: 10px 10px    
}

#menu-principal .button {
    height: 45px;
    margin: 0;
    min-height: 45px;
    padding: 7px;
    text-align: center;
    vertical-align: text-top;
    width: 45px;
}


#menu-principal a{
	font-size: 14px;
	color: #555555;
	display: inline-block;
	line-height: 1;
	vertical-align: bottom;
	margin-right: 12px;
}


#menu-principal .menu-item:hover, #menu-principal .menu-item:hover a, #menu-principal .menu-item.current a{opacity: 1;color: #cc0428;}
.cuentaactivo{opacity: 1;color: #cc0428 !important; font-weight:bold;}

.menu-item {
    cursor: pointer;
    display: inline-block;
    /*line-height: 25px;
    min-height: 50px;*/
    text-align: center;
    text-transform: uppercase;
    vertical-align: bottom;
    border-right: 1px solid #fff;
    position: relative;
}

.menu-item > a{display: block;font-weight: bold;}
.menu-item > a::after {
    content: "·";
    margin-left: 12px;
}

.menu-item:last-child > a::after {
    content: "";
    margin-left: 0;
}


.menu-item.nuevo::before {
    background-color: #81c683;
    color: #fff;
    content: "nuevo";
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    position: absolute;
    /*right: 40px;*/
    top: -30px;
    cursor: default;
    /*right: 30%;*/

    left: 25%;
}

.menu-item.nuevo::after{
	content: "";
	position: absolute;
	top: -17px;
	right: 75px;
	/*
	right: calc(30% + 35px);
	right: -webkit-calc(30% + 35px);
	right: -moz-calc(30% + 35px);
	right: -ms-calc(30% + 35px);
	right: -o-calc(30% + 35px);
	*/
	left: calc(25% + 20px);
	left: -webkit-calc(25% + 20px);
	left: -moz-calc(25% + 20px);
	left: -ms-calc(25% + 20px);
	left: -o-calc(25% + 20px);

	 width: 0; 
     height: 0; 
     border-left: 12px solid #81c683;
     border-top: 6px solid transparent;
     border-bottom: 6px solid transparent; 
}


.sub-menu{
	position: absolute;
	width: 100%;
	display: none;
	z-index: 10;
	box-shadow: 0 9px 12px 0px rgba(0,0,0,0.3);
}

.menu-item:hover > .sub-menu{display: block;}

.sub-menu > li{display: table;width: 100%;position: relative;}
.sub-menu a{
	background-color: #cc0428;
	border-top: 1px solid #fff;
	text-transform: none;
	height: 40px;
	width: 100%;
	display: table-cell;
	vertical-align: middle;
	font-size: 20px;
	font-weight: 700;
}

.sub-menu > li:last-child a{}

.sub-menu > li::before{right: 0px;border-top:1px solid #fff;color: #fff;}
.sub-menu > li::after{right: 20px;}
.granate { color: #cc0428; }

/*--------------------------------------------------------------
7.0 - Footer
--------------------------------------------------------------*/


footer{
	background-color: #ebebeb;
	border-top: 15px solid #cc0428;
}



footer .columna1-3, footer .columna2-3{	padding-top: 20px;}

.bloque-v, .bloque-h{position: relative;}

/*
footer .bloque-v::after{
	height: 1000px;
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
}
*/


footer .bloque-h{margin-bottom: 20px;position: relative;}


footer .columna1-3 .bloque-h::after{right: 0;}
footer .columna2-3 .bloque-h::after{left: 0;}



footer .logo{
	height: auto;
	width: 270;
	margin-bottom: 40px;
}

footer .redes{
	width: 60px;
	float: left;
	margin-right: 40px;
}


footer .redes a{
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 60px;
}

footer .redes i{color: #1d1d1d}

footer .contact-info{position: relative;min-height: 120px;margin-left: 100px;}

footer .contact-info a, footer .contact-info address{
    display: block;
    line-height: 40px;
}

footer .contact-info i{margin-right: 10px;}

footer .contact-info .button {
    bottom: 0;
    font-size: 21px;
    margin-bottom: 0;
    margin-right: 0;
    position: absolute;
    text-transform: none;
    line-height: 20px;
    padding: 20px;
    min-height: 60px;
}

.copy *{color: #989898;font-size: 13px;line-height: 2;text-align:center;}



footer h3, footer h4, footer h5, footer h6{color: #565656;}

footer *{color: #989898;}

footer p > a {color: #cc0428}

footer h4{font-size: 24px; font-weight: bold;margin-bottom: 20px;}

footer h5{font-size: 16px;font-weight: normal;margin-bottom: 20px;}

footer img{float: left;margin-right: 20px; height: 120px; width: auto; }

img.metodos-pago{width: 100%;height: auto;margin-top: 20px}






/*--------------------------------------------------------------
8.0 - Main
--------------------------------------------------------------*/
	main{min-height: 300px!important}




		/*--------------------------------------------------------------
		8.1 - Home
		--------------------------------------------------------------*/
		
		#home-slider{
			background-color: #fff;
			margin-top: 20px;
			margin-bottom: 60px;
			height: auto;
			position: relative;
		}

		#home p{hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;text-align: center;}
		
		.titulo-seccion{
			position: relative;
			height: 20px;
			text-align: center;
			margin-bottom: 60px;
		}


		#home h3, #home h3 a{
			font-size: 18px;
			font-weight: bold;
			color: #cc0428;
			text-align: center;
			line-height: 20px;
			background-color: #fff;
			display: inline-block;
			padding: 0 20px;
		}



		.titulo-seccion::after {
		    border-bottom: 2px dashed #ebebeb;
		    bottom: 10px;
		    content: "";
		    display: block;
		    height: 1px;
		    position: absolute;
		    width: 100%;
		    z-index: -1;
		}


		#home .producto{margin-top: 0px;margin-bottom: 40px;}
		#home .producto-foto{height: 230px;position: relative;background-color: #f5f5f5;}
		#home .producto h4{
			background-color: #f5f5f5;
			border-bottom: 1px solid #d7d7d7;
			margin-bottom: 8px;
			font-weight: normal;
			padding: 15px 0;
			font-size: 14px;
			line-height: 20px;
			min-height: 50px;
			color: #cc0428;
			text-align: center;
		}

		#home .producto{background-color: transparent;border: none;}


		#home .producto .precio, #home .producto button, #home .producto .button {
		    width: calc(50% - 4px);
		    width: -webkit-calc(50% - 4px);
		    width: -moz-calc(50% - 4px);
		    width: -ms-calc(50% - 4px);
		    width: -o-calc(50% - 4px);
		}

		#home .producto .precio{float: left;}

		#home .producto button, #home .producto .button {float: right;}

		 #home .producto button, #home .producto .button{
		 	margin: 0px;
		 	background-color: #cc0428;
		 	border-color: #cc0428;
		 	color: #fff;
		 	text-align: center;
		 }

		 #home .producto button:hover, #home .producto .button:hover{opacity: .8;}
		#home .producto i{color: #fff;text-align: center;margin: 0;padding: 0}

		#home .producto .precio{
			font-size: 18px;
			font-weight: normal;
			background-color: #f5f5f5;
			border-bottom: 1px solid #d7d7d7;
			text-align: center;
			height: 50px;
			padding: 17px 0px 0 0;
		}

		#home .producto .precio ins{
			font-size: 18px;
			font-weight: normal;
			text-decoration: none;
			color: #cc0428;
		}

		#home .producto .precio del{display: block;}

		#home .producto .precio:empty{line-height: 50px;}





		#home .eventos .titulo-seccion{margin-bottom: 60px;}
/*
		.eventos .controles {
		    height: 60px;
		    text-align: center;
		    width: 100%;
		}

		.controles i {
		    font-size: 30px;
		    font-weight: lighter;
		    line-height: 50px;
		    padding-left: 5px;
		    padding-right: 5px;
		}
*/
		#home .evento .info-texto{background-color:#f4f4f4; }
		#home .evento .precio{color: #cc0428;border-top: 1px solid #ececec;font-size: 24px;font-weight: bold;padding-top: 5px;padding-bottom: 5px;line-height: 1;min-height: 35px;background-color: #f4f4f4}

		#home .evento .descripcion{padding: 5px 20px 20px;text-align:justify; }

		#home .evento h3{font-size: 30px;padding-top: 20px;color: #636363;line-height: 1.2;background-color: transparent;text-transform: uppercase;text-align: center;width: 100%;}
		#home .evento .button{height: 50px;line-height: 50px;padding: 0px;}

		#home .evento .info-texto{min-height: 190px;display: inline-block;}


		.newsletter-bloque{margin-top: 20px;text-align: center;margin-bottom: 65px;display: inline-block;background-color: #cc0428;}
		.newsletter-bloque h3{
			font-size: 28px;
			margin-bottom: 20px;
			background-color: transparent!important;
		}

		.newsletter-bloque .columna23{padding: 40px 40px;background-color: #f7f7f7;border-bottom: 2px dashed #ebebeb;outline: 40px solid #fff}

		.newsletter-bloque form{margin-top: 40px;}

		.newsletter-bloque input[type="submit"]{width: 100px;margin: 0px;height: 50px;}
		.newsletter-bloque input[type="email"]{
			width: calc(100% - 100px);
			width: -moz-calc(100% - 100px);
			width: -ms-calc(100% - 100px);
			width: -o-calc(100% - 100px);
			width: -webkit-calc(100% - 100px);
			height: 50px;
			margin-bottom: 0px;}



		.youtube-slider{position: relative;margin-bottom: 50px;}
		.youtube-slider iframe{width: 100%;}

		.youtube .controles a{
			position: absolute;
			height: 100px;
			top: calc(50% - 50px);
			top: -webkit-calc(50% - 50px);
			top: -moz-calc(50% - 50px);
			top: -ms-calc(50% - 50px);
			top: -o-calc(50% - 50px);
		}

		.youtube .controles .anterior{left: -60px;}
		.youtube .controles .siguiente{right: -60px;}

		


		/*--------------------------------------------------------------
		8.2 - Pages
		--------------------------------------------------------------*/

			main.page{margin-bottom: 120px;}

			#breadcrumbs{
				background-color: #cc0428;
				min-height: 40px;
				margin-bottom: 50px;
			}

			#breadcrumbs *{
				float: left;color: #fff; 
				font-size: 16px; 
				/*font-weight: bold;*/
				line-height: 40px;
				margin-right: 10px;
			}

			/*--------------------------------------------------------------
			8.2.1 - Base
			--------------------------------------------------------------*/



			/*--------------------------------------------------------------
			8.2.2 - Contacto
			--------------------------------------------------------------*/

			#mapa{
				width: 100%;
				border: 6px solid #ececec;
				height: 329px;
				overflow: hidden;
				margin-bottom: 30px;
			}


			#more-contact{
				margin-top: 60px;
			}

			#more-contact > div {
			    display: block;
			    float: left;
			    margin-bottom: 20px;
			    min-width: 320px;
			    width: auto;
			}

			#more-contact h3{font-size: 14px; font-weight: bold;color: #363636;vertical-align: bottom;}

			#more-contact a, #more-contact p, #more-contact address{font-size: 12px;line-height: 1;display: inline;vertical-align: top;}

			.direccion::before, .telefono::before, .mail::before, .mobile::before{
				font-family: "FontAwesome";
				color: #b3b3b3;
				background-color: #ebebeb;
				border-radius: 50%;
				display: inline-block;
				margin-right: 20px;
				height: 35px;
				width: 35px;
				line-height: 35px;
				text-align: center;
				float: left;
				font-size: 18px;
			}

			.direccion::before{content: "\f041"}
			.mobile::before{content:"\f10b"}
			.telefono::before{content:"\f095"}
			.mail::before{content: "\f0e0"}



			input[name="enviar-formulario"], #contact-form input[type="submit"]{
				margin: 0px 0px 20px 0px;
				background-color: #fff;
				border: 2px solid #000;
				color: #000;
				height: 40px;
				min-height: 0;
				font-size: 14px;
				float: right;
			}

			input[name="enviar-formulario"]:hover, #contact-form input[type="submit"]:hover{
				background-color: #cc0428;
				border-color: #cc0428;
				color: #fff;
			}


			/*--------------------------------------------------------------
			8.2.3 - Tienda
			--------------------------------------------------------------*/

			#listado-categorias{}

			.tienda h4, .tienda .h4:empty{
				font-size: 14px;
				font-weight: bold; 
				padding-bottom: 10px;
				margin-bottom: 10px; 
				border-bottom: 1px solid #d7d7d7; 
				color: #555555;
			}

			#producto.tienda h4{margin-bottom: 30px}

			#listado-categorias a {
			    border-bottom: 1px dashed #d7d7d7;
			    display: block;
			    line-height: 50px;
			    width: 100%;
			}

			#listado-categorias li:last-child a{border-bottom-color: transparent;}


			#listado-categorias a:hover, #listado-categorias .current a{color: #cc0428;opacity: 1}


			.producto{
				margin-top: 20px;
				display: inline-block;
				background-color: #f5f5f5;
				position: relative;
				height: 100%;
				min-height: 270px;
				border-bottom: 1px solid #d7d7d7
			}

			.producto-foto {
			    background-position: center center;
			    background-size: cover;
			    background-repeat: no-repeat;
			    height: 100%;
			    position: absolute;
				cursor:pointer;
			}

			.producto-info{float: right;padding: 30px;}

			.producto h3{font-size: 14px;font-weight: bold;}
		
			.producto .precio {
			    color: #cc0428;
			    font-size: 24px;
			    font-weight: bold;
			    line-height: 1;
			    padding-bottom: 5px;
			    padding-top: 10px;
			}


			.producto .descripcion{font-size: 14px;}

			.producto .comprar {
			    float: left;
			    margin-left: 0;
			    margin-top: 20px;
			    margin-bottom: 0px;
			}

			.informacion{float: right;}


			.paginado{
				margin-top: 30px;
				float: right;
			}

			.paginado *{display: inline-block;}

			.paginado a{
				padding: 0 10px;
				text-transform: uppercase;
				text-align: center;
				border: 1px solid #ececec; 
				color: #6d6d6d;
				font-size: 16px;
				/*font-weight: bold;*/
				vertical-align: middle;
				height: 40px;
				min-width: 40px;
				line-height: 40px;
				margin-left: 5px;
			}

			.paginado a:hover, .paginado a.current, .paginado .current a{background-color: #cc0428;border-color: #cc0428;color: #fff;opacity: 1}






			#listado-relacionados{margin-top: 80px;}
			#listado-relacionados .producto{min-height: 115px;width: 100%;margin-top: 10px;}

			#listado-relacionados .producto-info{padding: 15px;}

			#listado-relacionados h5{margin-bottom: 0px;line-height: 1;color: #636363;}
			#listado-relacionados .precio{font-size: 18px; color: #636363}
			#listado-relacionados .producto-info{}






			.nuevo .producto-foto::before,
			.oferta .producto-foto::after {
			    display: block;
			    padding: 5px;
			    position: absolute;
			    text-transform: uppercase;
			    top: 10px;
			}


			.nuevo .producto-foto::before{
				content: "Nuevo";
				left: 10px;
				background-color: #fff;
				color:#cc0428; 
			}

			.oferta .producto-foto::after{
				content: "Oferta";
				right: 10px;
				background-color:#cc0428;
				color: #fff;
			}

			.precio > del{font-size: .7em;margin-left: 10px;}


			/*--------------------------------------------------------------
			8.2.4 - Carrito
			--------------------------------------------------------------*/

			#carrito .button, #carrito button{
				width: 100%;
				text-transform: none;
				font-weight: normal;
				font-size: 15px;
			}


			#tabla-carrito td{
				position: relative;
				border-top: 1px solid #ebebeb;
				border-right: 1px solid #ebebeb;
			}

			#tabla-carrito td:first-child{
				border-left: 1px solid #ebebeb;
				border-right: 0px solid #fff;
			}





			#tabla-carrito .prod{
				width: 130px;
				padding-left: 30px;
				padding-right: 20px;
			}
			#tabla-carrito .descripcion{text-align: left;}

			#tabla-carrito .eliminar{width: 6%}
			#tabla-carrito .subtotal{width: 12%;color: #cc0428}
			#tabla-carrito .cantidad{width: 12%;padding-right: 30px;padding-left: 30px;}
			#tabla-carrito .precio-unidad{width: 12%}


			#tabla-carrito tr:last-child td{border-bottom: 1px solid #ebebeb;}

			#tabla-carrito img{display: block;}

			.cantidad input{text-align: center;}


			#tabla-carrito td {
			    padding-bottom: 40px;
			    padding-top: 40px;
			    text-align: center;
			}


			.eliminar{cursor: pointer;}


			#carrito h4{
				font-size: 15px;
				font-weight: bold;
				color: #000;
				padding-bottom: 10px;
				border-bottom: 2px solid #000
			}


			#tabla-resumen{width: 100%}
			#tabla-resumen td:last-child{width: 130px;text-align: right;}

			#tabla-resumen td{border-bottom: 1px solid #ebebeb;}

			#tabla-resumen tr:last-child td{border-bottom: 1px solid transparent;}

			.fila-subtotal td:first-child,.fila-transporte td:last-child{color: #989898}
			.fila-subtotal td:last-child{font-weight: bold;color: #000}

			.fila-transporte td:first-child, .fila-total td:first-child{color: #000;}
			

			.fila-total td:last-child{font-weight: bold;color: #cc0428}



			/*--------------------------------------------------------------
			8.2.4 - Membresia
			--------------------------------------------------------------*/

			.destacado{
				background-color: #f5f5f5;
				margin-bottom: 5px;
				padding: 10px;
				position: relative;
			}

			.destacado *{display: inline-block;color: #000;}

			.destacado i{margin-right: 5px;}


			#recordar-contrasenya-form{
				margin-left: 20px;
				/*float: right;*/
			}

			#recordar-contrasenya-form input{
				margin: 0px;
				float: left;
				/*margin-top: -7px;*/
				height: 25px;
				min-height: 25px;
				padding: 0px 10px;
			}

			#recordar-contrasenya-form input[type="email"]{width: 300px;}
			#recordar-contrasenya-form input[type="submit"]{width: 80px;background-color: transparent;color: #000;font-weight: bold;}

			label.required:after{content: " *";color: #e21313;}

			#membresia-form label:not(.aceptacion){
				display: inline-block;
				width: 200px;
				float: left;				
			}

			#membresia-form input:not(.aceptacion), #membresia-form textarea {
				width: calc(100% - 200px);
				width: -webkit-calc(100% - 200px);
				width: -moz-calc(100% - 200px);
				width: -ms-calc(100% - 200px);
				width: -o-calc(100% - 200px);
				float: left;
				margin-bottom: 10px;
			}

			#membresia-form fieldset > p{margin-bottom: 40px}

			#membresia-form .aceptacion{font-weight: bold;margin-top: 10px;margin-bottom: 20px}

			#tabla-membresia{width: 100%}
			#tabla-membresia .fila-total td:last-child{color: #000}

			#tabla-membresia .fila-total td{border-top: 1px solid #ececec;border-bottom: 1px solid #ececec;padding-top: 15px;padding-bottom: 15px;}

			#tabla-membresia td:last-child{text-align: right;}

			#membresia-form .largo{width: 100%!important}







			/*--------------------------------------------------------------
			8.2.5 - Eventos
			--------------------------------------------------------------*/

			.evento{margin-bottom: 60px;}


			.evento img{height: auto;width: 100%;display: block;margin: 0px;}

			.evento-foto{
				width: 100%;
				height: 360px;
				background-color: #f4f4f4;
				background-position: center;
				background-repeat: no-repeat;
				background-size: cover;
			}

			.cuenta-atras > p{
				width: 25%;
				float: left;
				border-right: 1px solid #fff;
				display: block;
				background-color: #cc0428;
				text-align: center;
				padding-top: 20px;
				padding-bottom: 20px;
				color: #fff;
				font-size: 24px!important;
				font-weight: bold;
				line-height: 1;
			}

			.cuenta-atras > p:last-child{border-right: 1px solid #cc0428}

			.cuenta-atras span{float: none;font-size: 14px;font-weight: normal;}
			
			.cuentaatras span{font-size: 24px;!important}
			#jsdays,#jshours,#jsminutes,#jsseconds { font-size: 24px!important;}



			.evento h3{margin-bottom: 10px;}
			.evento p{font-size: 14px;}


			.precios{padding-top: 30px;padding-bottom: 30px;display: inline-block;}
			.precios *{font-family: helvetica, arial, sans-serif;font-size: }

			.precios .anticipado, .precios .oferta{color: #cc0428}

			#producto .precios > *{float: none;}
			#producto .precios{padding-bottom: 10px;}


			.precios strong, .precios{font-size: 48px;color: inherit;line-height: 48px;vertical-align: bottom;color: #cc0428}
			.precios del, .precios .del{
				font-size: 30px; 
				font-weight: bold; 
				color: #989797;
				line-height: 48px;
				vertical-align: bottom;}

			.precios span {
			    display: inline-block;
			    margin-left: 20px;
			    max-width: 150px;
			}

			.precios > *{float: left;margin-right: 40px;}

			.detalles{border-top: 1px dashed #ececec;border-bottom: 1px dashed #ececec;margin-bottom: 30px;padding-top: 5px;padding-bottom: 5px;}

			.detalles p, .detalles a{line-height: 1.7}

			.detalles a{color: #cc0428;font-family: "helvetica",arial,sans-serif;font-weight: bold;}


			.evento input, #producto input {
			    float: left;
			    margin: 0 0 0 20px;
			}

			.evento input[type="number"], #producto input[type="number"]{width: 100px;}

			.evento form, #producto form{float: right;}



			/*--------------------------------------------------------------
			8.2.5 - Producto
			--------------------------------------------------------------*/			











			/*--------------------------------------------------------------
			8.2.5 - Error 404
			--------------------------------------------------------------*/	








			/*--------------------------------------------------------------
			8.2.5 - Sliders
			--------------------------------------------------------------*/	


		.puntos{width: 100%;text-align: center;margin-top: 40px;}

		.puntos i{color: #cc0428;margin-right: 2px;margin-left: 2px;}

		.puntos a:hover i, .youtube .puntos a.current i{color: #77cbb3!important}
		.puntos a:hover,{opacity: 1}




		.fotorama__dot, .fotorama__nav__frame.fotorama__active .fotorama__dot {
		    background-color: #77cbb3;
		    border-radius: 50%;
		    border-width: 0;
		    height: 15px;
		    width: 15px;
		}


		.fotorama__dot {
		    display: block;
		    left: 0;
		    position: relative;
		    top: 7.5px;
		}

		.fotorama__dot{background-color: #cc0428;}

		.fotorama__nav__frame.fotorama__active .fotorama__dot {background-color: #77cbb3;}

		.fotorama__nav--dots .fotorama__nav__frame {height: 30px;width: 25px;}



		#home-slider{position: relative;}

		#home-slider .fotorama__nav.fotorama__nav--dots{position: absolute;bottom: 15px;}
		#home-slider .fotorama__html a{

		position: absolute;
		width: 100%;
		height: 100%;
		background-color: transparent;
		
		}


		.youtube-slider .fotorama__nav-wrap {margin-top: 40px;}






body{overflow: hidden;}










