.league_heading {
    font-size: 70px;
    margin-top: 92px;
    margin-bottom: 80px;
    text-align: center;
}

.league_table {
    background-color: var(--white);
    box-sizing: border-box;
    margin-bottom: 120px;
}

table {
    width: 100%;
}

.table_flex {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 50px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(97, 97, 97, 0.5);
}

.name_flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
}

.table_flex:last-of-type {
    border-bottom: none;
}

.header_flex {
    padding: 20px 50px;
    border-bottom: 1px solid rgba(97, 97, 97, 0.7) !important;
}

.number {
    width: 58px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.position {
    margin-left: -4px;
    margin-right: 10px;
}

.club {
    text-transform: lowercase;
    text-transform: capitalize;
    font-family: 'Cooper Hewitt', sans-serif;                                                
    font-weight: 711;
}

.red_bg {
    background-color: var(--red);
    color: var(--white);
}

.points {
    font-weight: 700;
}

.short_name {
    display: none;
}

@media (max-width: 1175px) {
    .non_mobile {
        display: none;
    }
}

@media (max-width: 800px) {
    .league_heading {
        margin-top: 70px;
    }

    .short_name {
        display: block;
    }

    .long_name {
        display: none;
    }
}

@media (max-width: 600px) {
    .league_heading {
        font-size: 36px;
    }

    .table_flex {
        padding: 10px 10px;
    }

    .header_flex {
        padding: 20px 10px;
    }
}

@media (max-width: 500px) {
    .number {
        width: 38px;
    }
}