[ Foro de Javascript ]

Problema con Javascript de pestañas

01-Jan-2019 20:58
Hugo CM
1 Respuestas

Buenas, estoy tratando de hacer por asi decirlo un menu con varios apartados para una radio,y me llevo un poco mal con el javascript, y debo tener algo mal del código, que al abrir la pestaña de programación, que deberia aparecer directamente el dia que es de la programación,no aparece nada, solo los dias de la semana, y al pulsar sobre el dia se cierra esa parte.
¿Alguien me podria ayudar a solventar estos problemas de código? Entiendo que será porque interfieren o algo.
Y tambien si pudiera ser, para que de manera predeterminada se abriera la parte de EN DIRECTO, estaria perfecto.

Adjunto todo el codigo aqui debajo.

Muchas gracias de antemano, y mil disculpas por mi inutilidad con el Javascript jajaja

[code]<html>
<head>
<style>
body {font-family: Poppins;}

/* Style the tab */
div.tab {
   overflow: hidden;
   border: 1px solid #ccc;
   background-color: #f1f1f1;
}

#main-wrapper {
   width: 100%;
}

#sidebar-wrapper {
   display: none;
}

/* Style the buttons inside the tab */
div.tab button {
   background-color: inherit;
   float: left;
   border: none;
   outline: none;
   cursor: pointer;
   padding: 14px 16px;
   transition: 0.3s;
   font-size: 17px;
}
div.tab2 button {
   background-color: inherit;
   float: left;
   border: none;
   outline: none;
   cursor: pointer;
   padding: 14px 16px;
   transition: 0.3s;
   font-size: 17px;
}

/* Change background color of buttons on hover */
div.tab button:hover {
   background-color: #ddd;
}
div.tab2 button:hover {
   background-color: #ddd;
}

/* Create an active/current tablink class */
div.tab button.active {
   background-color: #ccc;
}
div.tab2 button.active {
   background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
   display: none;
   padding: 6px 12px;
   border: 1px solid #ccc;
   border-top: none;
}
.tab2content {
   display: none;
   padding: 6px 12px;
   border: 1px solid #ccc;
   border-top: none;
}

table {border-collapse:collapse}
tr {border: 0.5px solid #e9e9e9;}

table tr:hover {
 background-color: #fafafa;
 cursor: pointer;
}

</style>
<style>
@charset "UTF-8";
/*!
 Ionicons, v2.0.0
 Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
 https://twitter.com/benjsperry  https://twitter.com/ionicframework
 MIT License: https://github.com/driftyco/ionicons

 Android-style icons originally built by Google’s
 Material Design Icons: https://github.com/google/material-design-icons
 used under CC BY http://creativecommons.org/licenses/by/4.0/
 Modified icons to fit ionicon’s grid from original.
*/@font-face{font-family:Ionicons;src:url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0");src:url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.0") format("woff"),url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:400;font-style:normal}.image-gallery-fullscreen-button:before,.image-gallery-left-nav:before,.image-gallery-play-button:before,.image-gallery-right-nav:before{display:inline-block;font-family:Ionicons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.image-gallery{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.image-gallery.fullscreen-modal{background:#000;bottom:0;height:100%;left:0;position:fixed;right:0;top:0;width:100%;z-index:5}.image-gallery.fullscreen-modal .image-gallery-content{top:50%;transform:translateY(-50%)}.image-gallery-content{position:relative;line-height:0;top:0}.image-gallery-content.fullscreen,.image-gallery-content.fullscreen .image-gallery-slide{background:#000}.image-gallery-slide-wrapper{position:relative}.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{display:inline-block;width:calc(100% - 113px)}@media (max-width:768px){.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{width:calc(100% - 84px)}}.image-gallery-fullscreen-button,.image-gallery-left-nav,.image-gallery-play-button,.image-gallery-right-nav{appearance:none;background-color:transparent;border:0;cursor:pointer;outline:none;position:absolute;z-index:4}.image-gallery-fullscreen-button:before,.image-gallery-left-nav:before,.image-gallery-play-button:before,.image-gallery-right-nav:before{color:#fff;line-height:.7;text-shadow:0 2px 2px #1a1a1a;transition:color .2s ease-out}.image-gallery-fullscreen-button:hover:before,.image-gallery-left-nav:hover:before,.image-gallery-play-button:hover:before,.image-gallery-right-nav:hover:before{color:#337ab7}@media (max-width:768px){.image-gallery-fullscreen-button:hover:before,.image-gallery-left-nav:hover:before,.image-gallery-play-button:hover:before,.image-gallery-right-nav:hover:before{color:#fff}}.image-gallery-fullscreen-button,.image-gallery-play-button{bottom:0}.image-gallery-fullscreen-button:before,.image-gallery-play-button:before{font-size:2.7em;padding:15px 20px;text-shadow:0 1px 1px #1a1a1a}@media (max-width:768px){.image-gallery-fullscreen-button:before,.image-gallery-play-button:before{font-size:2.4em}}@media (max-width:480px){.image-gallery-fullscreen-button:before,.image-gallery-play-button:before{font-size:2em}}.image-gallery-fullscreen-button:hover:before,.image-gallery-play-button:hover:before{color:#fff;transform:scale(1.1)}@media (max-width:768px){.image-gallery-fullscreen-button:hover:before,.image-gallery-play-button:hover:before{transform:none}}.image-gallery-fullscreen-button{right:0}.image-gallery-fullscreen-button:before{content:"\F386"}.image-gallery-fullscreen-button.active:before{content:"\F37D"}.image-gallery-fullscreen-button.active:hover:before{transform:scale(.9)}.image-gallery-play-button{left:0}.image-gallery-play-button:before{content:"\F488"}.image-gallery-play-button.active:before{content:"\F478"}.image-gallery-left-nav,.image-gallery-right-nav{color:#fff;font-size:5em;padding:50px 15px;top:50%;transform:translateY(-50%)}.image-gallery-left-nav[disabled],.image-gallery-right-nav[disabled]{cursor:disabled;opacity:.6;pointer-events:none}@media (max-width:768px){.image-gallery-left-nav,.image-gallery-right-nav{font-size:3.4em;padding:20px 15px}}@media (max-width:480px){.image-gallery-left-nav,.image-gallery-right-nav{font-size:2.4em;padding:0 15px}}.image-gallery-left-nav{left:0}.image-gallery-left-nav:before{content:"\F3D2"}.image-gallery-right-nav{right:0}.image-gallery-right-nav:before{content:"\F3D3"}.image-gallery-slides{line-height:0;overflow:hidden;position:relative;white-space:nowrap}.image-gallery-slide{background:#fff;left:0;position:absolute;top:0;width:100%}.image-gallery-slide.center{position:relative}.image-gallery-slide img{width:100%}.image-gallery-slide .image-gallery-description{background:rgba(0,0,0,.4);bottom:70px;color:#fff;left:0;line-height:1;padding:10px 20px;position:absolute;white-space:normal}@media (max-width:768px){.image-gallery-slide .image-gallery-description{bottom:45px;font-size:.8em;padding:8px 15px}}.image-gallery-bullets{bottom:20px;left:0;margin:0 auto;position:absolute;right:0;width:80%;z-index:4}.image-gallery-bullets .image-gallery-bullets-container{margin:0;padding:0;text-align:center}.image-gallery-bullets .image-gallery-bullet{appearance:none;background-color:transparent;border:1px solid #fff;border-radius:50%;box-shadow:0 1px 0 #1a1a1a;cursor:pointer;display:inline-block;margin:0 5px;outline:none;padding:5px}@media (max-width:768px){.image-gallery-bullets .image-gallery-bullet{margin:0 3px;padding:3px}}@media (max-width:480px){.image-gallery-bullets .image-gallery-bullet{padding:2.7px}}.image-gallery-bullets .image-gallery-bullet.active{background:#fff}.image-gallery-thumbnails-wrapper{position:relative}.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{display:inline-block;vertical-align:top;width:108px}@media (max-width:768px){.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{width:81px}}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails{height:100%;width:100%;left:0;padding:0;position:absolute;top:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail{display:block;margin-right:0;padding:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:0}.image-gallery-thumbnails-wrapper.left{margin-right:5px}@media (max-width:768px){.image-gallery-thumbnails-wrapper.left{margin-right:3px}}.image-gallery-thumbnails-wrapper.right{margin-left:5px}@media (max-width:768px){.image-gallery-thumbnails-wrapper.right{margin-left:3px}}.image-gallery-thumbnails{overflow:hidden;padding:5px 0}@media (max-width:768px){.image-gallery-thumbnails{padding:3px 0}}.image-gallery-thumbnails .image-gallery-thumbnails-container{cursor:pointer;text-align:center;transition:transform .45s ease-out;white-space:nowrap}.image-gallery-thumbnail{display:inline-block;border:4px solid transparent;transition:border .3s ease-out;width:100px}@media (max-width:768px){.image-gallery-thumbnail{border:3px solid transparent;width:75px}}.image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:2px}.image-gallery-thumbnail img{vertical-align:middle;width:100%}.image-gallery-thumbnail.active{border:4px solid #337ab7}@media (max-width:768px){.image-gallery-thumbnail.active{border:3px solid #337ab7}}.image-gallery-thumbnail-label{color:#1a1a1a;font-size:1em}@media (max-width:768px){.image-gallery-thumbnail-label{font-size:.8em}}.image-gallery-index{background:rgba(0,0,0,.4);color:#fff;line-height:1;padding:10px 20px;position:absolute;right:0;top:0;z-index:4}@media (max-width:768px){.image-gallery-index{font-size:.8em;padding:5px 10px}}
</style>
<style data-styled-version="4.0.0-beta.2" data-styled="dedKfo bBBTKv cMHdoL eZEjMg jLzfe ilNHhN vdfVr bkUXBh ifVZLH izBeFK ZXUlM lerOlL bCmScd dukbsT gBEvtE locosj kSHbnV fdGLAC jMlzvq cAuqWY degWMX iYkcMN bZeILl jMPhIv fFkGXi dAquHL iEQeqb dCspWU fJhpbn jiWDuP dwNekN bRXVzI fBuQBE kaxPAp fufRqn ecXRLk eErxLi gOXEEm iDVLGp bWNIYV iKEaM eVkCEo bUEUdZ kHOVWq eVqFZJ eCVgZw fsHaWE geIYBI fJFFzT igXijH ksKKgd cWAPPF jAqVbO heeRKO dhQhjy dNODsX OyyTs kTtkGk fAktAm cVrAcr lgAXpP dIATez kxcttt hAFuyY qdKjm bCVxKD ejIXKZ jIYlsG hnWMNK hscWME htPDmk liRdPe jhOnda cTpBMb kNzRWN bcsxPY tZUly iwVFBT bcJamf cjcXnw hvolfF exaXYj hPOXdU deoknh dbZHNo bHHbJz iutHxu hWYPre ebiAfO ksxnGL kaAZod kBgtmY hEqDLM jgbClM cQUOBZ gQKlcw fFilUn tzPbx hYHlH eMfEZX kmMRJb jNCOKP bkpiYs khijES eceblV cxNzGb eZplSO gftnSP huatYE kqIYKJ jciNXM dVWSWG fccOaK iAQIcz HGYsJ evjKym hhaKuw dokQrv jclnT lDwGv kfHFZA hHvbjU dOTzUU">
/* sc-component-id: base__Container-sc-16jeu6k-0 */
.locosj{display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:white;width:auto;height:10px;}.kSHbnV{display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:currentColor;width:auto;height:10px;}.fdGLAC{display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:currentColor;width:auto;height:15px;}.jMlzvq{display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:currentColor;width:20px;height:auto;}.cAuqWY{display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:currentColor;width:10px;height:auto;}.degWMX{display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:currentColor;width:auto;height:auto;}.iYkcMN{display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:currentColor;width:auto;height:11px;}
/* sc-component-id: base__Canvas-sc-16jeu6k-1 */
.bZeILl{display:block;height:100%;visibility:hidden;}
/* sc-component-id: base__Icon-sc-16jeu6k-2 */
.jMPhIv{position:absolute;left:0;top:0;width:100%;height:100%;fill:currentColor;}
/* sc-component-id: text__Text-sc-1udwi1c-0 */
.kTtkGk{color:#FFFFFF;font-family:Rubik,sans-serif;font-weight:300;}.fAktAm{font-family:Rubik,sans-serif;font-weight:300;}.cVrAcr{font-size:0.75rem;text-transform:uppercase;font-family:Montserrat,sans-serif;font-weight:600;-webkit-letter-spacing:2.2px;-moz-letter-spacing:2.2px;-ms-letter-spacing:2.2px;letter-spacing:2.2px;}.lgAXpP{font-size:1rem;font-family:Montserrat,sans-serif;font-weight:600;} @media screen and (min-width:240px){.lgAXpP{font-size:1rem;}} @media screen and (min-width:576px){.lgAXpP{font-size:1rem;}} @media screen and (min-width:768px){.lgAXpP{font-size:1.5rem;}}.dIATez{margin-left:0.3125rem;font-size:0.875rem;font-family:Rubik,sans-serif;font-weight:300;}.kxcttt{font-size:0.875rem;font-family:Montserrat,sans-serif;font-weight:600;} @media screen and (min-width:240px){.kxcttt{font-size:0.875rem;}} @media screen and (min-width:576px){.kxcttt{font-size:0.875rem;}} @media screen and (min-width:768px){.kxcttt{font-size:1rem;}}
/* sc-component-id: base__StyledButton-sc-1nghez2-0 */
.hHvbjU{height:2.5rem;display:inline-block;padding:0;width:2.5rem;border:0;border-radius:3px;border:1px solid transparent;box-shadow:0px 2px 0px 0px rgba(0,0,0,0.16);cursor:pointer;-webkit-transition:background 0.2s ease-in,color 0.2s ease-in;transition:background 0.2s ease-in,color 0.2s ease-in;} @media (min-width:48em){.hHvbjU{height:2.5rem;width:2.5rem;}}
/* sc-component-id: base__Inner-sc-1nghez2-1 */
.dOTzUU{width:100%;height:100%;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} .dOTzUU > span ~ .icon{margin-left:1em;} .dOTzUU > .icon ~ span{margin-left:1em;}
/* sc-component-id: white-sc-1kupict-0 */
.kfHFZA{color:#2B2B2B;background:#FFFFFF;border-color:#A3A3A2;}
/* sc-component-id: row-sc-1w809pu-0 */
.ifVZLH{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;} @media (min-width:15em){.ifVZLH{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:36em){.ifVZLH{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:48em){.ifVZLH{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:76.25em){.ifVZLH{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:90em){.ifVZLH{margin-left:-0.75rem;margin-right:-0.75rem;}}.izBeFK{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} @media (min-width:15em){.izBeFK{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:36em){.izBeFK{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:48em){.izBeFK{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:76.25em){.izBeFK{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:90em){.izBeFK{margin-left:-0.75rem;margin-right:-0.75rem;}}.ZXUlM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;} @media (min-width:15em){.ZXUlM{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:36em){.ZXUlM{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:48em){.ZXUlM{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:76.25em){.ZXUlM{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:90em){.ZXUlM{margin-left:-0.75rem;margin-right:-0.75rem;}}
/* sc-component-id: box-rxot33-0 */
.iEQeqb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-right:1.5625rem;}.dCspWU{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;} @media screen and (min-width:15em){.dCspWU{margin-right:0.625rem;}} @media screen and (min-width:36em){.dCspWU{margin-right:1.25rem;}}.fJhpbn{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-top:0.3125rem;} @media screen and (min-width:15em){.fJhpbn{margin-left:0.625rem;}} @media screen and (min-width:36em){.fJhpbn{margin-left:1.25rem;}}.jiWDuP{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-left:0.9375rem;}.dwNekN{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}.bRXVzI{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-right:1.25rem;}.fBuQBE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-top:0.625rem;margin-bottom:0.625rem;}.kaxPAp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}.fufRqn{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}.ecXRLk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-left:0.625rem;margin-right:0.625rem;}.eErxLi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;} @media screen and (min-width:15em){.eErxLi{margin-top:1.25rem;margin-bottom:1.25rem;}} @media screen and (min-width:36em){.eErxLi{margin-top:1.25rem;margin-bottom:1.25rem;}} @media screen and (min-width:48em){.eErxLi{margin-top:1.875rem;margin-bottom:0.9375rem;}}.gOXEEm{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-bottom:0.625rem;}.iDVLGp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-top:3.125rem;}.bWNIYV{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;} @media screen and (min-width:15em){.bWNIYV{padding-bottom:3.125rem;padding-top:6.25rem;}} @media screen and (min-width:36em){.bWNIYV{padding-bottom:3.125rem;padding-top:10rem;}}.iKEaM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-top:1.25rem;margin-bottom:1.25rem;}.eVkCEo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}
/* sc-component-id: grid-ajsdn5-0 */
.bkUXBh{width:100%;box-sizing:border-box;margin-left:auto;margin-right:auto;} @media (min-width:15em){.bkUXBh{max-width:64.25rem;}} @media (min-width:36em){.bkUXBh{max-width:64.25rem;}} @media (min-width:48em){.bkUXBh{max-width:64.25rem;}} @media (min-width:76.25em){.bkUXBh{max-width:85rem;}} @media (min-width:90em){.bkUXBh{max-width:100rem;}} @media (min-width:15em){.bkUXBh{padding-left:0.875rem;padding-right:0.875rem;}} @media (min-width:36em){.bkUXBh{padding-left:0.875rem;padding-right:0.875rem;}} @media (min-width:48em){.bkUXBh{padding-left:1.75rem;padding-right:1.75rem;}} @media (min-width:76.25em){.bkUXBh{padding-left:3.375rem;padding-right:3.375rem;}} @media (min-width:90em){.bkUXBh{padding-left:8.75rem;padding-right:8.75rem;}}
/* sc-component-id: column-sc-1l7g8ff-0 */
.kNzRWN{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;} @media (min-width:48em){.kNzRWN{-webkit-flex-basis:33.33333333333333%;-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;max-width:33.33333333333333%;}} @media (min-width:15em){.kNzRWN{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.kNzRWN{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.kNzRWN{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.kNzRWN{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.kNzRWN{padding-left:0.75rem;padding-right:0.75rem;}}.bcsxPY{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;} @media (min-width:15em){.bcsxPY{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.bcsxPY{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.bcsxPY{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.bcsxPY{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.bcsxPY{padding-left:0.75rem;padding-right:0.75rem;}}.tZUly{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;} @media (min-width:48em){.tZUly{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%;}} @media (min-width:76.25em){.tZUly{-webkit-flex-basis:33.33333333333333%;-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;max-width:33.33333333333333%;}} @media (min-width:90em){.tZUly{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}} @media (min-width:15em){.tZUly{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.tZUly{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.tZUly{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.tZUly{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.tZUly{padding-left:0.75rem;padding-right:0.75rem;}}.iwVFBT{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;} @media (min-width:48em){.iwVFBT{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}} @media (min-width:15em){.iwVFBT{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.iwVFBT{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.iwVFBT{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.iwVFBT{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.iwVFBT{padding-left:0.75rem;padding-right:0.75rem;}}.bcJamf{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;} @media (min-width:36em){.bcJamf{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}} @media (min-width:48em){.bcJamf{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}} @media (min-width:15em){.bcJamf{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.bcJamf{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.bcJamf{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.bcJamf{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.bcJamf{padding-left:0.75rem;padding-right:0.75rem;}}.cjcXnw{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;} @media (min-width:48em){.cjcXnw{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}} @media (min-width:15em){.cjcXnw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.cjcXnw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.cjcXnw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.cjcXnw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.cjcXnw{padding-left:0.75rem;padding-right:0.75rem;}}
/* sc-component-id: tab__Container-zzpfl-0 */
.cQUOBZ{-webkit-text-decoration:none;text-decoration:none;margin-right:1.5rem;-webkit-transition:all 0.2s ease-in;transition:all 0.2s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-top:2px;border-bottom:2px solid transparent;} .cQUOBZ:hover{border-bottom:2px solid #000000;} .cQUOBZ > *{width:100%;line-height:1;-webkit-text-decoration:none;text-decoration:none;color:currentColor;}.gQKlcw{-webkit-text-decoration:none;text-decoration:none;margin-right:1.5rem;-webkit-transition:all 0.2s ease-in;transition:all 0.2s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-top:2px;border-bottom:2px solid #000000;} .gQKlcw:hover{border-bottom:2px solid #000000;} .gQKlcw > *{width:100%;line-height:1;-webkit-text-decoration:none;text-decoration:none;color:currentColor;}
/* sc-component-id: tab-list__Container-s963xr-0 */
.jgbClM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;}
/* sc-component-id: breadcrumb__Item-fqaige-0 */
.hYHlH:first-child{margin-left:0;}
/* sc-component-id: breadcrumbs__Container-tk0d75-0 */
.tzPbx{list-style:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-bottom:0;}
/* sc-component-id: base__Container-sc-1dvnn17-0 */
.jNCOKP{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;display:block;position:relative;text-align:left;box-shadow:0px 2px 0px 0px rgba(0,0,0,0.1);color:#2B2B2B;background:#FFFFFF;border:1px solid rgba(0,0,0,0.1);border-radius:3px;-webkit-transition:box-shadow 0.3s cubic-bezier(0.25,0.8,0.25,1);transition:box-shadow 0.3s cubic-bezier(0.25,0.8,0.25,1);font-family:Rubik,sans-serif;} @media screen and (min-width:15em){.jNCOKP{padding:1.25rem;}} @media screen and (min-width:36em){.jNCOKP{padding:1.25rem;}} @media screen and (min-width:48em){.jNCOKP{padding:1.25rem;}} @media screen and (min-width:76.25em){.jNCOKP{padding:1.25rem;}} @media screen and (min-width:90em){.jNCOKP{padding:1.875rem;}} .jNCOKP:hover{box-shadow:2px 6px 10px 0px rgba(0,0,0,0.1);} .jNCOKP p:first-child,.jNCOKP h1:first-child,.jNCOKP h2:first-child,.jNCOKP h3:first-child{margin-top:-0.05em;} .jNCOKP p:last-child,.jNCOKP h1:last-child,.jNCOKP h2:last-child,.jNCOKP h3:last-child{margin-bottom:-0.05em;} .jNCOKP *{box-sizing:border-box;}
/* sc-component-id: image__StyledCardInset-sc-124zx6m-0 */
.bkpiYs{position:relative;width:calc(100% + (2 * 1.25rem));margin-left:-1.25rem;margin-top:1.25rem;margin-bottom:1.25rem;padding:1.25rem;color:blue !important;background:#E5E5E5;overflow:hidden;border-radius:3px 3px 0px 0px;position:relative;padding:0 !important;margin-top:-1.25rem;} @media (min-width:90em){.bkpiYs{width:calc(100% + (2 * 1.875rem));margin-left:-1.875rem;margin-top:1.875rem;margin-bottom:1.875rem;padding:1.875rem;}} @media (min-width:90em){.bkpiYs{margin-top:-1.875rem;}} .bkpiYs:before{display:block;content:'';width:100%;padding-top:52.63%;} .bkpiYs img{position:absolute;top:0;right:0;bottom:0;left:0;max-width:100%;height:auto;overflow:hidden;border-radius:3px 3px 0px 0px;}
/* sc-component-id: sc-global-3422591715 */
*{box-sizing:border-box;} body{background:#FFFFFF;margin:0;font-size:1em;} a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;} html.no-js [data-feednode],#__next.error [data-feednode],html.no-js [data-tabs],#__Next.error[data-tabs]{opacity:1;-webkit-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);}
/* sc-component-id: breakpoint__Container-sc-1k60lgm-0 */
.cMHdoL{display:block;} @media screen and (min-width:undefinedpx){.cMHdoL{display:block;}} @media screen and (min-width:1220px){.cMHdoL{display:none;}}.eZEjMg{display:none;} @media screen and (min-width:1220px){.eZEjMg{display:block;}} @media screen and (min-width:undefinedpx){.eZEjMg{display:none;}}.jLzfe{display:none;} @media screen and (min-width:768px){.jLzfe{display:block;}} @media screen and (min-width:undefinedpx){.jLzfe{display:none;}}.ilNHhN{display:none;} @media screen and (min-width:576px){.ilNHhN{display:block;}} @media screen and (min-width:undefinedpx){.ilNHhN{display:none;}}
/* sc-component-id: link__StyledLink-znisf4-0 */
.eMfEZX{color:#022957;} .eMfEZX:hover{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: search__StyledLink-q2asde-0 */
.kHOVWq{color:#FFFFFF;}
/* sc-component-id: social__Container-sc-1xzhi48-0 */
.jAqVbO{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;max-width:16em;color:#FFFFFF;}
/* sc-component-id: social__SocialLink-sc-1xzhi48-1 */
.heeRKO{display:inline-block;width:2.5em;text-align:center;-webkit-transition:0.3s;transition:0.3s;opacity:0.7;} .heeRKO:hover{color:#FFCE2B;opacity:1;}
/* sc-component-id: social__StyledSocialLink-sc-1xzhi48-2 */
.dhQhjy{display:inline-block;width:2.5em;text-align:center;-webkit-transition:0.3s;transition:0.3s;opacity:0.7;margin-bottom:1px;} .dhQhjy:hover{color:#FFCE2B;opacity:1;}
/* sc-component-id: divider__Divider-nbuh12-0 */
.bUEUdZ{width:1px;height:1.875rem;background:#ffffff;}
/* sc-component-id: official__StyledText-sc-55djk4-0 */
.OyyTs{opacity:0.7;}
/* sc-component-id: small__StyledLink-lc5166-0 */
.dukbsT{padding:0.625rem;margin-left:-0.625rem;}
/* sc-component-id: small__MenuButton-lc5166-1 */
.gBEvtE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}
/* sc-component-id: large__Wrapper-w0fzje-0 */
.fJFFzT{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}
/* sc-component-id: large__StyledLink-w0fzje-1 */
.geIYBI{padding:0 0.625rem;margin-left:-0.625rem;}
/* sc-component-id: competitions__StyledLink-sc-1lv59g1-0 */
.dAquHL{color:#FFFFFF;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:auto;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:0.3s;transition:0.3s;} .dAquHL:hover{color:#FFCE2B;opacity:1;}
/* sc-component-id: competitions__StyledText-sc-1lv59g1-1 */
.qdKjm{opacity:0.7;}
/* sc-component-id: wide__Container-f9ieh0-0 */
.eVqFZJ{position:fixed;top:0;width:100%;margin-bottom:-6.25em;z-index:99;color:#FFFFFF;background:rgba(2,41,87,0.8);}
/* sc-component-id: wide__Inner-f9ieh0-1 */
.eCVgZw{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:4.375em;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} @media (min-width:15em){.eCVgZw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.eCVgZw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.eCVgZw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.eCVgZw{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.eCVgZw{padding-left:0.75rem;padding-right:0.75rem;}}
/* sc-component-id: wide__StyledSocial-f9ieh0-2 */
.cWAPPF{margin-left:2.5rem;}
/* sc-component-id: wide__LeftBox-f9ieh0-3 */
.fsHaWE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex:1;-ms-flex:1;flex:1;margin-right:auto;}
/* sc-component-id: wide__MiddleBox-f9ieh0-4 */
.dNODsX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}
/* sc-component-id: wide__RightBox-f9ieh0-5 */
.hAFuyY{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex:1;-ms-flex:1;flex:1;margin-left:auto;}
/* sc-component-id: sc-global-3593680926 */
.headroom--scrolled{z-index:100 !important;}
/* sc-component-id: small__Container-sc-2hfbyg-0 */
.vdfVr{position:relative;z-index:99;background:rgba(2,41,87,0.8);}
/* sc-component-id: small__Inner-sc-2hfbyg-1 */
.lerOlL{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:3.75rem;} @media (min-width:36em){.lerOlL{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}} @media (min-width:15em){.lerOlL{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.lerOlL{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.lerOlL{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.lerOlL{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.lerOlL{padding-left:0.75rem;padding-right:0.75rem;}}
/* sc-component-id: small__Wrapper-sc-2hfbyg-2 */
.bCmScd{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} .bCmScd:last-child{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}
/* sc-component-id: small__StyledLogo-sc-2hfbyg-3 */
.fFkGXi{max-width:100%;padding:0 0.25rem;max-height:2.75rem;}
/* sc-component-id: toTop__StyledBox-sc-1nzddc0-0 */
.ejIXKZ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;background:#F0F1F2;height:2.1875rem;border-radius:3px;width:2.1875rem;color:#022957;}
/* sc-component-id: toTop__ToTopButton-sc-1nzddc0-1 */
.bCVxKD{position:fixed;border:none;right:1.25rem;bottom:1.25rem;} @media (min-width:36em){.bCVxKD{display:none;}}
/* sc-component-id: header__Container-sc-127l5hv-0 */
.bBBTKv{position:fixed;width:100%;z-index:999;height:3.75em;} @media (min-width:76.25em){.bBBTKv{height:auto;}}
/* sc-component-id: block__SponsorBlock-sc-11eb09e-0 */
.dbZHNo{display:block;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:7.5em;height:2.8215em;padding:0 1em;overflow:hidden;border-radius:3px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;background:#FFFFFF;} @media (min-width:48em){.dbZHNo{width:10em;height:3.75em;}} .dbZHNo img{max-width:100%;height:auto;}
/* sc-component-id: logo__Logo-sc-11o5bzo-0 */
.iutHxu{position:absolute;text-align:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:calc(100% - 2em);height:100%;top:0;left:1em;}
/* sc-component-id: animatedLogo__Container-sc-1lwurg5-0 */
.bHHbJz .logo-enter{-webkit-transform:translateY(200px);-ms-transform:translateY(200px);transform:translateY(200px);} .bHHbJz .logo-enter.logo-enter-active{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-webkit-transition:-webkit-transform 800ms ease-out 800ms;-webkit-transition:transform 800ms ease-out 800ms;transition:transform 800ms ease-out 800ms;} .bHHbJz .logo-leave{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);} .bHHbJz .logo-leave.logo-leave-active{-webkit-transform:translateY(-200px);-ms-transform:translateY(-200px);transform:translateY(-200px);-webkit-transition:-webkit-transform 800ms ease-in;-webkit-transition:transform 800ms ease-in;transition:transform 800ms ease-in;}
/* sc-component-id: label__LabelContainer-sc-1sg641z-0 */
.jciNXM{max-width:7.5em;position:relative;width:100%;text-align:center;min-height:1em;margin-bottom:0.625rem;} @media (min-width:48em){.jciNXM{max-width:10em;}}
/* sc-component-id: label__Label-sc-1sg641z-1 */
.dVWSWG{width:100%;text-align:center;display:block;line-height:1.5;}
/* sc-component-id: animatedLabel__Container-sc-15t4r9n-0 */
.hPOXdU{max-width:7.5em;position:relative;width:100%;text-align:center;min-height:1em;margin-bottom:0.625rem;display:none;} @media (min-width:48em){.hPOXdU{max-width:10em;}} @media (min-width:48em){.hPOXdU{display:block;}} .hPOXdU .label-enter{opacity:0.01;} .hPOXdU .label-enter.label-enter-active{opacity:1;-webkit-transition:opacity 400ms ease-out 1300ms;transition:opacity 400ms ease-out 1300ms;} .hPOXdU .label-leave{opacity:1;} .hPOXdU .label-leave.label-leave-active{opacity:0;-webkit-transition:opacity 200ms ease-in 1000ms;transition:opacity 200ms ease-in 1000ms;}
/* sc-component-id: animatedLabel__StyledLabel-sc-15t4r9n-1 */
.deoknh{width:100%;text-align:center;display:block;line-height:1.5;position:absolute;margin:auto;left:0;right:0;bottom:0;}
/* sc-component-id: sponsor__Container-sc-10jtils-0 */
.kqIYKJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}
/* sc-component-id: list__Container-sc-1mgv9ol-0 */
.huatYE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;} .huatYE > *{margin-right:1.5em;margin-bottom:1.5em;}
/* sc-component-id: meta__Container-sc-1r4rfrf-0 */
.HGYsJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;position:relative;} @media (min-width:15em){.HGYsJ{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:36em){.HGYsJ{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:48em){.HGYsJ{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:76.25em){.HGYsJ{margin-left:-0.75rem;margin-right:-0.75rem;}} @media (min-width:90em){.HGYsJ{margin-left:-0.75rem;margin-right:-0.75rem;}}
/* sc-component-id: meta__Links-sc-1r4rfrf-1 */
.hhaKuw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
/* sc-component-id: meta__FooterLink-sc-1r4rfrf-2 */
.dokQrv{display:inline-block;color:#FFFFFF;margin-right:1em;} .dokQrv:hover{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: meta__Copyright-sc-1r4rfrf-3 */
.jclnT{display:block;margin-top:1em;} .jclnT span{display:block;}
/* sc-component-id: meta__EurovisionLogo-sc-1r4rfrf-4 */
.evjKym{height:20px;max-width:100%;height:auto;} @media (min-width:48em){.evjKym{height:30px;}}
/* sc-component-id: events__Container-fvapj9-0 */
.fccOaK{color:#FFFFFF;}
/* sc-component-id: events__Link-fvapj9-1 */
.iAQIcz{display:block;line-height:1.45;} .iAQIcz:hover{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: toTop__ToTopButton-ql9mra-0 */
.lDwGv{display:block;margin-top:2em;margin-right:0;} @media (min-width:36em){.lDwGv{margin-right:1.875rem;}}
/* sc-component-id: footer__Container-sc-1txxipz-0 */
.eZplSO{position:relative;overflow:hidden;color:#FFFFFF;background:#022957;background-repeat:no-repeat;-webkit-clip-path:polygon(0 0,100% 5%,100% 100%,0 100%);clip-path:polygon(0 0,100% 5%,100% 100%,0 100%);} @media (min-width:48em){.eZplSO{-webkit-clip-path:polygon(0 0,100% 10%,100% 100%,0 100%);clip-path:polygon(0 0,100% 10%,100% 100%,0 100%);}}
/* sc-component-id: footer__Inner-sc-1txxipz-1 */
.gftnSP{width:100%;box-sizing:border-box;margin-left:auto;margin-right:auto;position:relative;} @media (min-width:15em){.gftnSP{max-width:64.25rem;}} @media (min-width:36em){.gftnSP{max-width:64.25rem;}} @media (min-width:48em){.gftnSP{max-width:64.25rem;}} @media (min-width:76.25em){.gftnSP{max-width:85rem;}} @media (min-width:90em){.gftnSP{max-width:100rem;}} @media (min-width:15em){.gftnSP{padding-left:0.875rem;padding-right:0.875rem;}} @media (min-width:36em){.gftnSP{padding-left:0.875rem;padding-right:0.875rem;}} @media (min-width:48em){.gftnSP{padding-left:1.75rem;padding-right:1.75rem;}} @media (min-width:76.25em){.gftnSP{padding-left:3.375rem;padding-right:3.375rem;}} @media (min-width:90em){.gftnSP{padding-left:8.75rem;padding-right:8.75rem;}}
/* sc-component-id: frame__Container-rji2k0-0 */
.dedKfo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-height:100vh;}
/* sc-component-id: frame__Content-rji2k0-1 */
.jIYlsG{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;}
/* sc-component-id: ESC__Container-sc-1swp307-0 */
.liRdPe{height:100%;overflow:hidden;position:relative;background:#022957;}
/* sc-component-id: ESC__ArtworkContainer-sc-1swp307-1 */
.jhOnda{position:absolute;top:0;left:0;width:100%;height:100%;background-size:cover;background-position:center 0;background-image:url(/static/build/artwork.5c76e805.png);}
/* sc-component-id: sponsor__Container-sc-6obzf9-0 */
.exaXYj{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}
/* sc-component-id: bar__Container-sc-1podwn3-0 */
.cTpBMb{padding-top:2vh;padding-bottom:6vh;position:relative;}
/* sc-component-id: bar__LogoColumn-sc-1podwn3-1 */
.hvolfF{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;box-sizing:border-box;text-align:center;} @media (min-width:48em){.hvolfF{-webkit-flex-basis:33.33333333333333%;-ms-flex-preferred-size:33.33333333333333%;flex-basis:33.33333333333333%;max-width:33.33333333333333%;}} @media (min-width:15em){.hvolfF{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:36em){.hvolfF{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:48em){.hvolfF{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:76.25em){.hvolfF{padding-left:0.75rem;padding-right:0.75rem;}} @media (min-width:90em){.hvolfF{padding-left:0.75rem;padding-right:0.75rem;}}
/* sc-component-id: pattern__Wrapper-sc-1agdxy4-0 */
.hWYPre{position:absolute;left:0;width:100%;height:60%;bottom:-4vw;z-index:0;overflow:hidden;pointer-events:none;-webkit-clip-path:polygon(0 0,100% 0,100% 45%,0 100%);clip-path:polygon(0 0,100% 0,100% 45%,0 100%);} @media (min-width:15em){.hWYPre{visibility:hidden;}} @media (min-width:36em){.hWYPre{visibility:visible;}}
/* sc-component-id: pattern__GrayBlock-sc-1agdxy4-1 */
.ksxnGL{top:25%;position:absolute;background:#2B2B2B;opacity:0.07;width:100%;height:50%;-webkit-clip-path:polygon(0 0,100% 0,100% 5%,0 100%);clip-path:polygon(0 0,100% 0,100% 5%,0 100%);}
/* sc-component-id: pattern__StyledPattern-sc-1agdxy4-2 */
.ebiAfO{-webkit-transform:scaleX(-1);-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1);-webkit-filter:FlipH;filter:FlipH;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTFweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTEgMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDQwLjMgKDMzODM5KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCAyNjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJTdHlsZWd1aWRlIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iR3JvdXAtMjYiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIHg9IjAiIHk9IjAiIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTQtQ29weSIgZmlsbD0iI0E2QTZBNiIgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTQtQ29weS0yIiBmaWxsPSIjQTZBNkE2IiB4PSIxIiB5PSIxIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtNC1Db3B5LTMiIGZpbGw9IiNBNkE2QTYiIHg9IjIiIHk9IjIiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPjwvcmVjdD4KICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS00LUNvcHktNCIgZmlsbD0iI0E2QTZBNiIgeD0iMyIgeT0iMyIgd2lkdGg9IjEiIGhlaWdodD0iMSI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTQtQ29weS01IiBmaWxsPSIjQTZBNkE2IiB4PSI0IiB5PSI0IiB3aWR0aD0iMSIgaGVpZ2h0PSIxIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtNC1Db3B5LTYiIGZpbGw9IiNBNkE2QTYiIHg9IjUiIHk9IjUiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPjwvcmVjdD4KICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS00LUNvcHktNyIgZmlsbD0iI0E2QTZBNiIgeD0iNiIgeT0iNiIgd2lkdGg9IjEiIGhlaWdodD0iMSI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTQtQ29weS04IiBmaWxsPSIjQTZBNkE2IiB4PSI3IiB5PSI3IiB3aWR0aD0iMSIgaGVpZ2h0PSIxIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtNC1Db3B5LTkiIGZpbGw9IiNBNkE2QTYiIHg9IjgiIHk9IjgiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPjwvcmVjdD4KICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS00LUNvcHktMTAiIGZpbGw9IiNBNkE2QTYiIHg9IjkiIHk9IjkiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPjwvcmVjdD4KICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS00LUNvcHktMTEiIGZpbGw9IiNBNkE2QTYiIHg9IjEwIiB5PSIxMCIgd2lkdGg9IjEiIGhlaWdodD0iMSI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+');width:100%;height:100%;opacity:0.25;}
/* sc-component-id: masthead__Wrapper-sc-1teegbg-0 */
.hnWMNK{-webkit-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;color:#FFFFFF;}
/* sc-component-id: masthead__Container-sc-1teegbg-1 */
.hscWME{display:block;position:relative;z-index:10;width:100%;padding-bottom:2.5vh;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-top:1.875rem;} @media (min-width:48em){.hscWME{padding-top:5vh;}} @media (min-width:76.25em){.hscWME{padding-top:6.25em;}}
/* sc-component-id: masthead__BackgroundWrapper-sc-1teegbg-2 */
.htPDmk{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 80%);clip-path:polygon(0 0,100% 0,100% 100%,0 80%);}
/* sc-component-id: text__Text-sc-1udwi1c-0-p */
.igXijH{margin:0rem;font-size:1.25rem;font-family:Montserrat,sans-serif;font-weight:300;line-height:1.4;}.ksKKgd{margin:0rem;font-size:1rem;font-family:Rubik,sans-serif;font-weight:300;line-height:1.4;}
/* sc-component-id: text__Text-sc-1udwi1c-0-h3 */
.eceblV{margin:0rem;font-size:1.25rem;font-family:Montserrat,sans-serif;font-weight:300;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;} @media screen and (min-width:240px){.eceblV{font-size:1.25rem;}} @media screen and (min-width:576px){.eceblV{font-size:1.25rem;}} @media screen and (min-width:768px){.eceblV{font-size:1.375rem;}} @media screen and (min-width:1220px){.eceblV{font-size:1.625rem;}}.cxNzGb{margin:0rem;margin-bottom:0.625rem;font-size:1.25rem;font-family:Montserrat,sans-serif;font-weight:300;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;} @media screen and (min-width:240px){.cxNzGb{font-size:1.25rem;}} @media screen and (min-width:576px){.cxNzGb{font-size:1.25rem;}} @media screen and (min-width:768px){.cxNzGb{font-size:1.375rem;}} @media screen and (min-width:1220px){.cxNzGb{font-size:1.625rem;}}
/* sc-component-id: text__Text-sc-1udwi1c-0-h1 */
.fFilUn{margin:0rem;font-size:1.5rem;font-family:Montserrat,sans-serif;font-weight:300;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;} @media screen and (min-width:240px){.fFilUn{font-size:1.5rem;}} @media screen and (min-width:576px){.fFilUn{font-size:1.5rem;}} @media screen and (min-width:768px){.fFilUn{font-size:1.875rem;}} @media screen and (min-width:1220px){.fFilUn{font-size:2.5rem;}}
/* sc-component-id: tabs__StyledTabList-sc-1jw8dls-0 */
.hEqDLM span:last-child{margin-right:0;}
/* sc-component-id: tabs__Container-sc-1jw8dls-1 */
.kaAZod{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-top:1.5625rem;opacity:0;} @media screen and (min-width:15em){.kaAZod{margin-bottom:0.625rem;}} @media screen and (min-width:36em){.kaAZod{margin-bottom:0.625rem;}} @media screen and (min-width:48em){.kaAZod{margin-bottom:1.25rem;}} @media (min-width:48em){.kaAZod{min-height:1.875em;}}
/* sc-component-id: card__StyledBox-sc-56uo41-0 */
.kmMRJb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;display:block;margin-bottom:1.5rem;} @media (min-width:76.25em){.kmMRJb{margin-bottom:1.5rem;}} @media (min-width:90em){.kmMRJb{margin-bottom:1.5rem;}}
/* sc-component-id: card__Country-sc-56uo41-1 */
.khijES{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-bottom:1.25rem;} .khijES svg{margin-right:1em;width:27px;height:20px;}</style>

<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript">
 $(document).ready(function(){
   var w=$(window).width();
   if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
     $('.tablinks').each(function(index,el){
       var d=el.textContent;
       el.textContent=d.substring(0,1);
     });
   }
 });
</script>

<link rel="stylesheet" type="text/css" href="https://play.los40.com/build/assets/los40espana/css/style_black.css" media="screen" />

</head>
<body>

<div class="tab">
 <button class="tablinks" id="PlayRadio" onclick="openCity(event, 'endirecto')">En Directo</button>
 <button class="tablinks" id="ProgramacionRadio" onclick="openCity(event, 'programacion')">Programación</button>
 <button class="tablinks" id="ALaCartaRadio" onclick="openCity(event, 'alacarta')">A La Carta</button>
</div>

<div class="tabcontent" id="endirecto">
<div id="enDirecto" class="ahora">
           <div class="ahoraPrograma media">
                       <div class="media-body">
                                   <h1 class="lead">
                       <span class="iconf iconf-nombreEmisora">
                           <span class="sr-only">nombreEmisora</span>
                       </span>
                       LOS40
                   </h1>
                               <h2 class="sub">LOS40</h2>
               <p>Cris Regatero</p>
                                   <p>
                       De 18:00 a 22:00 h
                   </p>
                               <div class="redes">
                   <span class="redesText"></span>
                                           <a href="https://twitter.com/los40" title="Síguenos en Twitter" class="iconf iconf-twitter" target="_blank" rel="noopener noreferrer nofollow">
                           <span class="sr-only">Twitter</span>
                       </a>
                                                               <a href="https://www.facebook.com/los40/" title="Síguenos en Facebook" class="iconf iconf-facebook" target="_blank" rel="noopener noreferrer nofollow">
                           <span class="sr-only">Facebook</span>
                       </a>
                                                               <a href="http://los40.com/tag/instagram/a/" title="Síguenos en Instagram" class="iconf iconf-instagram" target="_blank" rel="noopener noreferrer nofollow">
                           <span class="sr-only">Instagram</span>
                       </a>
                                                               <a href="https://www.youtube.com/user/los40principales" title="Síguenos en Youtube" class="iconf iconf-youtube" target="_blank" rel="noopener noreferrer nofollow">
                           <span class="sr-only">Youtube</span>
                       </a>
                                   </div>
           </div>
       </div>

       <script id="en_directo_js" type="application/javascript">
       $(document).ready( function() {
           var idMedia = ('undefined' !== typeof(window.player.media)) ? window.player.media : 'los40';
           var playingId = window.player.getPlayingId();

           $('button.btn_play').on('click', function(e) {
               // Evitar submit por defecto.
               e.preventDefault();

               var params = {
                   id_media: idMedia,
                   playList: {},
                   topPlayer: {
                       media: {autoplay: true}
                   }
               };

               window.player.updatePlayer(params, {"title":"Escucha LOS40 en directo - Todos Los \u00c9xitos","description":"LOS40 en directo, la emisora de radio musical m\u00e1s escuchada del pa\u00eds. \u00a1Disfruta de las principales canciones, la Lista y los programas m\u00e1s divertidos.","directo_prefix_title":"Escucha ","directo_sufix_title":" en directo - Todos Los \u00c9xitos","directo_prefix_description":null,"directo_sufix_description":" en directo, la emisora de radio musical m\u00e1s escuchada del pa\u00eds. \u00a1Disfruta de las principales canciones, la Lista y los programas m\u00e1s divertidos.","a_la_carta_title":"A la carta: podcast de todos los programas de LOS40","a_la_carta_description":"A la carta: escucha online los podcasts de tus programas favoritos de LOS40. Toda la m\u00fasica, las entrevistas y las mejores bromas de la radio musical.","programacion_prefix_title":"Programaci\u00f3n de ","programacion_sufix_title":", radio musical en directo","programacion_prefix_description":"Los programas de ","programacion_sufix_description":" en directo. Horario de los programas de radio Anda Ya, Del 40 al 1, Radiotubers, Lo+40, Yu, LOS40 Global Show y m\u00e1s. \u00a1Esc\u00fachalos!.","emisora_audios_prefix_title":"Listado de audios y podcast de ","emisora_audios_prefix_description":"Escucha el podcast de tus programas preferidos de ","emisora_audios_sufix_description":". Descubre todos los audios de las entrevistas y bromas m\u00e1s divertidas de la radio musical","programa_prefix_title":"Escucha ","programa_sufix_title":", podcast y directo del programa de radio.","programa_prefix_description":"Escucha el podcast de ","programa_sufix_description":". Accede online a todos los audios y mejores momentos del programa de radio musical","sitemap_title":"Mapa Web LOS40, radio en directo","sitemap_description":"Accede desde nuestro Mapa Web a la programaci\u00f3n de radio, emisoras en directo, audios a la carta, podcasts de programas y m\u00fasica en directo en LOS40.","tag_prefix_title":"Escucha los audios de ","tag_sufix_title":" a la carta | LOS40","tag_prefix_description":"Escucha online los audios sobre ","tag_sufix_description":". Disfruta de la playlist a la carta con todos los audios y podcasts de LOS40.","keywords":null,"author":"LOS40","fb_type":"music.radio_station","fb_app_id":null,"fb_article_publisher":"https:\/\/es-la.facebook.com\/los40\/","publisher":null,"app_name":"Los 40 Espa\u00f1a en directo","twitter_card":"summary_large_image","twitter_site":"Los40","manifest":true,"browserconfig":true,"favicons":["apple-icon-57x57","apple-icon-60x60","apple-icon-72x72","apple-icon-76x76","apple-icon-114x114","apple-icon-120x120","apple-icon-144x144","apple-icon-152x152","apple-icon-180x180","android-icon-192x192","favicon-16x16","favicon-32x32","favicon-96x96","ms-icon-144x144","favicon"],"facebook_app_id":144046120694,"og_title":"Escucha LOS40 en directo - Todos Los \u00c9xitos","twitter_title":"Escucha LOS40 en directo - Todos Los \u00c9xitos","og_description":"LOS40 en directo, la emisora de radio musical m\u00e1s escuchada del pa\u00eds. \u00a1Disfruta de las principales canciones, la Lista y los programas m\u00e1s divertidos.","twitter_description":"LOS40 en directo, la emisora de radio musical m\u00e1s escuchada del pa\u00eds. \u00a1Disfruta de las principales canciones, la Lista y los programas m\u00e1s divertidos."}, true);
           });

           if (playingId === idMedia && 'play' === window.player.getPlayerStatus()) {
               $('button.btn_play').addClass('btn_pause');
           }

           $(document).on('player:iniciado', function (e) {
               $('button.btn_play').addClass('btn_pause');
           }).on('player:pausado', function (e) {
               $('button.btn_play').removeClass('btn_pause');
           });
       });
   </script>
</div>
</div>
<div class="tabcontent" id="programacion">
<div class="tab">
 <button class="tablinks" id="LunesDay" onclick="openCity(event, 'Lunes')">Lunes</button>
 <button class="tablinks" id="MartesDay" onclick="openCity(event, 'Martes')">Martes</button>
 <button class="tablinks" id="MiércolesDay" onclick="openCity(event, 'Miércoles')">Miércoles</button>
 <button class="tablinks" id="JuevesDay" onclick="openCity(event, 'Jueves')">Jueves</button>
 <button class="tablinks" id="ViernesDay" onclick="openCity(event, 'Viernes')">Viernes</button>
 <button class="tablinks" id="SábadoDay" onclick="openCity(event, 'Sábado')">Sábado</button>
 <button class="tablinks" id="DomingoDay" onclick="openCity(event, 'Domingo')">Domingo</button>
</div>
<div class="tabcontent" id="Lunes">
<h3>
LUNES, 3 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 8:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/BlPOdLq.jpeg" title="Actuality Morning" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual">
<span style="color: black; font-family: Poppins; font-size: normal;">De 8:00h a 11:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Actuality Morning</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Despiértate con nosotros</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/ga9cGiM.jpeg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 11:00h a 13:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Ángel Ramírez</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-hV5yzLChrnM/WwKvbB3fUuI/AAAAAAAALqc/t4_dCjNPqs83nb88iCZ2cQ492vwVRANUgCLcBGAs/s1600/javi.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 13:00h a 16:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Javier Guerrero</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a hr


05-Jan-2019 12:09
Nacho Cabanes (+84)

El código es tan grande... que incluso sale incompleto.

Intenta limitar el problema a un fragmento tan pequeño como sea posible. Eso ayudará (muchísimo) a rastrear el error.






(No se puede continuar esta discusión porque tiene más de dos meses de antigüedad. Si tienes dudas parecidas, abre un nuevo hilo.)