header {
  height: 89px;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: var(--color-bgOscuro);
  z-index: 200;
 /* -webkit-box-shadow: 0px 0px 7px 0px rgba(255,255,255,0.1);
  -moz-box-shadow: 0px 0px 7px 0px rgba(255,255,255,0.1);
  box-shadow: 0px 0px 7px 0px rgba(255,255,255,0.1);*/
}
header a, header p {
  color: var(--color-text);
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 13px;
}
header div {
  height: 89px; 
}
header nav {
  width: 100%;
  margin-bottom: 20px;
  top: 0;
  display: flex;
  flex-direction: row;
  font-size: 16px;
  justify-content: space-between;
  z-index: 50;
}
header nav .nav-container {
  font-size: 20px;
}

header nav#menu_idiomaDesplegable2 {
  height: 30px!important; 
  cursor: pointer;
  opacity: 0;
}
#imgMenuLogoCab {
  height: 89px;
  width: 140px;
  margin: 0;
  opacity: .8;
}
#menu_lang, #menu_lang2 {
  cursor: pointer;
}
#head_Logo {
  padding: 20px;
}

/*  NAVEGACION  */

#navegacion a, #navegacion p {
  padding: 0 10px;
  margin-right: 13px;
  height: 100%;
  min-width: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
}
.navDestacado {
  text-decoration: underline;
}
.navega {
  height: 100%;
}

.efeMenu {
  color: var(--color-white07);
  transition: .3s;
}

.efeMenu:hover {
  /*border-top: 4px var(--color-verdeClaro) solid;*/
  /*content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 4px;
  background: var(--color-verdeClaro);
  transition: .35s;*/
  color: var(--color-text);
}

 .efeMenu:after,  .efeMenu2:after  {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 4px;
  background: var(--color-verdeClaro);
  transition: .35s;
}


.efeMenu .iconify, .efeMenu2 .iconify {
  color: var(--color-verdeClaro);
  opacity: 0.7;
  font-size: 2em;
}
.efeMenu:hover .iconify, .efeMenu2:hover .iconify {
  color: var(--color-verdeClaro);
  opacity: 1;
  transition: .3s;
}

.efeMenu2 {
  color: var(--color-text)!important;
  /*border-top: 4px var(--color-verdeClaro) solid;
  -webkit-box-shadow: inset 0px 10px 0px -6px var(--color-verdeClaro);
  -moz-box-shadow: inset 0px 10px 0px -6px var(--color-verdeClaro);
  box-shadow: inset 0px 10px 0px -6px var(--color-verdeClaro);*/
}
        
.efeMenu:hover:after,
.efeMenu:focus:after,
.efeMenu:active:after,
.efeMenu2:hover:after,
.efeMenu2:focus:after,
.efeMenu2:active:after {
  width: 100%;
}




/*  DESPLEGABLE  */

#navegation {
  display: none;
}

.nav-open main {
    transform: scale(.8);
  }
  .nav-trigger {
      display: none;
    position: fixed;
    z-index: 10;
    top: 23px;
    right: 30px;
    height: 44px;
    width: 44px;
    overflow: hidden;
    color: transparent;
    white-space: nowrap;
    text-indent: 100%;
  }
  .nav-trigger span,
  .nav-trigger span::before,
  .nav-trigger span::after {
    position: absolute;
    height: 4px;
    width: 36px;
    background: #999999;
  }
  .nav-trigger span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background .3s;
  }
  .nav-trigger span::before,
  .nav-trigger span::after {
    content: '';
    top: 0;
    left: 0;
    transition: background .3s, transform .3s;
  }
  .nav-trigger span::before {
    transform: translateY(-12px);
  }
  .nav-trigger span::after {
    transform: translateY(12px);
  }
  .nav-trigger:hover span, 
  .nav-trigger:hover span::before,
  .nav-trigger:hover span::after {
    background: var(--color-text);
  }
  .nav-open .nav-trigger span {
    background: transparent;
  }
  .nav-open .nav-trigger span::before,
  .nav-open .nav-trigger span::after {
    background: var(--color-gris8);
  }
  .nav-open .nav-trigger span::before {
    transform: rotate(-45deg);
  }
  .nav-open .nav-trigger span::after {
    transform: rotate(45deg);
  }
  .overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1C1D21;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
  }
  .nav-open .overlay {
    opacity: .6;
    visibility: visible;
  }
  .nav-container {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    padding: 4em 0em 2em 0em;
    background: var(--color-bgOscuro);
    color: var(--color-gris8);
    overflow: auto;
    transform: translateZ(0);
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.07,.23,.34,1);
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    z-index: 3;
  }
  .nav-open .nav-container {
    transform: translateX(0);
  }
  
  .nav {
    width: 100%;
    list-style: none;
    padding: 0;
  }
  .nav > li {
    text-align: center;
    transition: .3s ease;
    width: 100%;
    padding: .5em 0;
  }

 .nav > li:hover {
  background: var(--color-gris8);
  transition: .3s ease;
  }
  .nav > li:hover a,   .nav > li:hover p {
    color: var(--color-bgOscuro)!important;
    transition: .3s ease;
    }
  .nav a, .nav p {
    display: block;
    padding: .4em 0;
    font-size: 25px;
    font-weight: bold;
    color: var(--color-gris8);
    transform: translateZ(0);
  }
  
  .nav-open .nav a, .nav-open .nav p, .nav-open .nav ol, .menu_idiomaDesplegable2 {
    animation: slide-in .4s .2s backwards;
  }
  .nav-open .nav li:nth-of-type(2) a {
    animation-delay: .3s;
  }
  .nav-open .nav li:nth-of-type(3) a {
    animation-delay: .4s;
  }
  .nav-open .nav li:nth-of-type(4) a {
    animation-delay: .5s;
  }
  .nav-open .nav li:nth-of-type(5) a {
    animation-delay: .6s;
  }
  .nav-open .nav li p {
    animation-delay: .7s;
  }
  .nav-open .nav ol.menu_idiomaDesplegable2 {
    animation-delay: .8s;
  }
  
  
  @keyframes slide-in {
    0% {
      opacity: 0;
      transform: translateX(80px);
    }
  
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }



  #menu_idiomaDesplegable {
    width: 130px;
    position: fixed;
    right: 65px;
    top: 48px;
    font-weight: 500;
    text-align: center;
    display: none;
  }
  #menu_idiomaDesplegable > div:nth-child(1) {
    width: 100%;
    font-size: 40px;
    text-align: center;
    height: 25px;
  }
  #menu_idiomaDesplegable > div:nth-child(2) {
    width: 100%;
    height: auto;
    background-color: white;
    color: #121318;
    font-size: 14px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 7px -1px rgba(18,21,28,0.3);
    -moz-box-shadow: 0px 0px 7px -1px rgba(18,21,28,0.3);
    box-shadow: 0px 0px 7px -1px rgba(18,21,28,0.3);
  }
  #menu_idiomaDesplegable > div:nth-child(2) > div {
    height: auto;
    padding: 10px 0;
    border-bottom: 1px solid #d6d6d6;
  }
  #menu_idiomaDesplegable > div:nth-child(2) > div:last-child {
    border: none;
  }


  .langOption > a {
    cursor: pointer;
    transition: ease .3s;
    font-weight: 500;
    color: var(--color-bg);
  }
  .langOption:hover > a {
    color: var(--color-gris10);
  }
  .lang_active > a {
    color: var(--color-gris10)!important;
  }

  ol .langOption > a {
    cursor: pointer;
    transition: ease .3s;
    font-weight: 500;
    color: var(--color-text);
    font-size: 20px;
    opacity: .7;
  }
  ol .langOption:hover > a {
    color: var(--color-gris10);
  }

  ol .lang_active > a {
    color: var(--color-gris10)!important;
  }


/*  MEDIAS  */

    @media (max-width: 840px) {
      nav{
        font-size: 14px;
      }
      #divFooterDatos {
        font-size: 16px;
      }
    }

    @media (max-width: 799px) {
        #navegacion{
            display: none;
        }
        #navegacion2{
            display: inline;
        }
        #divrrss{
            display: none;
        }
        .imgHamburguesa{            
            display: inline;
        }
        .nav-trigger {
            display: inline;
        }
    }


    @media (max-width: 799px) {
      #navegacion{
          display: none;
      }
      #navegacion2{
          display: inline;
      }
      .imgHamburguesa{            
          display: inline;
      }
      .nav-trigger {
          display: inline;
      }
  }

  @media (max-width: 500px) {
    #divFooterDatos{
      padding-right: 0px;
      font-size: 9px!important;
      font-family: 'DINOT-Medium', 'Roboto', sans-serif ;
      font-weight: 400;
      text-align: center!important;
    }
    #pFooterDatosC{
      margin: 13px 0 0 0;
    }
    .nav-trigger{
      top: 25px;
    }
    .nav a, .nav p {
      font-size: 19px;
    }
    ol .langOption > a {
      font-size: 15px;
    }
    .nav > li {
      padding: .3em 0;
    }
  }



/* FOOTER  */

footer {
  width: 100%;
  position: relative;
  background-color: #000;
}
footer a, footer div {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fooRow1 {
  width: 100%;
  height: 45px;
  text-transform: uppercase;
  background-color: var(--color-bg)
}
#fooRow1 a {
  margin: 0 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

#fooRow2 {
  min-height: 110px;
  color: var(--color-gris11);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#fooRow2, #fooRow2 div, #fooRow2 img {
  width: 100%;
  background-color: #000;
  align-items: center;
}
#fooRow2 img {
  opacity: .8;
}
#fooRow2 > div:nth-child(1) {
  text-align: left;
  margin-left: 50px;
  width: 20%;
}
#fooRow2 > div:nth-child(2) {
  text-align: center;
  font-weight: 700;
  width: 60%;
}
#fooRow2 > div:nth-child(3) {
  text-align: right;
  margin-right: 50px;
  width: 20%;
}
#fooRow2 img {
  width: 105px;
}
#fooRow2 p {
  font-weight: bolder;
  background-color: transparent;
}
#divfooterRrss {
  display: flex;
  justify-content: right;
}
#divfooterRrss > div {
  display: flex;
  justify-content: right;
  text-align: right;
  position: relative;
}
#divfooterRrss > div > div {
  display: flex;
  justify-content: right;
  text-align: right;
  max-width: 151px;
  position: absolute;
  right: 0;
}
.spanRrss {
  color: #8e8f97;
  margin: 0 5px;
  font-size: 25px;
  background: transparent;
  transition: .3s;
}
.spanRrss:hover {
  /*color: #006696;*/
  color: var(--color-text4);
}

#fooRow3 { 
  width: 100%;
  justify-content: space-around;
  background-color: #000;
  color: var(--color-gris10);
  height: 60px; 
}
#fooRow3 a {
  margin: 7px 16px;
  color: var(--color-gris10);
  font-weight: 400;
  cursor: pointer;
}
#fooRow3 > div {
  margin: 7px 16px 15px 16px;
  position: absolute;
  text-align: center;
  font-size: 12px;
}


#fooRow3 > div > span {
  opacity: .5;
}



@media (max-width: 700px) {
  #divfooterRrss > div {
    justify-content: space-around;
  }
  #divfooterRrss > div > div{
    display: flex;
    justify-content: space-around;
    text-align: center;
    max-width: 151px;
    position: static;
  }
  #divfooterRrss > div > div div {
    margin: 0 5px
  }
  #fooRow2 {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  #fooRow2 > div {
    margin: 10px 0!important;
    padding: 0!important;
    justify-content: space-around;
    width: 100%;
  }
  #fooRow2 > div:nth-child(1) {
    text-align: center;
    width: 80%;
  }
  #fooRow3 > div > a {
    margin: 7px 8px;
  }
}

@media (max-width: 500px) {
  #fooRow1 a {
    margin: 0 8px;
    font-size: 10px;
  }
  #fooRow3 > div {
    font-size: 10px;
  }
  #fooRow2 > div:nth-child(2) {
    width: 90%;
    font-size: 15px;
  }
}

/*=====*/


.ahora > p { 
  text-align: right;
  background-color: transparent; 
  position: absolute; 
  left: 50px;
  display: flex;
  flex-direction: row;
  margin-left: -10px;
}
.ahora > p > span { 
  padding-left: 3px;
}

.ahoraFoo { 
  height: 100%;
  width: calc( 100% - 70px);
  display: none;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.ahoraFoo > p { 
  text-align: right;
  font-weight: 600;
  background-color: transparent; 
  position: absolute; 
  left: 50px;
  display: flex;
  flex-direction: row;
  margin-left: -10px;
}
.ahoraFoo > p > span { 
  padding-left: 3px;
}

@media (max-width: 500px) {
  header .ahora {
    display: none;
  }
  .ahoraFoo {
    display: flex;
  }
}
.circle {
  border: 4px solid var(--color-bgAlt);
  background: rgba(0,157,122,1);
  background: -moz-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(0,157,122,1)), color-stop(100%, rgba(0,255,198,1)));
  background: -webkit-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: -o-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: -ms-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009d7a', endColorstr='#00ffc6', GradientType=1 );
  height: 20px;
  width: 20px;
  border-radius:50%;
  /*top: 22px;*/
  left: 15px;
  position: absolute;
}

.live {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
}
.live div {
  position: absolute;
  background: rgba(0,157,122,1);
  background: -moz-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(0,157,122,1)), color-stop(100%, rgba(0,255,198,1)));
  background: -webkit-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: -o-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: -ms-linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  background: linear-gradient(45deg, rgba(0,157,122,1) 0%, rgba(0,255,198,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009d7a', endColorstr='#00ffc6', GradientType=1 );
  opacity: 1;
  border-radius: 50%;
  animation: live 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes live {
  0% {
    top: 45px;
    left: 24px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 0px;
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}

.ahoraFoo > .live div {
   animation: live2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes live2 {
  0% {
    top: 29px;
    left: 25px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 5px;
    left: 0px;
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}

/*  En vivo ventana  */

#divFlotanteVivo {
  height: 120px;
  width: 220px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-bgAlt);
  z-index: 190;
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(100,100,100,0.5);
  -moz-box-shadow: 0px 0px 6px 0px rgba(100,100,100.5);
  box-shadow: 0px 0px 6px 0px rgba(100,100,100,0.5);
}
#divFlotanteVivo > video {
  min-height: 100%;
  min-width: 100%;
  
}
#divFlotanteVivo > .x {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 5;
}
.x {
  cursor: pointer;
}
#divCerrar {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  background-color: var(--color-black05);
  transition: .3s ease;
}
#divCerrar:hover {
  background-color: var(--color-verdeClaro);
}

#divCerrar > svg {
  font-size: 20px;
  color: var(--color-text);
}


#divFlotante {
  width: 100%;
  height: 100vh;  
  padding: 100px 2em;
  position: fixed;
  top: 0;
  background: rgba(15, 15, 15, .5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 201;
}
#divFlotante > div {
  max-width: 100%;
  width: 576px;
  padding: 65px 40px 40px 80px;
  background-color: var(--color-text);
  position: relative;
}
#divFlotante > div p, #divFlotante > div ul {
  color: var(--color-black);
  margin: 15px 0;
  font-weight: 500;
  line-height: 1.3em;
  font-size: 16px;
}

#divFlotante .divBtnCen {
  margin: 0;
}
#divFlotante .divBtnCen button {
  background-color: var(--color-verdeFlot);
  border-radius: 5px;
  padding: 12px 36px;
  color: var(--color-text);
  border: none;
  font-weight: 700;
  margin-top: 30px;
  transition: .3s ease;
}
#divFlotante h5 {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 600;
}
#divFlotante .divBtnCen button:hover {
  opacity: .7;
}
.divDetalleSubExtrasTxt {
  height: 500px;
  max-height: 50vh;
  padding-right: 40px;
}
.divSubExtrasX {
  position: absolute;
  color: var(--color-black);
  right: 20px;
  top: 20px;
  font-size: 20px;
  transition: .3s ease;
}
.divSubExtrasX:hover {
  color: var(--color-black05);
}
@media (max-width: 500px) {
  #divFlotanteVivo {
    height: 60px;
    width: calc( 100% - 10px );
    position: fixed;
    bottom: 5px;
    right: 5px;
    background-color: var(--color-bgAlt);
    z-index: 190;
    cursor: pointer;
  }
  #divFlotanteVivo > video {
    display: none;
  }
  #divFlotanteVivo > .x {
    height: 100%;
    width: 70px;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  #divCerrar {
    height: 30px;
    width: 30px;
    top: 15px;
    right: 20px;
    background-color: var(--color-verdeOscuro);
    transition: ease .3s;
    color: var(--color-text);
  }
  #divCerrar > svg {
    font-size: 30px;
    color: black;
  }
  #divFlotante > div {
    padding: 25px 20px 20px 30px;
  }
  .divDetalleSubExtrasTxt {
    max-height: 300px;
  }
  #divFlotante > div p, #divFlotante > div ul {
    font-size: 15px;
  }
  .divSubExtrasX {
    right: 5px;
    top: 5px;
  }
  .divDetalleSubExtrasTxt {
    padding-right: 10px;
  }
}




