.vtx-modal-stat-collection {
    --stat-item-label-color: #2228;
    --stat-item-value-color: black;

    &.dark {
        --stat-item-label-color: #fff;
        --stat-item-value-color: #59ffe2;
    }

    display: flex;
    flex-wrap: wrap;
    .stat-item {
        display: flex;
        margin-right: 50px;
        img {
            width: 50px;
            height: 50px;
            margin-right: 12px;
        }

        .data {
            .label {
                color: var(--stat-item-label-color);
            }

            .value {
                margin-top: -5px;
                color: var(--stat-item-value-color);

                .number {
                    font-size: 20px;
                    // font-family: DIN-Regular, serif;
                }

                .unit {
                    font-size: 14px;
                }
            }
        }
    }
}
