.casilla {
    /* border: 1px solid #FF00AA; */
    width: 120px;
    height: 155px;
    font-size: 1.5rem;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;

    transition: all .3s ease;
    cursor: pointer;

    position: relative;
    z-index: 2;
    
}

/* .casilla:hover {
    box-shadow: 0px 0px 0px #111;
    transform: scale(1.1);
} */
 
.tablaLote {
    width: 480px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;

}

.casilla img {
  opacity: 0.8;

}

.marcado {
    background: rgba(3,3,3,0.3);
    box-shadow: 0px 0px 5px #333;

    z-index: 95;
}

.marcado::before {
    content: 'X';
    position: absolute;
    
    z-index: 99;
    font-size: 10rem;

    color: #FDCC00;
    text-shadow: 0px 0px 20px #111111;

    
}

.cartas {
    margin: 0 auto;
    padding: 5px;
    /* border: 1px solid #F700AA; */
    width: 100%;
    height: 90%;
    font-size: 10rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;

    transition: all .3s ease;
    cursor: pointer;
}