.StatsAndRecords__top {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    /* row-gap: 24px; */
}
.StatsAndRecords__top_item {
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 0 30%;
    width: auto;

    min-width: 320px;
    /* max-width: 357px; */

    background-color: #202020;
    border-radius: var(--brad);
}
.StatsAndRecords__top_item > p {
    display: inline-block;
    vertical-align: middle;
}
.StatsAndRecords__top_item > p > * {
    display: inline-block;
    vertical-align: middle;
}
.StatsAndRecords__top_item > div {
    position: relative;
}
.StatsAndRecords__top_item > div > img {
}
.StatsAndRecords__top_item > div > p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-weight: 600;
    /* font-size: 20px; */
}
.StatsAndRecords__top_item > p {
    text-align: center;
}

.StatsAndRecords__bottom {
    width: 100%;
    border-collapse: collapse;
    background-color: #202020;
    padding: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 16px 0;
    /* font-size: 24px; */
    text-transform: uppercase;
    font-weight: 600;
}

/* td {
    font-size: 18px;
} */

.row {
    display: grid;
    /* grid-template-columns: repeat(6, 1fr); */
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    align-items: center;
}

th.left,
td.left {
    text-align: center;
    height: max-content;
}
th.right,
td.right {
    text-align: center;
    height: max-content;
}

th > p {
    font-size: 24px;
    font-weight: 900;
    display: inline-block;
    vertical-align: sub;
}
.left > img {
    text-align: center;
    width: 18px;
    height: auto;
    margin: 0 auto;
    transform: translateX(-8px);
    cursor: pointer;
    z-index: 27;
}

.statsLine {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to left,
        rgba(43, 67, 152, 0) 0%,
        #cc76ce 50%,
        rgba(43, 67, 152, 0) 100%
    );
}
tr {
    position: relative;
    overflow: hidden;
}
tr:nth-child(2) {
    margin-top: 24px;
    margin-bottom: 24px;
}
tr.row:nth-child(3) {
    margin-top: 16px;
}
tr.row:not(:first-child)::after {
    position: absolute;
    content: "";
    width: 60000%;
    background-color: white;
    height: 1px;
    left: 0;
    bottom: 0;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr 1fr 1fr 1.5fr 1fr 1fr;
    }
    .StatsAndRecords__bottom {
        padding: 24px 12px;
    }
    th {
        padding: 0;
    }
    th,
    td {
        font-size: 2.8vw;
    }
}
