#fondo-fixture{
    display: none; /* Inicialmente oculta */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */        
    z-index: 1000;
}

#fixture{
    position: absolute;
    background-color: rgb(92, 6, 6);
    background-size: cover;  /* Ajusta la imagen para que cubra todo el div */
    background-position: center; /* Centra la imagen */    
    background-repeat: no-repeat;    
    top:12%;
    left:5%;
    width: 90%;
    height: 75%;  
    border: 2px solid black;
    border-radius: 30px;       
    overflow: hidden;   /* para que se vean las puntas redondeadas*/
    box-shadow: 8px 8px 40px white;
    z-index: 1600;  
}

#div-nombre-fixture{
    display: flex;
    height: 6%;
    align-items: center;
    background-color: rgb(0, 0, 0);
    justify-content: space-between;
}

#nombre-fixture{
    display: flex;
    height: 100%;
    font-family: poppins;
    font-size: 40px;
    color: white;
    align-items: center;
    margin-left: 20px;
    justify-content: center;
}

#div-cruz-fixture{
    display: flex;
    align-items: center;
    width: 6%;
    height: 100%;
    padding-right: 10px;
}

#cruz-fixture{
    width: 100%;
    height: 80%;
}

#campeonato-fixture{
    display: flex;
    height: 5%;
    width: 100%;
    font-family: poppins;
    font-size: 40px;
    color: white;
    align-items: center;
    justify-content: center;
}


.fila-fixture{
    display: flex;
    left: 5%;
    width: 90%;
    height: 5.7%;
}


.escudo-local-fixture,
.escudo-visitante-fixture{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.div-escudo-local-fixture{
    margin-left: 20px;
    margin-right: 10px;
}

.div-escudo-visitante-fixture{
    margin-left: 10px;
    margin-right: 20px;
}


.div-escudo-local-fixture,
.div-escudo-visitante-fixture{
    height: 100%;
    object-fit: cover;
    width: 10%;
}

.club-local-fixture{
    justify-content: right;
}

.club-visitante-fixture{
    justify-content: left;
}

.club-local-fixture,
.club-visitante-fixture{
    display: flex;
    font-family: poppins;
    font-size: 35px;
    color: white;
    align-items: center;
    width: 42%;

}

#partidos-fixture{
    display: block;
    position: absolute;
    top: 7%;
    height: 94%;
    width: 100%;
}

.fecha-fixture{
    display: flex;
    font-family: poppins;
    font-size: 35px;
    color: white;
    align-items: center;
    justify-content: right;
    width: 15%;
}
