.cardsStatisticheNomeGiocatore {
    border-radius: 5px;
}

.cardsStatisticheNomeGiocatoreLogoSquadra {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cardsStatisticheNomeGiocatore>div:first-child,
.cardsStatisticheNomeGiocatore>div:nth-child(3) {
    color: var(--main-color);
    font-weight: bold;
    background-color: var(--gray-7);
    /* padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px; */
    padding: 0.75rem;
}

.cardsStatisticheNomeGiocatore>div:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.cardsStatisticheNomeGiocatore>div:nth-child(3) {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}


.cardsStatisticheNomeGiocatore>img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gridStatisticheGiocatore {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.gridStatisticheGiocatore>div:nth-child(odd) {
    color: var(--main-color);
    text-align: end;
    font-weight: 600;
}

.gridStatisticheGiocatore>div:nth-child(even) {
    color: var(--main-grey);
    font-weight: 600;
}


.statisticheGiocatoreQuotazione {
    text-align: center;
}

.statisticheGiocatoreQuotazione hr {
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 3px;
    margin-right: 3px;
    border-bottom: 1px solid #aeaeae !important;
}

.statisticheGiocatoreQuotazione>div:last-child {
    font-size: 20px;
}


.statisticheGiocatoreQuotazione:nth-of-type(1) {
    background-color: var(--gray-7);
    color: var(--main-grey);
}

.statisticheGiocatoreQuotazione:nth-of-type(2) {
    background-color: var(--second-color);
    color: var(--main-color);
}



.statisticheGiocatoreQuotazione:nth-of-type(2) hr {
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 3px;
    margin-right: 3px;
    border-bottom: px solid #70ab62 !important;
}




.statisticheGiocatoreGrafici {
    display: grid;
    grid-row-gap: 5px;
    grid-template-columns: 50% 50%;

}

.statisticheGiocatoreGrafici>div {
    display: grid;
    grid-template-rows: auto auto;
}


.statisticheGiocatoreLegenda {
    display: grid;
    grid-column-gap: 5px;
    grid-template-columns: 15px auto;
    align-content: baseline;
}

.statisticheGiocatoreLegenda>div {
    height: 100%;
}

.highcharts-container {
    margin: 0 auto;
}

.highcharts-figure {
    margin-bottom: 0 !important;
	display: flex;
	justify-content:center;
	align-items: center;
}


/* MEDIA QUERIES */

@media screen and (max-width: 576px) {

    .gridStatisticheGiocatore,
    .statisticheGiocatoreQuotazione {
        font-size: 10px;
    }

}





/* STATISTICHE FEED DI GIORNTA  */

.statisticheGiocatoreFeed {
    text-align: center;
    background-color: var(--gray-7);
    color: var(--main-color);
    font-size: 10px;
}

.statisticheGiocatoreFeed hr {
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 3px;
    margin-right: 3px;
    border-bottom: 1px solid #aeaeae !important;
}

.statisticheGiocatoreFeed>div:last-child {
    font-size: 20px;
}


.feedAmmonizione {
    background-color: yellow;
    color: var(--main-color);
}

.feedEspulsione {
    background-color: red;
    color: white;
}

.feedOther {
    background-color: var(--gray-7);
    color: var(--main-color) !important;
    text-align: center;
}

.feedBonus {
    background-color: var(--second-color);
    color: var(--main-color) !important;
    text-align: center;
}

.feedMalus {
    background-color: var(--third-color);
    color: white !important;
    text-align: center;
}



@media screen and (max-width: 576px) {

    .statisticheGiocatoreFeed {
        font-size: 10px;
    }

}

