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

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

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

ÍNDICE

1. Webfonts
2. Clear fix
3. Ventana modal
4. Reset personalizado
5. Aspecto general

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





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

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

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-up:before {
    content: "\e901";
}

@font-face {
    font-family: 'arimo';
    src: url('../recursos/fuentes/arimo/regular/arimo.woff2') format('woff2'),
         url('../recursos/fuentes/arimo/regular/arimo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'caviar-dreams';
    src: url('../recursos/fuentes/caviar-dreams/regular/caviar-dreams.woff2') format('woff2'),
         url('../recursos/fuentes/caviar-dreams/regular/caviar-dreams.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cicle-fina-italic';
    src: url('../recursos/fuentes/cicle/fina-italic/cicle.woff2') format('woff2'),
         url('../recursos/fuentes/cicle/fina-italic/cicle.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cicle-gordita';
    src: url('../recursos/fuentes/cicle/gordita/cicle.woff2') format('woff2'),
         url('../recursos/fuentes/cicle/gordita/cicle.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'oxygen';
    src: url('../recursos/fuentes/oxygen/regular/oxygen.woff2') format('woff2'),
         url('../recursos/fuentes/oxygen/regular/oxygen.woff') format('woff');
    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;
}











/**************************************
***************************************
4. Reset personalizado
***************************************
**************************************/

body {
	font-size: 16px;
	text-align: justify;
	overflow-x: hidden;
}

.zona-segura {
    width: 960px;
    margin: 0 auto;
}

@media screen and (max-width: 800px) {
    .zona-segura {
        width: 100%;
    }
}

body > h1 {
	display: none;
}

nav > h2 {
	display: none;
}

div, section, header, footer, aside, article, main, nav, a, input, password, select, textarea, figure, img, ul, iframe {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

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

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

.error ul {
	margin-top: 0;
}

address {
    font-style: normal;
}

form * {
	background: none;
}

input[type=text], input[type=password], input[type=tel], input[type=email], input[type=number], input[type=search], 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;
}

.ir-arriba {
	display: none;
	padding: 20px;
	background-color: #9797A6;
	font-size: 1em;
	color: white;
	cursor: pointer;
	position: fixed;
	right: 20px;
	bottom: 60px;
	z-index: 1000;
	opacity: .7;

    border: solid 1px #eee;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	-webkit-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
    -ms-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

@media screen and (max-width: 800px) {
    .ir-arriba {
		right: 10px;
		bottom: 56px;
	}
}

.ir-arriba:hover {
	opacity: 1;
}

b, strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

ol {
	list-style: decimal;
}

ol > li {
	margin: 10px 0;
}





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

body {
	background-color: #ECECFB;
    font-family: Arial, Helvetica, sans-serif;
}

body > header {
	position: relative;
    z-index: 4;
}

body > header > div.barra-rosa-arriba, body > header > div.barra-rosa-abajo {
	width: 100%;
    height: 60px;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eb1289+30,eb1289+30,ba105c+100 */
    background: #eb1289; /* Old browsers */
    background: -moz-linear-gradient(top,  #eb1289 30%, #eb1289 30%, #ba105c 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #eb1289 30%,#eb1289 30%,#ba105c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #eb1289 30%,#eb1289 30%,#ba105c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb1289', endColorstr='#ba105c',GradientType=0 ); /* IE6-9 */

    -webkit-box-shadow: 0 0 15px 1px rgba(116,55,150,.9);
    box-shadow: 0 0 15px 1px rgba(116,55,150,.9);

    position: relative;
    z-index: 2;
}

@media screen and (max-width: 480px) {
    body > header > div.barra-rosa-arriba {
        display: none;
    }
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.barra-rosa-abajo {
        height: 120px;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.barra-rosa-abajo {
        height: 50px;
    }
}

body > header > div.barra-blanca {
	width: 100%;
    height: 244px;
    background-color: white;

    position: relative;
    z-index: 1;
}

@media screen and (max-width: 480px) {
    body > header > div.barra-blanca {
        height: 170px;
    }
}

body > header > div.zona-segura {
	height: 364px;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.zona-segura {
        height: 424px;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura {
        height: 304px;
    }
}

body > header > div.zona-segura > a.sesion-boton {
	display: block;
    font-size: 1.25em;
    line-height: 120%;
    color: white;
    padding: 5px 26px;
    border: solid 3px white;

    -webkit-border-radius: 20px;
    border-radius: 20px;

    -webkit-box-shadow: 0 1px 10px 0 rgba(0,0,0,.65);
    box-shadow: 0 1px 10px 0 rgba(0,0,0,.65);

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#9c51ca+0,52226f+100 */
    background: #9c51ca; /* Old browsers */
    background: -moz-linear-gradient(top,  #9c51ca 0%, #52226f 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #9c51ca 0%,#52226f 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #9c51ca 0%,#52226f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9c51ca', endColorstr='#52226f',GradientType=0 ); /* IE6-9 */

    position: absolute;
    right: 15px;
    top: 9px;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.zona-segura > a.sesion-boton {
        font-size: 1em;
        right: 2%;
        top: 12px;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > a.sesion-boton {
        padding: 5px 15px;
        font-size: 1em;
        left: 5%;
        right: auto;
        top: 177px;
    }
}

body > header > div.zona-segura > a.sesion-boton:hover {
	padding: 5px 26px;
    color: #9c51ca;
    border: solid 3px #9c51ca;
    background: white;
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > a.sesion-boton:hover {
        padding: 5px 15px;
    }
}

/*body > header > div.zona-segura > a.cerrar-sesion {
	display: none;
}*/

body > header > div.zona-segura > nav.idiomas {
	position: absolute;
    left: 18px;
    top: 110px;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.zona-segura > nav.idiomas {
        left: 2%;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.idiomas {
        right: 5%;
        left: auto;
        top: 40px;
    }
}

body > header > div.zona-segura > nav.idiomas > ul {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

body > header > div.zona-segura > nav.idiomas > ul > li {
	font-size: 1.125em;
    color: #ED217C;
    margin-left: 6px;
}

@media screen and (max-width: 800px) {
    body > header > div.zona-segura > nav.idiomas > ul > li {
        font-size: .875em;
    }
}

body > header > div.zona-segura > nav.idiomas > ul > li:before {
	content: '- ';
}

body > header > div.zona-segura > nav.idiomas > ul > li:first-child:before {
	content: '';
}

body > header > div.zona-segura > nav.idiomas > ul > li > div {
	display: inline-block;
    text-decoration: underline;
}

body > header > div.zona-segura > nav.idiomas > ul > li > a {
	color: #ED217C;
}

body > header > div.zona-segura > nav.idiomas > ul > li > a:hover {
	text-decoration: underline;
}

body > header > div.zona-segura > div.formulario > form#formulario-de-busqueda {
	position: absolute;
    right: 18px;
    top: 106px;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.zona-segura > div.formulario > form#formulario-de-busqueda {
        right: 2%;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > div.formulario > form#formulario-de-busqueda {
        right: 5%;
        top: 100px;
    }
}

body > header > div.zona-segura > div.formulario > form#formulario-de-busqueda > input {
	width: 200px;
    font-size: 1.125em;
    padding: 6px 45px 6px 10px;
    background-color: white;
    background-image: url(../img/fondo-buscar.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    border: solid 1px #0474BA;
}

@media screen and (max-width: 800px) {
    body > header > div.zona-segura > div.formulario > form#formulario-de-busqueda > input {
        width: 130px;
        font-size: .875em;
    }
}

body > header > div.zona-segura > a.logo {
	display: block;
    width: 186px;
    height: 186px;
    background-color: white;
    background-image: url(../img/logo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: absolute;
    top: 95px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > a.logo {
        width: 130px;
        height: 130px;
        top: 24px;
        left: 5%;
        right: auto;
        margin-left: none;
        margin-right: none;
    }
}

body > header > div.zona-segura > a#boton-menu-principal {
    display: none;
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > a#boton-menu-principal {
        display: block;
        color: white;
        height: 50px;
        padding: 0 40px;
        background-image: url(../img/boton-de-menu.png);
        background-repeat: no-repeat;
        background-position: right center;

        position: absolute;
        right: 5%;
        top: 170px;

        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;

        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;

        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;

        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;

        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.menu {
        position: absolute;
        top: 220px;
        width: 100%;
    }
}

body > header > div.zona-segura > nav.menu > ul {
	width: 100%;
    position: absolute;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

   -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.menu > ul {
        width: 100%;
        position: relative;
        background-color: white;

        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;

       -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

body > header > div.zona-segura > nav.menu > ul.primera-linea {
	bottom: 0;

    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.zona-segura > nav.menu > ul.primera-linea {
        padding: 0 2%;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.menu > ul.primera-linea {
        padding: 0;
    }
}

body > header > div.zona-segura > nav.menu > ul.segunda-linea {
	width: auto;
    left: 0;
    top: 0;

    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.zona-segura > nav.menu > ul.segunda-linea {
        left: 2%;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.menu > ul.segunda-linea {
        left: 0;
    }
}

body > header > div.zona-segura > nav.menu > ul.primera-linea > li {
	-webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

body > header > div.zona-segura > nav.menu > ul > li {
	position: relative;
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.menu > ul > li {
        margin: 5px 5% 0;
    }
}

body > header > div.zona-segura > nav.menu > ul > li > a {
	display: block;
    padding: 0 10px;
    height: 60px;
    color: white;
    font-family: arimo, Arial, Helvetica, sans-serif;
    font-size: 1.125em;

    background-color: rgba(255,255,255,0);

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > header > div.zona-segura > nav.menu > ul > li > a {
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.menu > ul > li > a {
        font-size: 1.125em;
        color: #EB1289;
        background: white;
        border: solid 3px #EB1289;
        height: 50px;
    }
}

body > header > div.zona-segura > nav.menu > ul > li:hover > a, body > header > div.zona-segura > nav.menu > ul > li > a.seleccionado {
	color: #EB1289;
    background-color: rgba(255,255,255,1);
}

@media screen and (max-width: 480px) {
    body > header > div.zona-segura > nav.menu > ul > li:hover > a, body > header > div.zona-segura > nav.menu > ul > li > a.seleccionado {
        color: white;

        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eb1289+30,eb1289+30,ba105c+100 */
        background: #eb1289; /* Old browsers */
        background: -moz-linear-gradient(top,  #eb1289 30%, #eb1289 30%, #ba105c 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top,  #eb1289 30%,#eb1289 30%,#ba105c 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom,  #eb1289 30%,#eb1289 30%,#ba105c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb1289', endColorstr='#ba105c',GradientType=0 ); /* IE6-9 */
    }
}

body > header > div.zona-segura > nav.menu > ul.segunda-linea > li > a {
	padding: 0 8px;
}

body > header > div.zona-segura > nav.menu > ul > li > ul {
	background-color: white;

    position: absolute;
    left: -5000px;
}

@media screen and (max-width: 800px) {
    body > header > div.zona-segura > nav.menu > ul > li > ul {
        display: none;
    }
}

body > header > div.zona-segura > nav.menu > ul > li:hover > ul {
	left: 0;
}

body > header > div.zona-segura > nav.menu > ul > li > ul > li > a {
	display: block;
    padding: 5px;
    white-space: nowrap;
    font-family: arimo, Arial, Helvetica, sans-serif;
    font-size: .875em;
    line-height: 120%;
    color: #79409B;
    border-top: solid 1px black;

    -webkit-box-shadow: 0 0 4px 0 rgba(84,44,107,.65);
    box-shadow: 0 0 4px 0 rgba(84,44,107,.65);

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > header > div.zona-segura > nav.menu > ul > li > ul > li:first-child > a {
	border-top: none;
}

body > header > div.zona-segura > nav.menu > ul > li > ul > li > a:hover {
	color: white;
    background-color: #ED217C;
}

body > header > div.usuario {
	/*display: none;*/
    display: block;

    width: 100%;
    background-color: #E9E9E9;
    padding: 5px;

    position: absolute;
    top: 60px;
    z-index: 3;
}

@media screen and (max-width: 480px) {
    body > header > div.usuario {
        top: 0;
        font-size: .875em;
    }
}

body > header > div.usuario > div.zona-segura {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

body > header > div.usuario > div.zona-segura > span {
	font-family: arimo, Arial, Helvetica, sans-serif;
    font-size: 1em;
    margin: 0 5px;
    color: #0474BA;
}

body > header > div.usuario > div.zona-segura > span.saludo {
	color: #6B2C91;
	font-size: .9em;
}

body > header > div.usuario > div.zona-segura > span.nombre {
	font-size: 1em;
}

body > header > div.usuario > div.zona-segura > span.separador {
	color: #999;
	font-size: .9em;
}

body > header > div.usuario > div.zona-segura > span.enlace > a {
	color: #333;
	font-size: .8em;
	font-style: italic;
}

body > header > div.usuario > div.zona-segura > span.enlace > a:hover {
	text-decoration: underline;
}

body > main {
	background-color: #F7F0FB;
    background-image: url(../img/fondo-main.png);
    background-repeat: repeat;

    position: relative;
    z-index: 1;
}

body > main > div.zona-segura {
	background-color: white;
    padding: 50px;

    -webkit-box-shadow: 0 0 20px 0 rgba(154,35,98,.85);
    box-shadow: 0 0 20px 0 rgba(154,35,98,.85);
}

@media screen and (max-width: 800px) {
    body > main > div.zona-segura {
        padding: 50px 5%;
    }
}

body > footer {
	position: relative;
    z-index: 2;
}

body > footer > div.cintillo {
	padding: 16px 0;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ee2092+0,a00e50+100 */
    background: #ee2092; /* Old browsers */
    background: -moz-linear-gradient(top,  #ee2092 0%, #a00e50 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ee2092 0%,#a00e50 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ee2092 0%,#a00e50 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee2092', endColorstr='#a00e50',GradientType=0 ); /* IE6-9 */
}

@media screen and (max-width: 800px) {
    body > footer > div.cintillo {
        padding: 40px 0;
    }
}

body > footer > div.cintillo > div.zona-segura {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;

    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

body > footer > div.cintillo > div.zona-segura > section {
	border-left: solid 1px #CACAD9;
    border-right: solid 1px black;
    min-height: 125px;
}

@media screen and (max-width: 800px) {
    body > footer > div.cintillo > div.zona-segura > section {
        border-left: none;
        border-right: none;
        min-height: inherit;
        margin-top: 40px;
    }
}

body > footer > div.cintillo > div.zona-segura > section:first-child {
	border-left: none;
}

@media screen and (max-width: 800px) {
    body > footer > div.cintillo > div.zona-segura > section:first-child {
        margin-top: 0;
    }
}

body > footer > div.cintillo > div.zona-segura > section:last-child {
	border-right: none;
}

body > footer > div.cintillo > div.zona-segura > section > h2 {
	text-align: center;
    font-size: 1.375em;
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
}

body > footer > div.cintillo > div.zona-segura > section.telefonos, body > footer > div.cintillo > div.zona-segura > section.redes-sociales {
	width: 28%;
}

@media screen and (max-width: 800px) {
    body > footer > div.cintillo > div.zona-segura > section.telefonos, body > footer > div.cintillo > div.zona-segura > section.redes-sociales {
        width: 100%;
    }
}

body > footer > div.cintillo > div.zona-segura > section.direccion {
	width: 44%;
}

@media screen and (max-width: 800px) {
    body > footer > div.cintillo > div.zona-segura > section.direccion {
        width: 100%;
    }
}

body > footer > div.cintillo > div.zona-segura > section.telefonos > a {
	display: table;
    margin: 0 auto 5px;
    font-size: 1.125em;
    color: #EBEBF8;
}

body > footer > div.cintillo > div.zona-segura > section.telefonos > a:last-child {
	margin-bottom: 0;
}

body > footer > div.cintillo > div.zona-segura > section.direccion > div.texto {
	font-size: 1.125em;
    text-align: center;
    color: #EBEBF9;
    line-height: 120%;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a {
	display: block;
    width: 42px;
    height: 42px;
    margin: 0 2px;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a:first-child {
	margin-left: 0;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a:last-child {
	margin-right: 0;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a > div {
	width: 42px;
    height: 42px;
    background-image: url(../img/redes-sociales.png);

    position: relative;
    top: 0;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a:hover > div {
	top: -5px;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a.twitter > div {
	background-position: 0 top;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a.facebook > div {
	background-position: -50px top;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a.skype > div {
	background-position: -100px top;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a.youtube > div {
	background-position: -150px top;
}

body > footer > div.cintillo > div.zona-segura > section.redes-sociales > div.enlaces > a.whatsapp > div {
	background-position: -200px top;
}

body > footer > div.firma {
	padding: 12px;
  margin-bottom: 22px;
}

@media screen and (max-width: 800px) {
    body > footer > div.firma {
        margin-bottom: 45px;
    }
}

body > footer > div.firma > a {
	display: table;
    margin: 0 auto;
    font-size: 1.125em;
    color: #6D6D7E;
    text-align: center;
    line-height: 120%;
}







/*
    TÍTULO DE SECCIONES - INICIO
*/

.titulo {
	display: table;
    margin: 0 auto;
    padding: 15px 30px 15px 90px;
    font-family: cicle-gordita, Arial, Helvetica, sans-serif;
    font-size: 1.875em;
    line-height: 120%;
    text-align: center;
    color: #06558A;

    -webkit-border-radius: 40px;
    border-radius: 40px;

    -webkit-box-shadow: inset 0 0 4px 2px rgba(0,0,0,.15), 0 10px 10px -5px rgba(7,96,155,.5);
    box-shadow: inset 0 0 4px 2px rgba(0,0,0,.15), 0 10px 10px -5px rgba(7,96,155,.5);

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7fbfa+0,e9e9e9+100 */
    background: #f7fbfa; /* Old browsers */
    background: -moz-linear-gradient(top,  #f7fbfa 0%, #e9e9e9 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #f7fbfa 0%,#e9e9e9 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #f7fbfa 0%,#e9e9e9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7fbfa', endColorstr='#e9e9e9',GradientType=0 ); /* IE6-9 */

    position: relative;

    -webkit-animation-name: aparecer-hacia-abajo;
	-moz-animation-name: aparecer-hacia-abajo;
	-o-animation-name: aparecer-hacia-abajo;
	animation-name: aparecer-hacia-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;
}

@media screen and (max-width: 480px) {
    .titulo {
        padding: 21px 30px 21px 90px;
        font-size: 1.25em;
    }
}

.titulo:before {
	content: '';
    display: block;
    width: 50px;
    height: 50px;
    border: solid 3px white;

    -webkit-border-radius: 50%;
    border-radius: 50%;

    -webkit-box-shadow: 0 0 5px 0 rgba(6,85,138,.65);
    box-shadow: 0 0 5px 0 rgba(6,85,138,.65);

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0b95f0+25,06558a+100 */
    background: url(../img/fondo-titulo-comcavis.png), #0b95f0; /* Old browsers */
    background: url(../img/fondo-titulo-comcavis.png), -moz-radial-gradient(center, ellipse cover,  #0b95f0 25%, #06558a 100%); /* FF3.6-15 */
    background: url(../img/fondo-titulo-comcavis.png), -webkit-radial-gradient(center, ellipse cover,  #0b95f0 25%,#06558a 100%); /* Chrome10-25,Safari5.1-6 */
    background: url(../img/fondo-titulo-comcavis.png), radial-gradient(ellipse at center,  #0b95f0 25%,#06558a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b95f0', endColorstr='#06558a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    background-repeat: no-repeat;
    background-position: center;

    position: absolute;
    left: 25px;
    top: 5px;
}

/*
    TÍTULO DE SECCIONES - FIN
*/






/*
    MENÚ DE VOLUNTARIADO Y DONACIÓN HORIZONTAL - INICIO
*/

nav.voluntariado-y-donacion-horizontal {
	margin-top: 25px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;

    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media screen and (max-width: 800px) {
    nav.voluntariado-y-donacion-horizontal {
        -webkit-justify-content: space-around;
        -ms-flex-pack: justify;
        justify-content: space-around;
    }
}

nav.voluntariado-y-donacion-horizontal > a > div.contenedor {
	margin-top: 50px;
    display: block;
    width: 412px;
    max-width: 100%;
    padding: 10px 0;
    background-color: #BABABD;

    -webkit-border-radius: 10px;
    border-radius: 10px;

    -webkit-box-shadow: 5px 0 10px -5px rgba(0,0,0,.95);
    box-shadow: 5px 0 10px -5px rgba(0,0,0,.95);

    position: relative;
    top: 0;
    z-index: 1;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

@media screen and (max-width: 480px) {
    nav.voluntariado-y-donacion-horizontal > a > div.contenedor {
        width: 300px;
    }
}

nav.voluntariado-y-donacion-horizontal > a:hover > div.contenedor {
	top: -10px;
}

nav.voluntariado-y-donacion-horizontal > a > div.contenedor > div.foto {
	width: 100%;
    height: 155px;
    background-color: white;
    background-repeat: no-repeat;
    background-position: right center;

    position: relative;
    z-index: 2;
}

nav.voluntariado-y-donacion-horizontal > a.voluntariado > div.contenedor > div.foto {
	background-image: url(../img/fondo-boton-voluntariado.jpg);
}

nav.voluntariado-y-donacion-horizontal > a.donacion > div.contenedor > div.foto {
	background-image: url(../img/fondo-boton-donacion.jpg);
}

nav.voluntariado-y-donacion-horizontal > a > div.contenedor > div.letras {
	width: 228px;
    height: 155px;
    padding: 20px 40px 20px 12px;
    background-repeat: no-repeat;
    background-position: left center;

    position: absolute;
    left: 0;
    top: 10px;
    z-index: 3;
}

nav.voluntariado-y-donacion-horizontal > a.voluntariado > div.contenedor > div.letras {
	background-image: url(../img/fondo-boton-voluntariado-letras.png);
}

nav.voluntariado-y-donacion-horizontal > a.donacion > div.contenedor > div.letras {
	background-image: url(../img/fondo-boton-donacion-letras.png);
}

nav.voluntariado-y-donacion-horizontal > a > div.contenedor > div.letras > h4 {
	font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 150%;
    text-align: center;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

nav.voluntariado-y-donacion-horizontal > a.voluntariado > div.contenedor > div.letras > h4 {
	font-size: 1.125em;
    color: white;
}

nav.voluntariado-y-donacion-horizontal > a.voluntariado:hover > div.contenedor > div.letras > h4 {
	text-shadow: 0 0 5px #000;
}

nav.voluntariado-y-donacion-horizontal > a.donacion > div.contenedor > div.letras > h4 {
	font-size: 1.5em;
    color: #444;
}

nav.voluntariado-y-donacion-horizontal > a.donacion:hover > div.contenedor > div.letras > h4 {
	text-shadow: 0 0 5px #fff;
}

nav.voluntariado-y-donacion > a > div.contenedor > div.letras > div.mas {
	font-family: oxygen, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    line-height: 120%;
    text-align: center;
}

nav.voluntariado-y-donacion-horizontal > a:hover > div.contenedor > div.letras > div.mas {
	text-decoration: underline;
}

nav.voluntariado-y-donacion-horizontal > a.voluntariado > div.contenedor > div.letras > div.mas {
	color: white;
    margin-top: 30px;
}

nav.voluntariado-y-donacion-horizontal > a.donacion > div.contenedor > div.letras > div.mas {
	color: #444;
    margin-top: 20px;
}

/*
    MENÚ DE VOLUNTARIADO Y DONACIÓN HORIZONTAL - FIN
*/







/*
    MENÚ DE VOLUNTARIADO Y DONACIÓN VERTICAL - INICIO
*/

nav.voluntariado-y-donacion-vertical > a {
	display: block;
    margin-top: 30px;
    text-align: center;
    line-height: 120%;
}

nav.voluntariado-y-donacion-vertical > a > div.contenedor {
	border-top: solid 10px #BABABD;

     -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;

    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
}

nav.voluntariado-y-donacion-vertical > a > div.contenedor > h4 {
	height: 48px;
    background-color: #146496;
    font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    color: white;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

nav.voluntariado-y-donacion-vertical > a:hover > div.contenedor > h4 {
	background-color: #54A9E2;
}

nav.voluntariado-y-donacion-vertical > a > div.contenedor > div.foto {
	height: 82px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

nav.voluntariado-y-donacion-vertical > a:hover > div.contenedor > div.foto {
	opacity: .7;
}

nav.voluntariado-y-donacion-vertical > a.voluntariado > div.contenedor > div.foto {
	background-image: url(../img/fondo-boton-voluntariado-2.jpg);
}

nav.voluntariado-y-donacion-vertical > a.donacion > div.contenedor > div.foto {
	background-image: url(../img/fondo-boton-donaciones-2.jpg);
}

nav.voluntariado-y-donacion-vertical > a > div.mas {
	font-family: oxygen, Arial, Helvetica, sans-serif;
    color: #3f3f3f;
    margin-top: 10px;
}

nav.voluntariado-y-donacion-vertical > a:hover > div.mas {
	text-decoration: underline;
}

/*
    MENÚ DE VOLUNTARIADO Y DONACIÓN VERTICAL - FIN
*/







/*
    MENÚ DE NAVEGACIÓN PARA VARIOS REGISTROS - INICIO
*/

nav.navegacion {
    display: table;
    margin: 50px auto 0;
}

nav.navegacion > h4 {
    display: none;
}

nav.navegacion > ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

nav.navegacion > ul > li {
    margin: 0 5px;
}

nav.navegacion > ul > li > a {
    display: block;
    font-family: cicle-gordita, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: #868695;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

nav.navegacion > ul > li > a:hover {
    color: #430256;
}

nav.navegacion > ul > li > a > div.icono {
    width: 34px;
    height: 40px;
    margin: 0 auto 10px;
    background-image: url(../img/navegacion.png);
}

nav.navegacion > ul > li.primera > a > div.icono {
    background-position: 0 0;
}

nav.navegacion > ul > li.primera > a:hover > div.icono {
    background-position: 0 -40px;
}

nav.navegacion > ul > li.anterior > a > div.icono {
    background-position: -34px 0;
}

nav.navegacion > ul > li.anterior > a:hover > div.icono {
    background-position: -34px -40px;
}

nav.navegacion > ul > li.siguiente > a > div.icono {
    background-position: -68px 0;
}

nav.navegacion > ul > li.siguiente > a:hover > div.icono {
    background-position: -68px -40px;
}

nav.navegacion > ul > li.ultima > a > div.icono {
    background-position: -102px 0;
}

nav.navegacion > ul > li.ultima > a:hover > div.icono {
    background-position: -102px -40px;
}

/*
    MENÚ DE NAVEGACIÓN PARA VARIOS REGISTROS - FIN
*/

#privacidad-cintillo {
  display: block;
  width: 100%;
  padding: 5px 5%;
  background-color: green;
  color: white;
  font-size: .625em;
  text-align: center;
  line-height: 120%;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ee2092+0,a00e50+100 */
  background: #ee2092; /* Old browsers */
  background: -moz-linear-gradient(top,  #ee2092 0%, #a00e50 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #ee2092 0%,#a00e50 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #ee2092 0%,#a00e50 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee2092', endColorstr='#a00e50',GradientType=0 ); /* IE6-9 */

  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
}
