.container {
     background: #c8cdcd;
     display: grid;
     grid-template-columns: 100px 100px 1fr;
     grid-template-rows: 100px 140px auto 60px;
     min-height: 100vh;
     border-radius: 10px;

     grid-template-areas:
     "menu menu main"
     "menu menu main"
     "menu menu main"
     "footer footer footer"
}

a, a:hover {
     text-decoration: none;
 }

a {
     color: #555e61;
}

use {
    pointer-events: none
}

.flag {
     background-repeat: no-repeat;
     background-size: auto 100%;
     flex: 0 0 18px;
     height: 12px;
     margin-right: 8px;
     width: 18px;
}

.logoMenuLeft {
    background-repeat: no-repeat;
    background-size: auto 100%;
    flex: 0 0 18px;
    height: 12px;
    margin-right: 8px;
    width: 18px;
}

.container .div_logo {
     background: beige;
     grid-area: logo;
     border-radius: 5px;

}

.img_logo {
     width: 100px;
     height: 60px;
     border-radius: 20px;
}

.img_logoPagina {
     background-color: #001e28;
     border-radius: 12px;
     box-sizing: border-box;
     display: flex;
     height: 100px;
     padding: 4px;
     width: 110px;
}


/*-------------------header-----------------*/
.container header {
    background: #001e28;
    grid-area: navegation;
    padding: 0 0px;
}

header {
  background: #001e28;
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 100%;
}

.logo-svg {
  max-width: 200px;
  height: auto;
}

.login-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #003344;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-size: 11px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.login-icon:hover {
  background-color: #ff0046;
}

.login-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Latido */
.pulse {
    animation: heartbeat 2s infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.1); }
    40%  { transform: scale(0.95); }
    60%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Entrada suave del grupo completo */
.logo-enter {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.extra-icon {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.extra-icon:hover {
    transform: scale(1.2);
    fill: #ff0046; /* o cualquier otro color deseado */
}

.icon-wrapper {
  position: relative;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  left: 10px;
  background-color: #009bcf;
  color: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 0px 0;
  display: none;
  z-index: 100;
  min-width: 150px;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: white;
  font-size: 11px;
}

.dropdown-menu a:hover {
  background-color: #004455;
}

/* ===== Lupa de búsqueda en el header ===== */
.search-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-icon-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.search-icon {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.search-icon:hover {
  transform: scale(1.2);
  fill: #ff0046;
}

/* Fondo oscuro del modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
}

/* Caja del modal */
.modal-content {
    background-color: #001e28;
    color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Botón de cierre */
.close-modal {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Input */
#searchInput {
    width: 95%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
    margin-top: 10px;
    font-size: 14px;
}

/* Resultados */
.search-results {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item-link {
    text-decoration: none;  /* Sin subrayado */
    color: inherit;         /* Mantiene el color original del texto */
    display: block;         /* Hace que el enlace abarque toda la tarjeta */
}

.search-result-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
/*-------------------------------------------------------*/

/*----------------------aside---------------------------*/

.container aside {
    background: #e4e8eb;
    grid-area: menu;
    border-radius: 5px;
    overflow-y: auto;
    overflow-x: hidden; /* ← importante para evitar scroll horizontal */
    max-height: 100vh;
}

.leftMenu {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.label_menu {
    align-items: center;
    display: flex;
    flex: 1;
    line-height: 19px;
    min-height: 25px;
    overflow: hidden;
    padding: 0px 8px;
    text-decoration: none
}

.leftMenu_head {
    align-items: center;
    display: flex;
    margin: 1px 3px 0px 3px;
    height: 90px;

}

.leftMenu_logo {
    background-size: 150px 50px;
    flex: 0 0 192px;
    height: 52px;
}

.logoMenuLeft.logo_juego {
    background-image: url(../logo_w3.png);
    opacity: 0.90;

    /* Tamaño y comportamiento del fondo */
    background-repeat: no-repeat;
    background-position: center;

    /* Efecto de brillo animado */
    filter: drop-shadow(0 0 6px #ff0046);
    animation: glow 2s infinite ease-in-out;
}

/* Animación de brillo */
@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 6px #ff0046);
    }
    50% {
        filter: drop-shadow(0 0 5px #ff0046);
    }
}


.linea_separadorHorizontal {
    height: 1px;
    width: 210px;
    background-color:#d0d4d9;;
}

.leftMenu__item--active {
    background-color: #ffffff;
    font-weight: 800;
}

.leftMenu__item {
   border-radius: 4px;
   display: flex;
   font-size: 12px;
   min-height: 50px;
   overflow: hidden;

   padding: 0;
}

.leftMenu__href, .leftMenu__item a {
    color: #00141e;
}

.leftMenu__href {
    align-items: center;
    display: flex;
    color: #0a1a26;
    flex: 1;
    line-height: 19px;
    min-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0px 20px;
    text-decoration: none;
    font-weight: 500;
}

@media (hover: hover) {
    .leftMenu__href:hover {
        color: #dc0000;
        transition: all .4s ease;
    }
}

/*-------animación de despliegue-------*/

/* Oculto por defecto */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

/* Mostrar cuando se pasa el mouse sobre el contenedor entero */
.dropdown-hover:hover .dropdown-content {
    max-height: 500px;
    opacity: 1;
}

/* Flecha animada */
.arrow::before {
    content: "►";
}
.dropdown-hover:hover .arrow::before {
    content: "▼";
}

.dropdown-hover {
    display: flex;
    flex-direction: column; /* organiza hijos en columna */
}

.dropdown-hover .leftMenu__href {
    padding-left: 20px; /* igual que los demás */
}
/*---------------------------------------------------------------------------*/

/*---------------main ------------------*/

.container main {
     background: #ffffff;
     grid-area: main;
     border-radius: 5px;
     width: 600px;
     display: flex;

}

.container__livetable {
    border-radius: 8px;
    margin-bottom: 12px;
    width: 100%
}

@media only screen and (max-width: 639px) {
    .container .myFs,.container__heading,.container__livetable--h2hLp .container__heading,.season_calendar_page .container__heading {
        border-radius:0
    }

    .container__mainInner {
        padding: 0
    }

    .container__livetable {
        border-radius: unset
    }

    .container__fsbody {
        border-radius: 0
    }

    .container__myMenu {
        animation: fadeInWindow .6s ease-out;
        display: none
    }

    .container__myMenu--active {
        background: rgba(0,0,0,.35);
        border-radius: 12px;
        bottom: 0;
        display: flex;
        margin: 0;
        overflow: hidden;
        position: fixed;
        top: 76px;
        width: 100vw;
        z-index: var(--zIndex-modalWindow)
    }

    .fsNewsPage--detail .container__myMenu--active,.isLoggedIn .container__myMenu--active {
        top: 48px
    }

    .fsNewsPage.header-fan .container__myMenu--active {
        display: flex
    }

    ._ass .container__myMenu--active {
        border-radius: 0;
        top: 105px
    }

    .tv-program-page .container__myMenu--active {
        flex-flow: column nowrap;
        height: auto
    }

    .container__myMenu .menu {
        margin-bottom: unset
    }

    .container__overlay {
        background: var(--color-support-5);
        overflow: auto;
        width: 100%
    }

    .container__liveTableWrapper--hidden {
        display: none
    }

    .responsive .container__mainInner {
        grid-template: " myMenu   liveTable      bannerZone" 1fr " sideMenu liveTable      bannerZone" auto/auto minmax(0,1fr) auto
    }

    .category-page .container__heading,.sport_page .container__heading {
        border-radius: 0
    }
}

.container__heading {
    background-color: #fff;
    border-radius: var(--spaHeading-borderRadius,8px);
    margin-bottom: var(--spaHeading-marginBottom,12px)
}

h1,h2,h3,h4,h5,h6 {
    margin: 0
}

.breadcrumb {
    align-items: center;
    border-radius: 8px 8px 0 0;
    color: var(--color-support-4);
    display: flex;
    flex-flow: row nowrap;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    margin: 0;
    overflow-x: auto;
    padding: 16px;
    text-transform: uppercase;
    white-space: nowrap
}

.breadcrumb__link {
    color: #555e61
}

.breadcrumb__link:first-of-type {
    margin-right: 8px
}

.breadcrumb__arrow {
    color: #999;
    flex-shrink: 0;
    height: 10px;
    margin-right: 7px;
    transform: rotate(180deg);
    width: 10px
}

.flag {
    background-repeat: no-repeat;
    background-size: auto 100%;
    flex: 0 0 18px;
    height: 12px;
    margin-right: 8px;
    width: 18px
}

.breadcrumb__flag {
    height: 12px;
    margin-right: 8px;
    width: 18px
}

.flag.fl_02,.flag.fl_1,.flag.fl_2,.flag.fl_290,.flag.fl_292,.flag.fl_3,.flag.fl_4,.flag.fl_450,.flag.fl_451,.flag.fl_453,.flag.fl_5,.flag.fl_6,.flag.fl_7,.flag.fl_8 {
    background-image: url(/res/_fs/build/world.b7d16db.png)
}

.heading {
    display: grid;
    grid-column-gap: 16px;
    align-items: center;
    border-bottom: 1px solid #eee;
    border-radius: 0 0 8px 8px;
    grid-template: " logo1       title    logo2    " 1fr " logo1       info     logo2    " max-content " logo1       timeline timeline " max-content/max-content 1fr max-content;
    padding: 12px 16px 16px
}

@media only screen and (max-width: 639px) {
    .heading {
        grid-column-gap:16px
    }
}

.team-page .heading,.tournament-page .heading {
    border-radius: 0
}

.heading__logo {
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    height: 68px;
    justify-content: center;
    padding: 4px;
    width: 68px
}

@media only screen and (max-width: 639px) {
    .heading__logo {
        background-size:58px;
        height: 68px;
        width: 68px
    }

    .heading__logo a div {
        background: no-repeat 9px 9px/50px 50px;
        height: 68px;
        width: 68px
    }
}

.heading__logo--1 {
    grid-area: logo1
}

.heading__title {
    align-items: center;
    display: flex;
    grid-area: title
}

.heading__name {
    color: #00141e;
    font-size: 16px;
    font-weight: 700;
    margin-right: 8px
}

@media only screen and (max-width: 639px) {
    .heading__name {
        display:inline;
        word-break: break-word
    }
}

.heading__title {
    align-items: center;
    display: flex;
    grid-area: title
}

.heading__info {
    color: #555e61;
    font-weight: 700;
    grid-area: info;
    hyphens: auto;
    margin-bottom: 8px;
    font-size: 13px;
}

.tabs {
    align-items: center;
    background-color: var(--spaTabs-backgroundColor,initial);
    border-radius: var(--spaTabs-borderRadius,initial);
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spaTabs-marginBottom,initial);
    padding: 0 10px
}

@media only screen and (max-width: 639px) {
    .tabs {
        flex-direction:column
    }

    #block-summary-match-record .tabs,#block-summary-tournament-won .tabs,.careerMatchesWrapper .tabs,.event--summary .tabs {
        padding: 0 10px 0 8px
    }

    .tabs--myTeams {
        padding: 0 10px
    }

    .event--summary .tabs__ear {
        margin: 20px 0 16px 4px
    }

    .careerMatchesWrapper .tabs__ear {
        padding: 12px 0 0
    }
}

.tabs__group {
    overflow: auto;
    width: 100%
}

.tabs__group,.tabs__tab {
    align-items: center;
    display: flex
}

.tabs__tab {
    box-sizing: border-box;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    margin-top: 0;
    padding: 14px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.4px;
}

.tabs__tab.selected {
    color: #ff0046;
    pointer-events: none
}

.tabs__tab.selected:before {
    background-color: #ff0046;
    border-radius: 1.5px 1.5px 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    position: absolute;
    width: calc(100% - 28px)
}
/*--------------------------------------*/

/*------------container__fsbody--------*/

.cricket:not(.isSportPage):not(.category-page) .container__fsbody,.participant-page .container__fsbody,.team-page .container__fsbody,.tournament-page .container__fsbody {
    background-color: unset;
    padding: 0
}

#live-table {
    box-sizing: border-box;
    position: relative
}

.participant-page #live-table,.team-page #live-table,.tournament-page #live-table {
    background-color: unset;
    padding: 0
}

.cricket:not(.isSportPage):not(.category-page) #live-table .event--fixtures,.cricket:not(.isSportPage):not(.category-page) #live-table .event--results,.cricket:not(.isSportPage):not(.category-page) #live-table .event--summary,.participant-page #live-table .event--fixtures,.participant-page #live-table .event--results,.participant-page #live-table .event--summary,.team-page #live-table .event--fixtures,.team-page #live-table .event--results,.team-page #live-table .event--summary,.tournament-page #live-table .event--fixtures,.tournament-page #live-table .event--results,.tournament-page #live-table .event--summary {
    padding: 12px;
}

@media only screen and (max-width: 639px) {
    #live-table {
        border-radius:0
    }

    .cricket:not(.isSportPage):not(.category-page) #live-table .event--fixtures,.cricket:not(.isSportPage):not(.category-page) #live-table .event--results,.cricket:not(.isSportPage):not(.category-page) #live-table .event--summary,.participant-page #live-table .event--fixtures,.participant-page #live-table .event--results,.participant-page #live-table .event--summary,.team-page #live-table .event--fixtures,.team-page #live-table .event--results,.team-page #live-table .event--summary,.tournament-page #live-table .event--fixtures,.tournament-page #live-table .event--results,.tournament-page #live-table .event--summary {
        padding: 0
    }

    .participant-page #live-table .event--fixtures,.participant-page #live-table .event--results,.team-page #live-table .event--fixtures,.team-page #live-table .event--results,.tournament-page #live-table .event--fixtures,.tournament-page #live-table .event--results {
        margin-top: 0
    }
}

.participant-page #live-table,.team-page #live-table,.tournament-page #live-table {
    background-color: unset;
    padding: 0
}

.event--fixtures,.event--results,.event--summary {
    background-color: #fff;
    border-radius: 8px;
    margin: 12px 0
}

@media only screen and (max-width: 639px) {
    .event--fixtures,.event--results,.event--summary {
        border-radius:0
    }
}

.event {
    color: #555e61;
    font-size: 11px
}

.cricket:not(.isSportPage):not(.category-page) #live-table .event--fixtures,.cricket:not(.isSportPage):not(.category-page) #live-table .event--results,.cricket:not(.isSportPage):not(.category-page) #live-table .event--summary,.participant-page #live-table .event--fixtures,.participant-page #live-table .event--results,.participant-page #live-table .event--summary,.team-page #live-table .event--fixtures,.team-page #live-table .event--results,.team-page #live-table .event--summary,.tournament-page #live-table .event--fixtures,.tournament-page #live-table .event--results,.tournament-page #live-table .event--summary {
    padding: 12px
}

.event .sportName {
    background-color: #fff;
    border-radius: 8px;
    padding: 0px 0px 4px
}

.event .sportName:first-of-type {
    border-radius: 0 0 8px 8px;
    padding: 0 0px 0px
}

.event .sportName.sportName--noDuel,.myfs .event .sportName,.participant-page .event .sportName,.series-page .event .sportName,.team-page .event .sportName,.tournament-page .event .sportName {
    margin-bottom: 0;
    padding: 0
}

@media only screen and (max-width: 639px) {
    .event .sportName {
        border-radius:0;
        margin-bottom: 0px;
        padding: 0
    }

    .event .sportName.sportNews {
        margin-bottom: 8px
    }

    .event .sportName.sportNews:last-of-type {
        padding-bottom: 0
    }

    .event .sportName:first-of-type {
        border-radius: 0;
        padding: 0
    }

    .event .sportName:last-of-type {
        margin-bottom: 0;
        padding-bottom: 12px
    }

    .event .sportName.sportName--noDuel:last-of-type,.myfs .event .sportName:last-of-type,.participant-page .event .sportName:last-of-type,.series-page .event .sportName:last-of-type,.team-page .event .sportName:last-of-type,.tournament-page .event .sportName:last-of-type {
        padding-bottom: 0
    }

    .event .sportName.sportName--noDuel.sportNews,.myfs .event .sportName.sportNews,.participant-page .event .sportName.sportNews,.series-page .event .sportName.sportNews,.team-page .event .sportName.sportNews,.tournament-page .event .sportName.sportNews {
        padding: 16px 0 4px
    }
}

/*------------------wclLeagueHeader------------------------*/

.wcl-header_uBhYi {
    align-items: center;
    background-color: #eee;
    border-radius: var(--radius-highlights-desktop);
    display: grid;
    min-height: 32px
}

.wcl-pinned_WU5N6 {
    background-color: #eef7ff
}

@media screen and (max-width: 799px) {
    .wcl-header_uBhYi {
        border-radius:var(--radius-highlights-mobile);
        min-height: 40px
    }
}

.wclLeagueHeader {
    --odds-width: 59px;
    align-items: center;
    border-top: 1px solid #fff;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 32px 1fr auto max-content;
    position: relative
}

.pid_130 .wclLeagueHeader,.pid_500 .wclLeagueHeader,.pid_501 .wclLeagueHeader {
    --odds-width: 116px;
    --odds-width-moneyline: 59px
}

.pid_130 .sportName.soccer .wclLeagueHeader,.pid_500 .sportName.soccer .wclLeagueHeader,.pid_501 .sportName.soccer .wclLeagueHeader {
    --odds-width: 59px
}

.wclLeagueHeader__overline {
    display: block;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%
}

.wclLeagueHeader__textColor {
    color: var(--color-support-4)
}

.theme--dark .wclLeagueHeader--pinned .wclLeagueHeader__textColor {
    color: var(--color-yellow)
}

.wclLeagueHeader+.event__match {
    margin-top: 1px
}

.wclLeagueHeader .event__title {
    grid-column: 2/3
}

.wclLeagueHeader .event__titleInfo {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr
}

.wclLeagueHeader .event__titleBox {
    align-items: center;
    display: flex
}

.wclLeagueHeader .event__titleBox a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%
}

.wclLeagueHeader__link {
    text-decoration: none
}

.wclLeagueHeader__link.event__tableLink,.wclLeagueHeader__link:hover {
    text-decoration: underline
}

.wclLeagueHeader__link.event__tableLink:hover {
    text-decoration: none
}

.wclLeagueHeader .event__caption {
    color: var(--color-combination-2);
    text-align: center
}

.wclLeagueHeader:last-child {
    margin-bottom: 12px
}

.wclLeagueHeader--hasInfo {
    border-radius: 8px 8px 0 0
}

.wclLeagueHeader--indent {
    padding-right: 10px
}

.wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102 {
    grid-template-columns: 32px 1fr repeat(3,var(--odds-width)) max-content
}

.pid_130 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_500 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_501 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102 {
    grid-template-columns: 32px 1fr var(--odds-width,0) var(--odds-width-moneyline,0) var(--odds-width,0) max-content
}

.wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2 {
    grid-template-columns: 32px 1fr repeat(2,var(--odds-width)) max-content
}

.pid_130 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.pid_500 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.pid_501 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2 {
    grid-template-columns: 32px 1fr var(--odds-width,0) var(--odds-width-moneyline,0) var(--odds-width,0) max-content
}

.wclLeagueHeader--oddsSpecific.wclLeagueHeader--mgDropdown {
    --dropdown-width: 32px
}

.wclLeagueHeader--oddsSpecific.wclLeagueHeader--collapsed:not(.wclLeagueHeader--indent) .event__title,.wclLeagueHeader--oddsSpecific.wclLeagueHeader--duelNoDuel.wclLeagueHeader--odds1X2 .event__title,.wclLeagueHeader--oddsSpecific.wclLeagueHeader--mgDropdown .event__title {
    grid-column: 3/4
}

.wclLeagueHeader--oddsSpecific.wclLeagueHeader--duelNoDuel.wclLeagueHeader--odds1X2 {
    padding-right: 0
}

.wclLeagueHeader--oddsSpecific.wclLeagueHeader--odds102.wclLeagueHeader--collapsed {
    grid-template-columns: 32px var(--dropdown-width,0) 1fr max-content repeat(3,var(--odds-width)) 32px
}

.wclLeagueHeader--oddsSpecific.wclLeagueHeader--odds1X2.wclLeagueHeader--collapsed {
    grid-template-columns: 32px var(--dropdown-width,0) 1fr max-content repeat(2,var(--odds-width)) 32px
}

.wclLeagueHeader--oddsSpecific.wclLeagueHeader--noDuel.wclLeagueHeader--collapsed.wclLeagueHeader--mgDropdown,.wclLeagueHeader--oddsSpecific.wclLeagueHeader--noDuel.wclLeagueHeader--collapsed:not(.wclLeagueHeader--indent) {
    grid-template-columns: 32px var(--dropdown-width,0) 1fr max-content
}

.wclLeagueHeader--oddsSpecific .event__mgDropdown {
    background-color: var(--color-support-5)!important;
    grid-area: unset!important;
    grid-column: 2/3!important
}

@media only screen and (max-width: 799px) {
    .wclLeagueHeader {
        grid-template-rows:40px
    }

    .wclLeagueHeader__overline {
        font-weight: 400;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%
    }

    .wclLeagueHeader__countryName {
        font-size: 11px;
        font-weight: 400;
        line-height: 14px
    }

    .wclLeagueHeader .event__titleBox {
        align-items: flex-start;
        /*flex-direction: column-reverse;*/
        grid-row-gap: 0
    }

    .wclLeagueHeader .event__titleColon {
        display: none
    }

    .wclLeagueHeader--indent {
        padding-right: 0
    }

    .wclLeagueHeader--indent.wclLeagueHeader--noDuel {
        padding-right: 10px
    }

    .pid_130 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_130 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.pid_500 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_500 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.pid_501 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_501 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2 {
        grid-template-columns: 32px 1fr auto max-content
    }

    .wclLeagueHeader--oddsSpecific.wclLeagueHeader--odds102.wclLeagueHeader--collapsed,.wclLeagueHeader--oddsSpecific.wclLeagueHeader--odds1X2.wclLeagueHeader--collapsed {
        grid-template-columns: 32px var(--dropdown-width,0) 1fr auto max-content
    }
}

.overflowLock {
    overflow: hidden
}

.wclImageContainer {
    grid-area: media
}

.fsNewsArticle .imageContainer {
    cursor: pointer;
    margin-bottom: 24px;
    pointer-events: none
}

.fsNewsArticle .imageContainer figure picture {
    pointer-events: auto
}

.fsNewsArticle .imageContainer--matchReport {
    cursor: pointer;
    margin-bottom: 16px;
    pointer-events: none
}

.fsNewsArticle .imageContainer--matchReport figure picture {
    pointer-events: auto
}

.fsNewsArticle__carousel {
    z-index: 1000000
}

.fsNewsArticle__carouselCaption {
    grid-area: caption
}

.event__match .event__homeParticipant {
    grid-area: homeParticipant;
    margin-left: 8px
}

.event__match .event__awayParticipant {
    grid-area: awayParticipant;
    margin-left: 8px
}

.event__title {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: row;
    font-weight: 700;
    justify-content: flex-start;
    line-height: 1.1;
    max-width: 100%;
    position: relative;
    white-space: nowrap
}

@media screen and (min-width: 799px) {
    .event__round {
        border-radius:4px;
        height: 24px;
        margin-top: 8px
    }

    .event__round--static {
        border-top: none
    }

    .event__titleBox {
        grid-template: "type name sport"
    }

    .event__header {
        border-radius: 8px;
        box-sizing: border-box;
        grid-template-columns: 32px 1fr;
        min-height: 32px
    }

    .event__header .event__title--type {
        font-size: 13px;
        font-weight: 700;
        overflow: visible
    }

    .isSportPage._ass .event__header:not(.event__header--noMyGames) .event__info {
        margin-right: 0
    }

    .event__header.event__header--infoBellow {
        border-radius: 8px 8px 0 0
    }

    .event__header--myFs {
        padding-left: 0
    }

    .event__header--myFs .event__info {
        margin-right: 10px
    }

    .event__header--noMyGames {
        grid-template-columns: 1fr;
        padding-left: 32px
    }

    .event__header--mgDropdown {
        grid-template-areas: " check dropdown title ";
        grid-template-columns: 31px 32px 1fr
    }

    .event__header--mgDropdown.event__header--myFs {
        grid-template: " check dropdown title info" auto/32px 36px 1fr auto
    }

    .event__header--mgDropdown .event__rating {
        margin-left: 60px
    }

    .event__header--mgDropdown.event__header--noMyGames {
        grid-template-areas: " dropdown title ";
        grid-template-columns: 32px 1fr
    }

    .event__header--noExpand .event__info:last-child {
        margin-right: 10px
    }

    .event__header--info {
        border-radius: 0 0 8px 8px;
        box-sizing: border-box;
        display: flex;
        font-size: 11px;
        min-height: 28px;
        padding: 0 0 0 35px
    }

    .event__header--mgDropdown .event__header--info {
        grid-area: title
    }

    .sportName--group .event__header--info {
        padding: 0 0 0 64px
    }

    .event__header--info span {
        margin-right: 15px
    }

    .event__header--info span+span:before {
        content: none
    }

    .event__header:first-of-type {
        margin-top: 0
    }

    .event__title {
        margin: auto 6px auto 5px
    }

    .event__titleBox--myFs .event__title--type {
        font-size: unset;
        opacity: unset
    }

    .event__title--type:after {
        content: ":\00a0"
    }

    .event__expanderBlock {
        border-left: unset
    }

    .event__titleBox--myFs .event__sportName {
        font-size: 13px;
        font-weight: 400;
        margin-left: 1ex;
        opacity: 1
    }
}

.wclLeagueHeader .event__title {
    grid-column: 2/3
}

.wclLeagueHeader .event__titleInfo {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
}

.flag {
    background-repeat: no-repeat;
    background-size: auto 100%;
    flex: 0 0 18px;
    height: 12px;
    margin-right: 8px;
    width: 18px
}

.wclFlag {
    margin-right: 8px
}

.flag.fl_152 {
    background-image: url(/res/_fs/build/pe.c9d12b3.png)
}

.event__titleBox {
    display: grid;
    grid-row-gap: 2px;
    grid-template-areas: " name " " type ";
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap
}

.wcl-overline_rOFfd {
    display: block
}

.wcl-scores-overline-05_P-fjE {
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    text-transform: uppercase
}

@media screen and (max-width: 639px) {
    .wcl-scores-overline-05_P-fjE {
        font-size: 11px;
        font-weight: 700;
        line-height: 20px;
        text-decoration: none;
        text-transform: uppercase
    }
}

media only screen and (max-width: 799px) {
    .wclLeagueHeader {
        grid-template-rows:40px
    }

    .wclLeagueHeader__overline {
        font-weight: 400;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%
    }

    .wclLeagueHeader__countryName {
        font-size: 11px;
        font-weight: 400;
        line-height: 14px
    }

    .wclLeagueHeader .event__titleBox {
        align-items: flex-start;
        flex-direction: column-reverse;
        grid-row-gap: 0
    }

    .wclLeagueHeader .event__titleColon {
        display: none
    }

    .wclLeagueHeader--indent {
        padding-right: 0
    }

    .wclLeagueHeader--indent.wclLeagueHeader--noDuel {
        padding-right: 10px
    }

    .pid_130 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_130 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.pid_500 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_500 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.pid_501 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.pid_501 .wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2,.wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds102,.wclLeagueHeader--odds.wclLeagueHeader--collapsed.wclLeagueHeader--odds1X2 {
        grid-template-columns: 32px 1fr auto max-content
    }

    .wclLeagueHeader--oddsSpecific.wclLeagueHeader--odds102.wclLeagueHeader--collapsed,.wclLeagueHeader--oddsSpecific.wclLeagueHeader--odds1X2.wclLeagueHeader--collapsed {
        grid-template-columns: 32px var(--dropdown-width,0) 1fr auto max-content
    }
}

/*---------------------------------------------*/

/*--------event__match event__match--withRowLink-------------------------------------*/
.event__match {
    --width-liveBet: 31px;
    --width-stageOrTime: 72px
}

@media only screen and (max-width: 799px) {
    .event__match {
        --width-liveBet:46px
    }

    .event.event--myTeams .event__match,.event.odds .event__match,body._ass.isSportPage .event__match {
        --width-liveBet: 31px
    }

    .cricket .event.event--myTeams .event__match,.cricket .event.odds .event__match {
        --width-liveBet: 0
    }

    .cricket .event.event--myTeams .event__match--live,.cricket .event.event--myTeams .event__match--scheduled,.cricket .event.odds .event__match--live,.cricket .event.odds .event__match--scheduled {
        --width-liveBet: 31px
    }

    .cricket .event__match {
        --width-liveBet: 0
    }

    .cricket .event__match--live,.cricket .event__match--scheduled {
        --width-liveBet: 46px
    }

    .event.myfs .cricket .event__match {
        --width-liveBet: 0
    }

    .event.myfs .cricket .event__match--live,.event.myfs .cricket .event__match--scheduled {
        --width-liveBet: 46px
    }

    body._ass.isSportPage .event__match {
        --width-liveBet: 31px
    }

    body._ass.isSportPage.cricket .event__match {
        --width-liveBet: 0
    }

    body._ass.isSportPage.cricket .event__match--live,body._ass.isSportPage.cricket .event__match--scheduled {
        --width-liveBet: 31px
    }
}

@media only screen and (max-width: 639px) {
    .cricket .event__match--live,.cricket .event__match--scheduled,.event.myfs .cricket .event__match--live,.event.myfs .cricket .event__match--scheduled,.event__match {
        --width-liveBet:39px;
    }
}

.event__match {
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .4s ease
}

.event__match--twoLine {
    color: #001e28;
    display: grid
}

.event__match--withRowLink {
    position: relative;
}

.event__match--withRowLink .eventRowLink {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.event__match:not(.event__main),.event__match:not(.event__main) .event__participantTeam,.event__match:not(.event__main) .event__result--price,.event__match:not(.event__main) .event__resultLaps,.event__match:not(.event__main) .event__resultPit,.event__match:not(.event__main) .event__resultPoints,.event__match:not(.event__main) .event__resultPosition,.event__match:not(.event__main) .event__resultRides,.event__match:not(.event__main) .event__resultWins {
    color: #001e28;
}

@media screen and (min-width: 799px) {
    .event__match--twoLine {
        position:relative
    }

    .odds .event__match--twoLine:before {
        content: unset!important
    }

    .event__match--twoLine:before {
        background: var(--color-combination-8);
        content: "";
        height: calc(100% - 12px);
        position: absolute;
        right: 144px;
        top: 6px;
        width: 1px
    }

    .baseball .event__match--twoLine:before,.cricket .event__match--twoLine:before {
        height: 34px
    }

    body._ass.isSportPage .event__match--twoLine:before,body._ff.isSportPage .event__match--twoLine:before {
        display: none
    }

    .event__match--twoLine .event__stage,.event__match--twoLine .event__time {
        color: #555e61;
        margin-left: 0;
        text-align: center;
        word-break: break-word
    }

    .boxing .event__match--twoLine .event__stage,.mma .event__match--twoLine .event__stage {
        max-width: 100%
    }

    .event__match--twoLine .event__stage.highlighted {
        background-color: var(--color-live);
        border-radius: 4px;
        font-weight: 700;
        margin: 2px 0
    }

    .event__match--mgDropdown.event__match--twoLine .event__stage.highlighted {
        margin: 2px
    }

    .pesapallo .event__match--twoLine .event__score {
        min-width: unset;
        padding: 1px 3px
    }

    .event__match--twoLine .event__part,.event__match--twoLine .event__stage {
        justify-content: center
    }

    .event__match--twoLine .event__time {
        align-items: center;
        margin: auto
    }

    .event__match--twoLine .event__legs,.event__match--twoLine .event__sets {
        justify-content: center;
        margin-left: 0
    }

    .event__match--twoLine .event__legs.highlighted,.event__match--twoLine .event__sets.highlighted {
        background-color: var(--color-live);
        border-radius: 4px;
        color: var(--color-primary);
        font-weight: 700;
        margin: auto;
        min-width: 20px;
        padding: 1px
    }

    .event__match--twoLine .event__logo {
        margin: 0 0 0 8px
    }

    .event__match--twoLine .event__pitchers {
        color: var(--color-support-4);
        font-size: 11px;
        padding: 0 5px
    }

    .event__match--twoLine .event__rounds {
        align-items: center;
        line-height: 23px;
        margin-left: 0;
        text-align: center
    }

    .event__match--twoLine .event__scoreAway,.event__match--twoLine .event__scoreHome,.event__match--twoLine .event__scorePartAway,.event__match--twoLine .event__scorePartHome {
        place-self: center
    }

    .event__match--twoLine .event__participant {
        line-height: 18px;
        padding-left: 10px
    }

    .event__match--twoLine .event__participant--doubles {
        line-height: 16px
    }

    .event__match--twoLine .icon--winner {
        margin: 0 6px
    }

    .event__match--twoLine .icon--redCard {
        flex: 0 0 8px;
        width: 8px
    }

    .event__match--twoLine .icon--redCard-first {
        margin: 0 1px 0 6px
    }

    .event__match--twoLine .icon--redCard:not(.icon--redCard-first) {
        margin: 0 1px
    }

    .event__match--twoLine .icon--var {
        margin: 0 0 0 auto
    }

    .event__match--twoLine .highlightMsg {
        color: var(--color-primary);
        font-size: 13px;
        font-weight: 700;
        line-height: 14px;
        margin-right: 6px;
        text-align: right
    }

    .event__match--twoLine .highlightMsg .scores-changed {
        height: 19px
    }

    .event__match--twoLine .event__part--2 {
        font-weight: 400
    }

    .futsal .event__match--twoLine .event__part--2,.soccer .event__match--twoLine .event__part--2 {
        font-weight: 700
    }

    .event__match--twoLine .extraInfo {
        margin: 0 0 4px
    }
}

.event .soccer .event__match--twoLine {
    grid-template: " check       dropdown                 stageOrTime 				homeParticipant homeScore homePart1 homePart2 iconStr iconInf iconTv iconStd liveIcon" minmax(23px,auto) " check       dropdown                 stageOrTime 				awayParticipant awayScore awayPart1 awayPart2 iconStr iconInf iconTv iconStd liveIcon" minmax(23px,auto) /max-content var(--width-dropdown,0) var(--width-stageOrTime) 1fr 34px 34px 34px 28px 24px 24px 38px var(--width-liveBet,0);
}

@media only screen and (max-width: 799px) {
    .event .soccer .event__match {
        grid-template:" check       .                        .               .           .           .           .           .           .           .                     .           .           .           .           .           .           .       " 5px " check       dropdown                 homeParticipant iconStr     iconTv      resultsTime stage       homeService rounds      homeScoreInRegulation homePart1   homePart2   homeScore   homeCurrent homeLegs    homeSets    liveIcon" minmax(19px,auto) " check       dropdown                 awayParticipant iconStr     iconTv      resultsTime stage       awayService rounds      awayScoreInRegulation awayPart1   awayPart2   awayScore   awayCurrent awayLegs    awaySets    liveIcon" minmax(19px,auto) " check       .                        .               .           .           .           .           .           .           .                     .           .           .           .           .           .           .       " 5px /max-content var(--width-dropdown,0) 1fr max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content var(--width-liveBet,0)
    }
}

.event__match--twoLine .event__time {
    align-items: flex-end;
    color: #999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 15px;
    margin-left: 6px;
    text-align: right
}

.event .event__time,.event .icon--preview {
    grid-area: homeScore/homeScore/awayScore/homeScore
}

.event .contest--leagues .event__match:not(.event__match--scheduled) .event__time,.event--leagues .event__match:not(.event__match--scheduled) .event__time {
    grid-area: resultsTime
}

@media screen and (min-width: 799px) {
    .event .contest--leagues .event__match:not(.event__match--scheduled) .event__time,.event .event__stage,.event .event__time,.event--leagues .event__match:not(.event__match--scheduled) .event__time {
        grid-area:stageOrTime
    }
}

.wcl-participant_7lPCX {
    align-items: center;
    display: grid;
    grid-template: " logo        name card next injury highlight" auto/max-content auto auto auto auto 1fr
}

.event__match .event__homeParticipant {
    grid-area: homeParticipant;
    margin-left: 8px
}

.event__match .event__awayParticipant {
    grid-area: awayParticipant;
    margin-left: 8px
}


@media only screen and (max-width: 799px) {
    .event__match .event__awayParticipant,.event__match .event__homeParticipant {
        margin-left: 8px
    }
}

.wcl-assetContainer_ZFzzG {
    width: 100%
}

.wcl-sizeXXS_-SmAO {
    height: 17px;
    width: 27px;
    border: solid 1px #eee;
}

.wcl-logo_EkYgo {
    grid-area: logo;
    justify-self: end;
    margin-right: 8px
}

.wcl-simpleText_Asp-0 {
    display: block
}

.wcl-scores-simpleText-01_pV2Wk {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    text-transform: none
}

.wcl-name_3y6f5 {
    grid-area: name;
    overflow: hidden;
    text-overflow: ellipsis
}

.wcl-matchRowScore_jcvjd {
    align-items: center;
    border-radius: var(--radius-general-small);
    box-sizing: border-box;
    color: #999;
    display: inline-flex;
    font-size: 13px;
    font-weight: 400;
    justify-content: center;
    line-height: 16px;
    min-width: 20px;
    padding: 1px;
    text-decoration: none;
    text-transform: none
}

.wcl-matchRowScore_jcvjd.wcl-isFinal_Am7cC,.wcl-matchRowScore_jcvjd.wcl-isHighlighted_iylU8,.wcl-matchRowScore_jcvjd.wcl-isLive_Npz8l {
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    text-transform: none
}

.wcl-matchRowScore_jcvjd.wcl-isFinal_Am7cC,.wcl-matchRowScore_jcvjd.wcl-isPreMatch_DZuit {
    color: #001e28
}

.event__match--twoLine .event__score {
    align-self: center;
    justify-self: center
}

@media screen and (max-width: calc(799px - 1px)) {
    .event__match--twoLine .event__score {
        justify-content:flex-end;
        justify-self: end
    }

    .cricket .event__match--twoLine .event__score {
        text-align: right
    }

    .basketball .event__match--twoLine .event__score {
        min-width: 30px
    }

    .american-football .event__match--twoLine .event__score,.handball .event__match--twoLine .event__score,.netball .event__match--twoLine .event__score,.rugby-league .event__match--twoLine .event__score,.rugby-union .event__match--twoLine .event__score {
        min-width: 26px
    }

    .aussie-rules .event__match--twoLine .event__score,.cricket .event__match--twoLine .event__score,.golf .event__match--twoLine .event__result,.golf .event__match--twoLine .event__score,.motorsport-auto-racing .event__match--twoLine .event__score,.motorsport-moto-racing .event__match--twoLine .event__score {
        margin-left: 8px
    }

    .basketball .event__match--twoLine .event__part,.darts .event__match--twoLine .event__part {
        min-width: 30px
    }
}

.event .event__score--home {
    grid-area: homeScore
}

.event .event__score--away {
    grid-area: awayScore
}


/*---------------------------------------------*/

.container footer {
     background: #001e28;
     grid-area: footer;
     border-radius: 5px;
}

body {
     font-family: "Poppins", serif;
     margin: 0;
}

@media screen and (max-width: 799px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    overflow-x: hidden;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      "navegation"
      "main"
      "footer"; /* este puede quedarse o eliminarse si también se oculta el footer */
  }


  .container main,
  .container header {
    width: 100% !important;
    max-width: 100%;
  }

  svg {
    max-width: 100%;
    height: auto;
  }

  div {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 👇 Oculta completamente el <aside> y el <footer> */
  .container aside,
  .container footer {
    display: none !important;
  }

  /* ---------- HEADER / LOGIN ---------- */

  .header-content {
    display: flex;                      /* Asegura flexbox */
    justify-content: space-between;    /* Distribuye logo e ícono */
    align-items: center;
    padding: 8px 12px;
    width: 100%;
  }

  .logo-svg {
    max-width: 160px; /* Limita el ancho del logo en móviles */
    height: auto;
  }

  .login-text {
    display: none; /* Oculta texto en móviles */
  }

  .login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    padding: 8px;
    border-radius: 20%;
    background-color: #003344;
    margin-left: auto;
    flex-shrink: 0;
  }

  .login-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
  }
}

@media screen and (max-width: 480px) {
  .user-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .user-info .extra-icon {
    order: 1;
    width: 22px;
    height: 22px;
  }

  .user-info form {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .user-info button {
    font-size: 12px;
    padding: 6px 12px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .extra-icon:hover {
    transform: scale(1.2);
    fill: #ff0046; /* o cualquier otro color deseado */
  }

  .dropdown-menu {
      right: 0;
      left: 0px;
      top: 36px;
      min-width: 30vw;
      border-radius: 10px;
      font-size: 16px;
      padding: 0;
      background-color: #009bcf;
      text-align: center;
    }

    .dropdown-menu a {
      padding: 8px;
      font-size: 11px;
      display: block;
      border-bottom: 1px solid #004455;
    }

    .dropdown-menu a:last-child {
      border-bottom: none;
    }

    .icon-wrapper {
      position: relative;
      width: 36px;
      height: 15px;
    }

    .extra-icon {
      width: 100%;
      height: 100%;
    }
}