/*
* CSS: Súper Humanos / Ahora Noticias / Mega
* Por Iván Hermosilla Araya
* Última actualización: 04/12/2018
*/


/* Contenidos
–––––––––––––––––––––
- 01. Estilos base
- 02. Cuadrícula
- 03. Tipografía
- 04. Links
- 05. Imágenes
- 06. Varios
- 07. Responsive base
- 08. Header
- 09. Slider
- 10. Ad
- 11. Otros destinos
- 12. Footer
- 13. Menú Overlay
-----------------------
- 14. Portada destinos
- 15. Información Útil
- 16. Artículos/Notas

*/

/* 01. Estilos base
––––––––––––––––––––––––––– */

*,
*:after,
*:before {
    box-sizing: inherit;
}
html {
    font-size: 62.5%;
}
body {
    color: #606c76;
    font-family: 'Open-Sans-Regular';
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: .01em;
    line-height: 1.6;
    background-color: #302f64;
    margin: 0px;
}
body.home {
    background-image: url(../images/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;  
}

body p::selection, body h1::selection, body h2::selection, body h3::selection, body a::selection, body span::selection {
    background: #f5b31e;
    color: #fff;
}

/* Firefox */
body p::-moz-selection, body h1::-moz-selection, body h2::-moz-selection, body h3::-moz-selection, body a::-moz-selection, body span::-moz-selection {
    background: #f5b31e;
    color: #fff;
}
    

/* 02. Cuadrícula
––––––––––––––––––––––––––– */

.contenedor { 
    margin: 0 auto;
    max-width: 116.0rem; /* ancho de contenedor general */
    padding: 0 2.0rem;
    position: relative;
    width: 100%;
}
.fila {
    display: flex;
    flex-direction: row;
    padding: 0;
    width: 100%;
}
.fila.fila-no-padding {
    padding: 0;
}
.fila.fila-no-padding > .columna {
    padding: 0;
}
.fila.fila-wrap {
    flex-wrap: wrap;
}
.fila.fila-top {
    align-items: flex-start;
}
.fila.fila-bottom {
    align-items: flex-end;
}
.fila.fila-center {
    align-items: center;
}
.fila.fila-stretch {
    align-items: stretch;
}
.fila.fila-baseline {
    align-items: baseline;
}
.fila .columna {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}
.fila .columna.columna-offset-10 {
    margin-left: 10%;
}
.fila .columna.columna-offset-20 {
    margin-left: 20%;
}
.fila .columna.columna-offset-25 {
    margin-left: 25%;
}
.fila .columna.columna-offset-33, .fila .columna.columna-offset-34 {
    margin-left: 33.3333%;
}
.fila .columna.columna-offset-50 {
    margin-left: 50%;
}
.fila .columna.columna-offset-66, .fila .columna.columna-offset-67 {
    margin-left: 66.6666%;
}
.fila .columna.columna-offset-75 {
    margin-left: 75%;
}
.fila .columna.columna-offset-80 {
    margin-left: 80%;
}
.fila .columna.columna-offset-90 {
    margin-left: 90%;
}
.fila .columna.columna-10 {
    flex: 0 0 10%;
    max-width: 10%;
}
.fila .columna.columna-20 {
    flex: 0 0 20%;
    max-width: 20%;
}
.fila .columna.columna-25 {
    flex: 0 0 25%;
    max-width: 25%;
}
.fila .columna.columna-33, .fila .columna.columna-34 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}
.fila .columna.columna-40 {
    flex: 0 0 40%;
    max-width: 40%;
}
.fila .columna.columna-50 {
    flex: 0 0 50%;
    max-width: 50%;
}
.fila .columna.columna-60 {
    flex: 0 0 60%;
    max-width: 60%;
}
.fila .columna.columna-66, .fila .columna.columna-67 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
}
.fila .columna.columna-75 {
    flex: 0 0 75%;
    max-width: 75%;
}
.fila .columna.columna-80 {
    flex: 0 0 80%;
    max-width: 80%;
}
.fila .columna.columna-90 {
    flex: 0 0 90%;
    max-width: 90%;
}
.fila .columna .columna-top {
    align-self: flex-start;
}
.fila .columna .columna-bottom {
    align-self: flex-end;
}
.fila .columna .columna-center {
    -ms-grid-fila-align: center;
    align-self: center;
}

/* 03. Tipografía
––––––––––––––––––––––––––– */

b,
strong {
    font-weight: bold;
}
p {
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    letter-spacing: -.1rem;
    margin-bottom: 2.0rem;
    margin-top: 0;
}
h1 {
    font-size: 4.6rem;
    line-height: 1.2;
}
h2 {
    font-size: 3.6rem;
    line-height: 1.25;
}
h3 {
    font-size: 2.8rem;
    line-height: 1.3;
}
h4 {
    font-size: 2.2rem;
    letter-spacing: -.08rem;
    line-height: 1.35;
}
h5 {
    font-size: 1.8rem;
    letter-spacing: -.05rem;
    line-height: 1.5;
}
h6 {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.4;
}

/*Uni Sans*/

@font-face {
  font-family: 'Uni-Sans-Regular';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregular.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregular.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregular.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregular.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregular.svg#uni_sans_regularregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Light';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanslight.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanslight.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanslight.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanslight.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanslight.svg#uni_sans_regularregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Regular-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregularitalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregularitalic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregularitalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregularitalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansregularitalic.svg#uni_sans_regular_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Book';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbook.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbook.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbook.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbook.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbook.svg#uni_sans_bookregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Book-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbookitalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbookitalic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbookitalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbookitalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbookitalic.svg#uni_sans_book_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-SemiBold';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibold.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibold.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibold.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibold.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibold.svg#uni_sans_semiboldregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-SemiBold-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibolditalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibolditalic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibolditalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibolditalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisanssemibolditalic.svg#uni_sans_semibold_italicIt') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Bold';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbold.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbold.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbold.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbold.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbold.svg#uni_sans_boldregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Bold-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbolditalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbolditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbolditalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbolditalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansbolditalic.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Heavy';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavy.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavy-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavy.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavy.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavy.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Uni-Sans-Heavy-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavyitalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavyitalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavyitalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavyitalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/uni-sans/unisansheavyitalic.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*Open Sans*/

@font-face {
  font-family: 'Open-Sans-Bold';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Bold.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Bold.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Bold.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Bold.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Bold-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-BoldItalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-BoldItalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-BoldItalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-BoldItalic.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Extra-Bold';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBold.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBold.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBold.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBold.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Extra-Bold-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBoldItalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBoldItalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBoldItalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-ExtraBoldItalic.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Italic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Italic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Italic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Italic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Italic.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Light';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Light.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Light.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Light.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Light.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Light.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Light-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-LightItalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-LightItalic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-LightItalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-LightItalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-LightItalic.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Regular';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Regular.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Regular.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Regular.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-Regular.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Semi-Bold';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBold.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBold.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBold.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBold.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans-Semi-Bold-Italic';
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBoldItalic.eot');
    src: url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBoldItalic.woff') format('woff'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBoldItalic.ttf') format('truetype'),
         url('https://servicios-mega.mdstrm.com/resources/fonts/opensans/OpenSans-SemiBoldItalic.svg#uni_sans_bold_italicitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* 04. Links
––––––––––––––––––––––––––– */

a {
    color: #fff;
    text-decoration: none;
}
a:focus, a:hover {
    color: #fff;
}

/* 05. Imágenes
––––––––––––––––––––––––––– */

img {
    max-width: 100%;
}

/* 06. Varios
––––––––––––––––––––––––––– */

.clearfix:after { /* Elimina elementos flotantes */
    clear: both;
    content: ' ';
    display: table;
} 
.float-left { /* Elemento que flota a la izquierda */
    float: left;
}
.float-right { /* Elemento que flota a la derecha */
    float: right;
} 
hr { /* Línea divisoria */
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* 07. Responsive base
––––––––––––––––––––––––––– */
@media (min-width: 40.0rem) {
.fila {
    flex-direction: row;
    width: calc(100%);
}
.fila .columna {
    margin-bottom: inherit;
  }
}

/* 08. Header
––––––––––––––––––––––––––– */

/*normal*/
header.large {
    position:fixed;
    height: 150px;
    display:block;
    width: 100%;
    z-index:9;
    text-align:center;
    color: #f2f2f2;
    top:0px;
    padding-top: 10px;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
    background: transparent;
    border: none;
}
header.large .fila {
    width: 1200px;
    margin: 0 auto;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.large .columna.logo {
    text-align: center;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.large .columna.logo img {
    width: 320px;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.large .columna.menu {
    text-align: left;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.large .columna.ahn img.logo-ahn {
    width: 60px;
    float:right;
    display: block;
    position: relative;
    padding-top:60px;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.large .columna.menu .icono-menu {
    display: block;
    position: relative;
    font-size: 30px;
    padding-top: 60px;
    cursor: pointer;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}

/*minimizado*/
header.small {
    position:fixed;
    height: 120px;
    display:block;
    width: 100%;
    z-index:99;
    text-align:center;
    color: #f2f2f2;
    top:0px;
    padding-top: 0px;
    background-color: rgba(32, 33, 75, 0.97);
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    z-index: 99999;
}
header.small .fila {
    width: 1200px;
    margin: 0 auto;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.small .columna.logo {
    text-align: center;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.small .columna.logo img {
    width: 200px;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.small .columna.menu {
    text-align: left;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.small .columna.ahn img.logo-ahn {
    width: 60px;
    float:right;
    display: block;
    position: relative;
    padding-top:36px;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}
header.small .columna.menu .icono-menu {
    display: block;
    position: relative;
    font-size: 30px;
    padding-top: 46px;
    cursor: pointer;
    transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
}


/* 09. Footer
––––––––––––––––––––––––––– */

footer {
    height: 100px;
    background-color: #20204b;
    padding: 0px;
}
footer .fila {
    width: 1200px;
    margin: 0 auto;
}
footer .fila .columna.izq {
    text-align: left;
}
footer .fila .columna.der {
    text-align: right;
}
footer .logo-ahn {
    width: 50px;
    padding-top: 30px;
}
footer .logo-mega {
    width: 50px !important;
    padding-top: 24px;
}

/* 10. Menú Overlay
––––––––––––––––––––––––––– */

.overlay {   
    height: 0;
    width: 100%;
    position: fixed; 
    z-index: 9999999;
    left: 0;
    top: 0;
    background-color: rgba(21, 22, 70, 0.95);
    overflow: hidden; 
    overflow-y: scroll;
    transition: 0.5s; 
}
.contenido-overlay{
    position: relative;
    top: 0%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.contenido-overlay img.logo-super-humanos {
    width: 250px;
}
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #fff;
    display: block;
    transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}
.overlay .cerrar-menu {
    position: absolute;
    top: 70px;
    right: 30px;
    font-size: 30px;
    z-index: 9999;
}

/*item menu*/

.contenido-overlay .items {
    margin-top: 50px;
    display: block;
}
.contenido-overlay .items .columna {
    display: block;
    width: 20%;
    float: left;
    height: 300px;
}


.contenido-overlay .item-menu {
    border: 1px solid #fff;
    padding: 0;
    width: 150px;
    height: 150px;
    margin: auto;
    text-align: center;
    display: block;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: transform 0.1s cubic-bezier(0, 1.8, 1, 1.8);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-repeat: no-repeat;
    background-size: cover;
}
.contenido-overlay .item-menu:hover {
    width: 200px;
    height: 200px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 10px 10px 81px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 10px 10px 81px 0px rgba(0,0,0,0.5);
    box-shadow: 10px 10px 81px 0px rgba(0,0,0,0.5);
}

.contenido-overlay .item-menu .ciudad {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-family: 'Uni-Sans-Bold';
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    margin-top: 60px;
} 

.contenido-overlay .item-menu:hover .ciudad {
    margin-top: 80px;
}


@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .cerrar-menu {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}


main#principal {
    margin-top: 250px;
    background-color: transparent;
}

/* variables on//off  menu overlay*/
.contenido-overlay .item-menu .proximamente {
    display: none;
}
.contenido-overlay .item-menu.off .proximamente {
    display: block;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-family: 'Uni-Sans-Bold';
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    margin-top: 52px;
    line-height: 1.1;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.contenido-overlay .item-menu.off .proximamente i {
    font-size: 30px;
}
.contenido-overlay .item-menu.off:hover .proximamente {
    margin-top: 82px;
}
.contenido-overlay .item-menu.off .ciudad {
    display: none;
}



/* 11. Home: Top Content
––––––––––––––––––––––––––– */

#principal section.top-content {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}
#principal section.top-content .tc-contenedor {
    width: 800px;
    margin: 0 auto;
}
#principal section.top-content h1 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 64px;
}
#principal section.top-content .tc-contenedor p {
    font-family: 'Open-Sans-Regular';
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    padding-top: 20px;
    line-height: 26px;
    padding-bottom: 20px;
}
#principal section.top-content .tc-contenedor h2 {
    font-family: 'Uni-Sans-Regular';
    color: #d77a0d;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
}
#principal section.top-content .tc-contenedor p span {
    padding: 0px 14px;
    color: #ffffff;
    font-family: 'Open-Sans-Bold';
    border: 1px solid rgba(255,255,255,0.25);
}
#principal section.top-content .tc-contenedor .columna.parrafo {
    background-color: rgba(0,0,0,0.15);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    padding-bottom: 10px;
}


/* 12. Home: Capítulos
––––––––––––––––––––––––––– */

#principal section.sh-capitulos {
    width: 98%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    height: auto !important;
    margin: 0px 14px;
}
#principal section.sh-capitulos .fila {
    width: 100%;
    display: inline-block;
    position: relative;
    height: 750px;
}
#principal section.sh-capitulos .fila + .fila {
    width: 100%;
    display: inline-block;
    position: relative;
    height: 650px;
}

#principal section.sh-capitulos .fila h2 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    font-size: 36px;
    margin-left: 40px;
}

#principal section.sh-capitulos .fila .columna.capitulo.off .descripcion-cap .fila {
    height: auto;
}

#principal section.sh-capitulos .fila .columna.capitulo {
    position: relative;
    font-family: 'Open-Sans-Regular';
    color: white;
	float:left;
	width: 25%;
    margin: 0%;
    background: #ddd;
    padding: 0px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#principal section.sh-capitulos .fila + .fila .columna.capitulo {
	width: 20%;
}

#principal section.sh-capitulos .fila .columna.capitulo:hover {
    margin-top: 30px;
    transform: scale(1.05);
    z-index: 9999;
    -webkit-box-shadow: 10px 10px 81px 0px rgba(0,0,0,0.95);
    -moz-box-shadow: 10px 10px 81px 0px rgba(0,0,0,0.95);
    box-shadow: 10px 10px 81px 0px rgba(0,0,0,0.95);
}

#principal section.sh-capitulos .fila .columna.capitulo:last-child {
    margin-right:0;
}
#principal section.sh-capitulos .fila .columna.capitulo:before{
	content:"";
	display:block;
	padding-top:100%;
    float: left; 
}
#principal section.sh-capitulos .fila .columna.capitulo .imagen-cap {
    padding: 20px;
    position: absolute;
    bottom: 0px;
    width: 85%;
    height: 85%;
}
#principal section.sh-capitulos .fila .columna.capitulo .imagen-cap h2 {
    font-family: 'Uni-Sans-Bold';
    font-size: 36px;
    line-height: 36px;
    margin: 0;
    text-transform: uppercase;
    position: absolute;
    bottom: 40px;
    text-align: left;
}
#principal section.sh-capitulos .fila .columna.capitulo .imagen-cap p {
    font-family: 'Uni-Sans-Bold';
    font-size: 16px;
    margin: 0;
    margin-top: -10px;
    position: absolute;
    bottom: 20px;
}
#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap {
    padding: 20px;
    padding-bottom: 0px;
    position: absolute;
    bottom: -140px;
    height: 140px;
    border: 1px solid #4b4984;
    background-color: #35358e;
}
#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap p {
    font-family: 'Open-Sans-Regular';
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    line-height: 20px;
}
#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap .left {
    width: 80%;
    float: left;
    text-align: left;
}
#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap .right {
    width: 20%;
    float: left;
}

#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap .right .btn .contenido{
    border: 1px solid #fff;
    padding:0;
    width:40px;
    height:40px;
    margin:auto;
    text-align:center;
    display:block;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    transition: transform  0.1s cubic-bezier(0, 1.8, 1, 1.8);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap .right .btn {
    float:right;
    padding-top: 30px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap .right .btn .contenido:hover{
    transform:rotate(45deg) scale(1) translateX(0px);
    background-color:#D67A0C;
    border: 1px solid #D67A0C;
}

#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap .right .btn .contenido .icono {
    color:white;
    position: relative;
    overflow:hidden;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    font-size:1vw;
    text-transform:uppercase;
}
#principal section.sh-capitulos .fila .columna.capitulo .descripcion-cap .fila {
    height: auto;
}



/*estilos por capitulo*/

/*base*/
#principal section.sh-capitulos .fila .columna.capitulo {
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#principal section.sh-capitulos .fila .columna.capitulo:hover {
    background-repeat: no-repeat;
    background-size: cover;
}


/*-----*/

#principal section.sh-capitulos .fila .columna.capitulo:hover .descripcion-cap .right .btn .contenido {
    transform: rotate(45deg) scale(1) translateX(0px);
    background-color: #D67A0C;
    border: 1px solid #D67A0C;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

/*variables capitulos on//off*/

#principal section.sh-capitulos .fila .columna.capitulo .proximamente {
    display: none;
}
#principal section.sh-capitulos .fila .columna.capitulo.off .proximamente {
    display: block;
    text-align: center;
    position: relative;
    font-size: 18px;
    font-family: 'Open-Sans-Regular';
    color: rgba(255,255,255,0.2);
}
#principal section.sh-capitulos .fila .columna.capitulo.off .proximamente i {
    font-size: 40px;
}
#principal section.sh-capitulos .fila .columna.capitulo.off .left, #principal section.sh-capitulos .fila .columna.capitulo.off .right {
    display: none;
}
#principal section.sh-capitulos .fila .columna.capitulo.off .descripcion-cap {
    padding: 30%;
    padding-bottom: 0px;
    padding-top: 20px;
    background-color: #212161;
}
#principal section.sh-capitulos .fila + .fila .columna.capitulo.off .descripcion-cap {
    padding: 25%;
    padding-bottom: 0px;
    padding-top: 20px;
}

/* 13. Ads
––––––––––––––––––––––––––– */
.contenedor-ads {
    width: 100%;
    display: block;
    position: relative;
}
.contenedor-ads .ads {
    width: 970px;
    min-width: 768px;
    margin: 0 auto;
    height: auto;
    min-height: 90px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}

.contenedor-ads .ads .top, .contenedor-ads .ads .bottom1 {
    background-color: #3b3b69;
    background-repeat: repeat;
    min-width: 728px;
    width: auto;
    min-height: 90px;
    height: auto;
    display: block;
    text-align: center;
}
body.capitulo .contenedor-ads {
    padding-top: 30px;
}


/* 14. Capitulos
––––––––––––––––––––––––––– */

/**background por capitulo**/
body.capitulo {
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;    
}

/*top content */
body.capitulo #principal section.top-content {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}
body.capitulo #principal section.top-content .contenedor-titulo {
    width: 1200px;
    margin: 0 auto;
}
body.capitulo #principal section.top-content h1 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 80px;
    margin-bottom: 0px;
    text-transform: none;
}
body.capitulo #principal section.top-content h2 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 26px;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin-top: -20px;
}
body.capitulo #principal section.top-content p {
    font-family: 'Open-Sans-Regular';
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 26px;
    width: 50%;
}
body.capitulo #principal section.top-content ul {
    list-style: none;
    padding: 0px;
    height: 50px;
    margin-top: 30px;
}
body.capitulo #principal section.top-content ul li {
    float: left;
}
body.capitulo #principal section.top-content a.ver-capitulo {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    margin: 0;
    font-size: 16px;
    margin-bottom: 0px;
    text-transform: uppercase;
    background-color: #ad701e;
    padding: 16px 40px;
    border: 1px solid #ad701e;
    margin-right: 30px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body.capitulo #principal section.top-content a.ver-capitulo:hover {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    margin: 0;
    font-size: 16px;
    margin-bottom: 0px;
    text-transform: uppercase;
    background-color: #20214b;
    padding: 16px 40px;
    border: 1px solid #20214b;
    margin-right: 30px;
}
body.capitulo #principal section.top-content a.otros-capitulos {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    margin: 0;
    font-size: 16px;
    margin-bottom: 0px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
body.capitulo #principal section.top-content a.otros-capitulos:hover {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    margin: 0;
    font-size: 16px;
    margin-bottom: 0px;
    text-transform: uppercase;
    background-color: #20214b;
    padding: 16px 40px;
    border: 1px solid #20214b;
    cursor: pointer;
}

/*item de secretos*/

body.capitulo #secretos {
    display: block;
    width: 100%;
    position: relative;
}
body.capitulo #secretos .contenedor-secretos {
    margin: 0 auto;
    width: 1200px;
    height: 400px;
    display: block;
    position: relative;
}
body.capitulo #secretos .contenedor-secretos .item-secreto {
    display: block;
    position: relative;
    width: 100%;
    float: left;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body.capitulo #secretos .contenedor-secretos .item-secreto:hover {
    margin-top: 20px;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
    z-index: 9999;
    -webkit-box-shadow: 0px 10px 20px 4px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 10px 20px 4px rgba(0,0,0,0.35);
    box-shadow: 0px 10px 20px 4px rgba(0,0,0,0.35);
}
body.capitulo #secretos .contenedor-secretos .item-secreto .texto {
    padding: 14px;
    background-color: #2f2d75;
    border: 1px solid rgba(255,255,255,0.2);
}
body.capitulo #secretos .contenedor-secretos .item-secreto .texto + .texto {
    background-color: #000;
}
body.capitulo #secretos .contenedor-secretos .item-secreto p {
    font-family: 'Uni-Sans-Bold';
    color: rgba(255,255,255,0.5);
    text-align: left;
    margin: 0;
    font-size: 18px;
    margin-bottom: 0px;
}
body.capitulo #secretos .contenedor-secretos .item-secreto h2 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 24px;
    margin-bottom: 0px;
    margin-top: -4px;
    height: 80px;
    line-height: 26px;
}

/*cover video*/
body.capitulo #secretos .contenedor-secretos .item-secreto .cover-video {
    background-color: transparent;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
body.capitulo #secretos .contenedor-secretos .item-secreto:hover .cover-video {
    background-color: #ad701e;
    cursor: pointer;
}
body.capitulo #secretos .contenedor-secretos .item-secreto:hover .cover-video img {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body.capitulo #secretos .contenedor-secretos .item-secreto:hover .cover-video img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-opacity: 0.3;
    -moz-opacity: 0.3;
    -o-opacity: 0.3;
    opacity: 0.3;
}
body.capitulo #secretos .contenedor-secretos .item-secreto .cover-video i {
    font-size: 50px;
    color: #fff;
    z-index: 9;
    position: absolute;
    top: 10%;
    left: 40%;
    -webkit-opacity: 0.6;
    -moz-opacity: 0.6;
    -o-opacity: 0.6;
    opacity: 0.6;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body.capitulo #secretos .contenedor-secretos .item-secreto:hover .cover-video i {
    -webkit-opacity: 0.75;
    -moz-opacity: 0.75;
    -o-opacity: 0.75;
    opacity: 0.75;
}

/*relacionados secretos*/

body.capitulo .img-relacionados, body.capitulo .img-relacionados div {
    margin: 0 auto;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
}
body.capitulo .img-relacionados {
    -webkit-transform: rotate(45deg) translateY(10px);
    -moz-transform: rotate(45deg) translateY(10px);
    -o-transform: rotate(45deg) translateY(10px);
    transform: rotate(45deg) translateY(10px);
    margin-left: 20px;
}
body.capitulo .img-relacionados .contenedor-img {
    width: 75px;
    height: 75px;
    -webkit-transform: rotate(-45deg) translateY(-16px);
    -moz-transform: rotate(-45deg) translateY(-16px);
    -o-transform: rotate(-45deg) translateY(-16px);
    transform: rotate(-45deg) translateY(-16px);
}
body.capitulo .img-relacionados .contenedor-img img {
    width: 100%;
    height: auto;
}
body.capitulo #secretos .contenedor-secretos .item-secreto .relacionados {
    height: 72px;
    display: block;
    position: relative;
    overflow-y: scroll;
    padding-right: 5px;
}
body.capitulo #secretos .contenedor-secretos .item-secreto .item-relacionado {
    margin-top: 0px;
    margin-bottom: 20px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body.capitulo #secretos .contenedor-secretos .item-secreto .item-relacionado:hover {
}
body.capitulo #secretos .contenedor-secretos .item-secreto .titulo-relacionado {
    border: 1px solid rgba(255,255,255,0.2);
    margin-left: 0px;
    margin-bottom: -16px;
    background-color: #3b4079;
}
body.capitulo #secretos .contenedor-secretos .item-secreto .titulo-relacionado h3 {
    font-family: 'Open-Sans-Regular';
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    line-height: 16px;
    margin: 0px;
    padding: 6px;
    padding-right: 6px;
    padding-left: 16px;
}
body.capitulo #secretos .contenedor-secretos .item-secreto .titulo-relacionado h3:before {
    content: '\e81e';
    font-family: "iconos-sh";
    margin-right: 6px;
}
body.capitulo #secretos .contenedor-secretos .item-secreto .titulo-relacionado:hover h3 {
    color: #fff;
}

/*scrollbar*/
.item-secreto .relacionados::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.item-secreto .relacionados::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.item-secreto .relacionados::-webkit-scrollbar-thumb {
  background: rgba(256, 256, 256, 0.6);
    border-radius: 5px;
}
.item-secreto .relacionados::-webkit-scrollbar-thumb:hover {
  background: rgba(256, 256, 256, 0.7);
}
.item-secreto .relacionados::-webkit-scrollbar-thumb:active {
  background: rgba(256, 256, 256, 0.7);
}
.item-secreto .relacionados::-webkit-scrollbar-track {
  background: rgba(256, 256, 256, 0.03);
  border: 0px none #ffffff;
    border-radius: 5px;
}
.item-secreto .relacionados::-webkit-scrollbar-track:hover {
  background: rgba(256, 256, 256, 0.3);
}
.item-secreto .relacionados::-webkit-scrollbar-track:active {
  background: rgba(256, 256, 256, 0.3);
}
.item-secreto .relacionados::-webkit-scrollbar-corner {
  background: transparent;
}

/*video / contenedor*/
body.capitulo #secretos .contenido-video {
    display: block;
    width: 100%;
    position: relative;
    margin-top: -35px;
}
body.capitulo #secretos .contenido-video .contenedor-video {
    display: block;
    width: 1200px;
    position: relative;
    margin: 0 auto;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.05) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(255,255,255,0.05) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1affffff', endColorstr='#007db9e8',GradientType=0 ); /* IE6-9 */
}
#contenedor-video {
    width: 800px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#contenedor-video span.play-ico {
    position: absolute;
    display: block;
    width: 800px;
    text-align: center;
    font-size: 150px;
    padding-top: 80px;
    color: rgba(255,255,255,0.25);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#contenedor-video:hover span.play-ico {
    color: rgba(255,255,255,1);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.modaal-content-container .capitulo-completo h3 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 36px;
} 
.modaal-content-container .capitulo-completo h3 span {
    font-family: 'Uni-Sans-Regular';
}
#contenedor-video h3 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 36px;
}
#contenedor-video h3 span {
    font-family: 'Uni-Sans-Regular';
}

/* carousel */
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 180px;
    right: -64px;
}
.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 180px;
    left: -64px;
}
.owl-carousel .owl-stage {
    margin-top: 20px;
    margin-bottom: 50px;
}
.owl-theme .owl-nav [class*=owl-] {
    background: transparent !important;
    font-size: 30px !important;
    color: rgba(255,255,255,0.2) !important;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    color: rgba(255,255,255,0.9) !important;
}


/* 15. Artículo
––––––––––––––––––––––––––– */

body.articulo {
    background-image: url(../images/bg-articulo.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;  
}
body.articulo .contenedor-nota {
    margin: 0 auto;
    width: 1160px;
    background-color: rgba(255,255,255,0.15);
    padding: 40px;
    margin-top: 0px;
    margin-bottom: 20px;
    display: flex;
    position: relative;
}
body.articulo .contenedor-nota article {
    display: block;
    width: 800px;
    float: left;
    padding-right: 40px;
}
body.articulo .contenedor-nota article h1 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 60px;
    line-height: 60px;
}
body.articulo .contenedor-nota article h3 {
    font-size: 22px;
    font-family: 'Open-Sans-Regular';
    color: rgba(255,255,255,0.4);
}
body.articulo .contenedor-nota article p {
    font-family: 'Open-Sans-Regular';
    text-align: left!important;
    font-size: 16px;
    padding: 10px 0px;
    line-height: 24px;
    color: rgba(255,255,255,0.6);
}
body.articulo .contenedor-nota article .bajada p {
    font-family: 'Open-Sans-Italic';
    text-align: right!important;
    font-size: 12px;
    padding: 4px 0px;
    line-height: 24px;
}
body.articulo .contenedor-nota article p strong {
    font-family: 'Open-Sans-Bold';
    color: #fff;
}
body.articulo .contenedor-nota article h2 {
    font-family: 'Uni-Sans-Bold';
    color: #fff;
    text-align: left;
    margin: 10px;
    margin-left: 0px;
    font-size: 30px;
    line-height: 30px;
}
body.articulo .contenedor-nota article ul {
    list-style: disc;
    margin: 0;
    padding: 0;
    margin-left: 40px;
    color: rgba(255,255,255,0.6);
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 30px;
}
body.articulo .contenedor-nota article a {
    font-family: 'Open-Sans-Bold';
    color: #fff;
    background-color: rgba(256,256,256,0.1);
    padding: 2px;
    border-bottom: 2px solid rgba(256,256,256,0.1);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body.articulo .contenedor-nota article a:hover {
    font-family: 'Open-Sans-Bold';
    color: #fff;
    background-color: rgba(256,256,256,0.1);
    padding: 2px;
    border-bottom: 2px solid rgba(256,256,256,0.75);
}
body.articulo .contenedor-nota aside {
    display: block;
    width: 320px;
    float: left;
    padding-left: 0px;
    background-color: rgba(255,255,255,0.05);
}

/*TAGS*/
body.articulo #principal-tag {
    margin-top: 30px;
    margin-bottom: 0px;
    padding-bottom: 10px;
}
body.articulo #principal-tag h2 {
    font-family: 'Uni-Sans-Bold';
    font-size: 1.6em;
    font-weight: normal;
    display: block;
    position: relative;
    margin: 0;
    color: #1f1f20;
}

body.articulo #principal-tag h2:before {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.05);
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
}
body.articulo #principal-tag h2 span {
    color: #fff;
    position: relative;
    z-index: 10;
    padding: 0 10px 0 0;
    font-family: 'Uni-Sans-Bold';
}
body.articulo #principal-tag ul {
     margin: 0;
    padding: 10px 0;
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-family: 'Open-Sans-Regular';
}
body.articulo #principal-tag ul li {
    display: block;
    margin: 0 10px 10px 0;
    font-size: 1.1em;
    position: relative;
}
body.articulo #principal-tag ul li a {
    font-size: 20px;
    display: table;
    background: #ad701f;
    color: #fff;
    padding: 5px 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-family: 'Open-Sans-Regular';
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body.articulo #principal-tag ul li a:hover {
    background: #ffffff;
    color: #ad701f;
}
body.articulo .contenedor-ads.top {
    margin-top: 220px;
}
body.articulo main#principal {
    margin-top: 30px;
}

/*COMENTARIOS FACEBOOK*/
body.articulo .single_comentarios h2 {
    font-family: 'Uni-Sans-Bold';
    font-size: 1.6em;
    font-weight: normal;
    display: block;
    position: relative;
    margin: 0;
    color: rgba(255,255,255,0.2);
}
body.articulo .single_comentarios h2:before {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.05);
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
}
body.articulo .single_comentarios .box-comentarios {
    padding: 30px;
    background-color: rgba(255,255,255,0.75);
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}


/*home recorriendo chile*/
#principal section.sh-capitulos .fila .columna.capitulo:hover {
    background-image: url(../images/SANTIAGO-HOVER.jpg) !important;
}
#principal section.sh-capitulos .fila .columna.capitulo + .columna.capitulo:hover {
    background-image: url(../images/PUNTAARENAS-HOVER.jpg) !important;
}
#principal section.sh-capitulos .fila .columna.capitulo + .columna.capitulo + .columna.capitulo:hover {
    background-image: url(../images/BIOBIO-HOVER.jpg) !important;
}
#principal section.sh-capitulos .fila .columna.capitulo + .columna.capitulo + .columna.capitulo + .columna.capitulo:hover {
    background-image: url(../images/PARINACOTA-HOVER.jpg) !important;
}



/*home capítulos anteriores*/
#principal section.sh-capitulos .fila + .fila .columna.capitulo:hover {
    background-image: url(../images/OKINAWA.jpg) !important;
}
#principal section.sh-capitulos .fila + .fila .columna.capitulo + .columna.capitulo:hover {
    background-image: url(../images/CERDENA.jpg) !important;
}
#principal section.sh-capitulos .fila + .fila .columna.capitulo + .columna.capitulo + .columna.capitulo:hover {
    background-image: url(../images/NICOYA.jpg) !important;
}
#principal section.sh-capitulos .fila + .fila .columna.capitulo + .columna.capitulo + .columna.capitulo + .columna.capitulo:hover {
    background-image: url(../images/LOMALINDA.jpg) !important;
}

#principal section.sh-capitulos .fila + .fila .columna.capitulo + .columna.capitulo + .columna.capitulo + .columna.capitulo + .columna.capitulo:hover {
    background-image: url(../images/IKARIA.jpg) !important;
}



