:root {
	--cnvs-themecolor: #b03333;
	--cnvs-themecolor-rgb: 176, 51, 51;

	--cnvs-body-font: "Roboto", sans-serif;
	--cnvs-primary-font: 'Oswald', sans-serif;

	--cnvs-btn-skew: 15deg;

	--cnvs-section-bg: #cdcdcd;

	--cnvs-section-margin: 5.5rem;
}

.dark {
	--cnvs-footer-bg: var(--cnvs-themecolor);
}


.button {
	font-family: var(--cnvs-primary-font);
}

.fw-800 {
	font-weight: 800;
}

#header {
	--cnvs-primary-menu-hover-color: rgba(255,255,255,1);
	--cnvs-primary-menu-submenu-hover-bg: rgba(var(--cnvs-contrast-rgb), 0.15);
	--cnvs-primary-menu-font-weight: 500;
	--cnvs-primary-menu-font: var(--cnvs-body-font);
}

.is-expanded-menu .style-3 .menu-container > .menu-item > .menu-link {
	margin: 20px 0;
	border-radius: 0;;
}

.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
	margin-left: 5px;
}

.countdown {
	--cnvs-countdown-size: 4.25rem;
    --cnvs-countdown-section: 16px;
    --cnvs-countdown-border: 0;
}

.countdown-amount {
	font-weight: 800;
	font-family: var(--cnvs-primary-font);
	color: var(--cnvs-contrast-1000);
	margin-bottom: 10px;
}

.countdown-section {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--cnvs-primary-font);
	font-size: 90%;
}

.transform-skew {
	transform: skew(calc(-1 * var(--cnvs-btn-skew)));
}

.transform-skew > * {
	display: inline-block;
	transform: skew(var(--cnvs-btn-skew));
}

.scroll-text > * {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-repeat: no-repeat;
	-webkit-text-stroke: 1px;
}

.divider {
	--cnvs-divider-border-color: rgba(255,255,255,.2);
}

.ticker-wrap .ticker-item {
	font-size: 1.25rem;
	text-decoration: none;
}

   .breadcrumb-container {
        background-color: #f8f9fa; /* Fondo claro para el breadcrumb */
        padding: 0.5rem 0;
        border-bottom: 1px solid #eaeaea; /* Línea sutil de separación */
    }

    .breadcrumb a {
        color: #dc3545 !important; /* Rojo para enlaces activos */
        text-decoration: none;
    }
.breadcrumb-item h1 {
	 color: #dc3545 !important; 
    font-size: 90%; /* Ajusta al mismo tamaño que los enlaces */
    font-weight: 600; /* Asegura que coincida con fw-semibold */
    margin: 0; /* Elimina márgenes adicionales */
    display: inline; /* Evita que se muestre como bloque */
}

    .breadcrumb-item.active {
        color: #6c757d !important; /* Gris tenue para el activo */
    }

    .sticky-menu {
		transition: all 0.3s ease-in-out;
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: var(--cnvs-themecolor);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra elegante */
    }

    .sticky-menu .nav-link {
        color: #fff;
    }
 .sticky-menu .nav-link .active {
    color: #fff;
    background-color: #007bff; /* Azul o color deseado */
    border-radius: 5px;
}
    .sticky-menu .nav-link:hover {
        text-decoration: underline;
    }
	
          .quick-select-wrapper {
            background-color: #f5f5f5;
            padding: 10px 20px;
            border-bottom: 2px solid #ccc;
        }
        .selector {
            position: relative;
            margin-bottom: 10px;
        }
        .selector-title {
            cursor: pointer;
            display: flex;
            align-items: center;
            background: white;
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 10px;
        }
        .selector-title img {
            height: 30px;
            margin-right: 10px;
        }
        .arrow {
            margin-left: auto;
        }
        .selector-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 10;
            background: white;
            border: 1px solid #ccc;
            border-radius: 5px;
            max-height: 300px;
            overflow-y: auto;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            width: 100%;
        }
        .selector-dropdown ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .selector-dropdown li {
            padding: 10px;
            cursor: pointer;
        }
        .selector-dropdown li:hover {
            background: #f0f0f0;
        }

        /* Estilo responsivo */
        @media (min-width: 768px) {
            .quick-select-wrapper {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .selector {
                margin-bottom: 0;
                flex: 1;
                margin: 0 10px;
            }
            .selector-dropdown {
                width: auto;
                min-width: 200px;
            }
        }
/*alineaciones*/
.alineacion-container {
    position: relative;
    background: url('/images/campo-futbol.webp') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 960px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.jugador {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--cnvs-themecolor);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-family: var(--cnvs-primary-font);
}

.jugador .numero {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.jugador .nombre {
    margin-top: 4px;
    position: absolute;
    top: 65px;
    width: max-content;
    max-width: 100px;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    padding: 3px 6px;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-family: var(--cnvs-body-font);
    font-weight: 500;
}

/* Responsive ajustes */
@media (max-width: 576px) {
    .alineacion-container {
        height: 70vh;
    }

    .jugador {
        width: 40px;
        height: 40px;
    }

    .jugador .numero {
        font-size: 12px;
    }

    .jugador .nombre {
        top: 45px;
        font-size: 9px;
        max-width: 80px;
    }
}

/*fin alineacioones**/

.timeline {
position: relative;
    min-height: 650px;
    flex: 1
}

/* Contenedor del evento */
.evento-container {
  clear: both;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
    line-height: 18px;
    padding: 10px 0;
    font-size: 0;
    color: #333
}

/* Línea de tiempo vertical */
.evento-container::before {
    content: "";
  display:table;

}

/* Minuto centrado en la línea */
.evento-minuto {
 transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #da0f0f;
    text-align: center;
    border-radius: 14px;
    position: absolute;
    line-height: 30px;
    min-width: 30px;
    font-size: 16px;
    padding: 0 4px;
    z-index: 2;
    color: #fff;
    left: 50.2%;
    top: 10px
}

/* Eventos locales (izquierda) */
.evento-local {
    display: inline-block !important;
    align-items: center;
    float:left;
    text-align: right;
	width:45%;
}

/* Eventos visitantes (derecha) */
.evento-visitante {
    display: inline-block !important;
    align-items: center;
    float:right;
    text-align: left;
	width:45%;
}

/* Caja del evento */
.evento {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);

}

 

.evento-container .linea {
   background: #007d00;
      position: absolute;
    top: 0px;
    left: 50%;
    width: 2px;
    bottom: 0px;
}

/* Iconos */
.icono img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 8px;
}

.texto {
    font-size: 14px;
    font-weight: 500;
}
