@charset "UTF-8";
/*------------------------------------*\
    $STYLE
\*------------------------------------*/
/**
 * Let's define the settings file here, or the partials to be included.
 * This way we can have different .css files compiled with different partials each.
 */
/*------------------------------------*\
    $PARTIALS
\*------------------------------------*/
/**
 * All files to be compiled
 */
/**
* Scss Libraries, mixins, functions and any Scss focused logic
**/
/*------------------------------------*\
    $SETTINGS
\*------------------------------------*/
/**
 *
 * Define all variables and values to use
 *
 */
/*------------------------------------*\
    $INCLUDED-COMPONENTS
\*------------------------------------*/
/**
 * We can tell the components to use here, `true` for used, `false` unused.
 * Remember you can overwrite this value anywhere else by removing the `!default` property
 */
/*------------------------------------*\
    $BREAKPOINTS
\*------------------------------------*/
/**
 * "Start with the small screen first, then expand until it looks like shit. Time to insert a breakpoint!"
 * Used with mixin `respond-to($breakpoint)`:

.div {
  color: pink;
  @include respond-to(medium) {
    color: maroon;
  }
}
 *
 */
/*------------------------------------*\
    $Z-INDEX
\*------------------------------------*/
/**
 * We can have control over z-index and not ending up having 900 to infinite.
 * To use this values, we use the `z($layers)` function:
 .element {
  z-index: z(goku);
 }
 *
 */
/*------------------------------------*\
    $DIR
\*------------------------------------*/
/**
 * Sometimes we change image dir from develop to production:
 */
/*
  * In case we use local fonts (I use them fewer and fewer lately)
  */
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/**
 * Constant layout values, apart from these we can also declare values
 * for different blocks sizes and more.
 */
/*------------------------------------*\
    $GRID
\*------------------------------------*/
/**
 * These are the variables we use for our Grid
 */
/*------------------------------------*\
    $FONT-FACE
\*------------------------------------*/
/**
 * Fonts definitions
 */
/*
 * Font Size variables are defined in a Scss MAP, this MAP will create
 * a class (in `utilities.scss`) for every size with the value in REM units, you can check
 * `utilities.scss` if you need to change the loop:

  .x-small { font-size: .8rem}

 * We also have a function to assign font sizes, call `fs`:

    .selector { font-size: fs(x-small);}

 *
 */
/*------------------------------------*\
    $COLORS
\*------------------------------------*/
/**
 * Brand colors
 */
/**
    * Grey Scale
    * This is mainly to hold back designers from adding 200 different greys ;)
    */
/*------------------------------------*\
    $TEXTURAS
\*------------------------------------*/
/**
 * Definimos Colores y elementos de popups, mensajes de alerta, etc...
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/*
* Fácil de usar: las variables a usar están en settings.scss y son:

    'small'  : 48em,
    'medium' : 56.25em,
    'large'  : 68.75em,

* Y el uso va como sigue:

.foo {
  color: red;
  @include respond-to('small') {
    color: blue;
  }
}
*/
/**
  * Centrar y dar un ancho máximo igual a $pagemaxwidth.
  */
/*------------------------------------*\
    $FUNCIONES
\*------------------------------------*/
/*
 * Función para controlar el index

 	.selector { z-index: z(goku);}

 * compila:

	.selector { z-index: 9001;}

 * Puedes ver las variables en el MAP en settings.scss
 */
/*
 * Función para mantener el tamaño de fuente consistente

 .selector { font-size: fs(x-small);}

 * Puedes ver en settings.scss las variables que se utilizan.
 */
/**
* Base
**/
/*------------------------------------*\
    $CONTENIDO
\*------------------------------------*/
/**
 * Contenido..................... Esto que lees

 * Variables..................... Configuramos todas las variables del framework

 * Mixins........................ Mixins de SASS

 * Helpers....................... Clases de ayuda

 * Reset......................... Reinicio de valores CSS

 * Fuentes....................... Fuentes que vamos a importar

 * Links......................... Formas y estilos de los links

 * Tablas........................ Estilos de las tablas

 * Botones....................... Estilos de Botones, skins y variantes

 * Elementos..................... Elementos varios como Imagen, HR, etc...

 * Tipografía.................... Encabezados, small, párrafos, listas, etc...

 * Navegación.................... Una navegación, por si quieres usar esta y no la tuya propia

 * Formularios................... Estilos de todos los elementos de formularios y sus variantes

 * Sitio......................... Aquí escribes tus estilos para la web se vea como tú quieres ;)

 * Paginación.................... Estilos básicos para las paginaciones

 * Texturas...................... Badges, cajas y wells

 * Breakpoints................... Importamos breakpoints basados en las variables @bp$

 * Patron........................ Estilos para la guía de patrones
 */
/*------------------------------------*\
    $RESET
\*------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, main, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

/**
* HTML elements
**/
/*------------------------------------*\
    $ELEMENTOS-FIGURE
\*------------------------------------*/
figure {
  margin-bottom: 1.5;
}

figure img {
  margin-bottom: 0.375;
}

figure figcaption {
  display: block;
  font-weight: normal;
  font-size: 0.8rem;
  font-style: italic;
  color: #737373;
}

/*------------------------------------*\
    $FORMULARIOS
\*------------------------------------*/
form {
  margin: 0 0 1.5 0;
}

form fieldset {
  margin-bottom: 1.5;
  padding: 0;
  border-width: 0;
}

form legend {
  display: block;
  width: 100%;
  margin-bottom: 3;
  padding: 0;
  color: color-grey(lightgrey);
  border: 0;
  border-bottom: 1px solid #bfbfbf;
  white-space: normal;
}

form legend small {
  font-size: 0.6rem;
  color: #bfbfbf;
}

form p {
  margin-bottom: 0.75;
}

form ul {
  list-style-type: none;
  margin: 0 0 1.5 0;
  padding: 0;
}

form br {
  display: none;
}

label,
input,
button,
select,
textarea {
  font-size: 0.6rem;
  border-radius: 3px;
  vertical-align: baseline;
}

input,
button,
select,
textarea {
  font-family: Arial, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

label {
  display: inline-block;
  margin-bottom: 0.1875;
  font-family: 0.6rem;
  font-weight: bold;
  color: color-grey(lightgrey);
  cursor: pointer;
}

input,
textarea,
select {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 4px;
  margin-bottom: 1.5;
  background-color: white;
  border: 1px solid #bfbfbf;
  color: color-grey(lightgrey);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:hover,
textarea:hover,
select:hover {
  border-color: gray;
}

.input-small {
  width: 60px;
}

.input-medium {
  width: 150px;
}

.input-big {
  width: 300px;
}

input[type="image"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  line-height: normal;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0 3px 0 0;
  line-height: normal;
  cursor: pointer;
  background-color: white;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: #fff;
  border-color: white;
  border-width: 1px;
  box-shadow: 0 0 0 1px #bfbfbf;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  margin-right: 24px;
}

input[type="radio"] {
  border-radius: 100%;
}

label input[type="checkbox"],
label input[type="radio"] {
  margin-right: 6px;
}

input[type="image"] {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type="file"] {
  width: auto;
  padding: initial;
  line-height: initial;
  border: initial;
  background-color: transparent;
  background-color: initial;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto;
  height: auto;
  cursor: pointer;
  *overflow: visible;
}

textarea {
  resize: vertical;
  overflow: auto;
  height: auto;
  overflow: auto;
  vertical-align: top;
}

input[type="hidden"] {
  display: none;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed;
}

input:focus,
textarea:focus {
  border-color: #bb2299, 40%;
  box-shadow: 0 0 1px 1px #bfbfbf;
  outline: none;
}

::-webkit-input-placeholder {
  font-size: 0.8rem;
}

input:-moz-placeholder {
  font-size: 0.8rem;
}

/**
* Validamos los formularios que son "required":
* http://coolvillage.es/ayuda-al-usuario-a-rellenar-formularios-con-css/
*/
input:required:focus:invalid {
  background-color: #fef2e7;
  border: 1px solid #fce4cf;
}

input:required:focus:valid {
  background-color: #e9f5e9;
  border: 1px solid #5bb75b;
}

/*------------------------------------*\
    $BOTONES
\*------------------------------------*/
/*
 * Definimos los botones y sus variantes
 */
/**
 * .btn es la clase principal para definir un botón
 */
.btn--disabled, .btn--info, .btn--error, .btn--warning, .btn--success, .btn--primary, .btn-prode, .btn-prodec {
  display: inline-block;
  line-height: 3;
  color: color-grey(lightgrey);
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  white-space: nowrap;
  background-color: transparent;
  border-top: 1px solid currentcolor;
  border-right: 1px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  border-left: 1px solid currentcolor;
  cursor: pointer;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1em;
  padding-left: 1em;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  /**
 	* Nadie quiere un botón con texto subrayado cuando
 	* hacemos hover.
 	*/
}

.btn--disabled:hover, .btn--info:hover, .btn--error:hover, .btn--warning:hover, .btn--success:hover, .btn--primary:hover, .btn-prode:hover, .btn-prodec:hover {
  text-decoration: none;
  color: color-grey(lightgrey);
}

.btn--disabled:active, .btn--info:active, .btn--error:active, .btn--warning:active, .btn--success:active, .btn--primary:active, .btn-prode:active, .btn-prodec:active, .btn--disabled:focus, .btn--info:focus, .btn--error:focus, .btn--warning:focus, .btn--success:focus, .btn--primary:focus, .btn-prode:focus, .btn-prodec:focus {
  outline: none;
}

.btn--disabled:visited, .btn--info:visited, .btn--error:visited, .btn--warning:visited, .btn--success:visited, .btn--primary:visited, .btn-prode:visited, .btn-prodec:visited {
  color: color-grey(lightgrey);
}

/*------------------------------------*\
    $BOTONES-VARIANTES
\*------------------------------------*/
/**
 * Variantes de los botones: color para dar sensaciones.
 *
 */
/**
* Inputs con estilo de botones
*/
input[type="submit"].btn:hover {
  border-color: currentcolor;
}

/**
* Botón no disponible
*/
.btn--disabled {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #e6e6e6;
}

/**
* Botón de Info
*/
.btn--info {
  color: #42b8dd;
}

.btn--info:hover {
  color: #42b8dd;
}

.btn--info:visited {
  color: #42b8dd;
}

/**
* Botón de Error
*/
.btn--error {
  color: #da4f49;
}

.btn--error:hover {
  color: #da4f49;
}

.btn--error:visited {
  color: #da4f49;
}

/**
* Botón de advertencia
*/
.btn--warning {
  color: #e78730;
}

.btn--warning:hover {
  color: #e78730;
}

.btn--warning:visited {
  color: #e78730;
}

/**
* Botón de OK
*/
.btn--success {
  color: #5bb75b;
}

.btn--success:hover {
  color: #5bb75b;
}

.btn--success:visited {
  color: #5bb75b;
}

/**
* Botón principal
*/
.btn--primary {
  color: #bb2299;
}

.btn--primary:hover {
  color: #bb2299;
}

.btn--primary:visited {
  color: #bb2299;
}

/*------------------------------------*\
    $BOTONES-TAMAÑOS
\*------------------------------------*/
/**
 * Variantes de los botones por tamaño.
 *
 */
.btn--mini {
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 1.5;
  font-size: 0.6rem;
}

.btn--small {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 2;
  font-size: 0.8rem;
}

.btn--large {
  padding-right: 3em;
  padding-left: 3em;
  line-height: 3;
  font-size: 1.5rem;
}

/*------------------------------------*\
    $BOTONES-GRUPOS
\*------------------------------------*/
/**
 * Con esta clase podemos agrupar los botones
 * en grupos horizontales.
 *
 */
.btn-group {
  position: relative;
}

.btn-group [class^="btn--"], .btn-group [class*=" btn--"] {
  position: relative;
  border-radius: 0;
  float: left;
  margin-left: -1px;
}

.btn-group [class^="btn--"]:first-child, .btn-group [class*=" btn--"]:first-child {
  margin-left: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-group [class^="btn--"]:last-child, .btn-group [class*=" btn--"]:last-child {
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

/*------------------------------------*\
    $IMÁGENES
\*------------------------------------*/
.img--rounded {
  border-radius: 12px;
}

.img--polaroid {
  padding: 12px;
  background-color: white;
  border: 1px solid color-grey(lightgrey);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.img--circle {
  border-radius: 100%;
}

/*------------------------------------*\
    $LINKS
\*------------------------------------*/
a {
  text-decoration: none;
  color: color-brand(color-brand);
}

a:visited {
  color: color-brand(color-brand);
}

a:hover {
  text-decoration: underline;
  color: color-brand(color-brand);
}

a:focus {
  outline: thin dotted;
  color: color-brand(color-brand);
}

a:hover, a:active {
  outline: 0;
}

/*------------------------------------*\
    $TIPOGRAFÍA
\*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: Georgia, Times, "Times New Roman";
  font-weight: normal;
  color: inherit;
  text-rendering: optimizelegibility;
}

h1.altheader,
h2.altheader,
h3.altheader,
h4.altheader,
h5.altheader,
h6.altheader {
  color: #737373;
  text-transform: uppercase;
  display: block;
}

h1, .h1 {
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 1.5;
}

h2, .h2 {
  margin-bottom: 0;
  font-size: 2.4rem;
  line-height: 1.5;
}

h3, .h3 {
  margin-bottom: 0;
  font-size: 2.1rem;
  line-height: 1.5;
}

h4, .h4 {
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.5;
}

h5, .h5 {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

h6, .h6 {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

p,
ol,
ul,
dl,
address {
  margin-bottom: 1.5;
  line-height: 1.5;
}

small {
  font-size: 0.6rem;
  color: #737373;
}

ul,
ol {
  margin: 0 0 1.5 0;
  padding: 0 0 0 24px;
}

li ul,
li ol {
  margin: 0;
}

blockquote {
  margin: 0 0 1.5 0;
  padding-left: 24px;
  border-left: 2px solid color-grey(lightgrey);
  font-family: Georgia, Times, "Times New Roman";
  font-style: normal;
}

blockquote p {
  font-size: 0.8rem;
  color: #737373;
  font-style: italic;
  line-height: 1.5;
}

q {
  quotes: none;
  font-style: italic;
}

blockquote p::before,
blockquote p::after,
q:before,
q:after {
  content: "";
}

cite {
  font-style: normal;
}

dl,
dd {
  margin-bottom: 1.5;
}

dt {
  font-weight: bold;
}

.dl-horizontal dt {
  float: left;
  clear: left;
  width: 20.25%;
  text-align: right;
}

.dl-horizontal dd {
  margin-left: 22.78%;
}

abbr[title] {
  border-bottom: 1px dotted color-grey(lightgrey);
  cursor: help;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

ins {
  background-color: white;
  color: color-grey(lightgrey);
  text-decoration: none;
}

mark {
  background-color: yellow;
  color: color-grey(lightgrey);
}

pre,
code,
kbd,
samp {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  line-height: 1.5;
}

code {
  background-color: #f5f2f0;
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

sub,
sup {
  position: relative;
  font-size: 0.6rem;
  line-height: 0;
  vertical-align: 1.5;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

hr {
  clear: both;
  display: block;
  margin: 1.5 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid color-grey(lightgrey);
}

.intro {
  font-weight: bold;
}

/*
 * Creamos clases para cada uno de los tamaños de fuentes. Se pueden ver en Settings.
 * Son los nombres de las varables con el prefijo font-
 * Por ejemplo:

        .font-x-small {
            font-size: .8rem;
        }


 */
.font-x-small {
  font-size: 0.6rem;
}

.font-small {
  font-size: 0.8rem;
}

.font-normal {
  font-size: 1rem;
}

.font-big {
  font-size: 1.5rem;
}

.font-huge {
  font-size: 2rem;
}

/*------------------------------------*\
    $TABLAS
\*------------------------------------*/
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
}

table th,
table td {
  padding: 8px;
  vertical-align: top;
  border-top: 1px solid #737373;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: left;
}

table th {
  font-weight: bold;
}

table thead th {
  vertical-align: bottom;
}

table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
  border-top: 0;
}

table tbody + tbody {
  border-top: 2px solid #737373;
}

table tbody tr td,
table tbody tr th {
  -webkit-transition: background-color 0.25s 0 linear;
  -moz-transition: background-color 0.25s 0 linear;
  -ms-transition: background-color 0.25s 0 linear;
  -o-transition: background-color 0.25s 0 linear;
  transition: background-color 0.25s 0 linear;
}

table tbody tr:hover td,
table tbody tr:hover th {
  background-color: #e6e6e6;
}

.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

.table-bordered {
  border: 1px solid #737373;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed;
}

.table-bordered th,
.table-bordered td {
  border-left: 1px solid #737373;
}

.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: #e6e6e6;
}

/**
* Layout and general styles
**/
/*------------------------------------*\
    $SITIO
\*------------------------------------*/
@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

html {
  background: color-grey(lightgrey);
  font-size: 87.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: transparent;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: color-grey(lightgrey);
}

/*

*/
.mundial {
  margin: auto;
}

.mundial .grupo {
  width: 100%;
  display: inline-block;
}

.mundial .grupo .grupo--nombre {
  width: 100%;
  float: left;
  background-color: #0289bd;
  padding-top: 6px;
  font-size: 12px;
  color: white;
  text-align: center;
}

.mundial .grupo .grupo--nombre .letra {
  font-size: 32px;
  line-height: 34px;
  font-weight: bold;
}

.mundial .grupo .grupo--equipos {
  width: 100%;
  min-height: 64px;
  float: left;
  background-color: #2c467e;
}

.mundial .grupo .grupo--equipos .equipos--list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.mundial .grupo .grupo--equipos .equipos--list .equipo {
  display: inline-block;
  vertical-align: top;
  padding-top: 10px;
  width: auto;
  text-align: center;
  width: 23%;
}

.mundial .grupo .grupo--equipos .equipos--list .equipo img {
  width: 30px;
}

.mundial .grupo .grupo--equipos .equipos--list .equipo p {
  font-size: 11px;
  color: white;
}

.mundial .grupo .gurpo--resultado {
  background-color: #bebebe47;
  border-top: 2.5px solid #5abef7;
  padding: 10px 0;
  clear: both;
}

.mundial .grupo .gurpo--resultado .partido:first-child ul .opcion span {
  display: block !important;
}

.mundial .grupo .gurpo--resultado .partido ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  vertical-align: middle;
}

.mundial .grupo .gurpo--resultado .partido ul li {
  display: inline-block;
  width: auto;
  text-align: center;
}

.mundial .grupo .gurpo--resultado .partido ul .equipo {
  display: none;
  width: 7%;
}

.mundial .grupo .gurpo--resultado .partido ul .equipo img {
  width: 20px;
}

.mundial .grupo .gurpo--resultado .partido ul .nombre {
  width: 30%;
  font-size: 12px;
  color: #464a4d;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion {
  width: 5%;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion span {
  font-size: 12px;
  display: none;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"] {
  display: none;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"] + label {
  display: inline-block;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  outline: 0;
  width: 25px;
  height: 25px;
  background-image: url("/img/prode/css_sprites.png");
  background-repeat: no-repeat;
  background-position: -55px -55px;
  text-indent: -99999px;
  cursor: pointer;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"]:checked + label[class="normal"] {
  background-position: -55px -10px;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"]:checked + label[class="acerto"] {
  background-position: -10px -55px;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"]:checked + label[class="no_acerto"] {
  background-position: -10px -10px;
}

.mundial .grupo .gurpo--resultado .partido ul .resultado {
  width: 5%;
  font-size: 12px;
  color: #464a4d;
}

.fase {
  max-width: 640px;
  width: 100%;
  margin: auto;
}

.fase .fase--nombre {
  width: 100%;
  float: left;
  background-color: #0289bd;
  padding-top: 6px;
  font-size: 20px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2.5px solid #5abef7;
}

.fase .fase--resultado.fase--finales {
  padding-top: 0;
}

.fase .fase--resultado.fase--finales .partido {
  padding: 10px 0;
}

.fase .fase--finales .partido ul .opcion span {
  display: block !important;
}

.fase .fase--resultado {
  background-color: #bebebe47;
  padding: 10px 0;
  clear: both;
}

.fase .fase--resultado .fase--nombre {
  width: 100%;
  float: left;
  background-color: #0289bd;
  padding-top: 6px;
  font-size: 20px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2.5px solid #5abef7;
}

.fase .fase--resultado .partido:first-child ul .opcion span {
  display: block !important;
}

.fase .fase--resultado .partido ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 97%;
  margin: auto;
}

.fase .fase--resultado .partido ul li {
  display: inline-block;
  width: auto;
  text-align: center;
  padding: 2px 0;
  vertical-align: middle;
}

.fase .fase--resultado .partido ul .equipo {
  width: 10%;
  display: none;
}

.fase .fase--resultado .partido ul .equipo img {
  width: 35px;
}

.fase .fase--resultado .partido ul .nombre {
  width: 30%;
  font-size: 12px;
  color: #464a4d;
}

.fase .fase--resultado .partido ul .opcion {
  width: 5%;
}

.fase .fase--resultado .partido ul .opcion span {
  font-size: 10px;
  display: none;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"] {
  display: none;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"] + label {
  display: inline-block;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  outline: 0;
  width: 25px;
  height: 25px;
  background-image: url("/img/prode/css_sprites.png");
  background-repeat: no-repeat;
  background-position: -55px -55px;
  text-indent: -99999px;
  cursor: pointer;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"]:checked + label[class="normal"] {
  background-position: -55px -10px;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"]:checked + label[class="acerto"] {
  background-position: -10px -55px;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"]:checked + label[class="no_acerto"] {
  background-position: -10px -10px;
}

.fase .fase--resultado .partido ul .resultado {
  width: 5%;
  font-size: 12px;
  color: #464a4d;
}

.botonera {
  text-align: center;
  padding: 10px 0;
}

.separador {
  clear: both;
  height: 15px;
}

.btn-prode {
  color: white;
  text-transform: uppercase;
  background-color: #AE0223;
  border: none;
}

.btn-prode:hover {
  color: white;
  background-color: #ae0223cc;
}

.btn-prode:visited {
  color: white;
  background-color: #ae0223cc;
}

.btn-prodec {
  color: white;
  text-transform: uppercase;
  background-color: #5abef7;
  border: none;
}

.btn-prodec:hover {
  color: white;
  background-color: #5abef794;
}

.btn-prodec:visited {
  color: white;
  background-color: #5abef794;
}

.caption--ranking {
  background-color: #2c467e;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.titulo_juego {
  text-align: center;
  color: #2c467e;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 28px;
  font-family: Arial, sans-serif;
}

.ranking {
  margin: 20px;
}

.ranking .new_table.only_nombre{
  display: flex;
  justify-content: center;
  margin: 30px 0;
  margin-top: 38px;
  max-width: 100%;
}

.ranking .con_publi div{
  display: flex;
  justify-content: center;
  margin: auto;
}

.ranking .resumen {
  margin: auto;
}

.ranking .resumen table {
  background-color: #2c467e;
  color: white;
  text-transform: uppercase;
  text-align: center;
}

.ranking .resumen table tbody {
  height: auto;
}

.ranking .resumen table tbody tr:hover td {
  background-color: #2c467e;
}

.ranking .resumen table tbody tr:first-child {
  border-bottom: 2px solid #5abef7;
}

.ranking .resumen table tbody tr:last-child {
  border-top: 2px solid #5abef7;
}

.ranking .resumen table tbody tr td {
  text-transform: uppercase;
  text-align: center;
  border: none;
  padding: 8px 0;
  font-size: 12px;
  width: 25%;
}

.ranking .resumen table tbody tr td img {
  vertical-align: text-bottom;
}

.ranking .usuario {
  text-align: center;
  padding: 10px 0;
}

.ranking .usuario h2 {
  padding: 10px 0;
  font-size: 20px;
}

.ranking .ranking--tabla {
  display: block;
  max-width: 640px;
  width: 100%;
  margin: auto;
}

.ranking .ranking--tabla thead, .ranking .ranking--tabla tbody, .ranking .ranking--tabla tfoot {
  display: block;
}

.ranking .ranking--tabla thead tr {
  background-color: white;
  border-bottom: 2px solid #5abef7;
}

.ranking .ranking--tabla tfoot tr {
  background-color: #2c467e;
}

.ranking .ranking--tabla tfoot tr:first-child {
  border-bottom: 2px solid #5abef7;
}

.ranking .ranking--tabla tfoot tr td {
  color: white;
  font-size: 20px;
  text-align: center;
}

.ranking .ranking--tabla tfoot tr:last-child td {
  font-size: 43px;
}

.ranking .ranking--tabla tbody {
  height: 200px;
  overflow-y: scroll;
}

.ranking .ranking--tabla tbody tr:nth-child(odd) {
  background-color: #dfe9f2;
}

.ranking .ranking--tabla tbody tr:nth-child(even) {
  background-color: #fbfbfb;
}

.ranking .ranking--tabla tr {
  border: none;
  box-sizing: border-box;
  display: block;
}

.ranking .ranking--tabla tr th, .ranking .ranking--tabla tr td {
  display: inline-block;
  margin-right: -4px;
  width: 33%;
}

.ranking .ranking--tabla tr th {
  color: #2c467e;
  text-transform: uppercase;
  text-align: center;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ranking .ranking--tabla tr td {
  text-align: center;
  color: #58708c;
  border: none;
  font-size: 14px;
  box-sizing: border-box;
}

.ranking .ranking--tabla tr td p {
  width: 49.9%;
  float: left;
  text-align: right;
}

.ranking .ranking--tabla tr td p:last-child {
  text-align: left;
  padding-left: 2px;
}

.ranking .ranking--tabla tr td img {
  margin-left: 5px;
}

.ranking .ranking--tabla tr td:hover {
  border: none;
}

.ranking .ranking--tabla tr td:first-child {
  font-weight: bold;
}

.con_publi {
  max-width: 960px;
  padding: 10px 0;
  margin: auto;
  margin-top: 20px;
  clear: both;
}

@media (min-width: 23.625em) {
  /* .mundial {
    max-width: 378px;
  } */
  .mundial .grupo {
    width: 378px;
    margin: auto;
    display: inline-block;
  }
  .mundial .grupo .grupo--nombre {
    width: 95px;
    height: 64px;
  }
  .mundial .grupo .grupo--equipos {
    width: 283px;
    height: 64px;
  }
  .mundial .grupo .gurpo--resultado .partido ul .equipo {
    display: inline-block;
  }
  .mundial .grupo .gurpo--resultado .partido ul .nombre {
    width: 23%;
  }
  .fase .fase--resultado .partido ul .equipo {
    display: inline-block;
  }
  .fase .fase--resultado .partido ul .nombre {
    width: 23%;
  }
}

@media (min-width: 48em) {
  .mundial {
    max-width: 761px;
  }
  .caption--ranking, .titulo_juego {
    font-size: 24px;
  }
  .titulo_juego {
    font-size: 36px;
  }
  .fase .fase--resultado {
    margin: auto;
  }
  .fase .fase--resultado .partido ul .nombre {
    font-size: 16px;
    width: 25%;
  }
  .ranking .resumen table tbody tr td {
    font-size: 16px;
  }
  .ranking .ranking--tabla {
    font-size: 16px;
  }
  .ranking .ranking--tabla tr th {
    font-size: 16px;
  }
}

@media (min-width: 61.25em) {
  .ranking .resumen {
    max-width: 960px;
  }
  .titulo_juego {
    font-size: 40px;
  }
}

@media (min-width: 88.125em) {
  .ranking .resumen {
    max-width: 1140px;
  }
}

@media (min-width: 95em) {
  .mundial {
    max-width: 1524px;
  }
  .ranking {
    max-width: 1524px;
  }
  .ranking .resumen {
    max-width: 1140px;
  }
}

/*------------------------------------*\
    $TEXTURAS
\*------------------------------------*/
.alert--success, .alert--warning, .alert--error, .alert--info, .alert--block {
  margin-bottom: 1.5;
  padding: 8px 35px 8px 14px;
  background-color: #fce4cf;
  border: 1px solid #f6ae6f;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: #904809;
  border-radius: 3px;
  position: relative;
}

.alert--success .alert--heading, .alert--warning .alert--heading, .alert--error .alert--heading, .alert--info .alert--heading, .alert--block .alert--heading {
  color: inherit;
}

.alert--success .close, .alert--warning .close, .alert--error .close, .alert--info .close, .alert--block .close {
  position: absolute;
  top: -2px;
  right: 2px;
  float: right;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 18px;
  color: inherit;
}

.alert--success {
  background-color: #c5e6c5;
  border-color: #a2d6a2;
  color: #347834;
}

.alert--warning {
  background-color: #f7d6b9;
  border-color: #f2bc8b;
  color: #9f5512;
}

.alert--error {
  background-color: #f4cac8;
  border-color: #eba19e;
  color: #da4f49;
}

.alert--info {
  background-color: #6dc8e5;
  border-color: #24a1c8;
  color: #05161b;
}

.alert--block {
  padding-top: 14px;
  padding-bottom: 14px;
}

.alert--block .alert--heading {
  margin-bottom: 0.1875;
  font-size: inherit;
  font-weight: bold;
}

.alert--block > p,
.alert--block > ul {
  margin-bottom: 0;
}

.alert--block p + p {
  margin-top: 5px;
}

.badge--primary, .badge--error, .badge--warning, .badge--success, .badge--info {
  padding: 0.1em 0.3em;
  margin-right: 3px;
  font-size: 0.8rem;
  white-space: nowrap;
  border: 1px solid currentcolor;
  border-radius: 3px;
  color: color-grey(lightgrey);
  background-color: transparent;
  -webkit-transition: background-color 0.25s 0 linear;
  -moz-transition: background-color 0.25s 0 linear;
  -ms-transition: background-color 0.25s 0 linear;
  -o-transition: background-color 0.25s 0 linear;
  transition: background-color 0.25s 0 linear;
}

.badge--primary:hover, .badge--error:hover, .badge--warning:hover, .badge--success:hover, .badge--info:hover {
  color: color-grey(lightgrey);
  text-decoration: none;
  cursor: pointer;
}

.badge--error {
  color: #da4f49;
}

.badge--warning {
  color: #e78730;
}

.badge--success {
  color: #5bb75b;
}

.badge--info {
  color: #42b8dd;
}

.badge--icon {
  display: inline-block;
  color: color-grey(lightgrey);
  border: 1px solid color-grey(lightgrey);
  border-radius: 3px;
  padding: 12px;
  background-color: transparent;
  text-align: center;
}

::-moz-selection {
  background-color: white;
  color: #bb2299;
  text-shadow: none;
}

::selection {
  background-color: white;
  color: #bb2299;
  text-shadow: none;
}

/**
* Componets used for layouts, headers, articles, etc...
**/
/*------------------------------------*\
    $grid
\*------------------------------------*/
* {
  box-sizing: border-box;
}

.grid {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

[class^="item-"], [class*=" item-"] {
  background-color: pink;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 6px;
  padding: 5px;
  min-height: 100px;
}

.item-1 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-1 {
    flex: 0 0 calc(8.33333% - 12px);
  }
}

.item-2 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-2 {
    flex: 0 0 calc(16.66667% - 12px);
  }
}

.item-3 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-3 {
    flex: 0 0 calc(25% - 12px);
  }
}

.item-4 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-4 {
    flex: 0 0 calc(33.33333% - 12px);
  }
}

.item-5 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-5 {
    flex: 0 0 calc(41.66667% - 12px);
  }
}

.item-6 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-6 {
    flex: 0 0 calc(50% - 12px);
  }
}

.item-7 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-7 {
    flex: 0 0 calc(58.33333% - 12px);
  }
}

.item-8 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-8 {
    flex: 0 0 calc(66.66667% - 12px);
  }
}

.item-9 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-9 {
    flex: 0 0 calc(75% - 12px);
  }
}

.item-10 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-10 {
    flex: 0 0 calc(83.33333% - 12px);
  }
}

.item-11 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-11 {
    flex: 0 0 calc(91.66667% - 12px);
  }
}

.item-12 {
  flex-basis: 100%;
}

@media (min-width: 56.25em) {
  .item-12 {
    flex: 0 0 calc(100% - 12px);
  }
}

/*------------------------------------*\
    $UTILITIES
\*------------------------------------*/
/*
*
* Selectors repeated constantly
*/
/*
 * Classes for font- sizes, you can check them in Settings.scss
 * Same name of the variables with the `font-` prefix

		.font-x-small {
			font-size: .9rem;
		}


 */
.font-x-small {
  font-size: 0.6rem;
  line-height: 1.5;
}

.font-small {
  font-size: 0.8rem;
  line-height: 1.5;
}

.font-normal {
  font-size: 1rem;
  line-height: 1.5;
}

.font-big {
  font-size: 1.5rem;
  line-height: 1.5;
}

.font-huge {
  font-size: 2rem;
  line-height: 1.5;
}

.float-right {
  float: right;
}

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

.nomargin-bottom {
  margin-bottom: 0;
}

.margin-bottom {
  margin-bottom: 24px;
}

/*------------------------------------*\
    $PLACEHOLDERS
\*------------------------------------*/
/**
  * The ghost, nudged to maintain perfect centering
  */
/**
  * Escondemos el texto solo VISUALMENTE
  */
/**
  * Escondemos el texto de VISUALMENTE y SCREENREADERS
  */
/**
  * Escondemos pero mantenemos layout.
  */
/**
  * Visualmente escondido, pero se puede detectar con teclado (focus).
  */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible;
}

/**
  * Clear floats.
  * http://bit.ly/1e3YaBH
  */
.btn-group:after {
  content: "";
  display: table;
  clear: both;
}

/* rediseño 3-10-2022 */
.mundial{
  margin: auto 12px;
}
.mundial .btn_container{
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.mundial .btn_container button{
  background: #9B0D30;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  box-shadow: 0 2px 12px rgba(155,13,48,0.4);
}
.mundial .btn_container button:hover{
  background: #b81038;
  box-shadow: 0 4px 18px rgba(184,16,56,0.55);
  transform: translateY(-1px);
}
.mundial .btn_container button:active{
  transform: translateY(0);
  box-shadow: 0 1px 6px rgba(155,13,48,0.4);
}
.mundial ._grupo_editar{
  background: none;
  border: none;
  border-radius: 0;
  /* Anula el padding heredado de ._grupo */
  padding: 6px 0;
}
.mundial ._grupo{
  padding: 5px 20px 20px 20px;
}
.mundial ._grupo._grupo_home{
  padding: 0;
}
.mundial ._grupo._grupo_home .con_publi div{
  display: flex;
  justify-content: center;
}
.mundial ._grupo_title{
  font-weight: 600;
  font-size: 28px;
  line-height: 33px;
  color: #550C2A;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.mundial ._grupo_head{
  color: #550C2A;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.mundial ._grupo_head .sep{
  width: 70%;
  border: 1px solid;
  height: 1px;
}
.mundial ._grupo_head .sep-text{
  margin: 0 15px;
  white-space: nowrap;
  font-size: 18px;
  text-transform: uppercase;
}
/* ═══════════════════════════════════════════════════════════════
   TICKET DE APUESTAS
   ═══════════════════════════════════════════════════════════════ */

.mundial ._grupo ._grupo_separador{ display: none; }

/* Ticket wrapper */
.mundial .ticket-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Ticket outer: mask + shadow + border */
.mundial .ticket-outer {
  position: relative;
  background-color: white;
  border-radius: 0.75rem;
  padding: 0.25rem;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  -webkit-mask-image:
    radial-gradient(circle at 0 50%, transparent 12px, black 13px),
    radial-gradient(circle at 100% 50%, transparent 12px, black 13px);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle at 0 50%, transparent 12px, black 13px),
    radial-gradient(circle at 100% 50%, transparent 12px, black 13px);
  mask-composite: intersect;
}
.mundial .ticket-wrapper:hover .ticket-outer {
  box-shadow: 0 8px 24px rgba(85,12,42,0.11), 0 3px 8px rgba(85,12,42,0.06);
}

/* Ticket inner flex container */
.mundial .ticket-inner {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .mundial .ticket-inner {
    flex-direction: row;
  }
}

/* Match info (left side) */
.mundial .match-info {
  flex-grow: 1;
  padding: 2rem;
}
.mundial .league-tag-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.mundial .league-badge {
  background-color: rgba(85,12,42,0.08);
  color: #550C2A;
  font-size: 10px;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mundial .pts-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mundial .pts-badge--grupo {
  background-color: rgba(255,117,60,0.1);
  color: #00326D;
}
.mundial .pts-badge--elim {
  background-color: rgba(34,197,94,0.15);
  color: #166534;
}
.mundial .match-status {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mundial .teams-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mundial .team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 33.333%;
}
.mundial .team-logo-container {
  width: 4rem;
  height: 4rem;
  background-color: #f8fafc;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid #f1f5f9;
}
.mundial .team-logo-container img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.mundial .ticket-wrapper .team-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  text-align: center;
  line-height: 1.25;
}
.mundial .team-role {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-align: center;
}
.mundial .team-score {
  font-size: 22px;
  font-weight: 900;
  color: #550C2A;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1;
}
.mundial .vs-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mundial .score-side {
  font-size: 32px;
  font-weight: 900;
  color: #550C2A;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1;
  min-width: 20px;
  text-align: center;
}
.mundial .vs-text {
  font-size: 1.1rem;
  font-weight: 900;
  font-style: italic;
  font-family: 'Manrope', sans-serif;
  color: #e2e8f0;
}
.mundial .vs-divider.scored .vs-text {
  color: #550C2A;
}
.mundial .stadium-text {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 700;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-align: center;
}

/* Perforation line */
.mundial .perforation {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .mundial .perforation {
    display: flex;
  }
}
.mundial .perf-circle {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #f8fafc;
  border-radius: 9999px;
  box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}
.mundial .dashed-line {
  border-left: 2px dashed #e2e8f0;
  height: 100%;
}

/* Prediction side (right side) */
.mundial .prediction-side {
  width: 100%;
  padding: 2rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .mundial .prediction-side {
    width: 18rem;
    flex-shrink: 0;
  }
}

/* Hide radio inputs */
.mundial .prediction-side .opcion input[type="radio"] {
  display: none;
}

/* Bet button (label) */
.mundial .prediction-side .opcion label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  user-select: none;
  margin: 0;
}
.mundial .prediction-side .opcion label:hover {
  border-color: rgba(85,12,42,0.35);
}
.mundial .prediction-side .opcion label:active {
  transform: scale(0.95);
}

.mundial .odds-label {
  font-weight: 700;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
}
.mundial .odds-value {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  color: #550C2A;
  font-style: italic;
}

/* Selected states */
.mundial .prediction-side .opcion input:checked + label[class='normal'] {
  background-color: #550C2A;
  border-color: #550C2A;
  box-shadow: 0 10px 15px -3px rgba(85,12,42,0.25);
}
.mundial .prediction-side .opcion input:checked + label[class='normal'] .odds-label { color: white; }
.mundial .prediction-side .opcion input:checked + label[class='normal'] .odds-value { color: #DEBE82; }

.mundial .prediction-side .opcion input:checked + label[class='acerto'] {
  background-color: #166534;
  border-color: #166534;
  box-shadow: 0 10px 15px -3px rgba(22,101,52,0.25);
}
.mundial .prediction-side .opcion input:checked + label[class='acerto'] .odds-label { color: white; }
.mundial .prediction-side .opcion input:checked + label[class='acerto'] .odds-value { color: #86efac; }

.mundial .prediction-side .opcion input:checked + label[class='no_acerto'] {
  background-color: #991b1b;
  border-color: #991b1b;
  box-shadow: 0 10px 15px -3px rgba(153,27,27,0.22);
  opacity: 0.85;
}
.mundial .prediction-side .opcion input:checked + label[class='no_acerto'] .odds-label { color: rgba(255,255,255,0.8); }
.mundial .prediction-side .opcion input:checked + label[class='no_acerto'] .odds-value { color: #fca5a5; }

/* Corner fold result mark */
.mundial .ticket-won .ticket-outer::before,
.mundial .ticket-lost .ticket-outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 10;
  border-style: solid;
  border-width: 28px 28px 0 0;
  border-radius: 0.75rem 0 0 0;
}
.mundial .ticket-won .ticket-outer::before {
  border-color: #22c55e transparent transparent transparent;
}
.mundial .ticket-lost .ticket-outer::before {
  border-color: #ef4444 transparent transparent transparent;
}

/* Fase knockout borders */
.mundial .fase-octavos .ticket-outer {
  border-color: #94a3b8;
  border-width: 2px;
}
.mundial .fase-cuartos .ticket-outer {
  border-color: #60a5fa;
  border-width: 2px;
}
.mundial .fase-semi .ticket-outer {
  border-color: #c084fc;
  border-width: 2px;
}
.mundial .fase-final .ticket-outer {
  border-color: #f59e0b;
  border-width: 2px;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.2), 0 4px 16px rgba(245,158,11,0.15);
}

/* Winner / loser in knockout matches */
.mundial .team-winner .team-logo-container {
  outline: 2px solid #22c55e;
  border-radius: 50%;
}
.mundial .team-winner .team-name {
  font-weight: 800;
  color: #1e293b;
}
.mundial .team-loser .team-logo-container {
  opacity: 0.4;
}
.mundial .team-loser .team-name {
  opacity: 0.4;
}
.mundial .team-draw .team-logo-container {
  outline: 2px solid #94a3b8;
  border-radius: 50%;
}

/* Logos clickeables en modo editar */
.mundial.editing .teams-row .team-box {
  cursor: pointer;
}
.mundial.editing .teams-row .team-box .team-logo-container {
  transition: outline 0.15s, transform 0.15s;
}
.mundial.editing .teams-row .team-box:hover .team-logo-container {
  outline: 2px solid #FF753C;
  border-radius: 50%;
  transform: scale(1.08);
}

/* Penalty score */
.mundial .vs-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.mundial .score-pen {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

/* Match estado badge */
.mundial .match-estado {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mundial .estado-ft {
  background-color: #e2e8f0;
  color: #475569;
}
.mundial .estado-live {
  background-color: #ef4444;
  color: white;
  animation: pulse-live 1.5s ease-in-out infinite;
}
.mundial .estado-susp {
  background-color: #fef3c7;
  color: #92400e;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Ticket locked (partido terminado) */
.mundial .ticket-inner.ticket-locked .prediction-side .opcion label {
  cursor: default;
  pointer-events: none;
}
.mundial .ticket-inner.ticket-locked .prediction-side .opcion input:not(:checked) + label {
  opacity: 0.25;
}

/* Result badge */
.mundial .result-badge {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mundial .result-won {
  background-color: rgba(34,197,94,0.15);
  color: #166534;
}
.mundial .result-lost {
  background-color: #fee2e2;
  color: #ef4444;
}
.mundial .result-pending {
  background-color: #f1f5f9;
  color: #94a3b8;
}

/* Edit button override */
.mundial ._grupo_editar { background: none; border: none; border-radius: 0; padding: 6px 0; }

/* View mode (default): labels not interactive */
.mundial:not(.editing) .prediction-side .opcion label {
  cursor: default;
  pointer-events: none;
}

/* View mode: dim non-selected options */
.mundial:not(.editing) .prediction-side .opcion input:not(:checked) + label {
  opacity: 0.3;
}

/* View mode: selected always uses primary color */
.mundial:not(.editing) .prediction-side .opcion input:checked + label {
  background-color: #550C2A;
  border-color: #550C2A;
  box-shadow: 0 10px 15px -3px rgba(85,12,42,0.25);
}
.mundial:not(.editing) .prediction-side .opcion input:checked + label .odds-label { color: white; }
.mundial:not(.editing) .prediction-side .opcion input:checked + label .odds-value { color: #DEBE82; }
.mundial ._grupo_home { background: none; border: none; border-radius: 0; padding: 6px 0; }
.mundial ._pronostico_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.mundial .prode-action-buttons {
  display: flex;
  gap: 0.5rem;
}

/* === RANKING TABLA MEJORADA === */

.ranking {
  margin: 0 !important;
}
.ranking-table-wrap {
  border-radius: 10px;
  margin-top: 8px;
}
.ranking .new_table {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

/* Stats bar */
.stats_bar {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #FF753C 0%, #00326D 100%);
  color: #fff;
  margin-bottom: 0;
  border-radius: 10px;
}
.stat_name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  flex: 1;
  min-width: 0;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat_name .stat_label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
  font-weight: 600;
  margin-bottom: 2px;
}
.stat_value_name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: left;
}
.stat_metrics {
  display: flex;
}
.stat_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-left: 1px solid rgba(255,255,255,0.15);
  min-width: 56px;
}
.stat_item .stat_label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.7;
  font-weight: 600;
  margin-bottom: 1px;
}
.stat_value {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}

/* Tabla ranking */
.ranking--tabla-nueva {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
}
.ranking--tabla-nueva thead tr {
  background: #e8f1f9;
}
.ranking--tabla-nueva thead th {
  color: #00326D;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.65rem;
  font-weight: 700;
  border-top: 1px solid #cde0f0;
  border-right: 1px solid #cde0f0;
  border-bottom: 2px solid #FF753C;
}
.ranking--tabla-nueva thead th:first-child {
  width: 2.8rem;
  text-align: center;
  border-left: 1px solid #cde0f0;
  border-top-left-radius: 10px;
}
.ranking--tabla-nueva thead th:last-child  { border-top-right-radius: 10px; }
.ranking--tabla-nueva thead th:nth-last-child(2) { text-align: right; width: 5.5rem; }

.ranking--tabla-nueva tbody td {
  border-right: 1px solid #cde0f0;
  border-bottom: 1px solid #cde0f0;
  transition: background 0.12s;
}
.ranking--tabla-nueva tbody td:first-child  { border-left: 1px solid #cde0f0; }
.ranking--tabla-nueva tbody tr:last-child td:first-child  { border-bottom-left-radius: 10px; }
.ranking--tabla-nueva tbody tr:last-child td:last-child   { border-bottom-right-radius: 10px; }
.ranking--tabla-nueva tbody tr:nth-child(even) td { background: #f4f8fc; }
.ranking--tabla-nueva tbody tr:hover td           { background: #deeaf5; }
.ranking--tabla-nueva tbody tr.usuario_on td      { background: #FF753C; color: #fff; }

.ranking--tabla-nueva .ranking-top1 td { background: #fefce8 !important; }
.ranking--tabla-nueva .ranking-top2 td { background: #f4f8fc !important; }
.ranking--tabla-nueva .ranking-top3 td { background: #fdf6ee !important; }
.ranking--tabla-nueva .ranking-top4 td { background: #f3f4f6 !important; }
.ranking--tabla-nueva .ranking-top1.usuario_on td,
.ranking--tabla-nueva .ranking-top2.usuario_on td,
.ranking--tabla-nueva .ranking-top3.usuario_on td,
.ranking--tabla-nueva .ranking-top4.usuario_on td { background: #FF753C !important; }

.ranking--tabla-nueva .ranking-td-pos {
  position: relative;
  text-align: center;
  width: 2.8rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #94a3b8;
  padding: 0.55rem 0.4rem;
  font-size: 0.85rem;
}
.ranking--tabla-nueva .ranking-top1 .ranking-td-pos,
.ranking--tabla-nueva .ranking-top2 .ranking-td-pos,
.ranking--tabla-nueva .ranking-top3 .ranking-td-pos,
.ranking--tabla-nueva .ranking-top4 .ranking-td-pos { font-size: 1.15rem; }

/* Indicador de podio — ::before independiente del background del row */
.ranking--tabla-nueva .ranking-top1 .ranking-td-pos::before,
.ranking--tabla-nueva .ranking-top2 .ranking-td-pos::before,
.ranking--tabla-nueva .ranking-top3 .ranking-td-pos::before,
.ranking--tabla-nueva .ranking-top4 .ranking-td-pos::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 3px;
}
.ranking--tabla-nueva .ranking-top1 .ranking-td-pos::before { background: #d4a017; }
.ranking--tabla-nueva .ranking-top2 .ranking-td-pos::before { background: #8fa0b0; }
.ranking--tabla-nueva .ranking-top3 .ranking-td-pos::before { background: #c07a3a; }
.ranking--tabla-nueva .ranking-top4 .ranking-td-pos::before { background: #9ca3af; }
/* usuario_on en podio: el color del podio se mantiene visible sobre el azul */

.ranking--tabla-nueva .ranking-td-name {
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
  width: 100%;
  text-align: left !important;
}
.ranking--tabla-nueva tr.usuario_on .ranking-td-name { color: #fff; }
.badge-tu {
  display: none;
}
.ranking--tabla-nueva tr.usuario_on .badge-tu {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: #fff;
  color: #00326D;
  border-radius: 3px;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.5;
}

.ranking--tabla-nueva .ranking-td-pts {
  text-align: right;
  padding: 0.55rem 0.8rem;
  width: 5.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #00326D;
  white-space: nowrap;
}
.ranking--tabla-nueva tr.usuario_on .ranking-td-pts { color: #fff; }
.trend-svg {
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-left: 4px;
  display: inline-block;
  flex-shrink: 0;
}
.trend-up   { color: #22c55e; }
.trend-down { color: #ef4444; }
.trend-eq   { color: #94a3b8; }

.ranking--tabla-nueva .ranking-th-aciertos { text-align: center; width: 2.8rem; border-right: none; }
.ranking--tabla-nueva .ranking-td-aciertos {
  text-align: center;
  width: 2.8rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #16a34a;
  padding: 0.55rem 0.4rem;
}
.ranking--tabla-nueva tr.usuario_on .ranking-td-aciertos { color: rgba(255,255,255,0.85); }

@media (min-width: 768px) {
  .mundial{
    margin: auto;
  }
  .stat_value_name   { font-size: 1.25rem; }
  .stat_value        { font-size: 1.45rem; }
  .stat_item         { min-width: 68px; }
  .ranking--tabla-nueva          { font-size: 0.95rem; }
  .ranking--tabla-nueva thead th { font-size: 0.7rem; padding: 0.6rem 0.75rem; }
  .ranking--tabla-nueva .ranking-td-pts { font-size: 1.1rem; }
  .mundial ._grupo_title{
    font-weight: 800;
    font-size: 36px;
    line-height: 42px;
  }
  .mundial ._grupo_head{
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .mundial {
    max-width: 970px;
  }
  .ranking ._table th{
  font-size: 28px;
  }
  .ranking ._table td{
  font-size: 28px;
  }
  .ranking .new_table{
    max-width: 1140px;
        margin: 0 auto;
  }
  .ranking ._table ._table__header th:first-child{
    max-width: 85px;
  }
  .ranking .nombre_usuario{
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
  }
  .ranking .new_table.only_nombre .nombre_usuario{
    font-size: 26px;
  }
  .mundial ._grupo_title{
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
  }
  .mundial ._grupo_head{
    margin-top: 30px;
  }
  .mundial ._ticket_match{
    padding: 28px 36px;
  }
  .mundial ._team_badge{
    width: 68px;
    height: 68px;
  }
  .mundial ._colum_pronostico{
    width: 260px;
    padding: 32px 28px;
  }
}
.mediakit {
  max-width: 970px;
  margin: auto;
  padding: 30px 0;
  text-align: center;
}
.mediakit__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
} 
.mediakit__container.ocupado {
  border: 1px dashed red;
}
.mediakit__container.ocupado p{
  color: red;
}
.mediakit__container.libre {
  border: 1px dashed green;
}
.mediakit__container.libre p{
  color: green;
}
/* fin rediseño */
