.classement {
    background: var(--color-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5em 0 .5em 0;
    border-radius: .9em;
    width: 100%;
    max-width: 1024px;
    box-shadow: 0px 0px 40px 4px var(--color-4);
    background: linear-gradient(45deg, var(--color-4) 0%, var(--color-6) 100%);
}

.class-titre {
    color: var(--color-1);
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}

.class-race {
    color: var(--color-2);
    font-size: 1em;
}

.class-line {
    display: flex;
    flex-direction: row;
    background: var(--color-2);
    font-size: 1.2em;
    margin: .2em 0 .2em 0;
    height: 1.5em;
    width: 95%;
    border-radius: .5em;
}

.class-num {
    background: var(--color-1);
    display:flex;
    flex-direction: column;
    width: 1.8em;
    justify-content: center;
    align-items: center;
    border-radius: .5em 0 0 .5em;
}

.class-content {
    display: flex;
    flex-direction: row;
    padding: .1em .3em .1em .3em;
    justify-content: space-between;
    width: 100%;
}

.class-name {
    color: var(--color-4);
}

.class-pts {
    color: var(--color-3);
}

.is-player {
    background: var(--color-5);
    background-image: linear-gradient(to right top, #5465ff, #0085ff, #0096e6, #009fbf, #20a39e);
}

.gold {
    background: gold;
}
.silver {
    background: #969696;
}
.bronze {
    background: #CD7F32;
}

.class-line:hover {
    background: var(--color-5);
    transform: scale(1.01);
    transition: 100ms;
}