/*
* MOBILE FIRST
*/

/* Globals */
body {
    overflow-x: hidden;
    background: #F5F5F5;
}
body.stop-scrolling {
    height: 100%;
    overflow: hidden;
}
body.hidden{
    overflow-y: hidden;
    visibility: visible;
}
#page {
    position: relative;
    /* z-index: 2; */
    transition: transform .2s;
    overflow: hidden;
}
.show-desktop {
    display: none !important;
}
.show-mobile {
    display: block;
}

/* Wrapper */
.wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 12px;
    color: #333;
    background-color: #fff;
}
.home .wrapper,
.tag .wrapper,
.author .wrapper,
.category .wrapper,
.noticia-directo .wrapper{
    padding: 0;
    background-color: #F5F5F5;
}

/* Hamburger Menu */
#hamburger {
    position: fixed;
    z-index: 12;
    left: -110%;
    top: 0;
    bottom: 0;
    width: 100vw;
    height:100vh;
    overflow: hidden;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
#hamburger.is-active{
    left: 0;
}
#hamburger-menu .menu {
    padding: 0 30px 0 0;
    display: block;
    height: 82vh;
    overflow-y: scroll;
}
#hamburger-menu .mod-news {
    height: 100vh;
    background: #fff;
    padding: 0;
}
#hamburger-inner {
    background: rgba(255, 255, 255, 0.95);
    height: 100%;
}
#hamburger-close {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 14px;
    right: 14px;
    /* z-index: 10; */
    font-size: 22px;
    color: #2E3C43;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    text-align: center;
    line-height: 21px;
    vertical-align: sub;
    display: block;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 1px solid;
    border-radius: 50%;
}
#hamburger-menu{
    height: 76vh;
    overflow-y: scroll;
    margin-right: 52px;
    background-color: #fff;
    box-shadow: 0 5px 6px #ccc;
}

#hamburger-menu .menu-item {
    height: auto;
    padding: 0;
}
#hamburger-menu .menu-item a {
    font: 400 16px/22px 'Merriweather', sans-serif;
    color: #2E3C43;
    display: block;
    padding: 16px 0 16px 7px;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #fff;
    margin: 0 10px;
    text-decoration: none;
}
#hamburger-menu .menu-item:last-child a {
    border-bottom: 0;
}
#hamburger-footer {
  /*   padding: 40px; */
    padding: 15px 15px 5px;
    border-top: 1px solid rgba(0, 0, 0, .10);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: #2E3C43;
    height: 24vh;
    text-align: center;
    -webkit-box-shadow: 0 -4px 4px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 -4px 4px rgba(0, 0, 0, .2);
    box-shadow: 0 -4px 4px rgba(0, 0, 0, .2);
}
#hamburger-footer li  {
    display: inline-block;
    vertical-align: middle;
    /*    margin: 0 8px 8px 0; */
    margin: 0 4px 4px;
}
#hamburger-footer li a {
    color: #fff;
    font: 12px 'Open Sans';
    text-decoration: none;
}
#hamburger-footer li a:hover {
    text-decoration: underline;
}
#hamburger-footer-media {
    margin-bottom: 5px;
}
#hamburger-footer-media > img{
    width: 40%;
}
@media (max-width: 758px) and (orientation:landscape){
    #hamburger-menu {
        height: 60vh;
    }
    #hamburger-footer{
        height: 40vh;
    }
    #hamburger-footer-media {
        margin-bottom: 10px;
    }
    #hamburger-footer-media img {
        height: 12vh;
    }
}
/*
.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, .20);
    padding-right: 12px;
    width: auto;
    overflow: hidden;
    height: 135px;
}
.menu-item a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    display: block;
}
.menu-item.is-active {
    background: rgba(0, 0, 0, .3);
}
.menu-item:last-child{
    border-bottom: none;
}
.menu-item.is-active a {
    color: #fff;
}
.show-menu {
    height: 100%;
    overflow: hidden;
}
*/


/* scrollWrapper */
.scrollWrapper {
    width: 100%;
    max-width: 1000px;
    background: #fff;
    position: fixed;
    z-index: 11;
    top: 0; /*padding-left:5%;*/
    height: 60px;
    opacity: 1;
    transition: opacity .3s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .2)
}
.scrollWrapper:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background: #e5e5e5;
}
.scrollWrapper .scroll-bar {
    height: 3px;
    /* z-index: 1000; */
    position: absolute;
    width: 50px;
    top: 60px;
    background: #06D0F1;
    left: 0;
    right: 0;
    max-width: 100%;
    display: none;
}

/* hide scroll information in home, author, category and tag */
.home .scroll-bar,
.author .scroll-bar,
.category .scroll-bar,
.tag .scroll-bar {
    display: none;
}

.scrollWrapper .hamburger {
    top: 50%;
    margin-top: -14px;
}
.scrollWrapper .hamburger img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}
.scrollWrapper .share-header {
    position: absolute;
    right: 8px;
    top: 7px;
}
.scrollWrapper.hidden-menu {
    opacity: 0;
    pointer-events: none;
}
.scrollWrapper--no-border:before {
    display: none;
}

/* ScrollWrapper Social Menu */
.social-menu {
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -10px;
}
.social-menu .menu {
    opacity: 1;
}
.social-menu .menu-item {
    height: auto;
    float: left;
    border: 0;
    padding: 0;
    text-indent: -9000px;
    margin-left: 8px;
}
.social-menu .menu-item a {
    display: block;
    width: 20px;
    height: 20px;
    opacity: .5;
}
.social-menu .menu-item a:hover {
    opacity: 1;
}
.social-menu .socialshare-t a {
    background: url(../img/twitter-mini.svg) no-repeat center center;
}
.social-menu .socialshare-f a {
    background: url(../img/facebook-mini.svg) no-repeat center center;
}
.social-menu .socialshare-i a {
    background: url(../img/instagram-mini.svg) no-repeat center center;
}

/* Cookie Bar Info */
#cookie-law-info-bar {
    padding: 20px !important;
    font-family: 'Open Sans', sans-serif !important;
    color: #666 !important;
    font-size: 11px !important;
    box-shadow: -10px 0 10px rgba(0, 0, 0, .3) !important;
    border-top: 0 !important;
}
#cookie_action_close_header {
    margin: 14px 0 10px 0 !important;
    background: #06D0F1 !important;
    box-shadow: 0 0 0 !important;
    border: 0 !important;
    border-radius: 2px !important;
    display: inline-block !important;
    padding: 12px 24px !important;
    text-shadow: 0 0 0 !important;
}
#cookie_action_close_header:hover, #cookie_action_close_header:focus {
    background: #06D0F1 !important;
    outline: none;
}

/* Header */
.header {
    width: 100%;
    background: #fff;
    position: relative;
    /* z-index: 30; */
    height: 60px;
    border-bottom: 1px solid #f5f5f5;
}

/* hamburger Icon */
.hamburger {
    position: absolute;
    top: 50%;
    left: 12px;
    /* z-index: 10; */
    margin-top: -15px;
}
.hamburger-icon {
    cursor: pointer;
    text-decoration: none;
    color: #000;
}
.hamburger-icon > .dashicons-menu {
    font-size: 30px
}

/* Brand */
.brand {
    text-align: center;
    padding-top: 14px;
    width: 131px;
    margin: 0 auto;
    height: 56px;
    background: url(../img/logo-eslang.svg) no-repeat center center;
    background-size: 100%;
    display: block;
}
.brand > img {
    display: none;
}
.brand-scroll {
    display: block;
    margin: 13px 0 0 47px;
}


/* Branded content */
.branded-info {
    padding: 20px;
    margin-bottom: 60px;
    text-align: center;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}
.content .branded-info p {
    margin: 0;
}
.branded-info img,
.branded-info svg {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}
.content p.branded-sign span {
    color: #06D0F1;
}
.content p.branded-sign strong {
    font-family: 'Merriweather', serif;
    margin: 0 8px;
}
.content p.branded-sign {
    margin: 15px 0;
    font-size: 14px;
}
.branded-sign img,
.branded-sign svg{
    display: inline-block;
    vertical-align: middle;
    max-height: 40px;
    width: auto;
}

/* Tags */
.tags {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 2px;
    padding: 16px 10px;
    position: relative;
    height: 60px;
    overflow: hidden;
    width: 100%;
}
.tags .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* z-index: 1; */
    height: 30px;
}
.tags .swiper-container:before{
    content: "";
    box-shadow: 0 0 10px 10px #fff;
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 30px;
    z-index: 1;
}
.tags .swiper-container:after{
    content: "";
    box-shadow: 0 0 10px 10px #fff;
    position: absolute;
    right: -1px;
    bottom: 0;
    width: 1px;
    height: 30px;
    /* z-index: 30; */
}
.tags-list {
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
    /* z-index: 1; */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.tags-listItem {
    display: inline-block;
    vertical-align: middle;
    font: 12px 'Open Sans';
    text-transform: uppercase;
    margin: 1px 10px 12px 0;
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}
.tags-listItem a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 4px 10px;
    background: rgba(20, 20, 20, .05);
    border: 1px solid #ccc;
    border-radius: 2px;
}
.tags-listItem a:hover {
    background: rgba(6, 208, 241, .1);
}
.tags-actions {
    display: none;
    position: absolute;
    right: 24px;
    top: 18px;
    cursor: pointer;
}
.tags-inner {
    padding: 40px 0;
}
.tags-inner p, .tags-inner ul.tags-list {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 12px;
}
.tags-inner p {
    vertical-align: middle;
}

.tag-simple .tags-inner {
    padding: 10px 0;
    display: inline-block;
}
.tag-simple .tags-inner ul.tags-list {
    margin-bottom: 0;
}
.tag-simple .tags-list {
    margin-left: 0;
}
.tag-simple .tags-listItem {
    margin-right: 10px;
    margin-left: 0;

}
.tag-simple .tags-listItem a {
    padding: 0;
    border: 0;
    background: none;
    text-decoration: underline;
}
.tag-simple .tags-listItem a:hover {
    background: #000;
    text-decoration: none;
    color: #fff;
}
.tag-simple .tags-listItem a:after {
    content: "";
}
.tag-simple .tags-listItem:last-child a:after {
    display: none;
}

/* Zero Zone */
.Block {
    display: block;
    border-radius: 2px;
    margin-bottom: 12px;
    background-color: #fff;
    position: relative;
    height: 400px;
    overflow: hidden;
}
.Block:after {
    content:"";
    background-image: linear-gradient(0deg, rgba(0,0,0,0.60) 0%, transparent 100%);
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}
.Block-inner {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    padding: 0 20px;
    z-index: 1;
    text-align: center;
}
.Block-title {
    font: 800 28px/40px 'Merriweather';
    position: relative;
}

.Block--news .Block-title a {
    color: #fff;
    text-decoration: none;
    display: inline;
    padding: 2px 0;
    background-color: rgba(6, 208, 241, .8);
    box-shadow: 4px 0 0 rgba(6, 208, 241, .8), -4px 0 0 rgba(6, 208, 241, .8);
}
.Block .author li {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 12px;
}
.Block--news-media,
.Block--video-media {
    /* width: 100%; */
    display: block;
    border-radius: 4px;
    margin: 0;
}

/* video */

.row{
    background: rgba(39,62,84,0.82);
    overflow: hidden;
    height: 100%;
    /* z-index: 2; */
}
.Block--video .Block-title a {
    color: #fff;
    text-decoration: none;
    display: inline;
    padding: 2px 0;
    background-color: rgba(46, 60, 67, .8);
    box-shadow: 4px 0 0 rgba(46, 60, 67, .8), -4px 0 0 rgba(46, 60, 67, .8);
}
.Block--video .video-play {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, .4);
    border-radius: 4px;
    display: block;
    position: absolute;
    right: 30px;
    bottom: 30px;
     z-index: 1;
}
.Block--video .video-play:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    left: 50%;
    top: 50%;
    margin-top: -15px;
    margin-left: -10px;
    pointer-events: none;
}


/* long read */
.Block--longread .Block-title a {
    color: #fff;
    text-decoration: none;
    display: inline;
    padding: 2px 0;
    background-color: rgba(245, 166, 35, .8);
    box-shadow: 4px 0 0 rgba(245, 166, 35, .8), -4px 0 0 rgba(245, 166, 35, .8);
}

/* fotogalería */
.Block--fotogaleria .Block-title a {
    color: #fff;
    text-decoration: none;
    display: inline;
    padding: 2px 0;
    background-color: rgba(46, 60, 67, .8);
    box-shadow: 4px 0 0 rgba(46, 60, 67, .8), -4px 0 0 rgba(46, 60, 67, .8);
}
.Block--fotogaleria .Block-icon {
    margin-bottom: 20px;
}

/* Más CSS aquí */




/* directo */
.Block.Block--live {
    background-color: #EF2D56;
}
.Block.Block--live:after {
    display: none;
}
.Block--live .Block-title a {
    color: #EF2D56;
    text-decoration: none;
    display: inline;
    padding: 2px 0;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 4px 0 0 rgba(255, 255, 255, 1), -4px 0 0 rgba(255, 255, 255, 1);
}
.Block--live-media-overlay{
    background: rgba(239, 45, 86, 0.75);
    overflow: hidden;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
.Block--live-update {
    margin-top: 20px;
    font: 12px 'Open Sans';
    font-style: italic;
    color: #fff;
    position: relative;
}
.Block--live-update:before {
    position: static;
    display: inline-block;
    margin-right: 12px;
    content: "";
    left: 0;
    top: 8px;
    width: 16px;
    height: 2px;
    border-radius: 10px;
    vertical-align: middle;
    background: rgba(255, 255, 255, .4);
}

/* Blue Zone */
.blue-zone {
    background-size: cover;
    position: relative; /*height: 99vh;*/
    /* z-index: 1000; */
    background: none;
    height: auto;
}
.blue-zone-inner {
    background: #fff;
    position: relative;
}
.blue-zone-inner .live-icon {
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
    display: none;
}
.blue-zone-inner .live-icon-container {
    display: none;
}
.blue-zone-inner .noticia-directo .live-icon-container {
    display: inline-block;
}
.blue-zone-inner .noticia-directo .live-icon {
    display: inline-block;
}

.blue-zone-highlight.fotogaleria:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, #000000 0%, transparent 100%);
}
.blue-zone-highlight.fotogaleria {
    position: relative;
    background-size: cover;
    background-position: center;
}
.blue-zone-highlight.fotogaleria .blue-zone-highlight-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.blue-zone-highlight.fotogaleria .blue-zone-media{
    display: none;
}
.blue-zone-highlight.fotogaleria .blue-zone-highlight-text {
    background: transparent;
    padding: 200px 24px 24px;
    text-align: left;
    z-index: 2;
    position: relative;
}
.blue-zone-highlight.fotogaleria .blue-zone-highlight-icon {
    margin-top: 8px;
    margin-right: 10px;
}

/* Más CSS aquí */



.blue-zone-media img {
    width: 100%;
    display: block;
}
.blue-zone-highlight-tag {
    font: 300 14px/21px 'Open Sans', sans-serif;
    color: #fff;
    margin-bottom: 8px;
}
.blue-zone-highlight-title {
    font: 600 28px/36px 'Merriweather', sans-serif;
}
.blue-zone-highlight-title a {
    color: #fff;
    text-decoration: none;
}

.blue-zone-highlight.video {
    min-height: 505px;
    height: auto;
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.blue-zone-highlight.video:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, #000000 0%, transparent 100%);
}
.blue-zone-highlight.video:hover:after{
    opacity: 0.8;
}
.blue-zone-highlight.video h2 {
    font: 600 28px/36px 'Merriweather', sans-serif
}
.blue-zone-highlight.video > a {
    margin-top: 0;
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding-top: 100px;
    text-decoration: none;
}
.blue-zone-highlight.video .video-play {
    bottom: 80px;
}
.blue-zone-highlight-text {
    background: rgba(6, 208, 241, 1);
    padding: 24px;
    text-align: center;
}

.noticia-directo .blue-zone-highlight-text {
    background: rgba(239, 45, 86, 1);
}
.noticia-longread .blue-zone-highlight-text {
    background: rgba(245, 166, 35, 1);
}

.blue-zone-aside {
    text-align: center;
    font: 400 18px/26px 'Merriweather', sans-serif;
    padding-top: 24px;
    padding-bottom: 12px;
}
.blue-zone-aside > div {
    padding: 0 24px 24px 24px;
}
.blue-zone-aside > div:after {
    content: "";
    display: block;
    height: 1px;
    width: 84px;
    background: rgba(46, 60, 67, .2);
    margin: 24px auto 0 auto;
}
.blue-zone-aside > div:last-child:after {
    display: none;
}
.blue-zone-aside > div h3 {
    font: 400 12px/30px 'Open Sans', sans-serif;
    color: rgba(46, 60, 67, .5);
    margin-bottom: 4px;
}
.blue-zone-aside a {
    color: #2E3C43;
    text-decoration: none;
}
.blue-zone-aside .author {
    display: none;
}
.blue-zone-aside .author img{
    display: none;
}
.blue-zone-aside .Photogallery-homeAuthors::before{
    display: none;
}

.blue-zone-aside .live-icon {
    border-color: transparent #EF2D56 transparent #EF2D56;
}

/* Green Zone */
.green-zone {
    padding: 10px 0 0 0;
    margin-bottom: -10px;
}

/* Módulo Lo Más */
.mod-hot-news {
    padding: 20px;
}
.mod-hot-newsTitle {
    font: 600 18px 'Merriweather';
    margin-bottom: 12px;
}
.mod-hot-newsTitle span {
    color: #06D0F1;
}
.mod-hot-newsList {
    border-left: 1px solid #DDDDDD;
    padding: 20px 0 20px 0;
}
.mod-hot-newsListItem {
    font: 400 13px 'Merriweather';
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}
.mod-hot-newsListItem a {
    color: #4A4A4A;
}
.mod-hot-newsListItem a:hover {
    color: #4A4A4A;
    text-decoration: underline
}
.mod-hot-newsListItem:before {
    content:"";
    position: absolute;
    background: #21C2DD;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: -4px;
    top: 4px;
}
.mod-hot-newsListItem:last-child {
    margin-bottom: 0;
}

/* Módulo de Twitter */
.mod-twitter {
    display: none;
}

/* Content switcher */
.content-switcher {
    background: #06D0F1; /* margin:-12px -12px 12px -12px; */
    width: auto;
    overflow: hidden;
    position: relative;
}
.content-switcher:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background-image: linear-gradient(90deg, #06D0F1 0%, rgba(6, 208, 241, 0.00) 100%);
}
.content-switcher:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background-image: linear-gradient(90deg, rgba(6, 208, 241, 0.00) 0%, #06D0F1 100%);
}
.content-switcher li {
    width: 33.33%;
    text-align: center;
    float: left;
    font: 300 14px/42px 'Open Sans', sans-serif;
}
.content-switcher li a {
    color: #fff;
    text-decoration: none;
}
.content-switcher .is-active {
    font-weight: 600;
}
.content-switcher .is-active a {
    opacity: 1;
}

/* Módulos de Noticias */
.mod-news {
    padding: 12px;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
}
.mod-news-item {
    background: #fff;
    position: relative;
    margin-bottom: 12px;
    border-radius: 2px;
    /*
    overflow: hidden;
     min-height: 40vh;
     */
}
.mod-news-item a {
    color: #333;
    text-decoration: none;
}
.mod-news-item > a,
.mod-news-item:hover  > a {
    /*
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    */
    display: block;
    position: relative;
    background: none;
    z-index: 1;
    opacity: 1;
}
.mod-news-item img {
    width: 100%;
    display: block;
}
.mod-news-item-media {
    position: relative;
}

.mod-news-item.video {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    text-align: center;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    /* min-height: 420px !important; */
}
.mod-news-item.video:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, #000000 0%, transparent 100%);
}
.mod-news-item.video:hover:after{
    opacity: .8;
}
.mod-news-item.video > a {
    height: 100%;
}
.mod-news-item.video > a:hover {
    background: none !important;
}
.mod-news-item.video .mod-news-text:before {
    display: none;
}
.mod-news-item.video .video-play {
    bottom: 64px;
}

.mod-news-item.noticia-directo {
    background: #EF2D56;
}

.mod-news-item.noticia-directo > a {
    background: transparent;
}
.mod-news-item.noticia-directo .mod-news-text {
    position: static;
}
.mod-news-item.noticia-directo .live-icon {margin-right: 8px;}

.mod-news-item.noticia-longread {
    background: #F5A623;
    text-align: center;
    border-radius: 2px;
}
.mod-news-item.noticia-longread > a {
    color: #fff;
    background: transparent;
}
.mod-news-item.noticia-longread > a > img {
    display: none;
}
.mod-news-item.fotogaleria {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.mod-news-item.fotogaleria:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, #000000 0%, transparent 100%);
}
.mod-news-item.fotogaleria .mod-news-text  {
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}
.mod-news-item.fotogaleria .mod-news-text-inner  {
    color: #fff;
}
.mod-news-item.fotogaleria .mod-news-text-inner h3 {
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
}
.mod-news-item.fotogaleria p.authors {
    padding: 0 0 0 24px;
    border: 0;
    color: rgba(255, 255, 255, .5);
    font: italic 12px 'Open Sans';
    display: block;
    margin: 0;
    position: relative;
}
.mod-news-item.fotogaleria p.authors:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 2px;
    border-radius: 10px;
    vertical-align: middle;
    background: rgba(255, 255, 255, .2);
}
.mod-news-item.fotogaleria .mod-news-text-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-right: 20px;
}
.mod-news-item.fotogaleria .mod-news-text-info  h2 {
    font: 600 22px 'Merriweather';
    line-height: 28px;
    margin-bottom: 10px;
}

.mod-news-item.fotogaleria .mod-news-text-icon {
    margin-right: 10px;
    margin-top: 4px;
}



.noticia .mod-news-text-inner,
.page .mod-news-text-inner,
.lab .mod-news-text-inner {
    padding: 20px;
}
.mod-news-text-inner > h2 {
    font: 600 18px/26px 'Merriweather', sans-serif;
}
.mod-news-text-inner > h3 {
    font: 300 12px/24px 'Open Sans', sans-serif;
    display: inline-block;
    border: 1px solid rgba(46, 60, 67, .4);
    padding: 0 12px;
    margin-bottom: 10px;
    color: #2E3C43;
    border-radius: 2px;
    text-transform: uppercase;
}
.mod-news-text-inner .icon-live {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-right: 4px;
}
.mod-news-text-inner .author {
    display: none;
}

.mod-news-share {
    position: absolute;
    right: 0;
    bottom: 0;
    /* z-index: 10; */
    float: none;
    margin: 0;
    padding: 0;
}
.mod-news-share .article-share-item {
    margin: 0;
    display: inline;
    float: left;
}
.mod-news-share img {
    opacity: 1;
}

.video:hover > a {
    background: none !important;
}
.video .video-play {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, .4);
    border-radius: 4px;
    display: block;
    pointer-events: none;
    left: 50%;
    bottom: 48px;
    position: absolute;
    z-index: 1;
    margin-left: -30px;
}
.video .video-play:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    left: 50%;
    top: 50%;
    margin-top: -15px;
    margin-left: -10px;
    pointer-events: none;
}

.video .mod-news-text-inner{
    padding: 40px 25px 140px;
}
.video .mod-news-text-inner h2 {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
}
.video .mod-news-text-inner h3 {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .8);
    display: inline-block;
    padding: 0 12px;
}
.video .mod-news-text-inner p.author,
.video .mod-news-text-inner ul.author {
    color: #fff;
}
.video .mod-news-text-inner p.author:before,
.video .mod-news-text-inner ul.author:before {
    background: rgba(255, 255, 255, .5);
}

.noticia-directo .mod-news-text-inner {
    color: #fff;
    padding: 40px 25px 50px;
}
.noticia-directo .mod-news-text-inner > h2 {
    font-size: 28px;
    line-height: 39px;
    margin-bottom: 10px;
    font-weight: 800;
}
.noticia-directo .mod-news-text-inner > h3 {
    color: #fff;
}
.noticia-directo .mod-news-text-inner h3 {
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
}

.noticia-longread .mod-news-text {
    position: static;
}
.noticia-longread .mod-news-text-inner {
    color: #fff;
    padding: 40px 20px 50px;
}
.noticia-longread .mod-news-text-inner > h2 {
    font-size: 28px;
    line-height: 39px;
    margin-bottom: 10px;
    font-weight: 800;
}
.noticia-longread .mod-news-text-inner > h3 {
    display: inline-block;
    padding: 0 12px;
    border-radius: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
}
.noticia-longread .mod-news-text-inner p.time {
    margin: 20px 0 0 0;
    color: #fff;
    font-size: 12px;
}
.noticia-longread .mod-news-text-inner p.time svg {
    display: inline-block;
    vertical-align: middle;
}
.noticia-longread .mod-news-text-inner p.author,
.noticia-longread .mod-news-text-inner ul.author {
    color: #fff;
    padding-left: 0;
}
.noticia-longread .mod-news-text-inner ul.author li {
    margin-bottom: 8px;
}
.noticia-longread .mod-news-text-inner ul.author li:after {
/*   content: ""; */
}
.noticia-longread .mod-news-text-inner p.author:before {
    content: "";
    width: 64px;
    display: block;
    height: 1px;
    background: #fff;
    margin: 20px auto;
}
.noticia-longread .mod-news-text-inner ul.author:before {
    position: static;
    content: "";
    width: 64px;
    display: block;
    height: 1px;
    background: #fff;
    margin: 20px auto;
}
.noticia-longread .mod-news-text-inner p.time {
    margin: 20px 0 0 0;
    color: #fff;
    font: 300 12px/16px 'Open Sans', sans-serif;
}
.noticia-longread .mod-news-text-inner p.time span {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 3px;
}

/* Content Text Formats */
.content {
    position: relative;
    /* z-index: 2; */
    transition: transform .2s;
    background: #fff;
    overflow: hidden;
}
.content h1 {
    text-align: center;
}
.content h2 {
    font: 600 22px/31px 'Open Sans', sans-serif;
    margin-bottom: 12px;
}
.content h3 {
    font: 600 20px/29px 'Open Sans', sans-serif;
    margin-bottom: 12px;
}
.content h4 {
    font: 600 18px/27px 'Open Sans', sans-serif;
    margin-bottom: 12px;
}
.content p, .content .content ul, .content .content ol {
    font: 300 16px/25px 'Open Sans', sans-serif;
    margin-bottom: 24px;
    color: #4A4A4A;
}
.content p.content-date {
    font: 300 14px/19px 'Open Sans', sans-serif;
    margin-bottom: 10px;
    color: #999;
    display: inline-block;
    float: right;
    margin-top: 15px;
}
.content p strong, .content p b {
    font-weight: 600;
}
.content p em, .content p i {
    font-style: italic;
}
.content .content-body a {
    cursor: pointer;
    text-decoration: underline;
    color: #000;
}
.content .content-body a:hover{
    color: #fff;
    background: #000;
    text-decoration: none;
}
.content .content-body > ul li,
.content .content-body > ol li {
    margin-bottom: 12px;
    font: 300 16px/25px 'Open Sans', sans-serif;
    margin-left: 20px;
}
.content .content-body > ul li{
    list-style-type: square;
}
.content .content-body > ol li {
    list-style-type: decimal;
}
.content .content-body img.attachment-large,
.content .content-body img.wp-post-image,
.content .content-body img[class*="wp-image-"] {
    width: 100%;
    height: auto;
}
.content-body .wp-caption-text{
    position: relative;
    margin: 0;
    padding: 12px;
    background: rgba(0, 0, 0, .8);
    color: #FFF;
    font: 400 12px/13px 'Open Sans', sans-serif;
    font-style: italic;
    text-align: right;
}

/* Embeds */
.content-body p iframe {
    width: 100%;
}
.content-body text{
    font-family:'Open Sans', sans-serif;
}
.twitter-tweet-rendered {
    display: block;
    margin: 0 auto;
}

/* Visualizer plugin CSS Tweaks */
.content-body text{
    font-family:'Open Sans', sans-serif;
}
::-webkit-file-upload-button {
    width: 100%;
}

/* Content Media Formats */
.media {
    position: relative;
    margin: 24px auto;}
.media:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    /* z-index: 10; */
}
.media .back {
    background: #2E3C43;
}
.video-wrapper,
.oembed-wrapper{
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 24px;
}
.video-wrapper iframe,
.oembed-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.twitter-wrapper {
    margin-bottom: 24px;
}
.giphy-embed{
    width:100%
}
.instagram-media {
    margin: 0 auto 24px !important;
}

img[class*="wp-image-"],
.size-full,
.media-full,
.attachment-large,
.wp-post-image{
    width: 100%;
    height: auto;
    display: block;
}

/* Foto con Caption */
.wp-caption {
    position: relative;
    max-width: 100%;
    width: auto !important;
    margin-bottom: 24px;
}

/* Tap & fog */
.media-share {
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0;
}
.media-share > img {
    transition: all .2s;
    width: 100%;
    height: auto;
    display: block;
}
.media-share.do-share > img {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}
.media-share.do-share .media-share-inner {
    opacity: 1;
    visibility: visible;
}
.media-share-inner {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -20px;
    /* z-index: 11; */
    pointer-events: all;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
}
.media-share-inner img {
    display: block;
    margin: 1px;
}
.media-share-inner a {
    display: block;
    height: 42px;
    width: 42px;
}
.media-share-inner a:hover {
    background: none !important;
}
.media-share-inner-item {
    display: inline-block;
    margin-right: 15px;
}
.media-share-inner-item:last-child {
    margin-right: 0;
}

/* Author Template */
.author .author-name {
    font: 400 16px/26px 'Open Sans', sans-serif;
    margin-bottom: 4px;
    text-decoration: none;
}
.author .author-inner {
    display: table;
}
.author .author-inner > a {
    color: #333;
    text-decoration: none;
}
.author .author-inner > a:hover {
    text-decoration: underline;
}
.author .author-description {
    font: 300 14px/22px 'Open Sans', sans-serif;
    font-style: italic;
    color: #999;
    margin: 0;
}
.author .button {
    margin: 12px 0;
}

.author-list {
    margin: 0 -10px 20px -10px;
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.author-list > li {
    flex: 1;
    margin: 0 0 -1px 20px;
    min-width: calc(50% - 20px);
}
.author-list .author {
    margin: 0 10px 24px 10px;
    padding: 24px 0 0;
    border-top: 1px solid #E6E6E6;
    width: 100%;
    overflow: hidden;
}
.author-list .author:last-child {
    border-bottom: 1px solid #E6E6E6;
}
.author-list .author > img, .author > a > img{
    float: left;
    margin-right: 18px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.button {
    border: 1px solid #000;
    display: inline-block;
}
.button a {
    display: block;
    padding: 8px 24px;
    font: 300 14px/22px 'Open Sans', sans-serif;
    font-style: italic;
    text-decoration: none;
}
.button-twitter {
    border-color: #0084B4;
}
.button-twitter a {
    color: #0084B4;
}

ul.author > li > img{
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    float: none;
    border-radius: 50%;
    margin: 0 3px 3px 0;
}

/* Author page */
.author-header {
 /*   margin-bottom: 10px; */
    background: #fff center center no-repeat;
    background-size: cover;
    border-radius: 2px;
    padding: 16px 24px 16px 24px;
    position: relative;
    overflow: hidden;
    width: auto;
}
.author-header-title {
    background: rgba(255,255,255,0.80);
    box-shadow: 0 0 15px 10px rgba(255,255,255,0.80);
    border-radius: 5%;
    padding-right: 0;
}
.author-header-name {
    font: 16px 'Open Sans';
    font-style: italic;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.author-header-showInfo {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.author-header-info {
    margin-top: 0;
    position: relative;
    float: right;
}
.author-header-info  p {
    display: inline-block;
    vertical-align: middle;
    font: 12px 'Open Sans';
}
.author-header-media {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.author-header-media img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    vertical-align: middle;
    margin: -3px 10px 0 0;
}
.author-header-text {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}
.author-header-share {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}
.author-header-share .article-share-item  {
    margin: 0;
    width: 32px;
    height: 32px;
}
.author-header-description {
    color: #333;
    font: 12px/16px 'Open Sans';
    font-style: italic;
    margin-top: 8px;
    width: 100%;
    display: block;
    padding: 0;
}
.author-header-description.is-active {
    display: block;
}

/* Tag & Category Pages*/
.tag-header {
  /*  margin-bottom: 10px; */
    background: #fff;
    border-radius: 2px;
    padding: 16px 24px 16px 24px;
    position: relative;
    overflow: hidden;
    width: auto;
}
.tag-header-title {
    font: 600 35px 'Merriweather';
    float: left;
}
.tag-header-brand{
    margin-top: 10px;
    font: 600 18px 'Open Sans';
    clear: left;
}
.tag-header-brand img{
    width: 50%;
    max-width: 180px;
    vertical-align: middle;
}
.tag-header-brand span{
    font: 600 24px 'Merriweather';
}
.tag-header-info {
    float: right;
    margin-top: 10px;
}
.tag-header-info p {
    display: inline-block;
    vertical-align: top;
    font: 12px 'Open Sans';
    margin: 4px 0;
}
.tag-header .tags-list {
    display: inline-block;
    vertical-align: top;
    max-width: 300px;
    height: 28px;
    overflow: hidden;
    margin-bottom: -16px;
    width: 85%;
    margin-left:5px
}
.tag-header .tags-list.is-active {
    height: auto;
}
.tag-header .tags-listItem {
    margin-bottom: 16px;
}
.tag-header-infoActions {
    display: inline-block;
    vertical-align: top;
    margin-left: 0;
    margin-top: 4px;
    float: right;
    cursor: pointer;
    text-align: right;
}

/* Shortcodes */
.quote {
    margin: 0 0 24px 0;
}
.quote-01 {
    padding-left: 18px;
    border-left: 2px solid #00CFF0;
}
.quote-01 p {
    font: 600 18px/24px 'Merriweather';
    color: #4A4A4A;
}

.quote-02 {
    padding-left: 40px;
    position: relative;
}
.quote-02:before {
    content: '“';
    position: absolute;
    left: 0;
    top: 4px;
    font: 600 44px/44px 'Merriweather';
    color: #00CFF0;
}
.quote-02 p {
    font: 600 18px/24px 'Merriweather';
    color: #4A4A4A;
    margin: 0;
}
.quote-02 p.sign {
    font: 300 14px/18px 'Open Sans', sans-serif;
    font-style: italic;
    margin-top: 12px;
    display: block;
}
.quote-02 p.sign:before {
    content: "—";
    margin-right: 8px;
}

.figure {
    background: #00CFF0;
    padding: 24px;
}
.figure p {
    margin: 0;
    color: #fff;
}
.figure .figure-number {
    font: 600 36px/47px 'Merriweather';
}
.figure .figure-number:before {
    content: "";
    display: block;
    margin-bottom: 16px;
    height: 2px;
    width: 32px;
    background: rgba(255, 255, 255, .4);
}
.figure .figure-info {
    font: 300 14px/18px 'Open Sans', sans-serif;
    font-style: italic;
    margin-top: 8px;
}

/* Recommended News */
.recommended-news {
    border-top: 2px solid #0ED2F2;
    border-bottom: 2px solid #0ED2F2;
    padding: 16px 0;
    margin: 0 0 24px 0;
}

.recommended-news > strong {
    border: none;
    box-sizing: border-box;
    color: rgb(51, 51, 51);
    display: block;
    font: 600 18px 'Merriweather';
    margin-bottom: 10px;
    padding: 0;
    vertical-align: baseline;
    line-height: 18px;
}
.recommended-news > a {
    color: #000;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 14px 0 0 5px;
    font-family: 'Open Sans', sans-serif;
    padding-left: 10px;
    line-height: 18px;
}
.recommended-news > a:last-child {
    margin-bottom: 10px
}
.recommended-news > a:before {
    content: "\f345";
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    font: normal 9px/1 'dashicons';
    padding: 0;
    position: absolute;
    line-height: 18px;
    left: 0;
}
.recommended-news > a:hover {
    text-decoration: underline;
}
.recommended-news > p {
    font-size: 16px;
    margin-bottom: 8px;
}
.recommended-news > p:last-child {
    margin-bottom: 0;
}

.recommended-news > h2 {
    font: 600 18px 'Merriweather';
    margin-bottom: 18px;
}
.recommended-news > h2 span {
    color: #06D0F1;
}
.recommended-news > ul {
    margin-left: 7px;
    border-left: 1px solid #DDDDDD;
    padding: 20px 0 10px 0;
    margin-bottom: 5px !important;
}
.recommended-news > ul > li{
    font: 400 13px 'Merriweather';
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}
.recommended-news > ul > li:last-child {
    margin-bottom: 10px
}
.recommended-news > ul > li:before {
    content: "";
    position: absolute;
    background: #21C2DD;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: -4px;
    top: 4px;
}
.recommended-news > ul > li > a {
    text-decoration: none;
}
.recommended-news > ul > li > a:hover {
    text-decoration: underline;
    background: none;
    color: #4A4A4A;
}


/* Telegram */
#content-bots {
    border: 1px solid #E3E3E3;
    background-color: #F5F5F5;
    padding: 10px;
    margin: 24px 0 0;
    display: flex;
    align-items: center;
}
#content-bots #deliver {
    margin-right: 20px;
    width: 60px;
    height: 41px;
    background: url(../img/moto.svg) no-repeat center center;
}
#content-bots .text{
    margin-bottom: 5px;
}
#content-bots .tl-bot {
    padding-left: 20px;
    background: url(../img/tlmessenger.png) no-repeat left center;
}
#content-bots .tl-bot a {
    color: #20A4E3;
}
#content-bots .fb-bot {
    padding-left: 20px;
    background: url(../img/fbmessenger.png) no-repeat left center;
}
#content-bots .fb-bot a {
    color: #1fb8ff;
}
#content-bots p.tl-bot,
#content-bots p.fb-bot{
    margin: 0;
    font-size: 16px;
}


/* Related News */
.related-news {
    margin-bottom: 20px;
}
.related-news ul {
    margin: 0 0 0 -20px;
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.related-news li {
    flex: 1;
    margin: 0 0 20px 20px;
    min-width: calc(50% - 20px);
    position: relative;
}
.related-news li  img {
    width: 100%;
}
.related-news li h3 {
    font: 600 14px/22px 'Merriweather';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
}
.related-news li h3 > span {
    display: inline;
    padding: 2px 0;
    background-color: rgba(0,0,0,.8);
    box-shadow: 4px 0 0 rgba(0,0,0,.8),-4px 0 0 rgba(0,0,0,.8);
}
.related-news li a {
    color: #fff;
    text-decoration: none;
}
.related-news li a:hover {
    text-decoration: underline;
}
.related-news-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.related-news-title:after {
    content:"";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: #D8D8D8;
    height: 1px;
    margin-top: -4px;
}
.related-news-title h2 {
    display: inline-block;
    font: 600 22px/28px 'Merriweather';
    color: #4A4A4A;
    padding: 0 10px;
    background: #fff;
    position: relative;
    z-index: 1;
}
.related-news-title h2 span {
    color: #0ED2F2;
}

/* Comments */
.comments {
    padding: 12px;
    background: #fff;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 2px;
    margin: 0 0 20px 0;
    width: auto;
    overflow: hidden;
}
.comments p {
    font: 300 8px/12px 'Open Sans', sans-serif;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.comments-media {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    float: left;
    margin: 0 20px 0 0;
    border-radius: 4px;
}
.comments-list {
    overflow: hidden;
    list-style-type: none;
    margin-bottom: 0 !important;
    padding-top: 4px;
}
.comments-list-item {
    height: 4px;
    background: #f5f5f5;
    margin: 0 0 10px 0;
}
.comments-list-item:last-child {
    margin-bottom: 0;
}

/* Single */
.single #page{
    background: #fff;
}
.news-header{
    background-size: cover;
    position: relative; /*height: 99vh;*/
    /* z-index: 1000; */
}
.news-header-inner {
    height: 500px; /*height: calc(100% - 148px);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.news-header-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 50%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, .7) 100%);
}
.news-header-inner:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 50%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
}
.news-header-content {
    position: absolute;
    left: 12px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
}
.news-header-content .header-share {
    margin-top: 12px;
}
.news-header-title {
    font: 600 32px/40px 'Merriweather';
    color: #fff;
}
.news-header-title:before {
    /*
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    margin-bottom: 24px;
    */
}

.highlight {
    background-image: linear-gradient(138deg, #0B95AB 0%, #0ED2F2 100%);
    padding: 24px 12px;
    color: #fff;
}
.highlight-reasons {
    color: #fff;
}
.highlight-title {
    font: 600 16px/24px 'Open Sans', sans-serif;
    margin-bottom: 12px;
}
.highlight-item {
    font: 300 14px/23px 'Open Sans', sans-serif;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}
.highlight-item:before {
    content: "";
    width: 2px;
    height: 5px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 0;
    border-radius: 4px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.highlight-item:after {
    content: "";
    width: 2px;
    height: 5px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 4px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.highlight-item:last-child {
    margin-bottom: 0;
}

/* Single Video */

.single-video .news-header {
    /*padding-top: 24px; */
    padding-top:0;
}
.single-video .news-header-inner {
    height: auto;
}
.single-video .news-header-inner:before,
.single-video .news-header-inner:after{
    display: none;
}
.single-video .news-header-title {
    text-align: left;
    padding: 0;
    margin: 10px 0 20px;
    color: #333;
    font: 600 22px/30px 'Merriweather';
}
.single-video .news-header-title + div.author {
    margin-bottom: 24px;
}
.single-video .header-share .article-share-item {
    margin-bottom: 0;
}
.single-video .mod-news-text-inner {
    margin-top: 0;
}
.single-video .mod-news-text-inner h3 {
    display: inline-block;
    border: 1px solid rgba(46, 60, 67, .4);
    padding: 0 12px;
    margin-bottom: 10px;
    color: #2E3C43;
    border-radius: 2px;
    font-size: 12px;
    line-height: 24px;
}
.single-video ul.author li{
    display: inline-block;
}
.single-video ul.author li:after{
    content: '&';
    margin: 0 5px;
}
.single-video ul.author li:last-child:after{
    content: '';
}

/* Single Directo */
.single-noticia-directo .higlight-item {
    display: block;
}

.nav-live {
    background: #EF2D56;
    width: auto;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}
.nav-live:before {
    position: absolute; /*content:""; */
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background-image: linear-gradient(90deg, #EF2D56 0%, rgba(239, 44, 86, 0.00) 100%);
}
.nav-live:after {
    position: absolute; /* content:""; */
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background-image: linear-gradient(90deg, rgba(239, 44, 86, 0.00) 0%, #EF2D56 100%);
}
.nav-live + .wrapper {
    padding: 24px 0;
}
.nav-live > li {
    width: 25%;
    text-align: center;
    float: left;
    font: 300 14px/42px 'Open Sans', sans-serif;
    list-style-type: none;
    margin: 0;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    padding: 0 5px;
    transition: all 0.5s linear;
}
.nav-live > li.is-active {
    width:50%;
    background-color: #000;
    font-weight: 600;
}
.nav-live > li a {
    color: #fff;
    text-decoration: none;
}
.live-info {
    margin-bottom: 32px;
    width: auto;
    overflow: hidden;
}
.live-info-item {
    margin-right: 1px;
    background: #EF2D56;
    float: left;
    font: 400 10px/34px 'Open Sans', sans-serif;
    color: #fff;
    text-transform: uppercase;
    padding: 0 18px;
    height: 34px;
}
.live-info-item--opacity {
    background: rgba(239, 45, 86, .8);
}
.live-info-item a {
    color: #fff;
    text-decoration: none;
}
.live-title {
    display: inline-block;
    vertical-align: middle;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

.live {
    margin-top: -12px;
    margin-bottom: 12px;
}
.live-item {
    background: #2E3C43;
    position: relative;
    list-style-type: none !important;
    margin: 0 !important;
}
.live-item .quote-01 {
    border-left: 2px solid #EF2D56;
}
.live-item .quote-02:before {
    color: #EF2D56;
}
.live-item .figure {
    background: #EF2D56;
}
.live-item a {
    color: #000;
}
.live-item a.more {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    bottom: 0;
    background: rgba(0, 0, 0, .05);
    display: block;
}
.live-item a:hover {
    color: #fff;
    background: #000;
    text-decoration: none;
}
.live-item-inner {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    margin: 0 -24px;
    padding: 24px 24px 0 24px;
    position: relative;
    background: #fff;
    transition: all .3s;
    /* z-index: 10; */
}
.live-item-inner.is-active {
    transform: translateX(-85%);
}
.live-item:last-child .live-item-inner{
    border-bottom: none;
    margin-bottom: 90px;
}
.live-author {
    margin-bottom: 8px;
}
.live-author-media {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.live-author-media img {
    border-radius: 50%;
    max-height: 38px;
    max-width: 38px
}
.live-author-name {
    vertical-align: middle;
    display: inline-block;
    font: 300 14px/18px 'Open Sans', sans-serif;
    opacity: .6;
    font-style: italic;
}
.live-hour {
    display: inline-block;
    background: rgba(0, 0, 0, .05);
    border-radius: 2px;
    padding: 4px 12px;
    font: 400 12px 'Merriweather';
    margin-right: 8px;
    margin-bottom: 8px;
    vertical-align: middle;
}
.live-hour-update {
    display: inline-block;
    background: rgba(248, 231, 28, .15);
    border-radius: 2px;
    padding: 4px 12px;
    font-size: 9px;
    margin: 0;
    line-height: 15px;
    vertical-align: middle;
}
.live-share {
    position: absolute;
    left: 15%;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}
.live-share:before {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.live-share-item {
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
}
.live-share-item:last-child {
    margin-right: 0;
}

/* Single Longread */
.single-noticia-longread .scroll-bar {
    background: #F5A623;
}
.single-noticia-longread .news-header-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    padding: 24px;
}
.single-noticia-longread .news-header-title {
    color: #fff;
}
.single-noticia-longread .tag-title {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 0 12px;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 2px;
    font-size: 12px;
    line-height: 24px;
    font: 400 12px/24px 'Open Sans', sans-serif
}
.single-noticia-longread .content-date.show-mobile{
    margin-top:-3px;
    text-align: right;
    padding-right: 2px
}
.single-noticia-longread .content-body > p:first-child:first-letter {
    font: 600 100px/100px 'Merriweather';
    float: left;
    line-height: 0.8em;
    padding: 10px 10px 0 0;
    position: relative;
    left: -3px;
}
.single-noticia-longread .content-body > p:first-child > a:hover:first-letter{
    background: #000;
}
.single-noticia-longread .recommended-news {
    border-top: 4px solid #F5A623;
    border-bottom: 1px solid #F5A623;
}
.single-noticia-longread .recommended-news > h2 span {
    color: #F5A623;
}
.single-noticia-longread .recommended-news > ul > li:before {
    background-color: #F5A623;
}
.single-noticia-longread .quote-01 {
    border-left: 2px solid #F5A623;
}
.single-noticia-longread .quote-02 {
    text-align: center;
    padding: 0 40px;
}
.single-noticia-longread .quote-02:before {
    display: inline-block;
    color: #F5A623;
}
.single-noticia-longread .quote-02 span {
    font: 600 44px/20px 'Merriweather';
    color: #F5A623;
    display: inline-block;
    vertical-align: middle;
    margin-top: 17px;
    position: relative;
    margin: 17px 8px 0;
}
.single-noticia-longread .figure {
    background: #F5A623;
}

 /* Single Fotogalería */
.Photogallery-home {
    background: #0B0A08;
    border-bottom: 20px solid #182024;
    padding: 20px;
    min-height: 640px;
    position: relative;
    overflow: hidden;
}
.Photogallery-homeMediaBg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.25;
    -webkit-filter: blur(8px);
    filter: blur(8px);
}
.Photogallery-homeContainer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
}
.Photogallery-homeShare {
    display: none;
}
.Photogallery-homeShareMobile {
    margin-bottom: 30px;
}
.Photogallery-homeTitle {
    font: 600 32px/44px 'Merriweather';
    margin-bottom: 12px;
    color: #fff;
    text-decoration: none;
}
.Photogallery-homeTitle a {
    color: #fff;
    text-decoration: none;
}
.Photogallery-homeTitle a:hover {
    text-decoration: underline;
}
.Photogallery-homeContainerInner {
    margin-right: 10px;
}
.Photogallery-homeMetadata {
    margin-bottom: 20px;
    font: 200 14px 'Open Sans';
    font-style: italic;
    color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
.Photogallery-homeMetadata img {
    vertical-align: bottom;
    margin-left: 5px;
}
.Photogallery-homeMetadata ul.author {
    margin-right: 10px;
}
.Photogallery-homeMetadata ul.author:before {
    content: "";
    width: 16px;
    height: 1px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.Photogallery-homeMetadata ul.author.avatar:before {
    content: none;
}
.Photogallery-homeMetadata ul.author.avatar > li > img {
    vertical-align: text-top;
    margin-top: -5px;
}
.Photogallery-homeMetadata ul.author:after {
    content: '|';
    margin-left: 8px;
}
.Photogallery-homeMetadata ul.author li{
    display: inline;
}
.Photogallery-homeMetadata ul.author li:after{
    content: '&';
    margin: 0 5px;
}
.Photogallery-homeMetadata ul.author li:last-child:after{
    content: none;
}
.Photogallery-homeDescription {
    font: 16px 'Open Sans';
    color: #fff;
    margin-bottom: 50px;
}
.Photogallery-homeDescription a,
.Photogallery-homeDescription a:hover{
    color: #fff;
}
#slider-home .tags-inner{
    padding:0;
}
.Photogallery-homeTags,
#slider-home .tags-inner ul.tags-list{
    margin-bottom: 20px;
    font: 200 14px 'Open Sans';
    font-style: italic;
    color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.Photogallery-homeTagsItem:after,
#slider-home .tags-inner ul.tags-list li.tags-listItem:after{
    content: ',';
    margin: 0 4px;
}
.Photogallery-homeTagsItem:last-child:after,
#slider-home .tags-inner ul.tags-list li.tags-listItem:last-child:after{
    display: none;
}
.Photogallery-homeTagsItem,
#slider-home .tags-inner ul.tags-list .tags-listItem{
    margin: 0 4px 0 0;
}
.Photogallery-homeTagsItem a,
#slider-home .tags-inner ul.tags-list .tags-listItem a{
    color: #fff;
    text-decoration: underline;
    border: none;
    padding: 0;
    font: 200 14px 'Open Sans';
    font-style: italic;
    display: inline;
}
#slider-home .tags-inner ul.tags-list .tags-listItem a:hover{
    background: none;
}
.Photogallery-homeMore {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.Photogallery-homeTags {
    margin-bottom: 20px;
    font: 200 14px 'Open Sans';
    font-style: italic;
    color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.Photogallery-homeTagsItem:after {
    content: ',';
}
.Photogallery-homeTagsItem:last-child:after {
    display: none;
}
.Photogallery-homeTagsItem {
    margin-right: 4px;
}
.Photogallery-homeTagsItem a {
    color: #fff;
    text-decoration: underline;
}
.Photogallery-homeAuthors {
    margin-right: 10px;
}
.Photogallery-homeAuthors:before {
    content: "";
    width: 16px;
    height: 1px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.Photogallery-homeAuthors:after {
    content: '|';
    margin-left: 8px;
}
.Photogallery-homeButton {
    margin-bottom: 40px;
    display: inline-block;
    cursor: pointer;
}
.Photogallery-homeButton2 {
    display: none;
}
.Photogallery-homeButtonLink {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: #06D0F1;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.20);
    border-radius: 2px;
    font: 600 16px/40px 'Merriweather';
    color: #fff;
    text-decoration: none;
    padding-right: 22px;
}
.Photogallery-homeButtonLink:hover {
    background: #00A0BA;
}
.Photogallery-homeButtonLink > span {
    margin-right: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(46,60,67,0.20);
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
#PhotogalleryStart .nav-next span {
    background-color: #06d0f1;
}
.Photogallery-navigation {
    display: none;
}
.Photogallery-sliderContainer{
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}
.Photogallery-detailInner {
    border-bottom: 20px solid #F5F5F5;
    overflow: hidden;
    position: relative;
    background-color: #182024;
}
.Photogallery-detailItem {
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}
.Photogallery-detailItemPubli .ad > div{
    margin: 0 auto;
    display: block;
    position: relative;
}
.Photogallery-detailItemMedia {
    width: 100%;
    display: block;
}
.Photogallery-detailItemInfo {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background: #2E3C43;
    padding: 10px;
}
.Photogallery-detailItemInfo.is-open {
    padding: 20px;
}
.Photogallery-detailItemInfo.is-open .Photogallery-detailItemTitle {
    display: block;
}
.Photogallery-detailItemTitle {
    display: none;
    font: 600 16px 'Merriweather';
    color: #FFFFFF;
    margin-bottom: 10px;
}
.Photogallery-detailItemInfo.is-open .Photogallery-detailItemDescription,
.Photogallery-detailItemInfo.is-open .Photogallery-detailItemAuthor {
    display: block;
}
.Photogallery-detailItemDescription {
    font: 400 16px/22px 'Open Sans';
    color: #FFFFFF;
    margin-bottom: 6px;
    display: none;
}
.Photogallery-detailItemAuthor {
    font: 12px/26px 'Open Sans';
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    display: none;
}
.Photogallery-detailItemText {
    margin-right: 20px;
}
.Photogallery-detailItemInfo.is-open .Photogallery-detailItemShare {
    display: block;
}
.Photogallery-detailItemShare {
    display: none;
}
.Photogallery-detailItemShare .share-icons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-right: 10px;
}
.Photogallery-detailItemShare .article-share-item {
    width: 23px;
    height: 23px;
    margin-right: 10px;
}
.Photogallery-detailItemShare .article-share-item:last-child {
    margin-right: 0;
}
.Photogallery-detailItemShare .article-share-item img {
    height: 23px !important;
}
.Photogallery-detailItemNumber {
    position: absolute;
    top: 0;
    right: 0;
    background: #2E3C43;
    padding: 8px;
    font: italic 12px 'Merriweather';
    color: #fff;
}
.Photogallery-detailItemInfo.is-open .article-share-item img {
    height: 32px !important;
}
.Photogallery-detailItemInfo.is-open .article-share-item {
    width: 32px;
    height: 32px;
    margin: 0 0 10px 0;
}
.Photogallery-detailItemInfo.is-open .share-icons {
    flex-direction: column;
    margin-right: 23px;
}
.Photogallery-detailItemActions {
    position: absolute;
    height: 40px;
    width: 40px;
    right: 0;
    top: -20px;
    padding: 11px;
    align-items: center;
    justify-content: center;
    background: #2E3C43;
    cursor: pointer;
    border-top-left-radius: 4px;
}
.Photogallery-detailItemInfo.is-open .Photogallery-detailItemActions {
    border-bottom-left-radius: 4px;
}
.Photogallery-detailItemInfo.is-open .Photogallery-detailItemActionsVertical {
    display: none;
}
.Photogallery-detailFull {
    display: none;
}

.Photogallery-detailInfo {
    display: none;
}

/* masonry layout */
.grid:after,
.grid-related:after {
  content: '';
  display: block;
  clear: both;
}
.grid-sizer,
.grid-item {
  width: 33.333%;
  position: relative;
}

.grid-related .grid-sizer,
.grid-related .grid-item {
  width: 100%;
  padding: 0 10px 20px 10px;
}
.grid-related .grid-item--full {
  width: 100%;
}

.grid-item {
  float: left;
  overflow: hidden;
  cursor: pointer;
}

.grid-link {
    transition: opacity 300ms ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(46,60,67,0.80);
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-item:hover .grid-link {
    opacity: 1;
}
.grid-item img  {
  display: block;
  max-width: 100%;
}
.grid-related .grid-item--full img  {
  display: block;
  max-width: 100%;
  width: 100%;
}

.Photogallery-back {
    background: #2E3C43;
    /* border-bottom: 20px solid #F5F5F5;*/
    padding: 20px 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-radius: 2px;
}
.Photogallery-related {
    padding: 30px 20px;
    background: #fff;
}
.Photogallery-related .related-news-title {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.Photogallery-related .related-news-title:after {
    margin-top: 0;
}
.Photogallery-backInfoTitle {
    font: 600 16px 'Merriweather';
    color: #FFFFFF;
    margin-bottom: 0;
}
.Photogallery-backInfoTitle a {
    color: #fff;
    text-decoration: none;
}
.Photogallery-backInfoTitle a:hover {
    text-decoration: underline;
}
.Photogallery-backInfoLink {
    position: relative;
}
.Photogallery-backInfoLink img{
    height: 150px;
}
.Photogallery-backInfoLinkIcon {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #06D0F1;
    border-bottom-left-radius: 2px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Photogallery-backInfo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Photogallery-backInfo .Photogallery-backInfoText {
    margin: 10px 20px 0 20px;
    text-align: center;
}
.Photogallery-backInfo .Photogallery-homeButton {
    margin-bottom: 0;
    display: none;
}
.Photogallery-backShare {
    width: 32px;
    position: absolute;
    right: 20px;
    top: 18px;
}
.Photogallery-backShare .article-share-item {
    width: 32px;
    height: 32px;
    margin: 0 0 10px 0;
}
.Photogallery-backShare .article-share-item img {
    height: 32px !important;
}
.Photogallery-backInfoAuthor {
    font: 14px 'OpenSans';
    font-style: italic;
    color: rgba(255, 255, 255, .68);
    margin: 15px 0 0 0;
}
.Photogallery-backInfoAuthor svg,
.Photogallery-backInfoAuthor img {
    margin: 0 4px;
    display: inline-block;
    vertical-align: middle;
}

.Photogallery-relatedList {
    margin: 0 -10px -30px -10px;
}
.Photogallery-relatedInfo {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 40px;
    font: 600 18px 'Merriweather';
    color: #FFFFFF;
    z-index: 2;
}
.Photogallery-relatedList .grid-item:after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 20px;
    right: 10px;
    top: 0;
    z-index: 1;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, #000000 100%);
}
.Photogallery-relatedInfo a {
    color: #FFFFFF;
}

/* Live Icon */
.live-icon {
    border: 1px solid;
    border-color: transparent #fff transparent #FFF;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
    width: 6px;
    position: relative;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.live-icon-container {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.live-icon-container .live-icon {
    display: block;
}
.live-hour {
    margin-bottom: 8px;
}

/* Ads */
.ads {
    padding: 12px 0;
    background: #fff;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #fafafa;
}
.ads::before {
    content: 'Esto es publi';
    font: 300 8px/12px 'Open Sans', sans-serif;
    margin-bottom: 4px;
    text-transform: uppercase;
    display: block;
}
.ad-pixel{
    display:none;
}
.mod-news-item .ads {
    margin: 0 0 12px 0;
    border:none;
}
.header .ads {
    margin-left: 10px;
    margin-right: 10px;
}
.header-inner .ads {
    margin-bottom: 10px;
}
.live-item .ads {
    margin-bottom: 0;
}

/* Social share */
.article-share {
    float: right;
    margin-top: 0;
    margin-right: 12px;
}
.article-share-item {
    height: 42px;
    width: 42px;
    display: inline-block;
    margin-right: 12px;
}
.article-share-item:last-child {
    margin-right: 0;
}
.article-share-item button{
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.article-share-item.facebook {
    background: #3b5998
}
.article-share-item.twitter {
    background: #55acee
}
.article-share-item.whatsapp {
    background: #34af23;
}
.article-share-item.telegram {
    background: #0088cc;
}

.share-vertical{
    width: auto;
    display: inline-block;
}
.share-vertical li,
.share-vertical img{
    width:32px;
    height:32px;
}
.share-bottom {
    width: auto;
    overflow: hidden;
    text-align: center;
    margin-bottom: 24px;
}
.share-bottom-item {
    padding: 0;
    width: 50.00%;
    float: left;
}
.share-bottom-item-mobile {
    width: 33.33%;
    float: left;
}
.share-bottom-item a, .share-bottom-item-mobile a {
    padding: 8px 0;
    display: block;
}
.share-bottom img {
    display: inline-block;
}
.share-bottom--fb {
    background: #3A5795;
}
.share-bottom--twitter {
    background: #0084B4;
}
.share-bottom--whatsapp {
    background: #009688;
}
.share-bottom--telegram {
    background: #0088cc;
}
.share-big {
    width: auto;
    overflow: hidden;
    margin-bottom: 20px;
}
.share-big .article-share-item {
    margin: 0;
    width: 33.33%;
    float: left;
    display: block;
}
.share-big .article-share-item img {
    display: block;
    margin: 0 auto;
}

/* Spinner Scroll Infinito */
#preloader {
    background-color: #F5F5F5;
    display: none;
    text-align: center;
    margin: 10px auto 0;
  /*  padding-bottom: 20px; */
}
.spinner {
    margin: 20px 0;
    text-align: center;
}
.spinner > div {
    width: 8px;
    height: 8px;
    background-color: rgba(6, 208, 241, 1);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% {
          -webkit-transform: scale(1.0);
          transform: scale(1.0);
      }
}

/* Single Scroll Infinito */
.hidden{visibility: hidden}
#moreposts-wrapper{
    width: 100%;
    background-color: #FFF;
    text-align: center;
    margin-bottom: 15px;
}
#moreposts {
    background-color: #06D0F1;
    font: 600 16px/28px 'Merriweather';
    text-decoration: none;
    color: #fff;
    position: relative;
    padding: 10px 20px;
    border: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    outline: none;
    cursor: pointer;
    margin: 0 55px 25px 0;
    height: 48px;
}
#moreposts::after {
    content: "";
    width: 35px;
    max-height: 28px;
    height: 100%;
    position: absolute;
    display: block;
    padding: 10px;
    top: 0;
    right: -55px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: url(../img/moreposts-arrow.svg) #0db2cd no-repeat center center;
    background-size: 20px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/* Footer */
.site-footer {
    background: #2E3C43;
    text-align: center;
    font: 400 12px/30px 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, .6);
    margin: 0 auto;
    max-width: 1000px;
    padding: 24px 12px;
}
.site-footer a {
    color: rgba(255, 255, 255, .8);
    text-align: center;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.footer-menu{
    position: initial;
    overflow: initial;
    border: 0;
    height: auto;
    width: auto;
    overflow: hidden;
    text-align: center;
}
.footer-menu li {
    overflow: hidden;
    border: 0;
    height: auto;
    float: none;
    margin: 0;
    display: inline-block;
    padding-right: 12px;
}
.footer-brand {
    margin-bottom: 20px;
}

/* Páginas estáticas */
.page .page-header {
    text-align: left;
    padding-bottom: 20px;
    background: #fff;
    overflow: visible;
}
.page .page-title {
    font: 600 32px/40px 'Merriweather';
    text-align: left;
}

/* Página de quienes somos */
.team-list {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    margin-left: -10px;
}
.team-list-item {
    list-style-type: none !important;
    background: #00CFF2;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin: 10px 0 0 10px !important;
    -webkit-flex: 0 0 100%;
    -ms-flex: 1 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.team-list-item a, .team-list-item p {
    color: rgba(255, 255, 255, .8) !important;
}
.team-list-item p {
    margin: 4px 0 0 0;
}
.team-list-item-media {
    margin: -20px -20px 20px -20px;
}
.team-list-item-media img {
    width: 100%
}

/* Página de contacto */
.page-template-template-contact #page{
     background-color: white !important;
}
.page-template-template-contact .content{
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}
#container-contacto{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#container-contacto #hola{
    order: 1;
    flex-basis: 100%;
}
#container-contacto #fan{
    order: 2;
    flex-basis: 100%;
}
#container-contacto #form{
    order: 3;
    flex-basis: 100%;
    width: 100%;
}
#container-contacto #form form p{
    /*  margin-bottom: 0; */
}
#container-contacto #form a{
    color: #06D0F1;
    text-decoration: none;
}
#container-contacto #fan > img{
    width: 90%;
    margin: 0 auto;
    display: block;
}
#container-contacto #hola{
    font-size: 20px;
    color: #2e3c43;
}
#container-contacto #hola h2{
    font-size: 4em;
    line-height: 80px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
#container-contacto #hola p a{
    color: #06d0f1 !important;
    text-decoration: none !important;
}
#container-contacto #form input[type="text"],
#container-contacto #form input[type="email"],
#container-contacto #form textarea{
    border: none;
    border-bottom: 1px solid #ccc;
    display: block;
    width: 100%;
    height: 42px;
    padding: .5714285714285714rem;
    font-size: 14px;
    line-height: 1.42857;
    color: #464646;
    background-color: #fff;
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none;
    -webkit-transition: border-color 0.3s, box-shadow 0.3s;
    -o-transition: border-color 0.3s, box-shadow 0.3s;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
}
#container-contacto #form input[type="text"]:focus,
#container-contacto #form input[type="email"]:focus,
#container-contacto #form textarea:focus {
    border: 0;
    border-bottom: 1px solid #06d0f1;
    outline: none;
}
#container-contacto #form textarea {
    height: 100px;
}
#container-contacto #form .wpcf7-acceptance{
    height: 20px;
    width:20px;
    vertical-align: bottom;
    margin-right: 10px;
}
#container-contacto #form .recaptcha{
    height: 100px;
    display: block;
    margin: 0 auto;
    width: 100%;
}
#container-contacto #form .recaptcha > div {
    margin: 0 auto;
}
#container-contacto #form input[type="submit"]{
    width: 100%;
    color: #06d0f1;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #06d0f1;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0;
    margin-top: 20px;
    padding: .5714285714285714rem 1.3rem;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}
#container-contacto #form input[type="submit"]:disabled,
#container-contacto #form input[type="submit"]:disabled:hover {
    color: #ccc;
    background-color: #aaa !important;
    border-color: #999 !important;
}
#container-contacto #form input[type="submit"]:hover {
    color: #fff;
    background-color: #06d0f1;
    border-color: #06d0f1;
}
#container-contacto #form img.ajax-loader {
    border: none;
    vertical-align: middle;
    margin-left: 4px;
    position: relative;
    left: 0;
}
#container-contacto #form .wpcf7-response-output {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    border: none;
    padding: 0;
    text-align: center;
    line-height: 1.2em;
}
#container-contacto #form .wpcf7-not-valid-tip{
    color: #c90000;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8em;
    font-style: italic;
}
#container-contacto #form .wpcf7-validation-errors,
#container-contacto #form .wpcf7-mail-sent-ng{
    color: #c90000;
}

#container-contacto #form .wpcf7-spam-blocked{
    color: #d57c00;
}

#container-contacto #form .wpcf7-mail-sent-ok{
    color: #23A92D;
}

@media (min-width: 759px) {
    #container-contacto #hola{
        order: 1;
        flex-basis: 50%;
    }
    #container-contacto #fan{
        order: 2;
        flex-basis: 50%;
    }
    #container-contacto #form{
        order: 3;
        flex-basis: 50%;
        margin-top: -170px;
    }
}
@media (max-width: 320px){
    #container-contacto #form .recaptcha {
        transform:scale(0.9);
        -webkit-transform:scale(0.9);
        transform-origin:center;
        -webkit-transform-origin:center;
    }
}


/* Página 404 */
.error404 .page-header {
    text-align: left;
    padding-bottom: 14px;
    margin-bottom: 20px;
}
.error404 .page-title {
    font: 600 32px/40px 'Merriweather';
    text-align: left;
}

/*
* TABLET
*/
@media (max-width: 500px) {

    /* hamburger menu */
    #hamburger-footer {
        padding: 24px;
    }

    /* Tags */
    .tags.is-active {
        height: 136px;
    }

    /* Zona zero */
    .Block--news-media, .Block--video-media {
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        -moz-transform: translate(-50%,0);
        transform: translate(-50%,0);
        margin: 0 auto;
        height: 400px;
    }
    .Block.Block--live .live-icon-container {
        width: 20px;
        height: 20px;
        margin-bottom: 20px;
    }
    .Block.Block--live .live-icon {
        border-width: 2px;
        width: 20px;
        height: 20px;
    }
    .Block--live-update:before {
        position: static;
        display: inline-block;
        margin-right: 12px;
    }
    .Block.Block--video .Block-inner {
        bottom: 120px;
    }
    .Block--video .video-play {
        right: auto;
        left: 50%;
        margin-left: -30px;
    }

    /* Author Template */
    .author-list > li {
        min-width: calc(100% - 20px);
    }

    /* Author page */
    .author-header-title {
        float: none;
    }
    .author-header-authorDescription {
        width: 200px;
    }

    /* Tag & Category Pages*/
    .tag-header-title {
        float: none;
    }
    .tag-header-info {
        float: none;
    }
    .tag-header-info p {
        display: block;
        margin-bottom: 8px;
    }
    .tag-header .tags-list {
        margin-bottom: 0;
        margin-left: 0;
    }
    .tag-header .tags-listItem {
        margin-left: 0;
        margin-right: 8px;
    }
    .tag-header .tags-list {
        max-width: 300px;
    }
    .tag-header-infoActions {
        margin-left: 0;
    }

    /* Related News */
    .related-news ul {
        margin-left: 0;
    }
    .related-news li {
        margin: 0 0 20px 0;
        min-width: 100%;
    }
}

@media (min-width: 759px) and (max-width: 980px) {

    /* Wrapper */
    .home .wrapper,
    .tag .wrapper,
    .author .wrapper,
    .category .wrapper,
    .noticia-directo .wrapper{
        padding: 0;
    }

    /* Módulos de Noticias */

    .mod-news{
        margin: 0;
    }
    .mod-news-item {
        -webkit-flex: 0 0 calc(49% - 5px);
        -ms-flex: 1 0 49%;
        flex: 0 0 calc(49% - 5px);
        max-width: calc(49% - 5px);
        margin: 0 6px 12px 6px;
    }
    .mod-news-item.hot-news {
        flex: 1 0 calc(98% - 15px);
        max-width: none;
        margin-right: 10px;
    }
    .mod-news-item.hot-news .mod-hot-news{
        width: 100%;
    }
    .mod-news-item.hot-news .mod-hot-news li{
        width:50%;
    }
}


/*
* DESKTOP / iPad
*/
@media (min-width: 759px) {

    /* Globals */
    .container-full {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    .show-desktop {
        display: block !important;
    }
    .show-mobile{
        display: none !important;
    }

    /* Wrapper */
    .wrapper {
        max-width: 1000px;
        margin: 0 auto;
        background: #fff;
    }

    /* Hamburger */
    #hamburger{
        background: #202E35;
        left: -100%;
        width: 0;
    }
    #hamburger.is-active {
        width: 60%;
        left: 0;
    }
    #hamburger-inner{
        background-color: transparent;
    }
    #hamburger-close{
        color:#fff;
    }
    #hamburger-menu {
        height: 86vh;
        box-shadow: none;
        background-color: transparent;
    }
    #hamburger-menu .menu-item {
        height: auto;
        padding: 0;
    }
    #hamburger-menu .menu-item a {
        font: 600 18px/25px 'Merriweather', sans-serif;
        padding: 40px;
        color: #fff;
        margin: 0;
        border-top: none;
        margin-right: 8px;
    }
    #hamburger-menu .menu-item a:hover {
        background: rgba(0, 0, 0, 0.2);
    }
    #hamburger-menu .menu::-webkit-scrollbar-track{
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 5px;
        background-color: transparent;
    }
    #hamburger-menu .menu::-webkit-scrollbar{
        width: 5px;
        background-color: transparent;
    }
    #hamburger-menu .menu::-webkit-scrollbar-thumb{
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #555;
    }
    #hamburger-footer{
        height: 14vh;
        text-align: left;
    }
    #hamburger-footer img{
        height: 40px;
        width: 120px;
    }

    /* scrollWrapper */
    .scrollWrapper {
        background: transparent;
        padding: 0;
        /* box-shadow: 0 0 0; */
        -webkit-box-shadow: 0 6px 4px -1px rgba(0, 0, 0, .2);
        -moz-box-shadow: 0 6px 4px -1px rgba(0, 0, 0, .2);
        box-shadow: 0 6px 4px -1px rgba(0, 0, 0, .2);
    }
    .scrollWrapper .scroll-bar {
        height: 2px;
        top: 58px;
    }
    .scrollWrapper-inner {
        max-width: 1000px;
        position: relative;
        background: #fff;
        padding: 10px 0;
        /*  border-bottom: 3px solid rgba(0, 0, 0, .1); */
        height: 60px;
    }
    .scrollWrapper .hamburger {
        top: 50%;
        margin-top: -13px;
    }
    .scrollWrapper .share-header {
        max-width: 150px;
        float: none;
        position: absolute;
        right: 0;
        padding: 0;
        top: 8px;
    }

    /* ScrollWrapper Social Menu */
    .social-menu {
        right: 20px;
    }
    .social-menu  .menu-item {
        margin-left: 12px;
    }

    /* Cookie Bar Info */

    /* Header */
    .header{
        background: transparent;
        position: relative;
        height: auto;
        padding: 10px 0;
    }
    .header-inner {
        width: 100%;
        margin: 0 auto;
        position: relative;
        background: #fff;
        border-radius: 2px;
        padding: 10px 0;
    }

    /* hamburger Icon */
    .hamburger {
        left: 24px;
        top: 45%;
        margin-top: -8px;
    }

    /* Brand */
    .brand {
        width: 210px;
        margin: 0 auto;
        height: 75px;
        background: url(../img/logo-eslang.svg) no-repeat center center;
        padding-top: 0
    }
    .brand > img {
        display: none;
    }
    .brand-scroll {
        width: 86px;
        margin: 0 auto;
        height: 37px;
        background: url(../img/icon-eslang.svg) no-repeat;
    }
    .brand-scroll > img {
        display: none;
    }

    /* Tags */
    .tags{
        width: auto;
        padding: 16px 90px 16px 24px;
    }
    .tags.is-active {
        height: auto;
        padding-bottom: 0;
    }
    .tags .swiper-container:before,
    .tags .swiper-container:after {
        display: none;
    }
    .tags.is-active .swiper-container{
        height: auto;
    }
    .tags-list{
        position: relative;
        width: 100%;
        overflow: hidden;
        /* z-index: 1; */
        display: block;
        -webkit-transition-property: none;
        -moz-transition-property: none;
        -o-transition-property: none;
        -ms-transition-property: none;
        transition-property: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .tags-listItem{
        margin-right: 10px;
        margin-bottom: 15px;
        width: auto !important;
    }
    .tags-actions{
        display: block;
    }
    .tag-header-brand{
        float: right;
        clear: none;
        margin-top: 0;
    }
    .tag-header-brand img {
        max-height: 65px;
        width: auto;
    }

    /* Container */

    /* Zero Zone */
    .Block-title {
        font: 800 48px/64px 'Merriweather';
        position: relative;
    }
    .Block--video .Block-title {
        font: 800 41px/55px 'Merriweather';
        position: relative;
    }
    .Block--live .Block-title {
        font: 800 41px/55px 'Merriweather';
        position: relative;
    }
    .Block-inner {
        bottom: 30px;
        padding: 0 80px;
    }
    .Block--video .Block-inner {
        text-align: left;
        padding: 0;
        left: 30px;
        bottom: 30px;
        right: 250px;
    }
    .Block--live .Block-inner {
        text-align: left;
        padding: 0;
        left: 30px;
        bottom: 30px;
        right: 250px;
    }
    .Block.Block--live .live-icon-container {
        width: 20px;
        height: 20px;
        margin-bottom: 20px;
    }
    .Block.Block--live .live-icon {
        border-width: 2px;
        width: 20px;
        height: 20px;
    }


    .Block--fotogaleria .Block-inner {
        padding: 0 40px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .Block--fotogaleria .Block-title {
        text-align: left
    }
    .Block--fotogaleria .Block-icon {
        margin: 20px 40px 0 0;
    }

    /* Blue Zone */
    .blue-zone {
        background: #F5F5F5;
    }
    .blue-zone-inner {
        display: -webkit-flex;
        display: flex;
        background: #f5f5f5;
    }
    .blue-zone-highlight {
        -webkit-flex: 0 0 calc(66.5% - 1px);
        -ms-flex: 1  0  66.5%;
        flex: 0 0 calc(66.5% - 1px);
        max-width: calc(66.5% - 1px);
        background-size: cover;
        background-position: center center;
        position: relative;
        border-radius: 2px;
        overflow: hidden;
    }
    .blue-zone-highlight.video  {
        /* min-height: auto; */
    }
    .blue-zone-highlight.video .author {
        display: none;
    }
    .blue-zone-highlight.fotogaleria .blue-zone-highlight-text {
        position: absolute;
    }
    .blue-zone-highlight-text {
        padding: 24px;
        text-align: center;
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(6, 208, 241, .8);
    }
    .noticia-directo .blue-zone-highlight-text {
        background-color: rgba(239, 45, 86, .8);
    }

    .blue-zone-inner .fotogaleria:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000000 100%);
    }

    .blue-zone-highlight-inner {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .blue-zone-highlight-icon {
        margin-right: 10px;
        margin-top: 4px;
    }
    .blue-zone-highlight-text .blue-zone-highlight-icon {
        margin-top: 8px;
    }


    .blue-zone-media{
        display: none;
    }

    .blue-zone-aside {
        padding: 0;
    }
    .blue-zone-aside a {
        font-size: 22px;
    }
    .blue-zone-aside h2 {
        font: 600 22px/28px 'Merriweather', sans-serif;
        margin-bottom: 12px;
    }
    .blue-zone-aside h3 {
        display: inline-block;
        border: 1px solid rgba(46, 60, 67, .4);
        padding: 0 12px;
        margin-bottom: 10px;
        color: #2E3C43;
        border-radius: 2px;
        font-size: 12px;
        line-height: 24px;
    }
    .blue-zone-aside p.author {
        padding: 0;
        border: 0;
        color: rgba(46, 60, 67, .5);
        font: italic 12px 'Open Sans';
        display: block;
    }
    .blue-zone-aside p.author:before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 2px;
        border-radius: 10px;
        vertical-align: middle;
        background: rgba(46, 60, 67, .2);
        margin-right: 8px;
    }
    .blue-zone-aside > div {
        margin-bottom: 10px;
        background: #fff;
        border-radius: 2px;
        text-align: left;
        padding: 24px;
        margin-left: 10px;
    }
    .blue-zone-aside > div:after {
        display: none;
    }
    .blue-zone-aside > div:last-child {
        margin-bottom: 0;
    }
    .blue-zone-aside > div:hover{
        background: #EBF3F4;
        opacity: 0.8;
    }
    .blue-zone-aside ul.author{
        padding: 0 0 0 24px;
        border: 0;
        color: rgba(46, 60, 67, .5);
        font: italic 12px 'Open Sans';
        display: block;
        margin: 0;
        position: relative;
    }
    .blue-zone-aside ul.author:before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 16px;
        height: 2px;
        border-radius: 10px;
        vertical-align: middle;
        background: rgba(46, 60, 67, .2);
    }
    .blue-zone-aside ul.author li {
        background-color: transparent;
        display: inline-block;
        margin:0;
        padding:0;
    }
    .blue-zone-aside ul.author li:after {
        content: "&";
        margin: 0 4px;
        display: inline;
        background: none;
    }
    .blue-zone-aside ul.author li:last-child:after {
        display: none;
    }

    /* Green Zone */

    /* Módulo Lo Más */
    .green-zone .mod-news-item:last-child{
        -webkit-flex: 0 0 calc(100% - 12px);
        -ms-flex: 1 0 100%;
        flex: 0 0 calc(100% - 12px);
        max-width: calc(100% - 12px);
        min-height: inherit;
        margin: 0 6px 12px;
    }

    /* Módulo de Twitter */
    .mod-twitter {
        display: block;
        padding: 10px 0;
        background: #f5f5f5;
    }
    .mod-twitter a {
        -webkit-transition: background .1s ease-in;
        transition: background .1s ease-in;
        border-radius: 2px;
        padding: 18px;
        background: #55acee;
        color: #fff;
        text-decoration: none;
        display: block;
    }
    .mod-twitter a:hover {
        background: #55acee;
    }
    .mod-twitter-txt {
        display: table;
        font: 14px/22px 'Merriweather';
    }
    .mod-twitter-date {
        font: 12px/17px 'Open Sans';
        font-style: italic;
    }
    .mod-twitter-media {
        float: left;
        margin-right: 12px;
        padding-top: 6px;
    }

    /* Módulos de Noticias */
    .mod-news {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
        box-sizing: border-box;
        background: #F5F5F5;
        border-top: 0;

    }
    .mod-news-item {
        /*
        -webkit-flex: 0 0 calc(32.8% - 5px);
        flex: 0 0 calc(32.8% - 5px);
        max-width: calc(32.8% - 5px);
        */
        background: #fff;
        box-sizing: border-box;
    }
    .mod-news-item.double{
        /*
        -webkit-flex: 0 0 calc(66.2% - 5px) !important;
        flex: 0 0 calc(66.2% - 5px) !important;
        max-width: calc(66.2% - 5px) !important;
        */
    }
    .mod-news-item > a {
        display: block;
        background: transparent;
        border-radius: 2px;
        overflow: hidden;
        height: 100%;
    }
    .mod-news-item:hover{
        opacity: 0.8;
    }
    .mod-news-item:hover.video {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    .mod-news-item img {
        opacity: 1;
       /* margin-bottom: 20px; */
    }
    .mod-news-item.noticia:hover {
        background: rgb(235, 243, 244) !important;
    }
    .mod-news-item.noticia > a{
        height:auto;
    }
    .mod-news-item.video {
 /*       height: auto; */
    }
    .mod-news-item.video .video-play {
        bottom: 32px;
    }
    .mod-news-item.noticia-longread {
        padding: 0;
    }
    .mod-news-item.noticia-longread:hover > a {
        background: transparent !important;
    }
    .mod-news-item.noticia-longread > a:hover {
        background: none !important;
    }
    .mod-news-item.noticia-directo {
        padding: 0;
    }
    .mod-news-item.noticia-directo:hover > a {
        opacity: 1;
        background: transparent;
    }
    .mod-news-item.fotogaleria {
        min-height: 380px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .mod-news-item.fotogaleria:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000000 100%);
    }
    .mod-news-item.fotogaleria .mod-news-text  {
        padding: 0;
        position: absolute;
        left: 20px;
        bottom: 20px;
        z-index: 2;
    }
    .mod-news-item.fotogaleria .mod-news-text-inner  {
        color: #fff;
    }
    .mod-news-item.fotogaleria .mod-news-text-inner h3 {
        border: 1px solid rgba(255, 255, 255, .4);
        color: #fff;
    }
    .mod-news-item.fotogaleria p.authors {
        padding: 0 0 0 24px;
        border: 0;
        color: rgba(255, 255, 255, .5);
        font: italic 12px 'Open Sans';
        display: block;
        margin: 0;
        position: relative;
    }
    .mod-news-item.fotogaleria p.authors:before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 16px;
        height: 2px;
        border-radius: 10px;
        vertical-align: middle;
        background: rgba(255, 255, 255, .2);
    }
    .mod-news-item.fotogaleria .mod-news-text-info {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        margin-right: 20px;
    }
    .mod-news-item.fotogaleria .mod-news-text-info  h2 {
        font: 600 22px 'Merriweather';
        line-height: 28px;
        margin-bottom: 10px;
    }

    .mod-news-item.fotogaleria .mod-news-text-icon {
        margin-right: 10px;
        margin-top: 4px;
    }
    .mod-news-text-inner {
        color: #2E3C43;
        margin-top: 0;
        padding: 0;
    }
    .mod-news-text-inner > h2 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .mod-news-text-inner p.author,
    .mod-news-text-inner ul.author{
        padding: 0 0 0 24px;
        border: 0;
        color: rgba(46, 60, 67, .5);
        font: italic 12px 'Open Sans';
        display: block;
        margin: 0;
        position: relative;
    }
    .mod-news-text-inner p.author:before ,
    .mod-news-text-inner ul.author:before{
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 16px;
        height: 2px;
        border-radius: 10px;
        vertical-align: middle;
        background: rgba(46, 60, 67, .2);
    }
    .mod-news-text-inner ul.author li{

        background-color: transparent;
        display: inline-block;
        margin:0;
        padding:0;
    }
    .mod-news-text-inner ul.author li:after{
        content: "&";
        margin: 0 4px;
        display: inline;
        background: none;
    }
    .mod-news-text-inner ul.author li:last-child:after{
        display: none;
    }
    .mod-news-share {
        display: none;
    }

    .noticia-longread .mod-news-text-inner,
    .noticia-directo .mod-news-text-inner {
         padding-bottom: 40px;
     }
    .video .mod-news-text-inner{
        padding-bottom: 120px;
    }
    .video .mod-news-text-inner h2{
        padding-bottom: 10px;
    }
    .video .mod-news-text-inner ul.author {
        display: inline-block;
    }

    .noticia-directo .mod-news-text-inner p.author,
    .noticia-directo .mod-news-text-inner ul.author {
        color: #fff;
    }
    .noticia-directo .mod-news-text-inner p.live-intro {
        color: #fff;
        font-size: 14px;
        line-height: 20px;
    }
    .noticia-directo .mod-news-text-inner p.author:before,
    .noticia-directo .mod-news-text-inner ul.author:before {
        background: rgba(255, 255, 255, 1);
    }
    .noticia-directo .live-icon-container {
        width: 20px;
        height: 34px;
        margin-bottom: 0;
        display: inline-block;
        vertical-align: middle;
    }
    .noticia-directo .live-icon-container .live-icon {
        display: inline-block;
        vertical-align: middle;
    }
    .noticia-directo.mod-news-item .live-icon {
        border-color: transparent #fff transparent #fff;
        width: 20px;
        height: 20px;
    }

    .fotogaleria .mod-news-text-inner ul.author {
        color: #fff;
    }
    .fotogaleria .mod-news-text-inner ul.author:before{
        background-color: #fff;
    }
    /* Content Text Formats */
    .content {
        width: auto;
        margin: 0 23% 0 15%;
        overflow: visible;
    }
    .content.fullwidth{
        margin: 0;
    }

    .content p.content-date {
        float: none;
        margin: 0 0 10px;
    }
    /* Media */

    /* Tap & fog */

    /* Author Template */

    /* Author page */

    .author-header-description{
        max-width: 80%;
    }

    /* Tag & Category Pages*/

    /* Shortcodes */
    .figure.float,
    .quote.float{
        float: right;
        width: 300px;
        margin-right: -180px;
        margin-left: 24px;
    }

    /* Recommended News */

    /* Telegram */

    #content-bots {
        padding: 20px;
    }
    #content-bots #deliver{
        margin-right: 30px;
    }
    /* Related News */

    /* Comments */

    /* Single */
    .news-header {
        background: transparent;
        position: relative;
        height: auto;
        padding: 0;
    }
    .news-header-inner {
        margin: 0 60px;
        background: none !important;
        height: auto;
    }
    .news-header-inner:before {
        display: none;
    }
    .news-header-inner:after {
        display: none;
    }
    .news-header-inner img {
        width: 100%;
        display: block;
    }
    .news-header-inner .wp-caption-text {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        padding: 12px;
        background: rgba(0, 0, 0, .8);
        color: #FFF;
        font: 400 12px/10px 'Open Sans', sans-serif;
        font-style: italic;
        text-align: right;
    }
    .news-header-content {
        position: static;
        background: #fff;
        text-align: center;
        padding: 30px 0;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }
    .news-header-title {
        color: #2E3C43;
        padding: 0 5%;
    }
    .news-header-title + div {
        margin: 0 auto;
    }
    .header-media figcaption.wp-caption-text {
        position: absolute;
        bottom: 0;
    }
    .highlight {
        padding-left: 10%;
        margin-right: 23%;
        position: relative;
        margin-left: 60px;
        /* z-index: 1001; */
    }
    .highlight-title {
    /*    padding-left: 16px; */
    }
    .highlight-reasons {
        color: #fff;
    }
    .highlight-item {
        display: block;
    }

    /* Single Longread */
    .single-noticia-longread .news-header-content {
        bottom: 34px;
    }

    /* Single Video */
    .single-video .news-header-title{
        font: 600 32px/40px 'Merriweather';
    }

    /* Single Directo */
    .single-noticia-directo .highlight-reasons {
        color: #333;
        margin-top: 15px;
    }
    .single-noticia-directo .highlight-item:first-child{
        margin-right: 20px;
    }
    .single-noticia-directo .highlight-item:before {
        background: #333;
    }
    .single-noticia-directo .highlight-item:after {
        background: #333;
    }

    .nav-live {
        margin-left: -24px;
        margin-right: -24px;
    }
    .live-info {
        text-align: center;
        margin-bottom: 12px;
    }
    .live-info-item {
        float: none;
        display: inline-block;
    }
    .live-item .figure {
        float: none;
        margin: 0 0 24px 0;
        width: 100%;
    }
    .live-item-inner {
        padding: 24px 0;
    }

    /* Single Longread */
    .single-noticia-longread .tag-simple .tags-inner {
        margin-left: 0px;
    }
    .single-noticia-longread .news-header-inner {
        margin: 0;
    }

    /* Single Fotogalería */
    .single-fotogaleria #page {
        background-color: #f5f5f5;
    }
    .Photogallery-container{
        /* margin-bottom: 20px; */
    }
    .Photogallery-home {
        background: #0B0A08;
        border: none;
        padding: 40px;
        min-height: 640px;
        position: relative;
        overflow: hidden;
    }
    .Photogallery-homeMediaBg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        opacity: 0.25;
        -webkit-filter: blur(8px);
        filter: blur(8px);
    }
    .Photogallery-homeContainer {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        position: relative;
    }
    .Photogallery-homeShareMobile {
        display: none;
    }
    .Photogallery-homeShare {
        display: block;
        padding-top: 18px;
        margin-right: 20px;
    }
    .Photogallery-homeShare .article-share-item {
        margin-right: 0;
        display: block;
        margin-bottom: 10px;
    }
    .Photogallery-homeTitle {
        font: 600 42px/62px 'Merriweather';
        margin-bottom: 12px
    }
    .Photogallery-homeTitle a {
        color: #fff;
        text-decoration: none;
    }
    .Photogallery-homeTitle a:hover {
        text-decoration: underline;
    }
    .Photogallery-homeContainerInner {
        margin-right: 120px;
    }
    .Photogallery-homeMetadata {
        margin-bottom: 20px;
        font: 200 14px 'Open Sans';
        font-style: italic;
        color: #fff;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .Photogallery-homeMore {
        display: none;
    }
    .Photogallery-homeDescription {
        font: 16px 'Open Sans';
        color: #fff;
        margin-bottom: 0;
    }
    .Photogallery-homeMetadata ul.author {
        margin-right: 10px;
    }
    .Photogallery-homeMetadata ul.author:before {
        content: "";
        width: 16px;
        height: 1px;
        background: #fff;
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
    }
    .Photogallery-homeMetadata ul.author.avatar:before {
        content: none;
    }
    .Photogallery-homeMetadata ul.author.avatar > li > img {
        vertical-align: text-top;
        margin-top: -5px;
    }
    .Photogallery-homeMetadata ul.author:after {
        content: '|';
        margin-left: 8px;
    }
    .Photogallery-homeMetadata ul.author li{
        display: inline;
    }
    .Photogallery-homeMetadata ul.author li:after{
        content: '&';
        margin: 0 5px;
    }
    .Photogallery-homeMetadata ul.author li:last-child:after{
        content: none;
    }
    .Photogallery-homeButton {
        visibility: hidden;
        margin-bottom: 40px;
        display: inline-block;
    }
    .Photogallery-homeButton2 {
        background: #06D0F1;
        color: #fff;
        position: absolute;
        display: inline-block;
        cursor: pointer;
        right: 50px;
        top: 50%;
    }
    .Photogallery-homeButton2:after{
        position:absolute;
        content:" ";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 25px 0 25px 20px;
        border-color: transparent transparent transparent #06A3C4;
        transition: all 0.2s ease-in;
    }
    .Photogallery-homeButton2:hover:after{
        border-style: solid;
        border-width: 30px 0 30px 30px;
        border-color: transparent transparent transparent #06D0F1;
        margin-top: -3px;
    }
    .Photogallery-navigation  {
        display: block;
    }
    .Photogallery-navigation span {
        display: flex;
        text-indent: -9000px;
        width: 40px;
        height: 128px;
        background-color: rgba(46,60,67,0.80);
        cursor:pointer;
    }
    .Photogallery-navigation span:hover {
        background-color: rgba(46,60,67,1);
    }
    .Photogallery-navigation .nav-previous {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -64px;
        z-index: 10;
    }
    .Photogallery-navigation--home {
        position: absolute;
        right: -40px;
    }
    .Photogallery-navigation .nav-previous span {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
        background-image: url(../img/arrow-prev.svg);
        background-repeat: no-repeat;
        background-position: center center;
    }
    .Photogallery-navigation .nav-next {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -64px;
        z-index: 10;
    }
    .Photogallery-navigation .nav-next span {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
        background-image: url(../img/arrow-next.svg);
        background-repeat: no-repeat;
        background-position: center center;
    }
    .Photogallery-homeContainer .Photogallery-navigation .nav-next{
        margin-top:0;
    }
    .Photogallery-detailInner {
        border-bottom: none;
        overflow: hidden;
        position: relative;
        background: rgba(216, 216, 216, 0.498039);
    }

    .Photogallery-detailItem {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 630px;
        margin: 0;
        border: none;
    }
    .Photogallery-detailItemMedia {
    }
    .Photogallery-detailItemInfo {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(46,60,67,0.80);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 9px 10px 1px 10px;
    }
    .Photogallery-detailItemInfo.is-open {
        padding: 20px;
    }
    .Photogallery-detailItemInfo.is-open .Photogallery-detailItemTitle {
        margin-bottom: 10px;
    }
    .Photogallery-detailItemTitle {
        display: block;
        font: 600 16px 'Merriweather';
        color: #FFFFFF;
    }
    .Photogallery-detailItemInfo.is-open .Photogallery-detailItemDescription,
    .Photogallery-detailItemInfo.is-open .Photogallery-detailItemAuthor {
        display: block;
    }
    .Photogallery-detailItemDescription {
        font: 400 16px/22px 'Open Sans';
        color: #FFFFFF;
        margin-bottom: 6px;
        display: none;
    }
    .Photogallery-detailItemAuthor {
        font: 12px/26px 'Open Sans';
        font-style: italic;
        color: rgba(255, 255, 255, 0.5);
        display: none;
        position: relative;
        padding: 0 0 0 24px;
    }
    .Photogallery-detailItemAuthor:before{
        content: "";
        position: absolute;
        left: 0;
        top: 12px;
        width: 16px;
        height: 2px;
        border-radius: 10px;
        vertical-align: middle;
        background: rgba(255, 255, 255, .2);
    }
    .Photogallery-detailItemText {
        margin-right: 200px;
    }
    .Photogallery-detailItemShare {
        display: block;
    }
    .Photogallery-detailItemShare .share-icons {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        margin-right: 10px;
    }
    .Photogallery-detailItemShare .article-share-item {
        width: 23px;
        height: 23px;
        margin-right: 10px;
    }
    .Photogallery-detailItemShare .article-share-item:last-child {
        margin-right: 0;
    }
    .Photogallery-detailItemShare .article-share-item img {
        height: 23px !important;
    }
    .Photogallery-detailItemInfo.is-open .article-share-item img {
        height: 32px !important;
    }
    .Photogallery-detailItemInfo.is-open .article-share-item {
        width: 32px;
        height: 32px;
        margin: 0 0 10px 0;
    }
    .Photogallery-detailItemInfo.is-open .share-icons {
        flex-direction: column;
        margin-right: 23px;
    }
    .Photogallery-detailItemActions {
        position: absolute;
        height: 40px;
        width: 40px;
        right: 0;
        top: 0;
        bottom: auto;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E3C43;
        cursor: pointer;
    }
    .Photogallery-detailItemInfo.is-open .Photogallery-detailItemActions {
        border-bottom-left-radius: 4px;
    }
    .Photogallery-detailItemInfo.is-open .Photogallery-detailItemActionsVertical {
        display: none;
    }
    .Photogallery-detailItemNumber {
        display: none;
    }
    .Photogallery-detailFull {
        display: block;
        position: absolute;
        height: 40px;
        width: 40px;
        right: 0;
        top: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E3C43;
        cursor: pointer;
        border-bottom-left-radius: 2px;
        z-index: 10;
    }
    .Photogallery-detailFull .Photogallery-detailFullCloseIcon {
        display: none;
    }
    .Photogallery-detailFull.is-open .Photogallery-detailFullIcon {
        display: none;
    }
    .Photogallery-detailFull.is-open .Photogallery-detailFullCloseIcon {
        display: block;
    }
    .Photogallery-detailInfo {
        background: #2E3C43;
        border-bottom: 10px solid #F5F5F5;
        padding: 0 0 0 12px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 2px;
    }
    .Photogallery-detailInfoText {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        margin-right: 40px
    }
    .Photogallery-detailInfoTitle {
        padding: 0;
        font: 600 18px 'Merriweather';
        font-weight: bold;
        color: #FFFFFF;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .Photogallery-detailInfoNumber {
        display: block;
        font: 20px 'Merriweather';
        font-style: italic;
        color: #FFFFFF;
        margin-right: 15px;
        padding-right: 15px;
        border-right: 1px solid rgba(255, 255, 255, .20);
    }
    .Photogallery-detailInfoIcon {
        display: block;
        margin-right: 12px;
        height: 40px;
        cursor: pointer;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .Photogallery-detailInfoIcon.is-mosaic {
        opacity: .5;
    }
    .Photogallery-backInfoLink {
        display:flex;
        cursor: pointer;
    }
    .Photogallery-backInfoLink:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        top: 0;
        z-index: 1;
    }
    .Photogallery-backInfoLink:hover:after {
        background: linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, #000000 100%);
    }

    .Photogallery-container.goFullscreen{
        position: fixed !important;
        height: auto !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 2147483647 !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        background-color: rgba(255,255,255,0.9);
    }
    .Photogallery-container.goFullscreen .Photogallery-detail,
    .Photogallery-container.goFullscreen .Photogallery-detailInner { height: 100% }

    .Photogallery-container.goFullscreen .Photogallery-detailInner {
        background: #fff;
    }

    .Photogallery-container.goFullscreen .Photogallery-detailInfo{
        position: absolute !important;
        width: 100%;
        z-index: 1;
        border-bottom-color: #fff;
    }
    .Photogallery-container.goFullscreen .Photogallery-detailInfoIcon{visibility:hidden}
    .Photogallery-container.goFullscreen .Photogallery-detailItemMedia {
        height: calc(100% - 80px);
        max-height: 100%;
    }
    .Photogallery-container.goFullscreen .Photogallery-detailItemInfo{
        background: #2E3C43
    }

    /*    .Photogallery-container.goFullscreen .Photogallery-navigation{ display:none !important }
    .Photogallery-container.goFullscreen .Photogallery-detailItemInfo{ bottom: -135px; transition: all 0.4s cubic-bezier(.8,.4,.4,.8)}
    .Photogallery-container.goFullscreen .Photogallery-detailItemMedia { height: 100%;}
    .Photogallery-container.goFullscreen .js-detailsActions { display:none }
    .Photogallery-container.goFullscreen .Photogallery-detailItemInfo.locked {bottom: 0;}
    */
        /* masonry layout */

    .grid:after,
    .grid-related:after {
      content: '';
      display: block;
      clear: both;
    }
    .grid-sizer,
    .grid-item {
      width: 25%;
    }

    .grid-related .grid-sizer,
    .grid-related .grid-item {
      width: 33%;
      padding: 0 10px 20px 10px;
      box-sizing: border-box;
    }
    .grid-related .grid-item--full {
      width: 100%;
    }

    .grid-item {
      float: left;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .grid-link {
        transition: opacity 300ms ease-in-out;
        opacity: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(46,60,67,0.80);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .grid-item:hover .grid-link {
        opacity: 1;
    }
    .grid-item img {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }
    .grid-related .grid-item--full img {
        display: block;
        max-width: 100%;
        width: 100%;
    }
    .Photogallery-back {
        background: #2E3C43;
        border-bottom: 10px solid #F5F5F5;
        padding: 12px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        border-radius: 2px;
    }
    .Photogallery-related {
        padding: 30px 20px;
        background: #fff;
    }
    .Photogallery-related .related-news-title {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .Photogallery-related .related-news-title:after {
        margin-top: 0;

    }
    .Photogallery-backInfoTitle {
        font: 600 22px 'Merriweather';
        font-weight: bold;
        color: #FFFFFF;
        margin-bottom: 20px;
    }
    .Photogallery-backInfoTitle a {
        color: #fff;
        text-decoration: none;
    }
    .Photogallery-backInfoTitle a:hover {
        text-decoration: underline;
    }
    .Photogallery-backInfo {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin: 0;
    }
    .Photogallery-backInfo .Photogallery-backInfoText {
        margin: 0 40px 0 20px;
        text-align: left;
    }
    .Photogallery-backInfo .Photogallery-homeButton {
        display: inline-block;
        margin-bottom: 0;
    }
    .Photogallery-backShare {
        position: static;
        width: 32px;
    }
    .Photogallery-backShare .article-share-item {
        width: 32px;
        height: 32px;
        margin: 0 0 10px 0;
    }
    .Photogallery-backShare .article-share-item img {
        height: 32px !important;
    }
    .Photogallery-backShare .share-icons {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .Photogallery-backShare .share-icons .article-share-item {
        margin-right: 10px;
    }
    .Photogallery-backInfoAuthor {
        font: 14px 'Open Sans';
        font-style: italic;
        color: rgba(255, 255, 255, .68);
        margin: -13px 0 8px 0;
    }
    .Photogallery-backInfoAuthor svg,
    .Photogallery-backInfoAuthor img {
        margin: 0 4px;
        display: inline-block;
        vertical-align: middle;
    }

    .Photogallery-relatedList {
        margin: 0 -10px -30px -10px;
    }
    .Photogallery-relatedInfo {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 40px;
        font: 600 18px 'Merriweather';
        font-weight: bold;
        color: #FFFFFF;
        z-index: 2;
    }
    .Photogallery-relatedList .grid-item:after {
        content: "";
        position: absolute;
        left: 10px;
        bottom: 20px;
        right: 10px;
        top: 0;
        z-index: 1;
        background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, #000000 100%);
    }
    .Photogallery-relatedList .grid-item:hover:after {
       background: rgba(46, 60, 67, 0.9);
    }
    .Photogallery-relatedInfo a {
        color: #FFFFFF;
    }

    /* Ads */
    .ads {
        margin: 10px 0 0 0;
    }
    .ads.roba {
        float: right;
        margin: 0 -200px 20px 20px;
        min-width: 300px;
    }
    .ads.intext {
        margin: 15px 0;
    }
    .ads.banner-inf {
        margin-left: -29%;
        margin-right: -42%;
        margin-bottom: 20px;
    }
    .mod-news-item.ads {
        margin: 0 5px 10px 5px;
    }

    /* Social share */
    .article-share-item.whatsapp,
    .article-share-item.telegram{
        display: none !important;
    }

    .share-big .article-share-item {
        margin: 0;
        width: 50%;
        float: left;
    }

    .share-vertical {
        width: 42px;
        position: absolute;
        left: -80px;
    }
    .share-vertical li,
    .share-vertical img{
        width:42px;
        height:42px;
    }
    /* hamburger Menu Scroll */

    /* Spinner Scroll Infinito */

    #moreposts {
        font: 600 19px/28px 'Merriweather';
        padding: 15px 25px;
        margin-right: 65px;
        opacity: 0.65;
        transition: opacity 0.2s linear;
        height: 58px;
    }
    #moreposts::after {
        width: 35px;
        max-height: 28px;
        padding: 15px;
        right: -65px;
        font-size: 16px;
        background-size: 25px;
    }
    #moreposts:hover {
        opacity: 1;
    }

    /* Footer */
    .site-footer {
        background: #2E3C43;
        text-align: center;
        font: 400 12px/30px 'Open Sans', sans-serif;
        color: rgba(255, 255, 255, .6);
        padding: 0;
        margin-top: 10px;
        max-width: 1000px;
    }
    .site-footer .site-info {
        padding: 36px 20px 20px 20px;
        width: auto;
        overflow: hidden;
    }

    .footer-menu {
        float: right;
    }
    .footer-menu .menu {
        text-align: right;
    }

    .footer-brand {
        float: left;
        margin: 0;
    }

    /* Páginas */

    /* Página de contacto */
    .team-list-item {
        margin-bottom: 10px !important;
        -webkit-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

}


/*
* LARGE DESKTOP
*/

@media (min-width: 981px){

    .mod-news{
        margin: 0 -5px;
    }

    .mod-news-item, .green-zone .mod-news-item:last-child{
        -webkit-flex: 0 0 calc(32.8% - 5px);
        -ms-flex: 1 0 32.8%;
        flex: 0 0 calc(32.8% - 5px);
        max-width: calc(32.8% - 5px);
        margin: 0 5px 10px 5px;
    }

    .mod-news-item.double{
        -webkit-flex: 0 0 calc(66.2% - 5px);
        -ms-flex: 1 0 66.2%;
        flex: 0 0 calc(66.2% - 5px);
        max-width: calc(66.2% - 5px);
    }
}

/* Map Banner */

.map-banner {
    background: url('../img/banner-festivales.jpg') center center;
    height: 100px;
    margin-bottom: 10px !important;
    border-radius: 2px;
    padding: 0 !important;
}
.map-banner a{
    text-decoration: none;
    display: block;
    height: 100%;
}
.map-banner-inner{
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0,0,0, 0.8) 100%);
    height: 100%;
    padding: 10px;
    display: table;
    width: 100%;
}
.map-banner-inner h2 {
    font: 600 22px/36px 'Merriweather', serif !important;
    text-align: center;
    color: rgb(255, 255, 255);
    vertical-align: middle;
    display: table-cell;
    text-shadow: 0 1px 5px #000;
    max-width: 100%;
}

.map-banner-inner h2 > span{
    font: 400 16px/31px 'Open Sans', sans-serif;
    display: block;
    border-top: 1px solid #fff;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 759px) {

    .map-banner{
        height: 130px;
    }
    .map-banner-inner:hover{
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0,0,0, 0.6) 100%);
    }
    .map-banner-inner:hover h2{
        text-shadow: 0 1px 5px #666;
    }
    .map-banner-inner h2 {
        font: 600 28px/36px 'Merriweather', serif !important;
    }
    .map-banner-inner h2 > span{
        font: 400 18px/30px 'Open Sans', sans-serif;
    }
}
