/* Classement */
.qz-cls-rank-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 4rem 0;
    overflow: hidden;
}

.qz-cls-rank-header {
    text-align: center;
}

.qz-cls-rank-header h1 {
    font-size: 35px;
    font-weight: 600;
}

.qz-cls-rank-header p {
    font-size: 18px;
    padding-top: 3px;
    color: #9ea6b0;
}


.qz-cls-rank-title {
    text-align: center;
    padding: 3rem 0 0;
}

.qz-cls-rank-title h1 {
    font-size: 18px;
    background: #0e1f39;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    color: #bfd0e1;
    position: relative;
}

.qz-cls-rank-title h1::before,
.qz-cls-rank-title h1::after {
    position: absolute;
    content: "";
    height: 3px;
}

.qz-cls-rank-title h1::before {
    left: -134px;
    background: linear-gradient(to right, #0a1a2e, #ffffff29);
    width: 125px;
    top: 16px;
    border-radius: 50px;
}

.qz-cls-rank-title h1::after {
    right: -134px;
    background: linear-gradient(to left, #0a1a2e, #ffffff29);
    width: 125px;
    top: 16px;
    border-radius: 50px;
}

.qz-cls-rank-title p {
    font-size: 16px;
    padding-top: 10px;
    color: #9ea6b0;
}

/* Rank order */
.qz-cls-rank {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 60px;
    margin: 30px 0 70px;
    flex-wrap: wrap;
}

.qz-rank-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.qz-rank-label {
    font-size: 40px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 7%;
    transform: translate(-50%, -50%);
}

.first-rank .qz-rank-label {
    color: #FFA700;
    top: 8%;
}

.second-rank .qz-rank-label,
.third-rank .qz-rank-label {
    font-size: 25px;
}

.qz-rank-label sub {
    bottom: 0;
    font-size: 25px;
    font-weight: 400;
}

.qz-rank-avatar {
    position: absolute;
    top: 20%;
    font-size: 28px;
    font-weight: 600;
}

.first-rank .qz-rank-avatar {
    font-size: 38px;
    top: 23%;
}

.qz-rank-card h4 {
    font-size: 18px;
    margin: 20px 0 5px;
    font-weight: 400;
    max-width: 250px;
    text-align: center;
    word-wrap: break-word;
    color: #9ea6b0;
}

.qz-rank-score {
    font-size: 16px;
    font-weight: 600;
    color: #c8dfff;
    background: #0b1a31;
    padding: 5px 10px;
    border-radius: 5px;
}

.first-rank svg {
    width: 220px;
    height: 220px;
}

.second-rank svg,
.third-rank svg {
    width: 160px;
    height: 160px;
}


/* table */
.qz-cls-rank-table {
    padding: 2rem;
}

.qz-rk-table {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid #6d809d;
    color: #fff;
    box-shadow: rgb(16 43 82) 0px 10px 10px -10px;
}

.qz-rk-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.qz-rk-table table thead {
    background: #adc6eb;
}

.qz-rk-table table tbody tr,
.qz-rk-table table tbody td {
    color: #bcc3ce;
    transition: 0.3s ease;
}

.qz-rk-table table tbody tr,
.qz-rk-table table tbody td,
.qz-rk-table table thead th {
    padding: 18px 20px;
}

.qz-rk-table table thead th {
    text-align: left;
    white-space: nowrap;
}

.qz-rk-table table tbody td {
    word-wrap: break-word;
    overflow: hidden;
    font-style: normal !important;
    vertical-align: top;
    text-overflow: ellipsis;
    white-space: nowrap !important;
    padding: 18px 20px;
    max-width: 210px;
    border: none;
}

.qz-rk-table table tbody .qz-rkt-uni {
    max-width: 300px;
}

.qz-rk-table table tbody td i {
    color: #2d384a;
}

.qz-rk-table table tbody tr {
    border-bottom: 1px solid #0d1a2f;
}

.qz-rk-table table tbody tr:last-child,
.qz-rk-table table tbody tr:last-child td {
    border-bottom: none;
}

.qz-rk-table tbody tr:hover {
    background: #081a2f;
}

.top-ten-divider {
    background: rgba(59, 130, 246, 0.08);
}

.qz-rk-table table tbody .top-ten-divider {
    border-bottom: 1px solid #1b2f4ed1;
}

.top-ten-divider:hover {
    border-bottom: 1px solid #12223e;
}

.top-ten-divider td:first-child {
    font-weight: 700;
    color: #FFA700;
}

.qz-rk-table table .top-ten-divider i {
    color: #FFA700;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: rgb(159 148 148 / 5%);
}

@media (max-width: 998px) {
    .qz-cls-rank-table {
        padding: 2rem 0;
    }
}

@media (max-width: 767px) {
    .qz-cls-rank-header h1 {
        font-size: 30px;
    }

    .qz-cls-rank {
        gap: 20px;
    }

    .first-rank svg,
    .second-rank svg,
    .third-rank svg {
        width: 160px;
        height: 160px;
    }

    .first-rank {
        order: 1;
    }

    .second-rank {
        order: 2;
    }

    .third-rank {
        order: 3;
    }

    .first-rank .qz-rank-label {
        font-size: 25px;
    }

    .first-rank .qz-rank-avatar {
        font-size: 28px;
        top: 20%;
    }
}

/* Pagination */
.qz-rk-pagin {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 10px;
    gap: 5px;
}

.qz-rk-pagin .fa-chevron-left,
.qz-rk-pagin .fa-chevron-right {
    display: inline-block;
    width: 25px;
    height: 25px;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 13px;
    line-height: 24px;
    cursor: pointer;
}

.qz-rk-pagin .fa-chevron-left:hover,
.qz-rk-pagin .fa-chevron-right:hover,
.qz-rk-pagin button:hover {
    background: #c3daff;
    color: #212529;
}

.qz-rk-pagin button {
    outline: none;
    border: none;
    background: transparent;
    margin: 5px 10px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.qz-rk-pagin .active {
    background: #085bae;
    color: #fff;
}

/* Before Classement show   */
.qz-bf-cls-show {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
    margin: 4rem auto 2rem;
    background: #d1e3ff;
    width: 70%;
    border-radius: 30px;
    text-align: center;
    color: #212529;
}

.qz-bf-cls-bg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #bcd2f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qz-bf-cls-bg svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    fill: #5f779e;
}

.qz-bf-cls-show h1 {
    font-size: 30px;
    font-weight: 600;
    padding-top: 8px;
    text-align: center;

}

.qz-bf-cls-show h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}

.qz-bf-cls-show h4 span {
    background: #a1d0ff;
    color: #212529;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
}

.qz-bf-cls-show h5 {
    font-weight: 500;
    padding-top: 8px;
}

@media (max-width: 998px) {
    .qz-bf-cls-show {
        width: 100%;
        padding: 2rem 0.5rem;
    }

    .qz-bf-cls-show h1 {
        font-size: 25px;
    }

    .qz-rk-table {
        border-radius: 10px;
    }

    .qz-cls-rank {
        margin: 30px 0;
    }
}

/* Before Classement show - e */