

.gameStatisticsContainer {
    margin: auto;
}

.quartersRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quartersScoreTable {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 1fr 1fr;
    width: 35%;
    text-align: center;
    font-family: var(--font);
}

.quartersScoreTable>div {
    border-left: 1px solid white;
    border-bottom: 1px solid white;
}

.quartersScoreTable>.header {

    background-color: #ff6e15;
    color: white;
    font-weight: bold;
    font-size: 25px;
}

.quartersScoreTable>.small {
    color: #141614;
    line-height: 1;
    height: 20px;
    padding-top: 2px;
}

.quartersScoreTable>.title {
    text-align: right;
    padding-right: 10px;
}

.quartersScoreTable>.team {
    background-color: #dedede;
    text-align: right;
    padding-right: 10px;
}

.quartersScoreTable>.gray {
    background-color: #f1f1f1;
}

.quartersScoreTable>.white {
    background-color: white;
}










/* TEAM TABLE */
.gameTeamStatsTable {
    margin-top: 40px;
    font-family: var(--font);
}

.gameTeamStatsTable_title {
    height: 50px;
    width: 100%;
    font-size: 25px;
    background-color: #ff6e15;
    color: white;
    font-weight: bold;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    padding: 3px 10px;
}

.gameTeamStatsTable_header1 {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100%;
    grid-template-columns: 7fr 3fr 3fr 3fr 3fr 2fr 3fr 2fr 1fr 1fr 1fr;
}

.gameTeamStatsTable_header1>div {
    background-color: #b9bbb8;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    color: black;
    font-weight: bold;
    font-size: 16px;
    height: 30px;
    width: 100%;
    text-align: center;
}

.gameTeamStatsTable_header2 {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100%;
    grid-template-columns: 1fr 3fr 1fr 1fr 1fr 2fr 1fr 2fr 1fr 2fr 1fr repeat(13, 1fr);
}

.gameTeamStatsTable_header2>div {
    background-color: #dedede;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    color: black;
    font-weight: bold;
    font-size: 16px;
    height: 30px;
    width: 100%;
    text-align: center;
}

.gameTeamStatsTable_player {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100%;
    grid-template-columns: 1fr 3fr 1fr 1fr 1fr 2fr 1fr 2fr 1fr 2fr 1fr repeat(13, 1fr);
}

.gameTeamStatsTable_player>div {
    background-color: white;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    color: black;
    font-size: 15px;
    height: 30px;
    width: 100%;
    text-align: center;
}

.gameTeamStatsTable_player.gray>div {
    background-color: #f1f1f1;
}

.gameTeamStatsTable_player>.right {
    text-align: right;
}

.gameTeamStatsTable_player>.dirLeft {
    direction: ltr;
}

.gameTeamStatsTable_player>.bold {
    font-weight: bold;
}









/* STARTERS BENCH TABLE */
.startersBenchTable {
    margin-top: 40px;
    font-family: var(--font);
}

.startersBenchTable_title {
    height: 50px;
    width: 100%;
    font-size: 25px;
    background-color: #ff6e15;
    color: white;
    font-weight: bold;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    padding: 3px 10px;
}

.startersBenchTable_header1 {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100%;
    grid-template-columns: 5fr 3fr 3fr 3fr 3fr 2fr 3fr 2fr 1fr 1fr 1fr;
}

.startersBenchTable_header1>div {
    background-color: #b9bbb8;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    color: black;
    font-weight: bold;
    font-size: 16px;
    height: 30px;
    width: 100%;
    text-align: center;
}

.startersBenchTable_header2 {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100%;
    grid-template-columns: 3fr 1fr 1fr 2fr 1fr 2fr 1fr 2fr 1fr repeat(13, 1fr);
}

.startersBenchTable_header2>div {
    background-color: #dedede;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    color: black;
    font-weight: bold;
    font-size: 16px;
    height: 30px;
    width: 100%;
    text-align: center;
}

.startersBenchTable_player {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100%;
    grid-template-columns: 3fr 1fr 1fr 2fr 1fr 2fr 1fr 2fr 1fr repeat(13, 1fr);
}

.startersBenchTable_player>div {
    background-color: white;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    color: black;
    font-size: 15px;
    height: 30px;
    width: 100%;
    text-align: center;
}

.startersBenchTable_player.gray>div {
    background-color: #f1f1f1;
}

.startersBenchTable_player>.right {
    text-align: right;
}

.startersBenchTable_player>.dirLeft {
    direction: ltr;
}

.startersBenchTable_player>.bold {
    font-weight: bold;
}

.startersBenchTable_seperator {
    background-color: #b9bbb8;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    color: black;
    font-weight: bold;
    font-size: 16px;
    height: 30px;
    width: 100%;
}




@media only screen and (max-width: 600px) {

    .quartersRow {
        display: grid;
        row-gap: 30px;
        justify-content: unset;
    }

    .quartersScoreTable {
        width: 100%;
    }
    
    
    .gameTeamStatsTableContainer {
        overflow: scroll;
        width: 100%;
    }
    
    .gameTeamStatsTable {
        width: 1350px;
    }

    .gameTeamStatsTable_title {
        font-size: 14px;
        height: 30px;
    }

    .startersBenchTableContainer {
        overflow: scroll;
        width: 100%;
    }

    .startersBenchTable {
        width: 1350px;
    }
}