/**
 * Name: layout.css
 * Version: 1.0.0
 *	
 *	-
 *
 *	T.O.C
 *	
 *	#General Layout 
 *		#Header
 *		#Content
 *		#Footer
 *	#Page Styles
 *		#Index
 *		#About
 *		#Services
 *		#Portfolio
 *		#Blog
 *		#Contact
 *	#Responsive
 *		#Large Display
 *		#Smaller then 1024px width	
 *		#Tablet (Portrait)
 *		#Mobile (Portrait and Landscape )
 *		#Mobile ( Landscape )
 */

/* ==========================================================================
   #General Layout 
   ========================================================================== */

	#wrap {}

/* #Header Top
   ========================================================================== */
	
	#header-top { 
		padding: 2px 0;
		background-color: #f6981e;
		color: #fff;
	}
	
	#header-top a { color: #fff; }
	
/* #Header
   ========================================================================== */	
   	
	#header { border-bottom: 1px solid #efefef; }
	
	@media (min-width: 1025px) {
		
		/*
		 * 1. Position elements to be stuck in the media query as we don't want ... 
		 *
		 */
		
		.stuck { /* 1 */
			position: fixed !important;
			top: 0;
			width: 100% !important;
			z-index: 2000;
		}
		
		#header.stuck { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.95) !important; }

	}
	
	/* Logo */

	#logo { 
		display: block;
		margin-top:10px; 
		margin-bottom:10px; 
		margin-left:80px; 
		margin-right:10px

	}
	
	#logo img { display: block; }
	
	

	#logo-superior {
		display: inline;
    	height: 1px;
    	margin: auto;
	    overflow: visible;
	    padding: 0;
	    position: absolute;
	    text-align: center;
	    top: 0;
	    width: 100%;
	    z-index: 2900;
	}

	#logo-superior-mobile {
		display: none;
	}
		
	/* Menu basics */

	.sf-menu, 
	.sf-menu * {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.sf-menu li {
		position: relative;
		white-space: nowrap;
	}
	
	.sf-menu ul {
		position: absolute;
		display: none;
		z-index: 99;
		top: 100%;
		left: 0;
	}
	
	.sf-menu > li { float: left; }
	
	.sf-menu li:hover > ul,
	.sf-menu li.sfHover > ul { display: block; }
	
	.sf-menu a {
		position: relative;
		display: block;
	}
	
	.sf-menu ul ul {
		top: 0;
		left: 100%;
	}
	
	/* Menu skin */
	
	.sf-menu { float: right; width: 100%;}
	
	.sf-menu a {
		padding: 10px 15px;
		border-bottom: 1px solid rgba(255, 183, 19, 0.45);  
		color: #fff;
		font-family: 'Open Sans', Arial, sans-serif;
		font-size: 11px;
		text-transform: uppercase;  
	}

	.sf-menu > li > a {
		padding: 6px 12px;
		border: none;
		font-size: 13px;
		border-bottom: 1px solid #efefef;
		margin-bottom: -1px;
		color: #593506;
	}

	.sf-menu ul a { color: #fff;  }

	.sf-menu li {
		-webkit-transition: background 0.2s;
			 -o-transition: background 0.2s;
				transition: background 0.2s;
	}
	
	.sf-menu > li { margin-left: 2px; }
	
	.sf-menu li:hover,
	.sf-menu li.sfHover {
		position: relative;  
		text-decoration: none;	
	}

	.sf-menu li:hover a,
	.sf-menu li.sfHover a {
		/*color: #333;*/
		text-decoration: none;
	}
	
	.sf-menu > li:hover > a,
	.sf-menu > li.sfHover > a {
		color: #869305;
	}
	
	.sf-menu > li.current > a { 
		color: #593506;
		border-bottom: 1px solid #869305;
		background-color: rgba(213, 224, 60, 0.95); 
	}
	
	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu ul {
		min-width: 200px; /* 1 */ 		
	}
	
	.sf-menu ul li a {
		background-color: rgba(89,53,6, 0.95);
	}
	
	.sf-menu ul li a i {
		margin-right: 15px;
		font-size: 14px;
	}

	/* Menu arrows */
	
	.sf-arrows .sf-with-ul { padding-right: 30px; }
	
	/* Bottom facing arrows */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 10px;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-top-color: rgba(0, 0, 0, 0.5);
		margin-top: -13px;
		content: "";
	}
	
	/* Right facing arrows */
	
	.sf-arrows ul .sf-with-ul:after {
		margin-top: -5px;
		margin-right: -3px;
		border-color: transparent;
		border-left-color: rgba(0, 0, 0, 0.5);
	}
	
	/* Mobile Menu  */
			
	#mobile-menu {
		z-index: 20;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu > li > ul, 
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-bottom: 1px solid #efefef;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}
	
	#mobile-menu li a i { margin-right: 15px; }
	
	#mobile-menu ul a { padding-left: 45px; }
	
	#mobile-menu ul li ul a  { padding-left: 65px; }
	
	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 100%;
		color: #333;
		font-size:20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #f3f3f3; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }
	
	/* Mobile menu trigger  */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;
		font-size: 32px;  
	}
	
	
/* #Content
   ========================================================================== */
   		
	#content { 
		min-height: 300px; 
		padding-bottom: 55px;
		padding-top:60px;  
	}

	#content 2{ 
		min-height: 300px; 
		padding-bottom: 55px;
		padding-top: 0px;  
	}


	/* Page Header */
	
	#page-header { 
		margin: -60px 0 0 0; 
		padding: 60px 0;
	}
		
	#page-header h3 { margin-bottom: 0; }
	
	#page-header h1 { margin-bottom: 0;	 
	  font-size: 18px;
      line-height: 28px;
	 }
	
	#page-header-2 {
		padding: 0 0;
		margin-bottom: 60px;
		background-color: #593506; 
	}
	
	#page-header-2 .icon-box-6,
	#page-header-2 .icon-box-6 p { margin: 0; } 
	
	#page-header-2 .icon-box-6 > i {
		display: block;
		width: 82px;
		height: 82px;
		border: 1px solid #81dad8;
		border-radius: 50%;
		font-size: 40px;
		line-height: 82px;
		text-align: center;
	}
	
	#page-header-2 .icon-box-6 .icon-box-content { margin-left: 110px; }
	
	#page-header-2 h2 {}
	
	#page-header-2 h2 small {
		display: block;
		font-size: 13px;
		line-height: 13px;
	}
	
	#page-header-2 h3 { margin: 20px 0; }
	
	#page-header-2 h3 i { 
		margin-right: 20px;
		font-size: 32px;
		vertical-align: middle;
	}

/* #Footer Top
   ========================================================================== */
	
	#footer-top { 
		background: #47b5b6 url(../images/bg-widget-area-1.jpg) no-repeat center center;
		color: #fff;
	}
	
	#footer-top a { color: #fff; }
	
	#footer-top h1,
	#footer-top h2,
	#footer-top h3,
	#footer-top h4,
	#footer-top h5,
	#footer-top h6 { color: #fff; }
				
/* #Footer
   ========================================================================== */		
		
	#footer {
		background: url(../images/bg-footer.jpg) no-repeat top center;
		background-size: cover;
		padding: 60px 0;
		background-color: #555;
		color: #fff;
		min-height: 400px;
		margin-top:0px!important;
	}
	
	#footer a { color: #fff; }
	
	#footer h1,
	#footer h2,
	#footer h3,
	#footer h4,
	#footer h5,
	#footer h6 { color: #fff; }
			
/* ==========================================================================
   #Page Styles
   ========================================================================== */
   
/* #Index
   ========================================================================== */
   
   /* Client Logo */
   
   
   	.index-naranja{
		background: url(../../_content/index/fondo_naranja.jpg) repeat;
		height: 160px;
		text-align:center;
   	}
   	
   	
   	.index-naranja h2 a{
		color: #fff;
		font-size: 20px;
		margin-bottom: 2px;
		line-height: normal;
		font-weight: 500;
   	}
   	
   	.index-naranja p{
		color: #000;
		font-size: 15px;
   	}
   	
   	
   	.curva-naranja{
		background: url(../../_content/index/curva_naranja.jpg) no-repeat top center;
		background-size: 100% 100%;
		height: 37px;
		display:block;
		margin-bottom: 35px;
   	}
   	
   	
   	.index-somos{
		text-align: center;
   	}
   	
   	.acerca-sr{
   		height:350px;
    	position: relative;
   	}
   	
   	.acerca-sr img{
   		bottom: 6px;
    	position: absolute;
   	}
   	
   	.acerca-img{
   		margin: 8px auto;
   	}
   	
   	.index-somos h3{
   		font-size: 20px;
    	margin: 26px 0 16px;
   	}
	
	.index-somos h2{
   		font-size: 20px;
    	margin: 26px 0 16px;
   	}
   	
   	.index-somos p{
		margin: 0 10px 40px; 4px
   	}
   	
   	.index-3box{
		margin: 40px auto;
   	}
   	
   	.box-puntoventa{
   		height: 434px;
   		background-color: #f8f5e6;
   	}
   	

   	.box-puntoventa p{
		margin: 15px 30px 0 30px;
		text-align: justify;
   	}
   	
   	.box-puntoventa h3{
		font-size: 22px;
    	font-weight: bold;
	    margin: 15px 30px 0;
	    text-align: center;
	    text-transform: uppercase;
	    color: #B0BC22;
   	}
   	
   	.box-puntoventa span{
		text-transform: none;
		font-size: 16px;
		font-weight: normal;
   	}
   	.box-puntoventa #form1 select{
	    margin: 10px auto !important;
	    display: block;
   	}
   	
   	#lista-puntosventa{
   		display: block;
    	float: right;
	    margin: 25px 30px;	
   	}

   	
   	.foto-pv{
   		float: right;
   		display: block;
   		margin-top: 20px
   	}
   	
   	
   	.box-pedidos, .box-distribuidor{
   		height: 201px;
   		background-color: #f8f5e6;
   	}
   	
   	.box-distribuidor{
   		background-image: url(../../_content/index/distribuidor-riosol-harinas.jpg);
   		background-position: bottom;
   		background-repeat: no-repeat;
   	}
   	
   	.box-pedidos{
   		background-image: url(../../_content/index/pedidos-riosol-harinas.jpg);
   		background-position: bottom;
   		background-repeat: no-repeat;
   	}
   	
   	.box-pedidos p, .box-distribuidor p{
		line-height: normal;
    	margin: 15px 30px 0;
    	text-align: left;
    	width: 156px;
   	}
   	
   	.box-pedidos h3, .box-distribuidor h3{
		font-size: 22px;
    	font-weight: bold;
	    margin: 15px 30px 0;
	    text-align: left;
	    text-transform: uppercase;
	    color: #B0BC22;
   	}
   	
   	.box-pedidos a, .box-distribuidor a{
		color: #fff;
		text-decoration: underline;
		margin-top: 20px;
		display: block;
   	}
   	
   	.box-pedidos span, .box-distribuidor span{
		text-transform: none;
		font-size: 16px;
		font-weight: normal;
   	}
   	
   	.box-desarrollo-productos{
   		background-color: #f8f5e6;
   		margin-bottom:18px;
   	}
   	
   	.box-desarrollo-productos img{
		float: left;
   		 margin-right: 25px;
   	}
   	
   	.box-desarrollo-productos p{
		line-height: normal;
    	margin: 13px 0 30px 0;
    	text-align: left;
   	}
   	
   	.box-desarrollo-productos h3{
		font-size: 22px;
    	font-weight: bold;
	    margin: 8px 30px 0;
	    text-align: left;
	    text-transform: uppercase;
	    color: #B0BC22;
   	}
   	
   	.box-desarrollo-productos a{
		color: #F6981E;
		text-decoration: underline;
		margin-top: 12px;
		display: block;
   	}
   	
   	.box-desarrollo-productos span{
		text-transform: none;
		font-size: 16px;
		font-weight: normal;
   	}
   	
   	.index-calidad{
		background: none repeat scroll 0 0 #eae5d6;
    	border-radius: 152% 152% 0 0 / 12% 12% 0 0;
    	color: white;
    	height: 640px;
    	margin: 0;
    	overflow: hidden;
    	position: relative;
    	width: 100%;
    	overflow:hidden;
    	top:-15px;
   	}
   	
   	.calidad-txt{
   		color: #2a220f;
   		background: #eae5d6;
   	}
   	
   	.calidad-txt h3{
   		color: #F58025;
    	font-size: 48px;
	    font-weight: bold;
	    margin: 70px 15px 45px;
	    text-transform: uppercase;
   	}
   	
   	.calidad-txt h3 span{
   		color: #2A220F;
    	font-size: 24px;
	    position: relative;
	    top: -6px;
	    vertical-align: top;
	    text-transform: none;
	    font-weight: 300;
   	}
   	
   	.calidad-portrait{
   		display:inline-block;
   		float: left;
   		margin: 0 10px 0 15px;
   	}
   	
   	.calidad-txt .calidad-frase{
   		color: #F58025;
    	display: inline-block;
	    font-size: 17px;
	    font-weight: 300;
	    margin-top: 28px;
   	}
   	
   	.calidad-frase span{
   		margin-left:20px;
   		font-weight: 500;
   	}
   	
   	
   	.calidad-txt h4{
   		font-size: 18px;
   		color: #000;
   		font-weight: bold; 
   		margin: 45px 15px 35px;
   		display:inline-block;
   	}
	
	.calidad-txt h2{
   		font-size: 18px;
   		color: #000;
   		font-weight: bold; 
   		margin: 45px 15px 35px;
	    line-height: 20px;

   	}
   	
   	.calidad-txt p{
   		color: #2a220f;
   		margin: 5px 35px 0 15px;
   	}
   	
   	.index-frase{
		text-align: center;
		height: 88px;
		background: #fff;
		border-bottom: #f58025 10px solid;
   	}
   		
   	.frase-pan{
   		margin: -75px 0 0 45px;
    	display: block;
   	}
   	
	
	.index-frase p{
		color:#43270d;
		font-size: 16px;
		text-align: center;
		font-style: italic;
		margin-top: 25px;
	}
	
	
	.index-frase span{
		color:#f58025;
		font-weight: 500;
	}
	
	.index-asesoria{
		background:#43270d;
		color: #fff;
		padding: 40px 0 120px;
	}
	
	.index-asesoria h2{
		font-size:18px;
		color: #fff;
		line-height: 30px;
	}
	
	.index-asesoria span{
		color: #C9D434;
    	font-size: 26px;
	}
	
	.index-galeria {
		background: #e5deca url("../../_content/index/curva_cafe.jpg") no-repeat center bottom;
	}
	
	.tira-pics{
		display: block;
		margin-top: -66px;
		width: 100%
	}
	
	.index-galeria h4{
		color: #43270d;
		font-size: 20px;
		font-weight: 500;
		font-style: italic;
		text-align: center;
		margin: 55px 0 65px;
	}
	
	.index-galeria span{
		color: #f58025;
		font-weight: bold;
	}
   	
   	.index-noticias {
		margin: 0 0 55px 0;
	}
   	
   	.noticia1 {
   		background-color: #b0bc22;
   		color: #fff;
   	}
   	
   	.noticia1 h5{
   		margin: 17px 28px 0 15px;
   		font-size: 16px;
   		color: #fff;
   		font-weight: 400;
   	}
	
	.noticia1 h1{
   		color: #FFFFFF;
    	font-size: 17px;
    	font-weight: normal;
    	line-height: normal;
    	margin: 18px 28px 0 15px;
   	}
   	
   	.noticia1 h2{
   		color: #000000;
    	font-size: 18px;
    	font-weight: normal;
    	line-height: normal;
    	margin: 2px 28px 0 15px;
   	}
   	
   	.noticia1 p{
   		font-size: 15px;
    	font-weight: 300;
    	line-height: 22px;
    	margin: 17px 18px 0 15px;
   	}
   	
   	.noticia1 p span{
   		color: #000;
    	font-weight: 400;
   	}
   	
   	.masinfo a{
   		text-align: right;
   		text-decoration: underline;
    	color: #ea0000;
    	margin: 22px 30px  0 0;
    	display: block;
    	font-weight: bold;
   	}
   	 
   	.noticia2 {
   		text-align: center;
   		background: #fff;
   	}
   	
   	.noticia2 h4{
   		color: #fe6f08;
   		font-size: 17px;
   		font-weight: 500;
   		margin: 10px 20px;
   	}
   	
   	.noticia2 p{
   		margin: 20px 20px;
   	}
   	
   	
   	.index-verde {
   		background-color: #f6981e;
   		color: #43270d;
   		padding: 45px 0 40px;
   		display: block;
   		margin-top: -225px;
	    z-index: -3;
	    position: relative;
   	}
   	
   	.index-verde p{
   		font-size: 18px;
   		line-height: 34px;
   		margin-top: -115px;
   	}
   	
  
   	.index-verde span{
   		font-size: 26px;
   		font-weight: bold;
   	}
   	
   	
   .client-logos {
	   padding: 10px 0 5px 0;
	   margin-bottom: 5px;
	   list-style: none;
	   text-align: center;
	}
	
	
	.client-logos li {
		position: relative; 
		display: inline-block;
		margin: 0 3px;
	}
	
	.client-logos li:first-child { margin-left: 0; }
	.client-logos li:last-child { margin-right: 0; }
	
	.client-logos li img { display: block; }
	
	/* Diamond Items */
	
	.diamond-items {
		margin: 50px 0 50px 10px;;
		list-style: none; 
	}
	
	.diamond-items li { float: left; }
	
	.diamond-items li:nth-child(2) { margin: -55px 0 0 -50px; }
	
	.diamond-items li .diamond {
		width: 270px;
		height: 270px;
		margin: 30px 0 0 -20px;
		background-color: #79d6cd; 
		color: #fff;
		text-align: center;
		-webkit-transform: rotate(45deg);
			 -o-transform: rotate(45deg);
				transform: rotate(45deg); 
	}
	
	.diamond-items li .diamond h4 {
		color: #fff;
		-webkit-transform: rotate(-45deg) translate(-85px,35px);
			 -o-transform: rotate(-45deg) translate(-85px,35px);
				transform: rotate(-45deg) translate(-85px,35px);
	}
	
	.diamond-items li .diamond a {
		display: inline-block;
		color: #fff;
		-webkit-transform: rotate(-45deg) translate(-35px,130px);
			 -o-transform: rotate(-45deg) translate(-35px,130px);
				transform: rotate(-45deg) translate(-35px,130px);
	}
	
	.diamond-items li .icon { margin: -5px 0 0 -12px; }
	.diamond-items li .icon.alt { margin: -40px 0 0 90px; }
	
	.diamond-items li .diamond-shape.alt {  margin: -36px 0 0 -19px; }
	.diamond-items li .diamond-shape.alt-2 {  margin: -155px 0 0 280px; }


	/* Nuevos productos Index */

	.head-nuevos-productos-index  {
	  font-size: 25px;
	  line-height: normal;
	  margin: 30px 0;
	  text-align: center;
	  font-weight: 500;
	}
	.head-nuevos-productos-index span {
		color: #43270d;
		display: block;
		font-size: 16px;
	}

	.titulo-nuevos-productos-index {
    border: 0 none;
    font-size: 15px;
    line-height: normal;
    margin-top: 0px;
    background-color: #ee802a;
    padding: 10px 0px;
    max-width: 205px;
    margin: 0 auto;
	}
	.titulo-nuevos-productos-index a{
    color: #fff;
	}
	.titulo-nuevos-productos-index span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
	}
	.col-nuevo img {
    display: block;
    margin: auto;
	}
	.grid-nuevos-productos .icon-box-5 {
    margin-bottom: 37px;
	}
	.headline-nuevos {
    margin-bottom: 10px;
    text-align: center;
	}
	.headline-nuevos h3 {
    color: #bcbe00;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 8px;
    text-transform: uppercase;
	}
	.divisor-nuevos-productos-index {
	  background-color: #43270d;
	  padding: 10px;
	  margin: 5px 0 35px;
	  text-align: center;
	  font-size: 16px;
	  border-radius: 15px;
	}
	.divisor-nuevos-productos-index a{
		color: #fff !important;
	}
	.divisor-index{
		display: block;
		height: 3px;
		border-bottom: 1px dashed #bababa;
	}

	#bloque-videos-index {
    background-color: #6e4c2f;
    background-image: url("../../_content/index/fondo-bloque-videos.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 35px;
    margin-top: 20px;
    padding: 45px 0 15px;
	}

	#bloque-videos-index img {
    margin: auto;
	}

	.caja-videos-index {
    background-color: #3f230f;
    color: #fff;
    margin-bottom: 30px;
    padding: 25px 0 35px;
    text-align: center;
	}

	.caja-videos-index h3 {
    background-color: #ee802a;
    color: #fff;
    margin: 0 auto 23px;
    padding: 6px 0;
	}

	.caja-videos-index p {
    display: block;
    font-size: 14px;
    margin: 25px 35px 10px;
	}

	.video-index-frame {
    height: 230px;
    width: 90%;
	}


	/*	bloque línea de productos */
	#bloque-linea-productos {
    margin: 15px 0 25px;
    text-align: center;
	}
	#bloque-linea-productos h3 {
    margin-bottom: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
	}
	.title-linea-productos img{
    margin: 15px auto;
    display: block;
	}
	.card-linea-productos img {
    margin: auto;
    margin-bottom: 25px;
	}




   
/* #About
   ========================================================================== */
   
   .team-member { 
   		border-bottom: 1px solid #ababab;
		margin-bottom: 50px;
	}
	
	.team-member h3 {
		margin-top: 20px;
		margin-bottom: 0; 
	}
	
	.team-member h1 {
		margin-top: 20px;
		margin-bottom: 0; 
		text-transform: uppercase;		
		font-size: 18px; 
		line-height: 28px;  
	}
	
   .team-member img { display: block; }
   .team-member span { color: #aab326; }
   .team-member a.social-icon { margin-bottom: 10px; } 
   
   .team-member h3 span {
	   display: block;
	   width: 50px;
	   border-bottom: 1px solid #65c5be;
   }

/* #Services
   ========================================================================== */
   
   /* Services List */
   
   	.services-list {
		margin-bottom: 30px;
		list-style: none; 
	}
	
	.services-list h4 { margin-bottom: 0; }
	.services-list h4 a { text-decoration: none; }
	
	.services-list li {
		position: relative;
		min-height: 100px;
		margin-bottom: 20px;
	}
	
	.services-list li:last-child { margin-bottom: 0; }
	
	.services-list li:after {
		position: absolute;
		bottom: -10px;
		left: 24px;
		height: 50px;
		border-left: 1px solid #65c5bd;
		content: "";
	}
	
	.services-list li:last-child:after { border: none; }
	
	.services-list li i {
		float: left;
		display: block;
		width: 48px;
		height: 48px;
		border: 2px solid #aaaaaa;
		-webkit-border-radius: 50%;
				border-radius: 50%;
		outline: 10px solid transparent;
		color: #aaaaaa;
		font-size: 24px; 
		line-height: 48px;
		text-align: center;
		-webkit-transition: background-color 0.3s;
			 -o-transition: background-color 0.3s;
				transition: background-color 0.3s; 
	}
	
	.services-list .services-list-content { margin-left: 80px; }
	
	.services-list li:hover i {
		border-color: #65c5bd;
		color: #65c5bd; 
	}

/* #Portfolio
   ========================================================================== */
   
    /* Portfolio Strip */
	
	.portfolio-strip { list-style: none; }
	
	.portfolio-strip li {
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 10px;
	}
	
	.portfolio-strip.no-space li { padding: 0; }
	
	.portfolio-strip li:last-child { display: none; }
	
	.portfolio-strip li .portfolio-item { margin-bottom: 0; }
	
	/* Portfolio filter */
	
	.portfolio-filter ul {
		margin: 23px 0;
		list-style: none; 
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 30px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a { 
		color: #fff;
		text-decoration: none;
	}
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active { color: #f6981e; }
	
	/* Isotope */
	
	.portfolio-items {
		margin-bottom: 40px;
		list-style: none; 
	}
	
	.portfolio-items.masonry li { width: 25%; }
	
	.portfolio-items li {
		float: left;
		width: 33.3333333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding-right: 20px;
	}
	
	.portfolio-items.alt li {
		float: none;
		width: 100%;
		padding-right: 0;
	}
	
	.portfolio-items.alt li .portfolio-item,
	.portfolio-items.masonry li .portfolio-item { margin-bottom: 0; }	
	
	.portfolio-items.masonry li { padding: 0; }
	.portfolio-items.alt li:nth-child(odd) .portfolio-item-preview { margin-right: -10px; }
	.portfolio-items.alt li:nth-child(even) .portfolio-item-preview { margin-left: -10px; }
	.portfolio-items.alt li:nth-child(odd) .portfolio-item-description { padding-left: 20px; }
	.portfolio-items.alt li:nth-child(even) .portfolio-item-description { padding-right: 20px; }
   
    /* Portfolio Item */
	
	.portfolio-item { 
		position: relative; 
		margin-bottom: 30px;
	}
	
	.portfolio-item-preview { 
		position: relative;
		overflow: hidden; 
	}
		
	.portfolio-item-preview > a img {
		display: block;
		width: 100%;
	}
		
	.portfolio-item-overlay {
		position: absolute; 
		right: 0; 
		bottom: 0; 
		left: 0;
		background-color: #81dad8;
		text-align: center;
		opacity: 0; 	
	}
	
	.portfolio-item-overlay:before {
		position: absolute;
		top: 0;
		left: 50%;
		border-bottom: 100px solid #81dad8;
		border-left: 150px solid rgba(0, 0, 0, 0);
		border-right: 150px solid rgba(0, 0, 0, 0);
		margin-left: -150px;
		-moz-transform: scale(.9999); 
		content: "";
		-webkit-transition: top 0.3s;
			 -o-transition: top 0.3s;
				transition: top 0.3s;
	}
			
	.portfolio-item-overlay-actions {
		position: absolute;
		bottom: 0;
		width: 100%;
		-webkit-box-sizing :border-box;
		   -moz-box-sizing: border-box;
			    box-sizing: border-box;
		margin-top: -20px;
		text-align: center;
		-webkit-transition: bottom 0.3s;
			 -o-transition: bottom 0.3s;
				transition: bottom 0.3s;	
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom,
	.portfolio-item-overlay-actions .portfolio-item-link {
		display: inline-block;
		width: 30px; 
		height: 30px;  
		border: 2px solid #fff; 
		border-radius: 50%; 
		color: #fff;
		text-align: center;
		text-decoration: none; 
	}
			
	.portfolio-item-overlay-actions .portfolio-item-zoom i,
	.portfolio-item-overlay-actions .portfolio-item-link i {
		font-size: 16px; 
		line-height: 30px; 
	}
	
	.portfolio-item-description { padding-top: 20px; }
	
	.portfolio-item-description h4 { margin-bottom: 10px; }
								
	.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
	.portfolio-item:hover .portfolio-item-overlay:before { top: -100px; }
	.portfolio-item:hover .portfolio-item-overlay-actions { bottom: 30px; }
				
	/* Portfolio Pagination */
	
	.pagination {
		margin: 40px 0;
		list-style: none;
	}
	
	.pagination li { display: inline-block }

	.pagination a { 
		display: block; 
		padding: 3px 10px; 
		border: 1px solid #c2c2c2;
		text-decoration: none;
		color: #494949; 
	}
	
	.pagination li a:hover,
	.pagination li.current a { 
		color: #65c5bd; 
		border-color: #65c5bd; 
	}
	
	/* Portfolio item diamond shape */
	
	.portfolio-item.diamond-shape {
		float: left;
		width: 180px;
		height: 180px;
		border: 15px solid #eaeaea;
		margin: 50px 50px 0 50px;
		-webkit-transition: border-color 0.3s;
			 -o-transition: border-color 0.3s;
				transition: border-color 0.3s;
	}
	
	.portfolio-item.diamond-shape:nth-child(3n+3) { 
		margin: -50px 0 0 205px;  
	}
	
	.portfolio-item.diamond-shape .portfolio-item-preview > a img { 
		width: auto;
		-webkit-transform: rotate(-45deg) translateY(-52px);
			 -o-transform: rotate(-45deg) translateY(-52px);
				transform: rotate(-45deg) translateY(-52px);
	}
	
	.portfolio-item.diamond-shape:hover { border-color: #94ebe3; }
	
/* #Blog
   ========================================================================== */
   
	/* Blog Post */
	
	.blog-post { }

	.blog-post-title {}
	.blog-post-title p,
	.blog-post-title h3 { margin-bottom: 0; }

	.blog-post-thumb img { 
		display: block;
		width: 100%;
	}
	
	.blog-post-info { padding: 30px 30px; }
	
	.blog-grid-layout .blog-post-info { padding: 10px 30px; }
	
	.blog-post-readmore {}
	
	.blog-grid-layout .blog-post p { margin-bottom: 10px; }
	.blog-grid-layout .blog-post:nth-child(odd) .blog-post-thumb { margin-right: -10px; }
	.blog-grid-layout .blog-post:nth-child(even) .blog-post-thumb { margin-left: -9px; }
	
	.blog-grid-layout .blog-post:nth-child(odd) .blog-post-info {
		border-left: 1px solid #c3c3c3;
		margin-left: -10px;
	}
	
	.blog-grid-layout .blog-post:nth-child(even) .blog-post-info {
		border-right: 1px solid #c3c3c3;
		margin-right: -11px;
	}
	
   
/* #Contact
   ========================================================================== */
   
	/* Contact Form */
  
	#contact-form { 
		overflow: hidden; 
	}
	
	#contact-form fieldset { 
		margin: 0; 
	}
	
	#contact-form input[type="submit"] { border: none; }
	
	label.validation-error { color: #b55454; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #e1a1a1; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}
	
	.contact-info {
		margin: 20px 0 80px 0;
		list-style: none;
		text-align: center;
	}
	
	.contact-info li {
		position: relative; 
		display: inline-block;
		margin-right: 60px;
	}
	
	.contact-info li:before {
		position: absolute;
		top: 50%;
		left: -35px;
		width: auto;
		height: auto;
		margin-top: -10px;
		color: #65c5be;
		font-family: 'FontAwesome';
		font-size: 10px;
		content: "";
	}
	
	.contact-info li:first-child:before { content: none; }
	.contact-info li:last-child { margin-right: 0; }	
	
	
/* #Puntos de Venta
   ========================================================================== */
   

   	
   	.box-select-estado {
   		height: 105px;
   		background-color: #F8F5E6;
   		background-image: url(../../_content/puntos-de-venta/fondo-mapa.png);
   		margin-bottom: 20px;
   	}
   	
   	.box-select-estado h3 {
    	background-color: #F58025;
	    color: #FFFFFF;
	    display: inline-block;
	    font-size: 17px;
	    font-weight: 400;
	    margin: 13px 0 10px;
	    padding: 0 64px 0 32px;
	}
   	
   	.box-select-estado p{
		margin: 13px 0 15px 30px;
		text-align: left;
		display: block;
   	}
   	
   	#lista-select-estado{
   		display: block;
	    margin: 0px 30px;
   	}

	.box-pv-txt h1 {
    	font-size: 22px;
	    font-weight: 400;
	    line-height: normal;
	    margin-left: 25px;
	}
	
	.box-pv-txt h2 {
    	font-size: 20px;
	    font-weight: 500;
	    line-height: normal;
	    margin-left: 25px;
	    margin-bottom: 4px;
	}
   
	.box-pv-txt p{
		margin-left: 25px
	}
	
	.box-pv-txt em{
		color: #9fae08;
	}
	
	.titulares-pv {
	text-align: center;
	border-bottom: 1px solid #ABABAB;
	margin-bottom: 15px;
	margin-top: 30px;
	}
	
	.titulares-pv h1{
	font-size: 22px;
	font-weight: 400;
	line-height: normal;
	}
	
	.titulares-pv p{
	font-size: 14px;
	}
	
	
	.resultadospv {
    border-bottom: 1px solid #ABABAB;
    margin-bottom: 20px;
    padding: 25px 0;
	}
	
	.resultadospv h1 {
    font-size: 16px;
    font-weight: 400;
    margin-left: 25px;
    line-height: normal;
	}
	
	.datos-pv {
		margin-left: 25px;
		list-style-type: none;
	}
	
	.datos-pv li{
		margin-bottom: 4px;
		list-style-type: none;
	}
	
	.resultadospv img{
    margin-left: 25px;
	}
	
	resultadospv-map{
		width: 462px;
		height: 246px;
		ovrflow: hidden;
	}
	
	.resultadospv-banner{
		margin: 25px auto;
	}
	
	
	
/* #Ficha productos
   ========================================================================== */
   
    /* Ficha producto INTRO */
	#ficha-producto-intro {
		padding-bottom: 25px;
	}
	
	#ficha-producto-intro h2 {
    color: #593506;
    font-size: 19px;
    line-height: normal;
    margin-bottom: 24px;
    margin-top: 35px;
	}
	
	#ficha-producto-intro h2 span {
    color: #F8981D;
    display: block;
    font-size: 26px;
    font-weight: 500;
	}
	
	#ficha-producto-intro .btn-ficha-producto {
    float: right;
	}
	
	
	/* Ficha producto INTRO */
	#ficha-producto-ventajas {
		min-height: 650px;
	/*	background-image: url("../../_content/fichas_mix/dona_levadura/fondos-ventajas-dona.jpg"); */
		background-size: 100%;
		position: relative;
	}
	
	.curva-top {
	top: 0;
	width: 100%;
	}
	
	.curva-bottom {
    bottom: 0;
    position: absolute;
    width: 100%;
	}
	
	.card-ventajas {
	-webkit-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.46);
	-moz-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.46);
    background-color: #FFFFFF;
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.46);
    display: block;
    margin-top: 50px;
    min-height: 400px;
	}
	
	
	#ficha-producto-ventajas h3 {
    color: #593506;
    font-size: 19px;
    line-height: normal;
	margin: 40px 30px 20px;
	}
	
	#ficha-producto-ventajas h3 span {
    color: #F8981D;
    display: block;
    font-size: 26px;
    font-weight: 500;
	}
	
	.card-ventajas p {
    margin: 20px 30px;
    min-height: 110px;
	}

	.img-card-ventajas {
    border-left: 15px solid orange;
    float: right;
	}
	
	.lista-mini-panes {
    margin: 20px 20px 0;
    position: inherit;
    width: 100%;
	}
	
	.lista-mini-panes > li {
    display: inline-block;
    list-style: none outside none;
    text-align: center;
    width: 30%;
	}

	.lista-mini-panes .responsive-img {
    margin: auto;
	}
	.card-botones{
	z-index: 55;
	}
	
	#ficha-producto-ventajas .btn-ficha-producto {
    border: 2px solid #FFFFFF;
    font-style: italic;
    font-weight: 500;
    margin: 25px 10px 0 0;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: none;
	}
	.zeta-cinco{
	z-index: 5;
	}
	
	.zeta-cero{
	z-index: 1;
	}
	
	
	
	
	/* Ficha producto INTRO */
	
	#ficha-producto-instrucciones {
    background-color: #F6F5EC;
	}
	#ficha-producto-instrucciones h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 33px;
    padding-top: 26px;
    text-align: center;
	}
	.lista-instrucciones {
    color: #3c2a15;
    list-style: none outside none;
	}
	.lista-instrucciones li {
    margin-bottom: 8px;
	}
	.lista-instrucciones span {
    color: #F6981E;
    font-weight: bold;
    margin-right: 5px;
	}
	.notas-instrucciones {
    color: #F1941C;
    font-size: 14px;
    font-style: italic;
    margin: 25px 0;
	}
	.producto-flotante {
    float: left;
    margin-top: -137px;
    z-index: 120;
	}
	.tip {
    background-color: #FFFFFF;
    border: 3px solid #F1941C;
    border-radius: 15px 15px 15px 15px;
    color: #3C2A15;
    font-size: 19px;
    font-style: italic;
    font-weight: 600;
    line-height: 29px;
    margin-top: 38px;
    padding: 20px 5%;
    position: relative;
    width: 80%;
	}
	#ficha-producto-tip .btn-ficha-producto {
    float: right;
    margin-right: 57px;
	}
	.pico-globo {
    float: right;
    margin-bottom: 55px;
    margin-top: -102px;
    overflow: visible;
    position: relative;
    text-align: right;
    width: 10%;
	}
	.pico-globo > img {
    display: block;
	}
	
	
	
	/* SUBINDEX PRODUCTOS
   ========================================================================== */
   
   
   
   
	/* Subindex productos titulo */
	
	#subindex-producto-titulo h2 {
    font-weight: 600;
    line-height: normal;
    font-size: 25px;
	}
	
	.box-harinas h2 {
    color: #402813;
	}
	
	#subindex-producto-titulo span {
    color: #3C2A15;
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin-right: 20px;
    text-transform: none;
	}
	
	#subindex-producto-titulo .last {
    font-size: 13px;
    margin-right: 30px;
    text-align: justify;
	}
	
	.box-harinas .last {
    color: #402813;
	}
	
	.subindex-producto-txt {
    color: #3C2A15;
    margin: 0 30px 25px;
    text-align: justify;
	}
	

	
	/* Subindex productos grid */
	
	#subindex-producto-grid .span4 {
    margin-bottom: 15px;
	}

	#subindex-producto-grid h4 {
    color: #D5E03C;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    text-transform: none;
    font-weight: normal;
	}
	
	#subindex-producto-grid h4 span {
    font-size: 18px;
    font-weight: 500;
	}
	
	#subindex-producto-grid h2 {
    color: #AAB326;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin: 32px 30px 13px;
	}

	#subindex-producto-grid i {
    color: #fff;
	margin-right: 3px;
	}
	
	.btn-info-subindex-izq a, .btn-info-subindex-der a {
    color: #fff;
    padding-bottom: 1px;
	}

	.btn-info-subindex-izq, .btn-info-subindex-der {
    background-color: #F58025;
    border-radius: 10px 10px 10px 10px;
    display: inline-block;
    margin: 0 6px;
    padding: 6px 10px;
	}
	
	.content-subindex-mixes {
	padding-top: 30px; 
	}
	
	.subindex-mixes-3box {
    margin-bottom: 30px;
    margin-top: 15px;
	}
	



/* #Puntos de Venta 2017
   =========================================================== */
   .mapa-distribuidores-cluster{
    height: 600px;
    overflow: hidden;
	}

	#selector-puntos-venta2017 {
	  background-color: #b1bd20;
	  color: #fff;
	  margin-bottom: 30px;
	  padding: 20px 0;
	}
	#selector-puntos-venta2017 h4 {
	  color: #fff;
	  font-weight: 400;
	  text-transform: uppercase;
	  margin: 0;
	}
	#selector-puntos-venta2017 span {
	  font-weight: 600;
	}
	.texto-seleccione-distribuidor {
	  display: inline-block;
	  font-size: 13px;
	  margin: 0;
	  text-transform: uppercase;
	}
	#selector-puntos-venta2017 select {
	  display: inline-block;
	  margin: 0 0 0 20px;
	  min-width: 220px;
	}
	.item-puntos-venta2017 {
	  border-bottom: 1px dashed #bdbdbd;
	  margin-bottom: 40px;
	  padding: 10px 0 0;
	}
	.item-puntos-venta2017:last-child {
	  border-bottom: 2px solid #ebebeb;
	  padding-bottom: 20px;
	  margin-bottom: 50px;
	}
	.item-puntos-venta2017 h4 {
	  font-size: 17px;
	  font-weight: 500;
	  margin-bottom: 20px;
	}
	.item-puntos-venta2017 .datos-contacto span {
	  display: block;
	}
	.icons-puntos-venta-redes {
	  display: inline-block;
	  margin: 6px 12px 0 0;
	}
	.col-minimapa-puntosdeventa2017{
		text-align: center;
	}
	.enlace-minimapa-icon{
		display: none;
	}



	
/* ==========================================================================
   #Responsive
   ========================================================================== */
   
/* #Large Display
   ========================================================================== */
   	
	@media (min-width: 1400px) {
		
		#wrap {}
		
		/* Portfolio */
		
		.portfolio-strip li,
		.portfolio-items.masonry li { width: 20%; }
		
		.portfolio-strip li:last-child { display: block; }
		
	}

/* #Smaller then 1024px width
   ========================================================================== */
	
	@media (max-width: 1024px) {

		#wrap {}
		
		#header {}
		
		#content {}
		
		#footer {}
		
	}

/* #Tablet (Portrait)
   ========================================================================== */

	@media (min-width: 768px) and (max-width: 979px) {
		
		#wrap {}
		
		#header {}
		
		#menu { display: none; }
		
		#mobile-menu-trigger { 
			display: block;
			margin-top: 30px;
			margin-bottom: 25px;
		}	
		
		#content {}
		
		/* Charts */
	
		#canvas-line-chart-data,
		#canvas-doughnut-data,
		#canvas-bar-chart-data { 
			max-width: 100% !important;
			height: auto !important;
		}
		
		#footer {}
		
		/* Index */
		
		.diamond-items li .diamond {
			width: 200px;
			height: 200px;
		}
		
		
		.diamond-items li:nth-child(2) { margin: -46px 0 0 -36px; }
		.diamond-items li .diamond { margin-left: -15px; }
		.diamond-items li .diamond h4 { transform: rotate(-45deg) translate(-50px, 30px); }
		.diamond-items li .diamond a { transform: rotate(-45deg) translate(5px, 65px); }
		.diamond-items li .icon { margin: -40px 0 0 -27px; }
		.diamond-items li .diamond-shape.alt { margin: -72px 0 0 70px; }
		.diamond-items li .diamond-shape.alt-2 { margin: -232px 0 0 205px; }
		.diamond-items li .icon.alt { margin: 17px 0 0 62px; }
		
		
		
		/* Portfolio */
		
		.portfolio-strip li,
		.portfolio-items.masonry li { width: 33.3333333333%; }
		
		.portfolio-strip li:last-child { display: block; }
		
		.portfolio-item.diamond-shape {
			width: 120px;
			height: 120px;
			margin: 80px 40px 0 40px;
		}
		
		.portfolio-item.diamond-shape:nth-child(3n+3) { 
			margin: -40px 0 0 155px; 
		}
		
		.portfolio-items.alt li { margin-bottom: 20px; }
		.portfolio-items.alt li:nth-child(odd) .portfolio-item-preview { margin-right: -7.5px; }
		.portfolio-items.alt li:nth-child(even) .portfolio-item-preview { margin-left: -7.5px; }
		
		/* Blog */
		
		.blog-grid-layout .blog-post:nth-child(odd) .blog-post-thumb,
		.blog-grid-layout .blog-post:nth-child(even) .blog-post-info { margin-right: -7.5px; }
		
		.blog-grid-layout .blog-post:nth-child(even) .blog-post-thumb,
		.blog-grid-layout .blog-post:nth-child(odd) .blog-post-info { margin-left: -7.5px; }


		/* Index nuevos productos */
		.titulo-nuevos-productos-index {
	    margin-bottom: 0;
		}
		

		/* Logo */

		#logo-superior {
		display: none;
		}

		#logo-superior-mobile {
		display: inline;
    	height: 1px;
    	margin: 40px 10%;
	    overflow: visible;
	    padding: 0;
	    position: absolute;
	    text-align: center;
	    top: 0;
	    width: 180px;
	    z-index: 2900;
		}

		/*  Puntos de venta 2017 de 767 a 980 */
		#selector-puntos-venta2017 {
		  padding: 12px 0;
		}
		#selector-puntos-venta2017 .span6 {
		  text-align: center;
		  width: 100%;
		}
		#selector-puntos-venta2017 h4 {
		  margin: 10px 0 20px;
		}

	}
	
/* #Mobile (Portrait and Landscape )
   ========================================================================== */
	
	@media (max-width: 767px) {
	
		body { 
			background: none; 
			background-color: #fff; 
		}
		
		#wrap {}
		
		#header {}	
		
		#logo {}
		
		#menu { display: none; }
		
		#mobile-menu-trigger {
    	display: block;
    	margin-bottom: 25px;
    	margin-top: 30px;
		}
		
		#content {}
		
		/* Charts */
	
		#canvas-line-chart-data,
		#canvas-doughnut-data,
		#canvas-bar-chart-data { 
			max-width: 100% !important;
			height: auto !important;
		}
		
		#page-header-2 .icon-box-6 h2 { font-size: 24px; }
		#page-header-2 .icon-box-6 i { margin-right: 20px; }
		#page-header-2 .icon-box-6 .icon-box-content { margin-left: 0; }
		
		.diamond-items li { margin: 0 auto; }
		
		/* Portfolio Items */
		
		.portfolio-items li {
			float: none;
			width: 100%;
		}
		
		#footer{}	

		.row { padding: 0 20px; }
		
		.row .row { 
			width: auto; 
			padding: 0; 
			margin: 0; 
		}
		
		p.last, 
		h1.last, 
		h2.last, 
		h3.last, 
		h4.last, 
		h5.last, 
		address.last, 
		ul.last, 
		ol.last { margin-bottom: 20px; }
		
		.text-right{ text-align: left; }
		
		/* Index */
		
		.client-logos li { 
			display: block;
			margin: 0;
			margin-bottom: 15px;
		}
		.client-logos li img { margin: 0 auto; }
		
		.diamond-items li .diamond {
			width: 200px;
			height: 200px;
		}
		
		.diamond-items { margin: 100px 0; }
		.diamond-items li { float: none; }
		
		.diamond-items li .diamond h4 { transform: rotate(-45deg) translate(-50px, 30px); }
		.diamond-items li .diamond a { transform: rotate(-45deg) translate(5px, 65px); }
		
		.diamond-items li:nth-child(2),
		.diamond-items li .diamond,
		.diamond-items li .icon,
		.diamond-items li .diamond-shape.alt,
		.diamond-items li .diamond-shape.alt-2,
		.diamond-items li .icon.alt { margin: 70px auto; }
		
		/* Portfolio */
		
		.portfolio-strip li {
			float: none;
			width: 100%; 
		}
		
		.portfolio-strip li:last-child { display: block; }
		
		.portfolio-item.diamond-shape,
		.portfolio-item.diamond-shape:nth-child(3n+3) { 
			float: none;
			margin: 100px auto 100px;
		}
		
		.portfolio-items.alt li { margin-bottom: 20px; }
		.portfolio-items.alt li:nth-child(odd) .portfolio-item-preview { margin-right: 0; }
		.portfolio-items.alt li:nth-child(even) .portfolio-item-preview { margin-left: 0; }
		.portfolio-items.alt li:nth-child(odd) .portfolio-item-description { padding-left: 0; }
		.portfolio-items.alt li:nth-child(even) .portfolio-item-description { padding-right: 0; }
		
		.portfolio-items.masonry li { width: 100%; }
		
		/* Portfolio filter */
	
		.portfolio-filter ul {
			list-style: none; 
		}
		
		.portfolio-filter ul li { 
			display: block;
			margin-right: 0px;
		}
		
		.portfolio-filter ul li a { 
			padding: 10px;
			text-align: center;
			display: block;
			margin-bottom: 10px;
		}
		
		/* Blog */
		
		.blog-post { margin-bottom: 30px; }
		
		.blog-grid-layout .blog-post:nth-child(odd) .blog-post-thumb,
		.blog-grid-layout .blog-post:nth-child(even) .blog-post-info { margin-right: 0; }
		
		.blog-grid-layout .blog-post:nth-child(even) .blog-post-thumb,
		.blog-grid-layout .blog-post:nth-child(odd) .blog-post-info { margin-left: 0; }
		
		.blog-grid-layout .blog-post:nth-child(even) .blog-post-info, 
		.blog-grid-layout .blog-post:nth-child(odd) .blog-post-info { border: none; }
		
		/* Contact */
		
		.contact-info li { 
			display: block;
			margin-right: 0;
			margin-bottom: 20px;
		}
		
		.contact-info li:last-child { margin-bottom: 0; }
		.contact-info li:before { content: none; }


		/* Index nuevos productos */
		.titulo-nuevos-productos-index {
	    border: 0 none;
	    font-size: 15px;
	    line-height: normal;
		}
		.titulo-nuevos-productos-index span{
	    display: inline;
	    font-size: 15px;
	    line-height: normal;
		}
		.titulo-nuevos-productos-index {
	    margin-bottom: 0;
		}

		* Logo */

		#logo-superior {
		display: none;
		}

		#logo-superior-mobile {
		display: inline;
    	height: 1px;
    	margin: 40px 10%;
	    overflow: visible;
	    padding: 0;
	    position: absolute;
	    text-align: center;
	    top: 0;
	    width: 180px;
	    z-index: 2900;
		}


	}
	
/* #Mobile ( Landscape )
  ========================================================================== */

	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.row { padding: 0 40px; }
		
		#mobile-menu-trigger { right: 30px; }
		
		/* Portfolio */
		
		.portfolio-items li {
			float: left;
			width: 50%;
		}
		
		.portfolio-strip li {
			float: left;
			width: 50%; 
		}
		
		.portfolio-items.masonry li { width: 50%; }


		/* Index nuevos productos */

		.headline-nuevos {
   		 margin-top: 140px;
		}

		.titulo-nuevos-productos-index {
	    border: 0 none;
	    font-size: 15px;
	    line-height: normal;
		}
		.titulo-nuevos-productos-index span{
	    display: inline;
	    font-size: 15px;
	    line-height: normal;
		}
		.titulo-nuevos-productos-index {
	    margin-bottom: 0;
		}
		.video-index-frame {
    	height: 260px;
    	width: 90%;
		}


		/* Logo */

		#logo-superior {
		display: none;
		}

		#logo-superior-mobile {
		display: inline;
    	height: 1px;
    	margin: 20px 10%;
	    overflow: visible;
	    padding: 0;
	    position: absolute;
	    text-align: center;
	    top: 0;
	    width: 180px;
	    z-index: 2900;
		}

		

		/* Bloque de videos index  */

		.card-linea-productos img {
    		margin: auto auto 25px;
    		max-width: 85%;
		}	

		/*  Puntos de venta 2017 de 480 a 767 */
		#selector-puntos-venta2017 {
		  padding: 12px 0;
		}
		#selector-puntos-venta2017 .span6 {
		  text-align: center;
		  width: 100%;
		}
		#selector-puntos-venta2017 h4 {
		  margin: 10px 0 20px;
		}
		.pv-col1, .pv-col2 {
		  display: inline-block;
		  width: 49%;
		}
		.pv-col1 img{
		  display: inline-block;
		}
		.pv-col3 {
		  display: inline-block;
		  width: 100%;
		  padding: 15px 0;
		}
		.pv-col3 .datos-contacto {
		  display: inline-block;
		  text-align: center;
		  vertical-align: top;
		  width: 32%;
		}
		.enlace-minimapa {
		  display: none;
		}
		.enlace-minimapa-icon {
		  display: block;
		}
		.enlace-minimapa-icon > a {
		  margin-left: 12px;
		}



	}


	/* #Mobile ( Portrait )
  ========================================================================== */

	@media only screen and (min-width: 100px) and (max-width: 480px) {
		#logo-superior {
		display: none;
		}

		#logo-superior-mobile {
		display: inline;
    	height: 1px;
    	margin: 20px 10%;
	    overflow: visible;
	    padding: 0;
	    position: absolute;
	    text-align: center;
	    top: 0;
	    width: 180px;
	    z-index: 2900;
		}

		/*  Puntos de venta 2017 de 100 a 480 */
		#selector-puntos-venta2017 {
		  padding: 12px 0;
		}
		#selector-puntos-venta2017 .span6 {
		  text-align: center;
		  width: 100%;
		}
		#selector-puntos-venta2017 h4 {
		  margin: 10px 0 20px;
		}
		#selector-puntos-venta2017 select {
		  margin: 10px 0;
		}
		.item-puntos-venta2017 {
		  padding-bottom: 15px;
		  text-align: center;
		}
		.item-puntos-venta2017 h4 {
		  margin-bottom: 0;
		  margin-top: 20px;
		}
		.enlace-minimapa {
		  display: none;
		}
		.enlace-minimapa-icon {
		  display: block;
		}
		.enlace-minimapa-icon > a {
		  display: inline-block;
		  margin-left: 7px;
		  vertical-align: top;
		}

	}