@import url('https://fonts.cdnfonts.com/css/e-square');

.header-left {
    display: flex;
    gap: 10px; /* Espacio entre los botones, ajusta según sea necesario */
}

.button-naranja {
  --button-accent: rgb(255, 0, 0);
  border: none;
  padding: 0px 18px;
  background: var(--button-accent);
  box-shadow: 0px 5px 0px 0px
      color-mix(in oklab, var(--button-accent) 80%, black),
    0px 5px 0px 5px black;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 900;
  color: white;
  text-shadow: 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  height: 22px;
}
.button-naranja:active {
  box-shadow: 0px 0px 0px 0px color-mix(in oklab, var(--button-accent), black),
    0px 0px 0px 5px black;
  transform: translateY(5px);
}
.button-red {
  --button-accent: rgb(255, 0, 0);
  border: none;
  padding: 0px 18px;
  background: var(--button-accent);
  box-shadow: 0px 5px 0px 0px
      color-mix(in oklab, var(--button-accent) 80%, black),
    0px 5px 0px 5px black;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 900;
  color: white;
  text-shadow: 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  height: 22px;
}
.button-red:active {
  box-shadow: 0px 0px 0px 0px color-mix(in oklab, var(--button-accent), black),
    0px 0px 0px 5px black;
  transform: translateY(5px);
}
.button-amarillo {
      --button-accent: #FFC107;
    border: none;
    padding: 0px 18px;
    background: var(--button-accent);
    box-shadow: 0px 5px 0px 0px 
    color-mix(in oklab, var(--button-accent) 80%, black), 0px 5px 0px 5px black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 900;
    color: white;
    text-shadow: 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    height: 22px;
}
.button-amarillo:active {
  box-shadow: 0px 0px 0px 0px color-mix(in oklab, var(--button-accent), black),
    0px 0px 0px 5px black;
  transform: translateY(5px);
}
/* Fondo del modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        /* Contenedor del modal */
        .modal-container {
            background: white;
            width: 90%;
            max-width: 400px;
            margin: 100px auto;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        /* Encabezado del modal */
        .modal-header {
            margin-bottom: 20px;
            font-size: 1.5em;
            font-weight: bold;
            color: black;
        }

        /* Botones del modal */
        .modal-buttons button {
            display: block;
            width: calc(100% - 20px); /* Resta 20px para los márgenes */
            margin: 10px auto; /* Márgenes entre botones */
            padding: 15px;
            border: none;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
        }

        .btn-red {
            background-color: red;
            color: white;
        }

        .btn-yellow {
            background-color: yellow;
            color: black;
        }

        .btn-blue {
            background-color: blue;
            color: white;
        }

        .btn-orange {
            background-color: orange;
            color: white;
        }
/*PROMOCIONES*/
        /* Contenedor para cada fila en grid de dos columnas */
    .grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .intemcierre{
        flex: 1;
    padding: 5px;
    box-sizing: border-box;
    width: 10%;
    background: #ffa500;
    color: #fff;
    font-weight: 700;
    text-align: center;
    }
    /* Cada item se alinea horizontalmente */
    .grid-item {
      display: flex;
      align-items: center;
    }
    .grid-item span {
       width: 80px;
       font-weight: bold;
       flex-shrink: 0;
       color: #fff;
       font-weight: 900;
    }
    .grid-item input {
      flex: 1;
      padding: 5px;
      box-sizing: border-box;
      width: 10%;
      background: red;
      color: #fff;
      font-weight: 700;
    }
/*BOTON INFORMACIÓN*/        
.whatsapp-button {
            position: fixed;
            right: -71px;
            top: 21%;
            transform: translateY(-50%);
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            display: flex;
            align-items: center;
            padding: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: width 0.3s;
            overflow: hidden;
            white-space: nowrap;
            cursor: pointer;
        }

        .whatsapp-button:hover {
            width: 200px;
        }

        .whatsapp-button img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }

        .whatsapp-button span {
            opacity: 0;
            transition: opacity 0.3s;
        }

        .whatsapp-button:hover span {
            opacity: 1;
        }
/*MENU RESPONSIVO*/
.cierrefecha {
    color: #09ff13;
    font-family: Arial;
    font-weight: bold;
    font-size: 13px;
    text-shadow: #4F7B02;
    text-align: center;
}
.titulo2 {
    font-family: 'E-SQUARE', sans-serif;
    font-weight: bold; 
    font-size: 30px; 
    color: #f1e100; 
    text-shadow: 0 1px 0 #f00, 0 2px 0 #f00, 0 3px 0 #f00, 0 4px 0 #f00, 0 5px 0 #ff0000, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    letter-spacing: 2px;
}
.textopromo{
    font-weight: bold;
    color: #09ff13;
}
.subtitulo {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}
.subtitulo2 {
    text-align: center;
    color: #ff0404;
    font-weight: 900;
    text-shadow: 2px 1px 0px #000000;
    font-size: 15px;
    justify-self: center;

}
.costoprecio{

    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: #FF3131;
    border-radius: 8px;
}
.costo{

    color: #fff;
    font-size: 18px;
    font-weight: 900;

}
.cierre{

    color: #fff;
    font-size: 15px;
    font-weight: 900;
    background: #FF3131;
    border-radius: 8px;

}
.pdfobject-com {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2016;
}

.pdfobject-com a:link, .pdfobject-com a:visited {
	color: #fff;
	font-weight: bold;
	display: block;
	padding: .25rem 1rem;
	background: #6699FF;
	text-decoration: none;
}

.pdfobject-com a:hover, .pdfobject-com a:visited:hover {
	color: #FFF;
	background: #FF3366;
	text-decoration: none;
}

.pdfobject-com a:before {
     content: "\2190";
     margin-right: .25rem;
}

/* Global */
ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
.btnAccion {display: inline-block; margin: 3px;}
.btnAccion img {cursor: pointer; border: 1px solid transparent; width: 50px;}
.btnAccion img:hover,img.DTActivo {border-color: yellow; box-shadow: 0px 0px 10px yellow;}
/* Header */
.header {
	/*background-color: #B8030C;*/
 /* background: linear-gradient(top, black, white);*/

  /*background-image: linear-gradient(black, red , black);*/
background: #1c1c1c;
position: fixed;
width: 100%;
top: 0px;
z-index: 10000;
}
.header-wrap {
  max-width: 1200px;
  position: relative;
  height: 50px;
  z-index: 100;
}

/* Menu Top */
.menu {
  overflow: hidden;
}

/* Sidenav Menu Responsive */
.sidenav {
  color: rgba(0, 0, 0, 0.8);
  background: transparent;
  height: 100vh;
  padding: 50px 20px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  z-index: 99;
}
.sidenav-wrap {
  background: #000 url('archivos/css/bg/squares.png');
  overflow: auto;
  padding: 20px 0;
  top: 50px;
  left: 50px;
  right: 0;
  bottom: 0;
  position: absolute;
  height: 24%;
}
.sidenav ul {margin: 0px 10px; }
.sidenav ul a {
  padding: 5px;
  display: block;
  margin: 5px 0px;
  color: #00FF00;
  border-left: 2px solid transparent;
  font-variant: small-caps;
  font-size: 16px;
}
.sidenav ul a em { color: red; margin-right: 5px;}
.sidenav ul a:hover { color: lightgreen;}
.sidenav ul a:hover { margin: 5px 0px; border-color: #00CCFF; }
.sidenav ul a:hover em { color: #00CCFF;}
/* Iconos Social Media */
.follow a {
  font-size: 20px;
  margin-right: 8px;
}

/* Icono amburgueza */
.button-nav--toggle {
  height: 48px;
  position: relative;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  width: 35px;
}
.button-nav--toggle span {
  background-color: #FFF;
  display: block;
  height: 2px;
  left: 10px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  -webkit-transition: .4s;
  transition: .4s;
  width: 20px;
}
.button-nav--toggle span:first-child {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.button-nav--toggle span:last-child {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
}
button.btnAcciones {
  color: #382b22;
  text-transform: capitalize;
  padding: 1.25em 2em;
  background: #fff0f0;
  border: 2px solid #b18597;
  border-radius: 0.75em;
  transition: transform 0.15s;
  transform-style: preserve-3d;
}
button.btnAcciones::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #302e2f;
  border-radius: inherit;
  box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #382b2200;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 0.15s, box-shadow 0.15s;
}

button.btnAcciones:hover {
  background: #ffe9e9;
  transform: translate(0, 0.25em);
}
button.btnAcciones:hover::before {
  box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #382b2200;
  transform: translate3d(0, 0.5em, -1em);
}
button.btnAcciones:active {
  background: #ffe9e9;
  transform: translate(0em, 0.75em);
}
button.btnAccionesbtn:active::before {
  box-shadow: 0 0 0 2px #b18597, 0 0 #382b2200;
  transform: translate3d(0, 0, -1em);
}
@font-face {
    font-family: 'black_jackregular';
    src: url('font/blackjack-webfont.eot');
    src: url('font/blackjack-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/blackjack-webfont.woff') format('woff'),
         url('font/blackjack-webfont.ttf') format('truetype'),
         url('font/blackjack-webfont.svg#black_jackregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
h1, p, form, input, div, img, label, header {
	padding: 0;
	margin: 0;
}
	
code:before {
position: absolute;
content: 'Code:';
top: -1.35em;
left: 0;
}
code {
margin-top: 1.5em;
position: relative;
background: #eee;
border: 1px solid #aaa;
white-space: pre;
padding: .25em;
min-height: 1.25em;
}
code:before, code {
display: block;
text-align: left;
}

	input, select, textarea {resize: none; text-align: center; padding: 3px 0px; margin: 1px; border: 0px none; background: transparent; border-bottom: 2px solid #555; color: #c0c0c0; border-radius: 5px 5px 0px 0px;}
	input[type="text"]:focus, textarea:focus, input[type="search"]:focus, select:focus {}
	select {padding: 3px 0px 3px 0px;}
	textarea{}
	input {}

	select.Small,select.small, input.small  {font-size: 10px;}
	option.Selected {font-weight: bold;}
	option.Titulo {text-align:center; font-weight: bold;}
	optgroup {font-style: italic;}

	input:focus, textarea:focus, select:focus {background-color: #DDD; color: #007491; border-color: #007491;}
	option.Uno {background: #E6FFFF; color: #0066FF;}
	option.Dos {background: white; color: darkred;}
	option.Selected {background: #FF6262; color: white;}
	option.Focus {background: #FFFFAA; color: #000;}
	option.Titulo {border-bottom: 2px dashed gray; color: green;}
	optgroup {color: green;}

.cur {cursor: pointer;}
img {border: 0px none; padding: 0px; margin: 0px;}
a, span.Link, span.Enlace, a:active, a:visited, a:link {color: #00CCFF; text-decoration: none; cursor: pointer;}
a:hover, span.Link:hover, span.Enlace:hover {color: #CCFF00;}
	ol, ul {list-style:none; margin:0px;padding:0px;}
	ol.Activo { text-align:left; list-style-type: lower-alpha; margin:0px 0px 0px 5px; padding:0px 0px 0px 5px;}
	ul.Activo { text-align:left; list-style-type: square; margin:0px 0px 0px 5px; padding:0px 0px 0px 5px;}
	ol.Activo span, ul.Activo span {font-weight: bold; margin-left: 0px;}
	ol.Activo li, ul.Activo li {margin: 2px 0px 2px 10px;}

.Underline {text-decoration: underline;}
.help {cursor: help;}
.p_i {float: left;}
.p_d {float: right;}


a, span.Link, span.Enlace, a:active, a:visited, a:link, .Underline, div.MenuU ul li span,div.Pestanas ul li span,.tabla_Equipos tr.Uno, .tabla_Equipos tr.Dos,.tabla_Equipos tr td div.Cubo,
div.listaBotones span, .icoHover, .spanAccion img, div.divRes div.C div.I input

{ -o-transition:.4s;  -ms-transition:.4s;  -moz-transition:.4s;  -webkit-transition:.4s;  transition:.4s; }

.spanAccion {display: inline-block; cursor: pointer;}
.spanAccion img {border: 1px solid transparent; box-shadow: 0px 0px 10px transparent; border-radius: 30px; width: 90px; cursor: pointer;}
.spanAccion img:hover, .spanAccion img.Activo {border: 1px solid yellow; box-shadow: 0px 0px 10px yellow;}
body {
	background: #000000 url('bg/squares.png') !important;
	font-family: Arial,Tahoma;
	font-size: 12px;
	padding: 0;
	margin: 0;
	width: 100%;
	color: #CCFF00;
}

	.fontMini {font-size: 8px !important;}
	.fontSmall {font-size: 10px !important;}
	.fontNormal {font-size: 12px !important;}
	.fontMedium {font-size: 15px !important;}
	.fontBig {font-size: 16px !important;}
	.fontXL {font-size: 1.4em !important;}

div.An_Gral {width: 100%; margin: 5px auto;}


	div.MenuU { background: #006699 url('bg/squares.png'); margin: 5px 0px; border-radius: 10px; padding: 0px; text-align: center !important;}

 	div.MenuU ul {display: inline-block; padding: 5px; margin: 0px;}





	div.MenuU ul li {display: inline-block; margin: 1px;}



	div.MenuU ul li span {margin: 0px 5px; border-radius: 5px; padding: 3px;}

	div.Sub ul li span {color: #CCFF00; font-size: 11px !important;  }

	div.MenuU ul li span {cursor: pointer; display: block; color: #CCFF00; text-align: center; border-bottom: 3px solid transparent; font-size: 13px; font-weight: bold; text-shadow: 1px 1px 0px #333;}

	div.MenuU ul li span div {display: block; text-align: center;}

	div.MenuU ul li div.hr {position: absolute; background-color: #ddd; height: 10px; width: 1px; margin-top: -8px; margin-left: 3px; clear: both; }

	div.MenuU ul li span em.ico {color: #00CCFF; font-size: 1.3em; }

	div.MenuU {text-align: right; padding-top: 2px;}

	div.MenuU ul li span:hover, div.MenuU ul li span.Activo {border-color: #00CCFF; color: #00CCFF; background: transparent;}



	div.Sub ul li span:hover, div.Sub ul li span.Activo {border-color: #FFF; color: #CCFF00; background: transparent;}





	div.MenuU ul li span:hover em, div.MenuU ul li span.Activo em {color: #CCFF00; }


/* * * * */

	/* Estilos para el menu de iconos*/
	div.Pestanas { display: block; padding-bottom: 0px; text-align: left; margin: 0px; }
	div.Pestanas div.Capas { display: none; text-align: left; background: #FFF; margin-top: 23px; width: 280px; z-index: 5; border: 2px solid green; border-top-color: green; border-radius: 6px 0px 5px 5px; position: absolute; }
	div.Pestanas div.Capas div.Contenedor {margin: 5px;}
	div.Pestanas div.Capas span.Titulo { display: block; font: bold italic 12px Arial, Tahoma, Verdana; background: green url('bg/squares.png'); color: #FFF; padding: 6px; letter-spacing: 1px; text-shadow: 1px 1px 0px #222; border-radius: 4px 0px 0px 0px;}
	div.Pestanas div.Capas div.Botones {width: 99%; margin-top: 10px; border-top: 2px solid #055F94; text-align: right; display: inline-block; float: right; padding: 5px 0px;}
	

	/* Estilos para el menu de iconos*/
	div.listaApuesta {   }
	div.listaBotones,div.listaBotones_2  { width: 20%; display: inline-block; border-left: 2px solid #00CCFF; padding-top: 17px; text-align:center; float: right; height: 45px;}
	div.listaBotones_2 {height: 103px;}
	div.listaBotones span { font-size: 2.5em; cursor: pointer; color: #00CCFF}
	div.listaBotones span:hover { color: #CCFF00;}
	/* div.Apuesta { padding-bottom: 0px; text-align: left; margin: 10px 10px; text-align:center;} */
	/* div.Apuesta ul {margin: 0px; padding: 0px; margin-left: 10px; display: inline-block;} */
	/* div.Apuesta ul li { display: inline-block; margin-right: 8px; padding: 0px; margin-left: -4px; max-width: 40px; min-width: 25px; border-bottom: 2px solid #FFF;} */
	/* div.Apuesta ul li span { display: inline-block; color: #FFF; padding-bottom: 4px; text-align: center; font: bold 1.2em Arial;} */
	/* div.Apuesta ul li div { display: block; background-color: #009CC4; color: #FFF; text-shadow: 1px 1px 0px #333; padding: 2px; text-align: center; font: bold 11px Verdana,Arial;} */

	div.Apuesta { padding-bottom: 0px; text-align: left; margin: 5px 0px 9px 0px; text-align:center; background: #1c1c1c;}
	div.Apuesta ul {margin: 0px; padding: 0px; margin-left: 10px; display: inline-block;}
	div.Apuesta ul li { display: inline-block; margin: 0px 5px 0px -4px; padding: 0px; max-width: 40px; min-width: 25px; border-bottom: 2px solid #fff; height: 20px;}
	div.Apuesta ul li span { display: inline-block; color: #fff; padding-bottom: 4px; text-align: center; font: bold 1.2em Arial;}
	div.Apuesta ul li div { display: block; color: #FFF; text-shadow: 1px 1px 0px #333; padding: 0px; text-align: center; font: bold 18px Verdana,Arial;}



	div.Apuesta2 { padding-bottom: 0px; text-align: left; margin: 0px; text-align: left;}
	div.Apuesta2 ul {margin: 0px; padding: 0px; margin-left: 0px; display: inline-block;}
	div.Apuesta2 ul li { display: inline-block; margin-right: 2px; padding: 0px; text-align: center; margin-left: 0px; max-width: 40px; min-width: 25px; border-bottom: 2px solid #000;}
	div.Apuesta2 ul li span { display: inline-block; color: #000; padding-bottom: 3px; font: bold 12px Arial;}
	div.Apuesta2 ul li div { display: block; background-color: #009CC4; color: #FFF; text-shadow: 1px 1px 0px #333; padding: 2px; text-align: center; font: bold 11px Verdana,Arial;}

.tabla_Adw td.Izq { text-align: left;}
.tabla_Adw tr td.AuxTitulo { padding-left: 3px !important; font-size: 11px !important; font-weight: bold !important;}
.tabla_Adw td.Cen { text-align: center !important;}
.tabla_Adw tr.CUno {background-color: #FFF;}
.tabla_Adw tr.CUno td {color: #000; text-align: left;}
.tabla_Adw tr.CUno td input,.tabla_Adw tr.CDos td input {width: 95%; text-align: center; padding: 3px; margin: 1px; border: 0px none;}
.tabla_Adw tr.CUno td select,.tabla_Adw tr.CDos td select { width: 95%; padding: 3px; margin: 1px; border: 0px none; }
.tabla_Adw tr.CDos {background-color: #c0c0c0;}
.tabla_Adw tr.CDos td {color: #00002D; text-align: left;}
.tabla_Adw tr td.C1 {border-left: 1px solid #333;}
.tabla_Adw tr td.titulo {padding: 0px; font-weight: bold; height: 20px; color: #FFF; border-right: 1px solid #000166; background: #000166 url('bg/squares.png'); text-align:center; vertical-align: middle; font-variant: small-caps;}

.tabla_Adw tr td.titulo2 {padding: 0px; font-weight: bold; height: 20px; color: #00CCFF; border-right: 1px solid #252525; text-shadow: 1px 1px 0px #333; background: #1B1B1B url('bg/squares.png'); text-align:center; vertical-align: middle; font-variant: small-caps;}
.imagecubos { 
  background: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}


.tabla_Ad td.Izq { text-align: left;}
.tabla_Ad tr td.AuxTitulo { padding-left: 3px !important; font-size: 11px !important; font-weight: bold !important;}
.tabla_Ad td.Cen { text-align: center !important;}
.tabla_Ad tr.CUno {background-color: #1B1B1B;}
.tabla_Ad tr.CUno td {color: #FFF; text-align: left;}
.tabla_Ad tr.CUno td input,.tabla_Ad tr.CDos td input {width: 95%; text-align: center; padding: 3px; margin: 1px; border: 0px none;}
.tabla_Ad tr.CUno td select,.tabla_Ad tr.CDos td select { width: 95%; padding: 3px; margin: 1px; border: 0px none; }
.tabla_Ad tr.CDos {background-color: #252525;}
.tabla_Ad tr.CDos td {color: #DDD; text-align: left;}
.tabla_Ad tr td.C1 {border-left: 1px solid #333;}
.tabla_Ad tr td.titulo {padding: 3px; font-weight: bold; height: 20px; color: #FFF; border-right: 1px solid #252525; text-shadow: 1px 1px 0px #333; background: #007491 url('bg/squares.png'); text-align:center; vertical-align: middle; font-variant: small-caps;}
.tabla_Ad tr td.titulo2 {padding: 3px; font-weight: bold; height: 20px; color: #00CCFF; border-right: 1px solid #252525; text-shadow: 1px 1px 0px #333; background: #1B1B1B url('bg/squares.png'); text-align:center; vertical-align: middle; font-variant: small-caps;}

.tablavistantes {
	font-size:18px;
	color:#000000;
	text-shadow: 0px;
}

div.SecTitulo {background: #007491 url('bg/squares.png'); text-align: left; padding: 5px 1px 5px 5px;}
div.SecTitulo span.T, div.SecTitulo2 span.T {font-weight: bold; color: #FFF; text-shadow: 1px 1px 0px #333; font-variant: small-caps;}
div.SecTitulo span.T em, div.SecTitulo2 span.T em {margin-right: 5px;}
div.SecTitulo span.ico, div.SecTitulo2 span.ico { float: right; margin-top: -4px;}
div.SecTitulo2 {text-align: left; padding: 5px 1px 5px 5px; border-bottom: 2px solid #007491;}
div.SecTitulo2 span.T {color: #00CCFF !important;}


div.divRes {margin: 0px 0px;}
div.divRes div.C {border-left: 2px solid transparent; padding: 3px 3px 3px 3px; text-align: left;}
div.divRes div.C span.T { background: transparent url('../../images/punto.gif') 0px 2px no-repeat; display: block; padding: 0px 1px 2px 10px; font: bold 11px Tahoma;}
div.divRes div.C span.T em.help { float:right; font-size: 13px;}
div.divRes div.C div.I input { width: 97%; }
div.divRes div.C div.I input:focus { }
div.divRes div.C div.I select { width: 97%;}
div.divRes div.C div.I span.txt {font: italic 10px;}
div.divRes div.CUno {background-color: #1B1B1B; border-color: #333; color: #CCC;}
div.divRes div.CDos {background-color: #252525; border-color: #666; color: #DDD;}
div.divRes div.CUno:hover {background: #000;}
div.divRes div.CDos:hover {background: #000;}

/*actualizacion*/
.bgContra {background: #FFF url('../../images/fondo.jpg') no-repeat center center fixed; background-size: contain;}
.bgCabecera {background: #FFFFFF;}
.bgApuesta {background: #152642;}
.tabla_Equipos tr td.EquipoIzq_Logo { padding-top: 2px; border-right: 0px none; text-align:left; width: 26px;}
.tabla_Equipos tr td.EquipoIzq_Nom { font-size: 11px; text-align: center; font-variant: small-caps; font-weight: 900;}
.tabla_Equipos tr td.EquipoDer_Nom { font-size: 11px; text-align: center; font-variant: small-caps; font-weight: 900; border-right: 0px none; }
.tabla_Equipos tr td.EquipoDer_Logo { padding-top: 2px; text-align:right; width: 26px;}

.tabla_Equipos tr.Uno {background-color: #FFF;}
.tabla_Equipos tr.Dos {background-color: #FFF;}
.tabla_Equipos tr td.C1 {border-left: 1px solid transparent;}
.tabla_Equipos tr td.titulo {padding: 3px; font-weight: bold; height: 20px; color: #FFF; border-right: 1px solid #252525; text-shadow: 1px 1px 0px #333; background: #007491 url('bg/squares.png'); text-align:center; vertical-align: middle; font-variant: small-caps;}
.tabla_Equipos tr td.titulo2 {padding: 3px; font-weight: bold; height: 20px; color: #00CCFF; border-right: 1px solid #252525; text-shadow: 1px 1px 0px #333; background: #1B1B1B url('bg/squares.png'); text-align:center; vertical-align: middle; font-variant: small-caps;}

.tabla_Equipos tr td {color: #000; text-align:center; vertical-align: middle; border-right: 1px solid #000; border-bottom: 1px solid #000;}
.tabla_Equipos tr td div.Cubo { background-color: #fff0!important; padding: 11px 6px; border: 0px solid #000; border-radius: 0px; cursor: pointer; color: #6A6291; font-weight: bold;}
.tabla_Equipos tr td div.Cubo:hover { background-color: #D90000; color: #fff!important; font-weight: bold;} 
.tabla_Equipos tr td div.Activo { background-color: #ff0039 !important; color: #fff!important; font-weight: bold;}
.tabla_Equipos tr td img.Logo { width: 30px; height: 30px; padding: 0px; margin: 0px; border: 0px none; }


.logoimage{
	width: 115px;
    position: absolute;
    top: 6px;
    left: 50%;
}
@media only screen and (max-width: 766px) {
.logoimage{
	width: 115px;
    position: absolute;
    top: 6px;
    left: 33%;
}
}
.franja{
	    background: #055f94;
}
.costotex{
	font-size: .5em;
}
.edicitex{
	font-size: .5em;
}

div.Cabecera_T {
	color: #325001;
	font-family: 'Arial';
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
	margin: 0px; padding: 0px;
	text-transform: uppercase;
}
div.Cabecera_C {
	color: #FE0002;
	font-family: Verdana;
	font-weight: bold;
	text-shadow: #4F7B02;
	text-transform: uppercase;
	text-align:center; font-size: 1.2em;
}
div.Cabecera_D {
	color: #325001;
	font-family: Arial;
	font-weight: bold;
	font-size: 10px;
	text-shadow: #4F7B02;
	text-align:center; 
}
.upperCase { text-transform: uppercase;}
div.Cabecera_B em { color: orange; font-size: 0.8em; }
div.Linea {
	height: 2px; background: #00CCFF;
	margin: 5px 10px;
}
.BorderT { }
.Cir { border-radius: 0px; }
.b_xxoo { border-radius: 0px 5px 5px 5px !important;}

.imagefooter { 
  width: 100%;
  background: #fff;
  background-size: 100% 100%;
}

.boton {
	display: inline-block;
	margin: 0px;
	padding: 6px 6px 5px 6px; 
	background: rgba(223,32,77, 0.8);
	color: rgba(220,220,220,1);
	
	cursor: pointer;
	-webkit-transition: background 0.4s;
	transition: background 0.4s;
	border-radius: 5px;
}
.boton:hover,.icoHover:hover {
	background: rgba(35,35,35, 0.6);
}
.boton:focus {
	background: rgba(223,32,77, 0.8);
}
input:focus, textarea:focus, select:focus, input[type="text"]:focus, input[type="search"]:focus, input[type="date"]:focus {outline: none;}
.icoHover {color: white; background: #000; padding: 4px; margin: 1px; font-size: 15px; cursor: pointer; border-radius: 3px; }

.fontMini { font-size: 10px; }
.fontSmall { font-size: 11px; }
.fontMedium { font-size: 12px; }

/*<============================================================>*/
/*<========Consultas de medios para otras pantallas y dispositivos========>*/
@media only screen and (max-width: 480px) {
	div.An_Gral {width: 100%; margin: 5px auto;}
	.Logo_Cab, .Logo_Cos { width: 80px;}
	.Logo_Tit { width: 350px;}
	.Logo_Fechas { width: 350px;}
}

/*<============================================================>*/

/* Utilities */
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-flexCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-flex1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.u-flex0 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.u-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
  padding-right: 10px;
}

.header-left {
	
}
.header-left span {
	display: inline-block;
	float:left;
	margin-top: 3px;
}
.header-left span img {
	width: 60px; background: #000; border-radius: 60px;
}
.header-wrap div.icoFB {
	transition: .4s;
	position: absolute;
	display: inline-block;
	background: #FFF;
	padding: 0px;
	border-radius: 3px;
	right: 53px;
	cursor: pointer;
	opacity: .8;
}
.header-wrap div.icoFB:hover {
	opacity: 1;
}
.header-wrap div.icoFB em {
	font-size: 1.7em;
	color: #3C5A9A;
	display: inline-block;
}
.header-left div.H1 { padding: 12px 0px 0px 0px; height: 30px; display: inline-block; width: 0px; text-align:left;}
.header-left div.H1 a {display:none;}

.header-left div.H2 { padding: 14px 0px 0px 0px; height: 30px; display: inline-block; width: 205px; text-align:center;}
.header-left div.H2 a { margin: 0px 0px 0px 0px; font: bold 1.5em Arial; letter-spacing: 1px; color: #FFF; display: inline-block; text-shadow: 1px 1px 0px #000, 0px 0px 5px #FFF;}


.header-center {
	text-align:right;
}
.header-center ul { display: inline-block;}
.header-center ul li { display: inline-block; margin-right: 10px; padding: 0px;}
.header-center ul li a { color: #FFF; display: block; border-bottom: 2px solid transparent; padding: 3px; text-shadow: 1px 1px 0px #000;}
.header-center ul li a.ico { display: block; border-bottom: 0px solid transparent; padding: 0px; text-shadow: 1px 1px 0px #000;}
.header-center ul li a em { color: orange; margin-right: 5px; font-size: 14px;}
.header-center ul li a:hover { text-shadow: 1px 1px 0px #000,0px 0px 5px #FFF;}
.header-center ul li a:hover { border-color: orange; }
.header-center ul li a:hover em { color: #FFF;}
.header-center ul li a.ico em { margin-right: 0px; font-size: 1.5em;}
.header-center ul li a.ico:hover em { color: #FFF; margin-right: 0px; }


/* Ocultar las etiquetas si es menor a 766px */
@media only screen and (min-width: 766px) {
  .u-hide-after-md {  }
}

/* Ocultar las etiquetas si es mayour a 766px */
@media only screen and (max-width: 766px) {
  .header-left div.H1 a { 
  display:none;
  
  }
  .header-center ul{ 
  display:none;
  }
  .headerlogo{
   
  }
}
div#TextBox_jbeeb_90{
color:#fff!important;
}
div#TextBox_jbeeb_175{
color:#fff!important;
}
div#Container_jbeeb_176{
color:#fff!important;
}
div#TextBox_jbeeb_260{
color:#fff!important;
}
div#TextBox_jbeeb_345{
color:#fff!important;
}
/* FIN UTILIDADES*/

/* la mentada magia */

@media only screen and (max-width: 766px) {
  body.is-showNavMob { overflow: hidden }
  
  /* Mostrar el Menu Responsive */
  body.is-showNavMob .sidenav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  
  /* Convertir en un X el icono de amburgueza */
  body.is-showNavMob .button-nav--toggle span:first-child {
    -webkit-transform: rotate(45deg) translate(0);
            transform: rotate(45deg) translate(0);
  }
  body.is-showNavMob .button-nav--toggle span:nth-child(2) {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  body.is-showNavMob .button-nav--toggle span:last-child {
    -webkit-transform: rotate(-45deg) translate(0);
            transform: rotate(-45deg) translate(0);
  }
}

/* FIN */

/* Update de la caja*/
	div.BoxC_S {background: #000 url('bg/starfond.gif');}
	div.BoxConten {border: 1px solid #333; background: #FFF url('bg/squares.png'); color:#000;}
/* ***Caja y teatro *** */
	/* ***Carga y sombras*** */
		div.BoxC_Abs {display: none; position: fixed; top: 0%; left: 0%; width: 100%; height:100%;}
		div.BoxC_S {z-index: 1018; filter: alpha(opacity=85); -moz-opacity: .85; opacity: .85;}
		div.BoxC_O {z-index: 1019; overflow-y: auto; overflow-x: hidden; text-align:center;}
		div.BoxC_C {display: block; width: 95%; margin: 0 auto; padding-top: 77px; padding-bottom: 15px; text-align: left;}
		div.BoxC_X {text-align:right; margin-top: -10px; position: fixed; width: 95%;}
		div.BoxConten {margin-top: 20px;}
	/* ========== */

/* Botones Span */
	 .icoRecarga, .icoAceptar, .icoCancelar, .icoOrange, .icoAzul {display: inline-block; color: white; padding: 3px; margin: 1px; border: 1px solid transparent; font-size: 15px; cursor: pointer; border-radius: 3px;}
	.btnRecarga, .icoRecarga {background-color: #126C98; color: white; text-shadow: 1px 1px 0px #222;}
	.btnAceptar, .icoAceptar {background-color: #007000; color: white; text-shadow: 1px 1px 0px #222;}
	.btnCancelar, .icoCancelar {background-color: #880000; color: white; text-shadow: 1px 1px 0px #222;}
	.btnOrange,.icoOrange {background-color: #996600; color: white; text-shadow: 1px 1px 0px #222;}
	.btnAzul,.icoAzul {background-color: #3399FF; color: white; text-shadow: 1px 1px 0px #222;}

	.btnDisabled, .btnDisabled:hover, .icoDisabled, .icoDisabled:hover   {background-color: #C0C0C0; color: gray; text-shadow: 1px 1px 0px #222,0px 0px 4px white;}

	.btnRecarga:hover, .icoRecarga:hover { background: #126C98 url('bg/lava4.png') center -5px no-repeat; border-color: #002D2D;}
	.btnAceptar:hover, .icoAceptar:hover { background: #007000 url('bg/lava4.png') center -5px no-repeat; border-color: #005000;}
	.btnCancelar:hover, .icoCancelar:hover { background: #880000 url('bg/lava4.png') center -5px no-repeat; border-color: #550000;}
	.btnOrange,.icoOrange:hover { background: #CC8A00 url('bg/lava4.png') center -5px no-repeat; border-color: #714D00;}
	.btnAzul,.icoAzul:hover { background: #0066FF url('bg/lava4.png') center -5px no-repeat; border-color: #3399FF;}
/* * * * */
/* Botones Span */
	.btnRecarga, .btnAceptar, .btnCancelar, .btnAzul, .btnOrange {margin: 2px; display: inline-block; font-size: 10px; letter-spacing: 2px; font-weight: bold; cursor: pointer; height: 18px; padding:4px 5px 0px 5px; border: 1px solid transparent;}
	.btnRecarga em, .btnAceptar em, .btnCancelar em, .btnAzul em, .btnOrange em {float: left; margin: -1px 4px 0px 1px; font-size: 15px;}
	.btnIco24 {padding: 0px; text-align: left; height: 30px; width: 30px;}
	.btnIco24 img {width: 24px; height: 24px; margin: 3px;}
	.btnIco {padding: 0px; height: 22px; width: 22px; text-align: left;}
	.btnIco img { width: 16px; height: 16px; margin: 3px; }
	.btnIcoTxt {padding: 4px 5px 0px 25px;}
	.btnIcoTxt img { z-index: 0; position: absolute; width: 16px; height: 16px; float:left; margin: -1px 0px 0px -21px; }
/* * * * */

	div.Pestanas { display: block; border-bottom: 2px solid #055F94; padding-bottom: 0px;  }
	div.Pestanas ul {margin-bottom: -2px; margin-left: 4px;}
	div.Pestanas ul li { display: inline-block; margin: 0px; padding: 0px; margin-left: -4px;}
	div.Pestanas ul li span { display: block; border-bottom: 4px solid #055F94; padding: 4px 6px; text-align: left; font: bold 12px Arial; border-radius: 5px 6px 0px 0px; }
	div.Pestanas ul li span:hover, div.Pestanas ul li span.Activo { border-color: green; color: green; cursor: pointer; background-color: #DAF0FE;}

	div.Pestanas ul {margin: 0px; padding: 0px; margin-left: 4px;}
	div.Pestanas ul li { display: inline-block; margin: 0px; padding: 0px; margin-left: -4px;}
	div.Pestanas ul li span { display: block; border-bottom: 4px solid transparent; padding: 4px 6px; text-align: left; font: normal 12px Arial;}
	div.Pestanas ul li span:hover, div.Pestanas ul li span.Activo { border-color: #007491; color: #00CCFF; cursor: pointer;}
   	div.Pestanas ul li span:hover em, div.Pestanas ul li span.Activo em { color: #00CCFF; }
   	div.Pestanas ul li span em {padding: 0px 3px; font-size: 12px; color: #00CCFF;}

   	/* Paginacion */
	.paginar {padding: 0px; background: #055F94; border: 1px solid #055F94; margin: 5px 0px; }
	.pag_bg { margin: 1px;}
	.paginar_cuerpo tr td {font-size: 10px; padding: 1px; text-shadow: 1px 1px 0px #333; color: white;}
	.paginar_cuerpo tr td span.ico {font-size: 13px; margin-right: 3px;}
	.paginar_cuerpo em {color: yellow;}
	.pag span {display: inline-block; font-size: 1.5em; padding: 3px; margin: 0px 2px; border:1px solid #86BCD6; background-color: #0680C8; cursor: pointer; border-radius: 3px;}
	.pag span:hover{border-color: #0680C8; background-color: #86BCD6;}
	.pag_select {background-color: #FFF; color: #777; font-size: 10px; border-radius: 3px; height: 25px; display: inline-block; } 

.InLine { display: inline-block;}
.InBlock { display: block;}

.CopyR {background-color: #0066FF !important; font: bold italic 9px Tahoma; text-align:center; border: 1px solid #00CCFF; text-shadow: 1px 1px 0px #333; padding: 5px; width: 90%; margin: 0px auto; border-radius: 10px;}

.clrYellow{color: yellow !important;}
.clrGold{color: gold !important;}
.clrGreen {color: green !important;}
.clrRed {color: red !important;}
.clrCryo { color: #00CCFF !important;}
.clrWhite { color: #FFF !important; }
.clrBlack { color: #000 !important; }
.clrGray { color: gray !important; }
.clrCoco { color: #c0c0c0 !important; }

        .hide {display:none;}

        .red {color:Red;}
.bgColor_yellow {background-color: yellow !important;}
.bgColor_darkBlue {background-color: #0066FF !important;}
.bgColor_Cryo {background-color: #00CCFF !important; font-weight: bold;}
.bgColor_lightGreen {background-color: #00CC66 !important; font-weight: bold;}
.bgColor_gray {background-color: gray !important;}
.bgColor_white {background-color: #FFF !important;}
.bgColor_black {background-color: #000 !important;}
.bgColor_darkred {background-color: darkred !important;}
.bgSquares {background-image: url('bg/squares.png');}
.bgColor_darkgreen {background-color: darkgreen !important;}
.bgColor_Cred {
	background-color: #1B2650 !important;
	color: #FFF !important;
	text-align:center; padding: 8px 5px;
}
.bgColor_Costo {
	text-align:center; padding: 8px 5px;
	background-color: #006666 !important;
	color: #FFF !important;
}

#search-box {
position: relative;
width: 100%;
margin: 0;
}
#search-form {
height: 32px;
border: 1px solid #cbf3ee;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 15px;
background-color: #fff;
overflow: hidden;
}
#search-text {
font-size: 14px;
color: #ddd;
border-width: 0;
background: transparent;
}

#search-box input[type="text"] {
width: 90%;
padding: 8px 0 12px 1em;
color: #333;
outline: none;
}
#search-button {
position: absolute;
top: 0;
right: 0;
height: 34px;
width: 80px;
font-size: 14px;
color: #fff;
text-align: center;
line-height: 4px;
border-width: 0;
background-color: #feacae;
-webkit-border-radius: 0px 5px 5px 0px;
-moz-border-radius: 0px 5px 5px 0px;
border-radius: 0px 15px 5px 0px;
cursor: pointer;
}
/* =========================
   QUINIELA CARDS + PROGRESO
   (NO cambia la lógica, solo vista)
   ========================= */
.quiniela-cards{
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 10px 16px;
}

.q-progress{
  background:#fff;
  border:2px solid rgba(255,138,0,.55);
  border-radius:12px;
  box-shadow: 0 6px 18px rgba(16,24,40,.08);
  padding:12px 12px 10px;
  margin-bottom:12px;
}
.q-progress-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}
.q-count{display:flex; gap:6px; align-items:flex-end; font-weight:900;}
.q-big{font-size:26px; line-height:1; color:#0f172a;}
.q-slash{font-size:18px; color:#7A8496;}
.q-small{font-size:18px; color:#0f172a;}
.q-sub{font-size:12px; color:#7A8496; margin-top:2px;}
.q-percent{font-weight:900; font-size:14px; color:#0f172a; padding-top:4px;}
.q-bar{height:8px; background:#E9EDF6; border-radius:999px; overflow:hidden;}
.q-bar>i{display:block; height:100%; width:0%; background:#FF8A00; border-radius:999px; transition:width .18s ease;}

/* ====== Tabla como "cards" ====== */
#tablaPartidos{ width:100%; border-collapse:separate !important; border-spacing:0 10px !important; }
#tablaPartidos thead{ display:none; }

/* quitamos los bordes negros viejos SOLO en esta tabla */
#tablaPartidos td{
  border:0 !important;
  background:#fff;
  vertical-align:middle;
  padding:10px 8px;
}

/* borde “de tarjeta” por fila (usando las celdas) */
#tablaPartidos tbody tr td{
  border-top:1px solid #E6EAF2 !important;
  border-bottom:1px solid #E6EAF2 !important;
}
#tablaPartidos tbody tr td:first-child{
  border-left:1px solid #E6EAF2 !important;
  border-top-left-radius:14px;
  border-bottom-left-radius:14px;
}
#tablaPartidos tbody tr td:last-child{
  border-right:1px solid #E6EAF2 !important;
  border-top-right-radius:14px;
  border-bottom-right-radius:14px;
}
/* Sombra suave (en celdas para que sí se vea) */
#tablaPartidos tbody tr td{
  box-shadow: 0 2px 10px rgba(16,24,40,.06);
}

/* Nombres más “app style” */
#tablaPartidos td.EquipoIzq_Nom,
#tablaPartidos td.EquipoDer_Nom{
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#0f172a !important;
  font-variant: normal !important;
}

/* Logos alineados */
#tablaPartidos td.EquipoIzq_Logo,
#tablaPartidos td.EquipoDer_Logo{ width:34px; }
#tablaPartidos img.Logo{
  width:28px !important;
  height:28px !important;
  object-fit:contain;
  border-radius:6px;
}

/* ====== Botones L/E/V (MISMA clase Cubo) ====== */
#tablaPartidos .Cubo{
  width:38px;
  height:30px;
  border-radius:8px !important;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 !important;
  font-weight:900 !important;
  font-size:13px !important;
  background:#fff !important;
  border:2px solid transparent !important;
  color:#0f172a !important;
}

/* Colores por botón según el ID (_1 local, _2 empate, _3 visita) */
#tablaPartidos .Cubo[id$="_1"]{ border-color: rgb(255 50 50 / 55%) !important;; color:red !important; }
#tablaPartidos .Cubo[id$="_2"]{ border-color: rgba(255,138,0,.60) !important; color:#FF8A00 !important; }
#tablaPartidos .Cubo[id$="_3"]{ border-color: rgba(25,184,107,.55) !important; color:#19B86B !important; }

/* Hover suave (evita el hover rojo viejo) */
#tablaPartidos .Cubo[id$="_1"]:hover{ background: rgba(106,50,255,.10) !important; }
#tablaPartidos .Cubo[id$="_2"]:hover{ background: rgba(255,138,0,.12) !important; }
#tablaPartidos .Cubo[id$="_3"]:hover{ background: rgba(25,184,107,.12) !important; }

/* Activo (tu JS ya pone .Activo, aquí solo lo pintamos bonito) */
#tablaPartidos .Cubo.Activo{ color:#fff !important; }
#tablaPartidos .Cubo.Activo[id$="_1"]{ background:red !important; border-color:red !important; }
#tablaPartidos .Cubo.Activo[id$="_2"]{ background:#FF8A00 !important; border-color:#FF8A00 !important; }
#tablaPartidos .Cubo.Activo[id$="_3"]{ background:#19B86B !important; border-color:#19B86B !important; }

/* =========================
   FIX RESPONSIVE (MOBILE)
   ========================= */
#tablaPartidos{
  width:100% !important;
  table-layout: fixed !important; /* 🔥 clave para que no se desborde */
}

#tablaPartidos td{
  overflow:hidden;               /* para que funcione el ellipsis */
}

/* Mobile */
@media (max-width: 600px){

  #tablaPartidos{
    border-spacing: 0 8px !important; /* separacion entre tarjetas */
  }

  /* menos padding en celdas */
  #tablaPartidos td{
    padding: 8px 6px !important;
  }

  /* 🔥 sobrescribe tus inline style width:12% con !important */
  #tablaPartidos td:nth-child(1),
  #tablaPartidos td:nth-child(4),
  #tablaPartidos td:nth-child(7){
    width: 46px !important;      /* L / E / V */
  }

  #tablaPartidos td:nth-child(2),
  #tablaPartidos td:nth-child(6){
    width: 38px !important;      /* logos */
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  /* nombres: que NO empujen el ancho */
  #tablaPartidos td.EquipoIzq_Nom,
  #tablaPartidos td.EquipoDer_Nom{
    font-size: 11px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-width: 0 !important;
  }

  /* logos más chicos */
  #tablaPartidos img.Logo{
    width: 24px !important;
    height: 24px !important;
  }

  /* botones L/E/V más compactos */
  #tablaPartidos .Cubo{
    width: 34px !important;
    height: 28px !important;
    font-size: 12px !important;
  }
}

/* =========================================
   BOTÓN HAMBURGUESA tipo "☰ MENÚ" (MÓVIL)
   ========================================= */

/* utilidades (para que SI oculten/mostrar correctamente) */
@media only screen and (max-width: 766px){
  .u-hide-before-md { display:none !important; } /* oculta lo "desktop" */
}

@media only screen and (min-width: 767px){
  .u-hide-after-md { display:none !important; } /* oculta lo "mobile" */
}

@media only screen and (max-width: 766px){

  /* mueve FB para que no choque con el botón MENÚ */
  .header-wrap div.icoFB{
    right: 120px !important;
    top: 10px !important;
  }

  /* pastilla verde */
  a.button-nav--toggle{
    position: relative !important;
    width: auto !important;
    min-width: auto;
    height: 30px;
    padding: 0 14px 0 42px; /* espacio para el icono */
    border-radius: 999px;
    background: linear-gradient(180deg, #19d77a 0%, #0fb963 100%);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 6px 14px rgba(0,0,0,.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  /* texto MENÚ */
  a.button-nav--toggle::after{
    content: "MENÚ";
    font: 900 12px/1 Arial, sans-serif;
    letter-spacing: .8px;
    color: #fff;
  }

  /* icono hamburguesa dentro de la pastilla */
  a.button-nav--toggle span{
    left: 16px !important;
    width: 16px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 3px;
    opacity: 1;
  }
  a.button-nav--toggle span:first-child{ transform: translateY(-5px) !important; }
  a.button-nav--toggle span:nth-child(2){ transform: translateY(0) !important; }
  a.button-nav--toggle span:last-child{ transform: translateY(5px) !important; }

  /* (opcional) si quieres que cambie el texto cuando abre el menú */
  /* body.is-showNavMob a.button-nav--toggle::after{ content:"CERRAR"; } */

  /* (opcional) si quieres el botón centrado como tu imagen:
  .header-right{ position:absolute; left:50%; transform:translateX(-50%); }
  .header-wrap div.icoFB{ right: 10px !important; }
  */
}

/* =========================================
   MENU HAMBURGUESA (PASTILLA "MENÚ") + PANEL
   ========================================= */
@media only screen and (max-width: 766px){

  /* evita que el icono de facebook choque con la pastilla */
  .header-wrap div.icoFB{
    right: 120px !important;
  }

  /* ===== Botón hamburguesa estilo "MENÚ" ===== */
  a.button-nav--toggle{
    width: auto !important;
    min-width: auto;
    height: 36px !important;
    border-radius: 999px !important;
    padding: 0 14px 0 48px !important; /* deja espacio al icono */
    background: linear-gradient(180deg, #25f0c7 0%, #14c9a3 100%) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.28) !important;
    border: 2px solid rgba(0,0,0,.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
  }

  /* Texto MENÚ */
  a.button-nav--toggle::after{
    content: "MENÚ";
    font-weight: 900;
    letter-spacing: .8px;
    font-size: 11px;
    color: #06251d;
    text-shadow: 0 1px 0 rgba(255,255,255,.35);
  }

  /* Las 3 rayitas */
  a.button-nav--toggle span{
    left: 16px !important;
    width: 18px !important;
    background-color: #06251d !important;
    height: 2px !important;
  }


  /* ===== Overlay + panel flotante ===== */
  .sidenav{
    z-index: 9999 !important;                 /* encima del contenido, debajo del header (10000) */
    background: rgba(0,0,0,.40) !important;   /* “oscurecido” */
    padding: 0 !important;

    /* en vez de slide feo, lo hacemos fade */
    transform: translateY(-8px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: .25s ease !important;
  }

  /* cuando abre */
  body.is-showNavMob .sidenav{
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* el panel (la cajita como tu segunda imagen) */
  .sidenav-wrap{
    position: absolute !important;
    top: 62px !important;
    right: 10px !important;
    left: auto !important;

    width: min(92vw, 320px) !important;
    height: auto !important;
    max-height: 72vh !important;

    padding: 12px !important;
    overflow: auto !important;

    border-radius: 18px !important;
    background: linear-gradient(180deg, #223a62 0%, #1a2a45 55%, #16243a 100%) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.50) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
  }

  /* “MENÚ” arriba del panel */
  .sidenav-wrap::before{
    content: "MENÚ";
    display: block;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: rgba(210,240,255,.95);
    margin: 4px 0 10px;
  }

  /* tu primer UL está vacío y tu línea roja: los ocultamos */
  .sidenav-wrap > ul:first-child{ display:none !important; }
  .sidenav-wrap > div{ display:none !important; }

  .sidenav ul{ margin: 0 !important; }
  .sidenav ul li{ margin: 0 !important; }

  /* cada opción como tarjeta */
  .sidenav ul a{
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;

    padding: 12px 12px !important;
    margin: 10px 0 !important;

    border-radius: 14px !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.10) !important;

    border-left: 0 !important;          /* quita tu borde viejo */
    font-variant: normal !important;    /* quita small-caps */
    font-size: 15px !important;
    font-weight: 800 !important;

    color: rgba(215,235,255,.95) !important;
    text-decoration: none !important;
  }

  /* icono en cuadrito */
  .sidenav ul a em{
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(0,0,0,.22) !important;
    border: 1px solid rgba(255,255,255,.10) !important;

    margin-right: 0 !important;
    font-size: 18px !important;
    flex: 0 0 34px !important;
  }

  .sidenav ul a:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.09) !important;
    border-color: rgba(255,255,255,.16) !important;
  }

  /* ===== Colores por opción (para parecerse a tu ejemplo) ===== */
  .sidenav ul li:nth-child(1) a{ --acc:#ff4d4d; --bg: rgba(255,77,77,.12); }
  .sidenav ul li:nth-child(2) a{ --acc:#22c55e; --bg: rgba(34,197,94,.12); }
  .sidenav ul li:nth-child(3) a{ --acc:#60a5fa; --bg: rgba(96,165,250,.12); }
  .sidenav ul li:nth-child(4) a{ --acc:#f59e0b; --bg: rgba(245,158,11,.12); }
  .sidenav ul li:nth-child(5) a{ --acc:#a78bfa; --bg: rgba(167,139,250,.12); }
  .sidenav ul li:nth-child(6) a{ --acc:#25d366; --bg: rgba(37,211,102,.12); }
  .sidenav ul li:nth-child(7) a{ --acc:#3b82f6; --bg: rgba(59,130,246,.12); }

  .sidenav ul li a{
    background: var(--bg, rgba(255,255,255,.06)) !important;
  }
  .sidenav ul li a em{
    color: var(--acc, rgba(215,235,255,.95)) !important;
    border-color: rgba(255,255,255,.12) !important;
    background: rgba(0,0,0,.18) !important;
  }
  .sidenav ul li a{
    color: var(--acc, rgba(215,235,255,.95)) !important;
  }
}
/* ==============================
   NUEVO DISEÑO QUINIELA (CARDS)
   estilo similar a tu imagen
================================= */

.imagecubos.quiniCards{
  background: #f3f4f6;
  padding: 14px 10px;
}

/* 🔥 Resets contra tu CSS anterior de #tablaPartidos */
.imagecubos.quiniCards #tablaPartidos{
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 12px !important;
  table-layout: auto !important;
}
.imagecubos.quiniCards #tablaPartidos td{
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.imagecubos.quiniCards #tablaPartidos thead{ display:none !important; }

.imagecubos.quiniCards .MatchCell{
  padding: 0 10px !important;
}

.imagecubos.quiniCards .match-card{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 8px 24px rgb(255 255 255 / 10%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 12px;
}

.imagecubos.quiniCards .team{
  flex: 1 1 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.imagecubos.quiniCards .team .Logo{
  width: 40px !important;
  height: 40px !important;
  object-fit: contain;
}

.imagecubos.quiniCards .TeamName{
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 16px;
  color: #111827;
  text-transform: uppercase;
  line-height: 1.05;

  /* evita que nombres largos rompan la tarjeta */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.imagecubos.quiniCards .pick-wrap{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botones L/E/V estilo cuadrado */
.imagecubos.quiniCards .Cubo{
  --c: #6b7280;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 2px solid var(--c) !important;

  background: #fff !important;
  color: var(--c) !important;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  font-size: 18px;

  padding: 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.imagecubos.quiniCards .Cubo:hover{
  background: var(--c) !important;
  color: #fff !important;
}

.imagecubos.quiniCards .Cubo.Activo{
  background: var(--c) !important;
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

/* Colores como tu ejemplo */
.imagecubos.quiniCards .CuboL{ --c: #7c3aed; } /* morado */
.imagecubos.quiniCards .CuboE{ --c: #f59e0b; } /* naranja */
.imagecubos.quiniCards .CuboV{ --c: #10b981; } /* verde */

/* Mobile */
@media (max-width: 480px){
  .imagecubos.quiniCards{ padding: 12px 8px; }
  .imagecubos.quiniCards .match-card{
    padding: 12px 10px;
    border-radius: 16px;
    gap: 8px;
  }
  .imagecubos.quiniCards .TeamName{ font-size: 13px; }
  .imagecubos.quiniCards .team .Logo{
    width: 34px !important;
    height: 34px !important;
  }
  .imagecubos.quiniCards .Cubo{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 16px;
  }
}

