.stadium {
    position: absolute;
    left: 36px;
    top: 10px;
    color: #FFF;
}
.referee {
    position: absolute;
    right: 36px;
    top: 10px;
    color: #FFF;
}
.referee.mobile {
    right: 20px;
    top: 4px;
}
.formation-home {
    position: absolute;
    left: 36px;
    bottom: 10px;
    color: #FFF;
    font-family: var(--font-family-in);
}
.formation-home.mobile {
    top: 4px;
    left: 20px;
}
.formation-away {
    position: absolute;
    right: 36px;
    bottom: 10px;
    color: #FFF;
    font-family: var(--font-family-in);
}
.formation-away.mobile {
    right: 20px;
    bottom: 0px;
}
.player-lineup-item {
    position: absolute;
}
.player-lineup-content {
    position: relative;
    display: flex;
    justify-content: center;
    width: 70px;
    height: 64px;
    /* background-color: red; */
}
.player-lineup-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #FFF;
}
.player-lineup-name {
    position: absolute;
    bottom: 0;
    font-size: 12px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.player-lineup-number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-family-in);
    font-size: 11px;
    height: 16px;
    padding-left: 2px;
    padding-right: 2px;
    background-color: #FFF;
    border-radius: 8px;
    text-align: center;
}
.player-lineup-form {
    position: absolute;
    bottom: 18px;
    left: 0;
    font-family: var(--font-family-in);
    font-weight: bold;
    font-size: 12px;
    height: 18px;
    padding-left: 3px;
    padding-right: 3px;
    background-color: #FFF;
    border-radius: 9px;
    text-align: center;
}
.substitute-photo {
    vertical-align: middle;
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #eee;
}
.img-field {
    width: min(1080px, 100%);
    height: auto;
}
.table-sub {
    border: 1px solid #eee;
    width: 100%;
}
.table-sub tr:nth-child(even) td{
    background: #F5F5F5;
}
.table-sub th {
    background-color: #eef3f9;
}
.table-sub td, .table-sub th {
    padding: 2px 4px;
    border-bottom: 1px solid #eee;
}
.player-sub-form {
    font-family: var(--font-family-in);
    font-size: 10px;
    height: 16px;
    width: 24px;
    background-color: #FFF;
    border-radius: 8px;
    text-align: center;
}
.table-miss {
    border: 1px solid #eee;
    width: 100%;
}
.table-miss tr:nth-child(even) td{
    background: #F5F5F5;
}
.table-miss th {
    background-color: #eef3f9;
    font-weight: normal;
}
.table-miss td, .table-miss th {
    padding: 2px 4px;
    border-bottom: 1px solid #eee;
}
.table-match {
    border: 1px solid #eee;
    width: 100%;
}
.table-match tr:nth-child(even) td{
    background: #F5F5F5;
}
.table-match th {
    background-color: #eef3f9;
    font-weight: normal;
}
.table-match td, .table-match th {
    padding: 2px 4px;
    border-bottom: 1px solid #eee;
}
.table-standing {
    border: 1px solid #eee;
    width: 100%;
}
.table-standing tr:nth-child(even) td{
    background: #F5F5F5;
}
.table-standing th {
    background-color: #eef3f9;
    font-weight: normal;
}
.table-standing td, .table-standing th {
    padding: 2px 16px;
    border-bottom: 1px solid #eee;
}
.table-standing tr.team-selected>td {
    background-color: #FFD463;
}

@media only screen and (max-width: 480px) {
    .table-standing td, .table-standing th {
        padding: 2px 4px;
    }
}