.stats_container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    margin-top: 16px;
    font-size: small;
    border-radius: 8px;
    font-weight: bold;
    color: white;
}

.home_value {
    width: calc(100% / 3);
    text-align: left;
    vertical-align: center;
    align-content: start;
}

.stats_name {
    width: calc(100% / 3);
    vertical-align: top;
    text-align: center;
}

.away_value {
    width: calc(100% / 3);
    vertical-align: top;
    text-align: right;
}

.progress_bar_container {
    width: 100%;
    display: flex;
    margin-top: 4px;
    color: #AAAAAA;
    border-radius: 4px;
    flex-direction: row;
    background-color: #222222;
}

.home_stats_progress {
    width: calc(100% / 2);
    display: flex;
    height: 10px;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 0;
    flex-direction: row;
    float: right;
    justify-content: flex-end;
    align-content: end;
}

.away_stats_progress {
    display: flex;
    height: 10px;
    border-radius: 4px;
    flex-direction: row;
    justify-content: flex-start;
    width: calc(100% / 2);
    align-content: start;
}

.higher_progress {
    background: #D32F2F;
}

.lower_progress {
    background: white;
}

.winner_stats_progress {
    display: flex;
    height: 30px;
    border-radius: 4px;
    flex-direction: row;
    justify-content: flex-start;
    width: calc(100% / 3);
    align-content: start;
}

.win_progress {
    text-align: center;
    background: #187709;
    font-size: medium;
    padding: 8px;
    font-weight: bold;
}

.draw_progress {
    text-align: center;
    font-size: medium;
    padding: 8px;
    font-weight: bold;
    background: #015b5b;
}

.lose_progress {
    text-align: center;
    font-size: medium;
    padding: 8px;
    font-weight: bold;
    background: #853310;
}
