.aggregate_stats_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 1em;
}

.aggregate_stats_box>div {
    flex-grow: 1;
    background-color: #0005;
    padding: 1em;
    margin: .1em;
    border-radius: 1em;
    text-align: center;
    width: 10%;
    min-width: 10em;
    border: .1em solid #0000;
    transition: border .3s;
    transition-property: border, box-shadow;
}

.aggregate_stats_box>div:hover {
    border: .1em solid var(--ignite-orange);
    box-shadow: 0 0 2em 2em #0002;
}

.aggregate_stats_box>div>div:first-child {
    font-weight: 900;
    color: #fffa;
}
.aggregate_stats_box>div>div:last-child {
    font-weight: 200;
    height: 1.5em;
    font-size: 1.2em;
}

.aggregate_stats_box>div.nobox {
    background: none;
    border: none;
}
.aggregate_stats_box>div.nobox:hover {
    border: none;
    box-shadow: none;
}
.aggregate_stats_box>div.nobox>div:last-child {
    font-size: 2em;
}