/*****************************************************************************

ECOFILTER
Proyecto desarrollado por Y3K Web
http://www.y3kwebsolutions.com/

******************************************************************************

ÍNDICE

1. Webfonts
2. Clear fix
3. Uniformando controles de formulario
4. Ventana modal
5. Aspecto general
6. Animaciones

*****************************************************************************/





/**************************************
*************************************** 
1. Webfonts
***************************************
**************************************/

@font-face {
    font-family: 'pt-sans';
    src: url('../fuentes/pt-sans/regular/pt-sans.eot');
    src: url('../fuentes/pt-sans/regular/pt-sans.eot?#iefix') format('embedded-opentype'),
         url('../fuentes/pt-sans/regular/pt-sans.woff2') format('woff2'),
         url('../fuentes/pt-sans/regular/pt-sans.woff') format('woff'),
         url('../fuentes/pt-sans/regular/pt-sans.ttf') format('truetype'),
         url('../fuentes/pt-sans/regular/pt-sans.svg#pt-sans') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pt-sans-bold';
    src: url('../fuentes/pt-sans/bold/pt-sans.eot');
    src: url('../fuentes/pt-sans/bold/pt-sans.eot?#iefix') format('embedded-opentype'),
         url('../fuentes/pt-sans/bold/pt-sans.woff2') format('woff2'),
         url('../fuentes/pt-sans/bold/pt-sans.woff') format('woff'),
         url('../fuentes/pt-sans/bold/pt-sans.ttf') format('truetype'),
         url('../fuentes/pt-sans/bold/pt-sans.svg#pt-sans-bold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pt-sans-bold-italic';
    src: url('../fuentes/pt-sans/bold-italic/pt-sans.eot');
    src: url('../fuentes/pt-sans/bold-italic/pt-sans.eot?#iefix') format('embedded-opentype'),
         url('../fuentes/pt-sans/bold-italic/pt-sans.woff2') format('woff2'),
         url('../fuentes/pt-sans/bold-italic/pt-sans.woff') format('woff'),
         url('../fuentes/pt-sans/bold-italic/pt-sans.ttf') format('truetype'),
         url('../fuentes/pt-sans/bold-italic/pt-sans.svg#pt-sans-bold-italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pt-sans-italic';
    src: url('../fuentes/pt-sans/italic/pt-sans.eot');
    src: url('../fuentes/pt-sans/italic/pt-sans.eot?#iefix') format('embedded-opentype'),
         url('../fuentes/pt-sans/italic/pt-sans.woff2') format('woff2'),
         url('../fuentes/pt-sans/italic/pt-sans.woff') format('woff'),
         url('../fuentes/pt-sans/italic/pt-sans.ttf') format('truetype'),
         url('../fuentes/pt-sans/italic/pt-sans.svg#pt-sans-italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sanseriffic';
    src: url('../fuentes/sanseriffic/regular/sanseriffic.eot');
    src: url('../fuentes/sanseriffic/regular/sanseriffic.eot?#iefix') format('embedded-opentype'),
         url('../fuentes/sanseriffic/regular/sanseriffic.woff2') format('woff2'),
         url('../fuentes/sanseriffic/regular/sanseriffic.woff') format('woff'),
         url('../fuentes/sanseriffic/regular/sanseriffic.ttf') format('truetype'),
         url('../fuentes/sanseriffic/regular/sanseriffic.svg#sanseriffic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bebas-neue-bold';
    src: url('../fuentes/bebas-neue/bold/bebas-neue.eot');
    src: url('../fuentes/bebas-neue/bold/bebas-neue.eot?#iefix') format('embedded-opentype'),
         url('../fuentes/bebas-neue/bold/bebas-neue.woff2') format('woff2'),
         url('../fuentes/bebas-neue/bold/bebas-neue.woff') format('woff'),
         url('../fuentes/bebas-neue/bold/bebas-neue.ttf') format('truetype'),
         url('../fuentes/bebas-neue/bold/bebas-neue.svg#bebas-neue-bold') format('svg');
    font-weight: normal;
    font-style: normal;
}



/**************************************
*************************************** 
2. Clear fix
***************************************
**************************************/
/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}





/**************************************
*************************************** 
3. Uniformando controles de formulario
***************************************
**************************************/

form * {
	background: none;
}

input[type=text], input[type=password], input[type=submit], textarea, button, select {
/*
	-webkit-appearance: none;
	-moz-appearance: none;
*/
	border: solid 1px gray;
	background: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 0;
	margin: 0;
}





/**************************************
*************************************** 
4. Ventana modal
***************************************
**************************************/
/* http://redeando.blogspot.com.es/2013/01/ventana-modal-solamente-con-css3.html */

.modalDialogo {
	position: fixed;
	/*position: absolute;*/
	/*width: 100%;
	height: 100%;*/
/*	font-family: Arial, Helvetica, sans-serif;*/

	overflow-y: auto; /* MUESTRA SCROLL VERTICAL DE SER NECESARIO */
	overflow-x: hidden;
	
	top: 0;
	right: -20px; /* OCULTA EL SCROLL VERTICAL */
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
	
	
}

.modalDialogo:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialogo > div {
	width: 600px;
	
	/*height: 90%;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 50px 34px 33px;*/
	
	/*display: table;*/
	position: relative;
	margin: 2% auto;	
/*	border-radius: 60px;*/
	background: #fff;
	background: -moz-linear-gradient(#fff, #fff);
	background: -webkit-linear-gradient(#fff, #fff);
	background: -o-linear-gradient(#fff, #fff);
    
    border: solid 18px green;
    
    -webkit-border-image:url(../img/borde-oferta.jpg) 18 round; /* Safari 3.1-5 */
    -o-border-image:url(../img/borde-oferta.jpg) 18 round; /* Opera 11-12.1 */
    border-image:url(../img/borde-oferta.jpg) 18 round;
}

.cerrar {
/*	font-family: Arial, Helvetica, sans-serif;*/
/*	background: #6dae26;*/
/*	color: #FFFFFF;*/
/*	line-height: 25px;*/
    
    width: 60px;
    height: 60px;
    background-color: #9ACB27;
    
    position: absolute;
    right: -30px;
    top: -30px;
    
    -webkit-border-radius: 50%;
    border-radius: 50%;
    
    -webkit-box-shadow:inset 0 0 5px 2px rgb(125,153,60);
    box-shadow:inset 0 0 5px 2px rgb(125,153,60);
    
    -webkit-perspective: 30px;
    -moz-perspective: 30px;
    -o-perspective: 30px;
    perspective: 30px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    
    -webkit-align-items: center;
    -ms-flex-pack: center;
    align-items: center;
    
/*	position: absolute;*/
/*	right: -1px;*/
/*	text-align: center;*/
/*	top: -10px;*/
/*	width: 24px;*/
/*	text-decoration: none;*/
/*	font-weight: bold;*/
/*	-webkit-border-radius: 25px;*/
/*	-moz-border-radius: 25px;*/
/*	border-radius: 25px;*/
/*	-moz-box-shadow: 1px 1px 3px #000;*/
/*	-webkit-box-shadow: 1px 1px 3px #000;*/
/*	box-shadow: 1px 1px 3px #000;*/
}

.cerrar > img { 
/*	background: #84d12e;*/
/*	text-decoration: none;*/
    
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.cerrar:hover > img { 
/*	background: #84d12e;*/
/*	text-decoration: none;*/
    
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}





/**************************************
*************************************** 
5. Aspecto general
***************************************
**************************************/

body {
    margin: 0;
	font-family: pt-sans, Arial, Helvetica, sans-serif;
	color: #055979;
	font-size: 16px;
	line-height: 100%;
	text-align: left;
    background-color: #05a0fe;
	overflow-x: hidden;
}

div, section, header, footer, aside, article, main, nav {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
    font-weight: normal;
    line-height: 100%;
	margin: 0;
}

.error {
	font-size: 0.88em;
	line-height: 120%;
	color: #E42126;
}

.error ul {
	margin-top: 0;
}

body > header {
    position: relative;
    z-index: 3;
    
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 75%, #6cc7fe 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(60%,#ffffff), color-stop(100%,#6cc7fe)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 75%,#6cc7fe 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 75%,#6cc7fe 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 75%,#6cc7fe 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 75%,#6cc7fe 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#6cc7fe',GradientType=0 ); /* IE6-9 */
}

body > header > .contenedor {
    width: 978px;
    min-height: 200px;
    margin: 0 auto;
    position: relative;
}

body > header > .contenedor > .logo {
    position: absolute;
    left: 14px;
    top: 48px;
}

body > header > .contenedor > .logo > .contenedor {
    width: 630px;
    height: 64px;
    background-color: #1976b9;
    background-image: url(../img/fondo-logo-encabezado.png);
    background-repeat: repeat-x;
    background-position: 0 27px;
    
    -webkit-animation-name: mover-fondo-a-la-derecha;
	-moz-animation-name: mover-fondo-a-la-derecha;
	-o-animation-name: mover-fondo-a-la-derecha;
	animation-name: mover-fondo-a-la-derecha;
	
	-webkit-animation-duration: 5s;
	-moz-animation-duration: 5s;
	-o-animation-duration: 5s;
	animation-duration: 5s;
	
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-o-animation-timing-function: linear;
	animation-timing-function: linear;
	
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	
	-webkit-animation-delay: 0;
	-moz-animation-delay: 0;
	-o-animation-delay: 0;
	animation-delay: 0;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > header > .contenedor > .mascota {
    position: absolute;
    right: 57px;
    bottom: 42px;
    z-index: 1;
    overflow: hidden;
}

body > header > .contenedor > .mascota > img {
    position: relative;
    bottom: 0;
}

body > header > .contenedor > nav {
    width: 978px;
    
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    
    background: #2e8ecf; /* Old browsers */
    background: -moz-linear-gradient(top,  #2e8ecf 0%, #014a76 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2e8ecf), color-stop(100%,#014a76)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #2e8ecf 0%,#014a76 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #2e8ecf 0%,#014a76 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #2e8ecf 0%,#014a76 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #2e8ecf 0%,#014a76 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e8ecf', endColorstr='#014a76',GradientType=0 ); /* IE6-9 */
}

body > header > .contenedor > nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

body > header > .contenedor > nav > ul > li {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    
    position: relative;
}

body > header > .contenedor > nav > ul > li > a {
    height: 47px;
    
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 1em;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    
    -webkit-transition: background .25s ease;
    -moz-transition: background .25s ease;
    -ms-transition: background .25s ease;
    -o-transition: background .25s ease;
    transition: background .25s ease;
}

body > header > .contenedor > nav > ul > li > a:hover {
    background-color: #05365F;
}

body > header > .contenedor > nav > ul > li > a.seleccionado {
    background-color: #05365F;
}

body > header > .contenedor > nav > ul > li > ul {
    margin: 0;
    padding: 7px;
    list-style: none;
    position: absolute;
    top: 47px;
    left: -1400px;
    
    background: #093353; /* Old browsers */
    background: -moz-linear-gradient(top,  #093353 0%, #085584 30%, #085584 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#093353), color-stop(30%,#085584), color-stop(100%,#085584)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #093353 0%,#085584 30%,#085584 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #093353 0%,#085584 30%,#085584 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #093353 0%,#085584 30%,#085584 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #093353 0%,#085584 30%,#085584 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#093353', endColorstr='#085584',GradientType=0 ); /* IE6-9 */
    
    -webkit-transition: left .5s ease-in-out;
    -moz-transition: left .5s ease-in-out;
    -ms-transition: left .5s ease-in-out;
    -o-transition: left .5s ease-in-out;
    transition: left .5s ease-in-out;
}

body > header > .contenedor > nav > ul > li:hover > ul {
    left: 0;
}

body > header > .contenedor > nav > ul > li > ul > li {
    border-top: solid 3px #0B3E64;
}

body > header > .contenedor > nav > ul > li > ul > li:first-child {
    border-top: none;
}

body > header > .contenedor > nav > ul > li > ul > li > a {
    font-size: 1em;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    display: block;
    padding: 10px;
    white-space: nowrap;
    
    -webkit-transition: background .25s ease;
    -moz-transition: background .25s ease;
    -ms-transition: background .25s ease;
    -o-transition: background .25s ease;
    transition: background .25s ease;
}

body > header > .contenedor > nav > ul > li > ul > li > a:hover {
    background-color: #05365F;
}

body > .contenido-y-pie {
    position: relative;
    
    background: #6cc7fe; /* Old browsers */
    background: -moz-linear-gradient(top,  #6cc7fe 0%, #05a0fe 10%, #05a0fe 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cc7fe), color-stop(10%,#05a0fe), color-stop(100%,#05a0fe)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #6cc7fe 0%,#05a0fe 10%,#05a0fe 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #6cc7fe 0%,#05a0fe 10%,#05a0fe 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #6cc7fe 0%,#05a0fe 10%,#05a0fe 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #6cc7fe 0%,#05a0fe 10%,#05a0fe 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6cc7fe', endColorstr='#05a0fe',GradientType=0 ); /* IE6-9 */
}

body > .contenido-y-pie > .fondo-radial-y-burbujas {
	width: 100%;
    
    background: -webkit-radial-gradient(rgba(226,245,254,1), rgba(211,241,254,1) 30%, rgba(154,221,250,0) 90%, rgba(5,160,254,0));
    background: -moz-radial-gradient(rgba(226,245,254,1), rgba(211,241,254,1) 30%, rgba(154,221,250,0) 90%, rgba(5,160,254,0));
    background: -ms-radial-gradient(rgba(226,245,254,1), rgba(211,241,254,1) 30%, rgba(154,221,250,0) 90%, rgba(5,160,254,0));
    background: -o-radial-gradient(rgba(226,245,254,1), rgba(211,241,254,1) 30%, rgba(154,221,250,0) 90%, rgba(5,160,254,0));
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .burbujas {
	width: 1400px;
	margin: 0 auto;
	
	position: relative;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .burbujas > .burbujas-izquierda {
    width: 289px;
	height: 777px;
	background-image: url(../img/burbujas.png);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .burbujas > .burbujas-derecha {
    width: 289px;
	height: 777px;
	background-image: url(../img/burbujas.png);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 0;
	top: 0;
	
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .burbujas > .superficie {
    width: 1400px;
	height: 215px;
	background-image: url(../img/superficie.png);
	background-repeat: no-repeat;
	background-position: center;
	
	position: absolute;
	right: 0;
	top: 0;
	
	-webkit-animation-name: bajar-superficie;
	-moz-animation-name: bajar-superficie;
	-o-animation-name: bajar-superficie;
	animation-name: bajar-superficie;
	
	-webkit-animation-duration: 3s;
	-moz-animation-duration: 3s;
	-o-animation-duration: 3s;
	animation-duration: 3s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	
	-webkit-animation-delay: 0;
	-moz-animation-delay: 0;
	-o-animation-delay: 0;
	animation-delay: 0;
	
	-webkit-animation-direction: alternate;
	-moz-animation-direction: alternate;
	-o-animation-direction: alternate;
	animation-direction: alternate;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura {
    width: 978px;
    margin: 0 auto;
    position: relative;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .experiencia {
    width: 135px;
    height: 137px;
    background-image: url(../img/fondo-experiencia.png);
    background-position: center;
    background-repeat: no-repeat;
    
    position: absolute;
    right: 0;
    top: 7px;
	z-index: 2;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .experiencia > .primer-numero {
    font-family: bebas-neue-bold, Arial, Helvetica, sans-serif;
    font-size: 4.5em;
    line-height: 100%;
    color: #206C90;
    text-shadow: -2px 1px 0 #0C2735;
    
    position: absolute;
    left: 40px;
    top: 36px;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .experiencia > .segundo-numero {
    font-family: bebas-neue-bold, Arial, Helvetica, sans-serif;
    font-size: 4em;
    line-height: 100%;
    color: #206C90;
    text-shadow: -2px 1px 0 #0C2735;
    
    position: absolute;
    right: 38px;
    top: 36px;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > main > article {
    padding-top: 150px;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer {
    margin: 26px auto 44px;
    border-top: solid 2px #022940;
    padding-top: 11px;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo {
    padding: 14px 30px;
    position: relative;
    
    -webkit-border-radius: 20px;
    border-radius: 20px;
    
    background: -moz-linear-gradient(left,  rgba(158,209,241,0.35) 0%, rgba(114,139,183,0.38) 25%, rgba(0,95,164,0.41) 50%, rgba(114,139,183,0.38) 75%, rgba(158,209,241,0.35) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(158,209,241,0.35)), color-stop(25%,rgba(114,139,183,0.38)), color-stop(50%,rgba(0,95,164,0.41)), color-stop(75%,rgba(114,139,183,0.38)), color-stop(100%,rgba(158,209,241,0.35))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  rgba(158,209,241,0.35) 0%,rgba(114,139,183,0.38) 25%,rgba(0,95,164,0.41) 50%,rgba(114,139,183,0.38) 75%,rgba(158,209,241,0.35) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  rgba(158,209,241,0.35) 0%,rgba(114,139,183,0.38) 25%,rgba(0,95,164,0.41) 50%,rgba(114,139,183,0.38) 75%,rgba(158,209,241,0.35) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  rgba(158,209,241,0.35) 0%,rgba(114,139,183,0.38) 25%,rgba(0,95,164,0.41) 50%,rgba(114,139,183,0.38) 75%,rgba(158,209,241,0.35) 100%); /* IE10+ */
    background: linear-gradient(to right,  rgba(158,209,241,0.35) 0%,rgba(114,139,183,0.38) 25%,rgba(0,95,164,0.41) 50%,rgba(114,139,183,0.38) 75%,rgba(158,209,241,0.35) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#599ed1f1', endColorstr='#599ed1f1',GradientType=1 ); /* IE6-9 */
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > nav > ul {
    margin: 0 33px 0 0;
    padding: 0 0 0 20px;
    color: #2F5214;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > nav > ul:last-child {
    margin-right: 0;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > nav > ul > li {
    margin-bottom: 6px;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > nav > ul > li:last-child {
    margin-bottom: 0;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > nav > ul > li > a {
    font-family: sanseriffic, Arial, Helvetica, sans-serif;
    font-size: .88em;
    color: white;
    position: relative;
    left: -3px;
    display: block;
    
    text-shadow: 0 0 2px #999;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > nav > ul > li > a:first-letter {
    text-transform: uppercase;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > .firma {
    position: absolute;
    right: 30px;
    bottom: 14px;
	color: white;
}

body > .contenido-y-pie > .fondo-radial-y-burbujas > .zona-segura > .articulo-y-pie > footer > .fondo > .firma a {
    font-family: pt-sans-italic, Arial, Helvetica, sans-serif;
    font-size: 1em;
    color: white;
    text-shadow: 0 0 2px #999;
}

body > .oferta-lateral {
    width: 204px;
    min-height: 237px;
    background-color: white;
    text-decoration: none;
    padding: 10px 50px 14px 10px;
    color: #1F3358;
    line-height: 120%;
    font-size: .88em;
    
    -webkit-box-shadow: 0 0 8px 0 rgba(33,60,73,.8);
    box-shadow: 0 0 8px 0 rgba(33,60,73,.8);
    
    position: fixed;
    left: -220px;
    top: 30%;
    z-index: 4;
    
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
	
	display: none;
}

@media (min-width: 1100px) {
	body > .oferta-lateral {
		display: inherit;
	}
}

body > .oferta-lateral:hover {
    left: 0;
}

body > .oferta-lateral > .borde {
    width: 18px;
    height: 103%;
    background-image: url(../img/fondo-borde-oferta-lateral.png);
    
    position: absolute;
    right: -5px;
    top: -3px;
    
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

body > .oferta-lateral > .borde > div {
    font-family: pt-sans-bold-italic, Arial, Helvetica, sans-serif;
    font-size: .88em;
    color: #52C5F4;
    letter-spacing: 1px;
    
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    
    position: absolute;
    left: -10px;
    top: 30px;
}

body > .oferta-lateral > .circulo {
    width: 60px;
    height: 60px;
    background-color: #9ACB27;
    
    position: absolute;
    right: -20px;
    bottom: -15px;
    
    -webkit-border-radius: 50%;
    border-radius: 50%;
    
    -webkit-box-shadow:inset 0 0 5px 2px rgb(125,153,60);
    box-shadow:inset 0 0 5px 2px rgb(125,153,60);
    
    -webkit-perspective: 30px;
    -moz-perspective: 30px;
    -o-perspective: 30px;
    perspective: 30px;
}

body > .oferta-lateral > .circulo > img {
    position: relative;
    top: 14.5px;
    left: 18px;
    
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

body > .oferta-lateral:hover > .circulo > img {
    -webkit-transform: rotateY(180deg) translateX(6px);
    -moz-transform: rotateY(180deg) translateX(6px);
    -o-transform: rotateY(180deg) translateX(6px);
    transform: rotateY(180deg) translateX(6px);
}

body > .oferta-lateral > h1 {
    font-family: pt-sans-bold-italic, Arial, Helvetica, sans-serif;
    font-size: 2.1em;
    color: #7DD03F;
}

body > .oferta-lateral > .nombre {
    text-align: center;
    margin-top: 7px;
}

body > .oferta-lateral > .enlace {
    font-family: sanseriffic, Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-weight: bold;
    font-style: italic;
    color: #6CBD46;
    text-align: right;
    text-decoration: underline;
    margin-top: 10px;
}

body > .oferta-lateral > .foto {
    margin: 10px auto 0;
    width: 164px;
    height: 120px;
    background-color: #97D966;
    
    -webkit-border-radius: 10px;
    border-radius: 10px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

body > .oferta-lateral > .foto > div {
    width: 148px;
    height: 112px;
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,1);
}

body > #oferta-modal #contenido-oferta-modal {
    /*min-height: 430px;
	overflow-y: auto;
	overflow-x: hidden;*/
	padding: 50px 34px 33px;
	/*background-color: green;*/
	
	color: #1F3358;
    font-size: 1em;
    line-height: 120%;
}

body > #oferta-modal h1 {
    font-family: pt-sans-bold-italic, Arial, Helvetica, sans-serif;
    font-size: 2.1em;
    color: #6CBD46;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 27px;
}

body > #oferta-modal h2 {
    font-family: pt-sans-bold-italic, Arial, Helvetica, sans-serif;
    font-size: 1.12em;
    line-height: 120%;
    color: #6CBD46;
    text-align: left;
    text-decoration: underline;
    margin-bottom: 22px;
}

body > #oferta-modal .foto {
    width: 312px;
    height: 230px;
    margin: 26px auto 0;
    background-color: #97D966;
    
    -webkit-border-radius: 12px;
    border-radius: 12px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

body > #oferta-modal .foto > div {
    width: 284px;
    height: 215px;
    
    background-color: #97D966;
    background-repeat: no-repeat;
    background-position: center;
    
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,1);
}

body > #oferta-modal .precios-y-boton {
    margin-top: 23px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

body > #oferta-modal .precios-y-boton > .precios > .especial > .precio {
    font-family: pt-sans-bold-italic, Arial, Helvetica, sans-serif;
    font-size: 1.12em;
    color: #1F3358;
    text-decoration: underline;
}

body > #oferta-modal .precios-y-boton > .precios > .especial > .numeros {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    font-size: 1.88em;
    color: #1F3358;
}

body > #oferta-modal .precios-y-boton > .precios > .especial > .usd {
    font-size: .75em;
    color: #1F3358;
}

body > #oferta-modal .precios-y-boton > .precios > .regular {
    margin-top: 20px;
}

body > #oferta-modal .precios-y-boton > .precios > .regular > .precio {
    font-family: pt-sans-bold-italic, Arial, Helvetica, sans-serif;
    font-size: .88em;
    color: #1F3358;
    text-decoration: underline;
}

body > #oferta-modal .precios-y-boton > .precios > .regular > .numeros {
    font-size: 1em;
    color: #1F3358;
}

body > #oferta-modal .precios-y-boton > .precios > .regular > .usd {
    font-size: .75em;
    color: #1F3358;
}

body > #oferta-modal .precios-y-boton > .boton {
    display: table;
    padding: 12px 0;
}

body > #oferta-modal .precios-y-boton > .boton > a {
    font-family: pt-sans-italic, Arial, Helvetica, sans-serif;
    font-size: 1.12em;
    line-height: 100%;
    color: white;
    text-decoration: none;
    background-color: #7DD040;
    background-image: url(../img/fondo-boton-oferta.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 8px 26px;
    
    -webkit-border-radius: 10px;
    border-radius: 10px;
    
    -webkit-box-shadow: 4px 4px 9px 0 rgba(70,124,31,.65);
    box-shadow: 4px 4px 9px 0 rgba(70,124,31,.65);
    
    position: relative;
    top: 0;
    
    -webkit-transition: top .25s ease;
    -moz-transition: top .25s ease;
    -ms-transition: top .25s ease;
    -o-transition: top .25s ease;
    transition: top .25s ease;
}

body > #oferta-modal .precios-y-boton > .boton:hover > a {
    top: -5px;
}









/*
    TRAMPA DE MIEL
*/

div#website {
    display: none;
}




/*
    PRIVACIDAD - CINTILLO
*/

#privacidad-cintillo {
    display: block;
    width: 100%;
    padding: 5px;
    background-color: #2c3995;
    color: white;
    font-size: 12px;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
}

#privacidad-cintillo:hover {
    text-decoration: none;
}




/*
    PRIVACIDAD - RESUMEN
*/

#privacidad-resumen {
    display: block;
    width: 100%;
    margin: 50px 0;
    padding: 20px 40px;
    background-color: #1976b9;
    color: white;
    font-size: 12px;
    text-align: center;
    -webkit-border-radius: 20px;
    border-radius: 20px;

    -webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

#privacidad-resumen a {
    color: white;
    text-decoration: underline;
}





/**************************************
*************************************** 
6. Animaciones
***************************************
**************************************

ÍNDICE

Subir
Mover a la izquierda
Mover a la derecha
Aparecer
Aparecer desde arriba
Aparecer desde izquierda
Aparecer desde derecha
Aparecer desde abajo
Crecer hacia abajo

...

Otras animaciones especializadas del proyecto

***************************************/

/**************************************
Subir
**************************************/

@-webkit-keyframes subir {
	from {
		-webkit-transform: translateY(0px);
	}
	
	to {
		-webkit-transform: translateY(-10px);
	}
}

@-moz-keyframes subir {
	from {
		-moz-transform: translateY(0px);
	}
	
	to {
		-moz-transform: translateY(-10px);
	}
}

@-o-keyframes subir {
	from {
		-o-transform: translateY(0px);
	}
	
	to {
		-o-transform: translateY(-10px);
	}
}

@keyframes subir {
	from {
		transform: translateY(0px);
	}
	
	to {
		transform: translateY(-10px);
	}
}





/**************************************
Mover a la izquierda
**************************************/

/*@-webkit-keyframes mover-a-la-izquierda {
	from {
		-webkit-transform: translateX(0px);
	}
	
	to {
		-webkit-transform: translateX(-205px);
	}
}

@-moz-keyframes mover-a-la-izquierda {
	from {
		-moz-transform: translateX(0px);
	}
	
	to {
		-moz-transform: translateX(-205px);
	}
}

@-o-keyframes mover-a-la-izquierda {
	from {
		-o-transform: translateX(0px);
	}
	
	to {
		-o-transform: translateX(-205px);
	}
}

@keyframes mover-a-la-izquierda {
	from {
		transform: translateX(0px);
	}
	
	to {
		transform: translateX(-205px);
	}
}*/





/**************************************
Mover a la derecha
**************************************/

/*@-webkit-keyframes mover-a-la-derecha {
	from {
		-webkit-transform: translateX(0px);
	}
	
	to {
		-webkit-transform: translateX(205px);
	}
}

@-moz-keyframes mover-a-la-derecha {
	from {
		-moz-transform: translateX(0px);
	}
	
	to {
		-moz-transform: translateX(205px);
	}
}

@-o-keyframes mover-a-la-derecha {
	from {
		-o-transform: translateX(0px);
	}
	
	to {
		-o-transform: translateX(205px);
	}
}

@keyframes mover-a-la-derecha {
	from {
		transform: translateX(0px);
	}
	
	to {
		transform: translateX(205px);
	}
}*/





/**************************************
Aparecer
**************************************/

/*@-webkit-keyframes aparecer {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@-moz-keyframes aparecer {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@-o-keyframes aparecer {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes aparecer {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}*/





/**************************************
Aparecer desde arriba
**************************************/

/*@-webkit-keyframes aparecer-desde-arriba {
	from {
		-webkit-transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		-webkit-transform: translateY(20px);
		opacity: 1;
	}
}

@-moz-keyframes aparecer-desde-arriba {
	from {
		-moz-transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		-moz-transform: translateY(20px);
		opacity: 1;
	}
}

@-o-keyframes aparecer-desde-arriba {
	from {
		-o-transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		-o-transform: translateY(20px);
		opacity: 1;
	}
}

@keyframes aparecer-desde-arriba {
	from {
		transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		transform: translateY(20px);
		opacity: 1;
	}
}*/





/**************************************
Aparecer desde izquierda
**************************************/

/*@-webkit-keyframes aparecer-desde-izquierda {
	from {
		-webkit-transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		-webkit-transform: translateX(20px);
		opacity: 1;
	}
}

@-moz-keyframes aparecer-desde-izquierda {
	from {
		-moz-transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		-moz-transform: translateX(20px);
		opacity: 1;
	}
}

@-o-keyframes aparecer-desde-izquierda {
	from {
		-o-transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		-o-transform: translateX(20px);
		opacity: 1;
	}
}

@keyframes aparecer-desde-izquierda {
	from {
		transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		transform: translateX(20px);
		opacity: 1;
	}
}*/





/**************************************
Aparecer desde derecha
**************************************/

/*@-webkit-keyframes aparecer-desde-derecha {
	from {
		-webkit-transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		-webkit-transform: translateX(-20px);
		opacity: 1;
	}
}

@-moz-keyframes aparecer-desde-derecha {
	from {
		-moz-transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		-moz-transform: translateX(-20px);
		opacity: 1;
	}
}

@-o-keyframes aparecer-desde-derecha {
	from {
		-o-transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		-o-transform: translateX(-20px);
		opacity: 1;
	}
}

@keyframes aparecer-desde-derecha {
	from {
		transform: translateX(0px);
		opacity: 0;
	}
	
	to {
		transform: translateX(-20px);
		opacity: 1;
	}
}*/





/**************************************
Aparecer desde abajo
**************************************/

@-webkit-keyframes aparecer-desde-abajo {
	from {
		-webkit-transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		-webkit-transform: translateY(-20px);
		opacity: 1;
	}
}

@-moz-keyframes aparecer-desde-abajo {
	from {
		-moz-transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		-moz-transform: translateY(-20px);
		opacity: 1;
	}
}

@-o-keyframes aparecer-desde-abajo {
	from {
		-o-transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		-o-transform: translateY(-20px);
		opacity: 1;
	}
}

@keyframes aparecer-desde-abajo {
	from {
		transform: translateY(0px);
		opacity: 0;
	}
	
	to {
		transform: translateY(-20px);
		opacity: 1;
	}
}





/**************************************
Crecer hacia abajo
**************************************/

/*@-webkit-keyframes crecer-hacia-abajo {
	from {
		height: 0;
	}
	
	to {
		height: 211px;
	}
}

@-moz-keyframes crecer-hacia-abajo {
	from {
		height: 0;
	}
	
	to {
		height: 211px;
	}
}

@-o-keyframes crecer-hacia-abajo {
	from {
		height: 0;
	}
	
	to {
		height: 211px;
	}
}

@keyframes crecer-hacia-abajo {
	from {
		height: 0;
	}
	
	to {
		height: 211px;
	}
}*/





/**************************************
*************************************** 
Animaciones Especializadas
***************************************
**************************************/

/**************************************
Logo en el encabezado - Mover fondo a la derecha
**************************************/

@-webkit-keyframes mover-fondo-a-la-derecha {
	from {
		background-position: 0 27px;
	}
	
	to {
		background-position: 74px 27px;
	}
}

@-moz-keyframes mover-fondo-a-la-derecha {
	from {
		background-position: 0 27px;
	}
	
	to {
		background-position: 74px 27px;
	}
}

@-o-keyframes mover-fondo-a-la-derecha {
	from {
		background-position: 0 27px;
	}
	
	to {
		background-position: 74px 27px;
	}
}

@keyframes mover-fondo-a-la-derecha {
	from {
		background-position: 0 27px;
	}
	
	to {
		background-position: 74px 27px;
	}
}




/**************************************
Superficie del agua
**************************************/

@-webkit-keyframes bajar-superficie {
	from {
		top: 0;
	}
	
	to {
		top: 10px;
	}
}

@-moz-keyframes bajar-superficie {
	from {
		top: 0;
	}
	
	to {
		top: 10px;
	}
}

@-o-keyframes bajar-superficie {
	from {
		top: 0;
	}
	
	to {
		top: 10px;
	}
}

@keyframes bajar-superficie {
	from {
		top: 0;
	}
	
	to {
		top: 10px;
	}
}