

.gameBannerContent {
    margin: auto;
    width: fit-content;
    text-align: center;
    color: white;
    font-family: var(--font);
    padding: 20px 0px;
}

.bannerTitle {
    font-size: 33px;
    font-weight: bold;
    line-height: 1;
}

.bannerSubtitle {
    font-size: 21px;
    font-weight: bold;
}

.bannerReferees {
    font-size: 15px;
    font-weight: bold;
}

.bannerTeams {
    display: grid;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    /* grid-template-columns: 1fr auto auto auto 1fr; */
    grid-template-columns: auto auto auto;
    color: white;
    font-weight: bold;
    margin-top: 20px;
    background-color: black;
    padding: 5px 20px;
    border-radius: 4px;
}

.bannerTeamName {
    font-size: 25px;
    background: transparent;
}



.bannerTeamLogoContainer>img {
    width: 100px;
}

.bannerScore {
    font-size: 35px;
}

.bannerQuarters {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    font-family: var(--font);
    color: white;
}

.quartersScoreTable_banner {
    display: grid;
    grid-template-columns: auto repeat(4, 50px);
    grid-template-rows: repeat(3, 40px);
    align-items: center;
    justify-items: center;
    text-align: center;
    font-family: var(--font);
    column-gap: 10px;
    margin: 0px 20px;
}

.bannerQuartersNames {
    font-weight: bold;
    line-height: 1;
}

.scoreBox {
    background-color: transparent;
    border: 1px solid black;
    border-bottom: 3px solid red;
    font-size: 18px;
    font-weight: bold;
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scoreBox_green {
    border-bottom-color: #06db7f;
}

.bannerQuarterNumber {
    font-weight: bold;
    font-size: 22px;
}

.banneeQuarterTableType {
    font-size: 24px;
    display: flex;
    color: black;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.bannerTopScorersContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 40px;
    background: url("https://hapoel.ussl.blog/wp-content/uploads/2021/03/Layer-10.png");
    background-position: center center;
    background-size: cover;
    padding: 40px 0px;
}

.teamTopScorers {
    margin: 0px 20px;
    font-family: var(--font);
}

.teamTopScorers_teamName {
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}

.teamTopScorers_subtitle {
    font-size: 27px;
    line-height: 1;
}

.teamTopScorers_table {
    display: grid;
    grid-template-columns: 50px 40px 300px 90px;
    color: white;
    font-size: 23px;
    font-weight: bold;
    row-gap: 6px;
    margin-top: 20px;
}

.teamTopScorers_table>div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.bannerScorer_jersey {
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.bannerScorer_name {
    padding-right: 15px;
    background-color: rgba(0, 0, 0, 0.2);
}

.bannerScorer_points {
    background-color: rgba(0, 0, 0, 0.2);
}



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

    .bannerTitle {
        font-size: 22px;
    }

    .bannerSubtitle {
        font-size: 14px;
    }

    .bannerReferees {
        font-size: 14px;
    }

    .bannerTeams {
        column-gap: 5px;
        padding: 0px 20px;
    }

    .bannerTeamName {
        font-size: 14px;
        line-height: 1.3;
    }

    .bannerScore {
        font-size: 22px;
    }


    .bannerTopScorersContainer {
        display: grid;
        row-gap: 50px;
    }

    .teamTopScorers_table {
        grid-template-columns: 45px 40px 180px 70px;
        font-size: 20px;
    }

    .bannerQuarters {
        display: grid;
    }

    .bannerScorer_name {
        padding-right: 10px;
    }

    .teamTopScorers_teamName {
        font-size: 25px;
    }

    .teamTopScorers_subtitle {
        font-size: 20px;
    }

    .banneeQuarterTableType {
        height: unset;
        line-height: 1;
        font-size: 25px;
    }

    .quartersScoreTable_banner {
        margin: 0px 20px 20px;
    }
}