.section__tops-block {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 25px;
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-right: -1px;
    align-items: center;
}

.section__tops-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow: auto;
}

.section__tops-position {
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: var(--yellow);
    padding: 3px 15px 3px 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: var(--bgblack);
    border-radius: 18px;
    position: relative;
    transition: all .2s ease;
    border: 2px solid transparent;
}

.section__tops-position_current{
    border: 2px solid var(--yellow);
}

.section__tops-position_loading {
    background-image: none;
    cursor: default;
    overflow: hidden;
}
.section__tops-position_loading:after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--bggray);
    opacity: 0.5;
}

.section__tops-position_loading:before {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 6.4px solid var(--yellow);
    border-color: var(--yellow) transparent var(--yellow) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(0.5);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.section__tops-position:hover {
    background: var(--yellow);
    color: var(--black);
}

.section__tops-position i {
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
    padding: 0 3px;
    line-height: 24px;
}
.section__tops-position .section__tops-points{
    text-align: left;
    color: var(--lightgray);
    padding: 0 3px;
    font-size: 9px;
    text-transform: uppercase;
    transition: all .2s ease;
    line-height: 10px;
    margin-top: -2px;
    margin-bottom: 5px;
    white-space: nowrap;
}

.section__tops-position:hover .section__tops-points {
    color: var(--black);
}

.section__tops-avatar {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 26px;
    height: 26px;
    left: 7px;
    top: calc(50% - 13px);
    background-size: cover;
    border-radius: 50%;
    background-image: url(/local/templates/pikuco/images/noavatar.svg);
}

@media screen and (max-width: 768px) {
    .section__tops-row {
        width: calc(100% + 28px);
        padding: 0 15px 10px;
        margin: 0 -15px -10px;
    }
}