.container {
    background: #c8cdcd;
    display: grid;
    grid-template-columns: 100px 100px 1fr;
    grid-template-rows: 100px 0px auto 60px;
    min-height: 100vh;
    gap: 1px;
    border-radius: 10px;

    grid-template-areas:
    "menu menu main_info"
    "menu menu main_info"
    "menu menu main_info"
    "footer footer footer"
}



a {
     color: #555e61;
}

a, a:hover {
     text-decoration: none;
 }


img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

.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 */
}
/*---------------------------------------------------------------------------*/

.div_main_info {
    background: #ffffff;
    grid-area: main_info;
    border-radius: 5px;
    width: 600px;
}

.container__livetable {
    border-radius: 8px;
    margin-bottom: 12px;
}

.container__heading {
    background-color: var(--color-combination-9);
    border-radius: var(--spaHeading-borderRadius, 8px);
    margin-bottom: var(--spaHeading-marginBottom, 12px);
}

.breadcrumb {
    align-items: center;
    border-radius: 8px 8px 0 0;
    color: #555e61;
    display: flex;
    flex-flow: row nowrap;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    margin: 5px 19px 0px;
    overflow-x: auto;
    text-transform: uppercase;
    white-space: nowrap;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.breadcrumb__icon {
    color: #555e61;
    flex-shrink: 0;
    margin-right: 6px;
}

.breadcrumb__link:first-of-type {
    margin-right: 8px;
}

.breadcrumb__link {
    color: #555e61;
    padding: 8px;
}

.team-page .heading, .tournament-page .heading {
    border-radius: 0;
}

.heading {
    display: grid;
    grid-column-gap: 16px;
    align-items: center;
    border-bottom: 1px solid #c8cdcd;
    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;
    font-size: 12px;
}

.heading__logo--1 {
    grid-area: logo1;
}

.heading__logo {
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    height: 82px;
    justify-content: center;
    padding: 4px;
    width: 82px;
}

.heading__title {
    align-items: center;
    display: flex;
    grid-area: title;
}

.heading__name {
    color: #00141e;
    font-size: 20px;
    font-weight: 700;
    margin-right: 8px;
}

.heading__info {
    color: #555e61;
    font-weight: 700;
    grid-area: info;
    hyphens: auto;
    margin-bottom: 8px;
}

.heading__info--key {
    font-weight: 400;
}

.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;
}

.tabs__group, .tabs__tab {
    align-items: center;
    display: flex;
}

.tabs__group {
    overflow: auto;
    width: 100%;
}

.tabs__tab.selected {
    color: #ff0046;
    pointer-events: none;
}

.tabs__tab {
    box-sizing: border-box;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    margin-top: 0;
    padding: 14px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}

.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);
}

@media (hover: hover) {
    .tabs__tab:hover {
        background-color:inherit;
        color: #0f2d37
    }
}

.participant-page #live-table, .team-page #live-table, .tournament-page #live-table {
    background-color: unset;
    padding: 0;
}

#live-table {
    box-sizing: border-box;
    position: relative;
}

.event {
    color: #555e61;
    font-size: 11px;
}

.event--fixtures, .event--results, .event--summary {
    background-color: #ffffff;
    border-radius: 8px;
    margin: 12px 0;
}

.event .sportName:first-of-type {
    border-radius: 0 0 8px 8px;
    padding: 0 0px 4px;
}

.event .sportName {
    background-color: #ffffff;
    border-radius: 8px;
}

.wclLeagueHeader--indent {
    padding-right: 10px;
}

.wclLeagueHeader {
    --odds-width: 59px;
    align-items: center;
    border-bottom: 1px solid #c8cdcd;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 32px 1fr auto max-content;
    position: relative;
}

.wcl-pinned_WU5N6 {
    background-color: #eef7ff;
}

.wcl-header_uBhYi {
    align-items: center;
    background-color: #eee;
    border-radius: var(--radius-highlights-desktop);
    display: grid;
    min-height: 32px;
}

.wclLeagueHeader .event__title {
    grid-column: 2 / 3;
}

@media screen and (min-width: 799px) {
    .event__title {
        margin: auto 6px auto 5px;
    }
}

.event__title {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: row;
    font-weight: 500;
    justify-content: flex-start;
    line-height: 1.1;
    max-width: 100%;
    position: relative;
    white-space: nowrap;
}

.wclLeagueHeader .event__titleInfo {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
}

.wclLeagueHeader .event__titleBox {
    align-items: center;
    display: flex;
}

@media screen and (min-width: 799px) {
    .event__titleBox {
        grid-template: "type name sport";
    }
}

.event__titleBox {
    display: grid;
    grid-row-gap: 2px;
    grid-template-areas:
        " name "
        " type ";
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
}

.wcl-scores-overline-05_P-fjE {
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    text-transform: uppercase;
}

.wcl-overline_rOFfd {
    display: block;
}

.wclLeagueHeader__textColor {
    color: #555e61;
}

.wclLeagueHeader .event__titleBox a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.wclLeagueHeader__link {
    text-decoration: none;
}

.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);
}

.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;
}

.wclLeagueHeader+.event__match {
    margin-top: 1px;
}

.event__match--withRowLink {
    position: relative;
}

@media screen and (min-width: 799px) {
    .event__match--twoLine {
        position: relative;
    }
}

.event__match--twoLine {
    color: #001e28;
    display: grid;
}

.event__match--last {
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.event__match {
    border-bottom: 1px solid #c8cdcd;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .4s ease;
}

.event__match {
    border-bottom: 1px solid #c8cdcd;
    box-sizing: border-box;
    cursor: pointer;
    transition: none;
}

.event__match {
    --width-liveBet: 31px;
    --width-stageOrTime: 72px;
}

.event__match--withRowLink .eventRowLink {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.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
    }
}

.event .event__time, .event .icon--preview {
    grid-area: homeScore / homeScore / awayScore / homeScore;
}

@media screen and (min-width: 799px) {
    .event__match--twoLine .event__time {
        align-items: center;
        margin: auto;
    }
}

@media screen and (min-width: 799px) {
    .event__match--twoLine .event__stage, .event__match--twoLine .event__time {
        color: #555e61;
        margin-left: 0;
        text-align: center;
        word-break: break-word;
    }
}

.event__match--twoLine .event__time {
    align-items: flex-end;
    color: #999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 15px;
    margin-left: 7px;
    text-align: right
}

.event__match .event__homeParticipant {
    grid-area: homeParticipant;
    margin-left: 13px;
}

.wcl-participant_7lPCX {
    align-items: center;
    display: grid;
    grid-template: " logo name card next injury highlight" auto / max-content auto auto auto auto 1fr;
}

.wcl-logo_EkYgo {
    grid-area: logo;
    justify-self: end;
    margin-right: 5px;
}

.wcl-sizeXXS_-SmAO {
    height: 17px;
    width: 27px;
}

.wcl-name_3y6f5 {
    grid-area: name;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wcl-scores-simpleText-01_pV2Wk {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
}

.wcl-simpleText_Asp-0 {
    display: block;
}

.event__match .event__awayParticipant {
    grid-area: awayParticipant;
    margin-left: 13px;
}

.wcl-scores-simpleText-01_pV2Wk.wcl-bold_roH-0 {
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
}

.container footer {
     background: #001e28;
     grid-area: footer;
     border-radius: 5px;
}

.event .event__score--home {
    grid-area: homeScore;
}

.event__match--twoLine .event__score {
    align-self: center;
    justify-self: center;
}

.wcl-matchRowScore_jcvjd.wcl-isFinal_Am7cC, .wcl-matchRowScore_jcvjd.wcl-isPreMatch_DZuit {
    color: #001e28;
}

.wcl-matchRowScore_jcvjd.wcl-isFinal_Am7cC, .wcl-matchRowScore_jcvjd.wcl-isHighlighted_iylU8, .wcl-matchRowScore_jcvjd.wcl-isLive_Npz8l {
    font-size: 11px;
    font-weight: 700;
    margin: 0px 8px 0px 8px;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
}

.wcl-matchRowScore_jcvjd {
    align-items: center;
    border-radius: 4px;
    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;
}

.event .event__score--away {
    grid-area: awayScore;
}

.wcl-badgeform_yYFgV {
    align-items: center;
    background-color: #c8cdcd;
    border-radius: 4px;
    color: #fff;
    display: flex;
    height: 20px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 20px;
}

.wcl-drawLose_pUe1j, .wcl-lose_qZrQy {
    background-color: #dc0000;
}

.wcl-draw_hNBQU, .wcl-winDraw_5S6Bl {
    background-color: #f3a000;
}

.wcl-drawWin_-7FBn, .wcl-win_9cMNW {
    background-color: #00a83f;
}

.wcl-clickable_BbSlo {
    border: none;
    cursor: pointer;
    font-family: inherit;
    outline: none;
    padding: 0;
    padding-block: 0;
    padding-inline: 0;
}

.formIcon__lastMatches {
    grid-area: liveIcon;
    margin: 13px 0px 13px -6px;
}

.showMore {
    align-items: center;
    color: #143f36;
    cursor: pointer;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    justify-content: center;
    padding-top: 12px;
    text-decoration: underline;
    visibility: hidden;
}

.hidden-duel {
    display: none;
}

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_info"
      "footer"; /* este puede quedarse o eliminarse si también se oculta el footer */
  }

  .div_main_info,
  .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%;
    }
}

.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);
    }
}





