.block-tendencias{
    background-color: #3A547E;
    padding: 5px 15px;
    color: #FFF;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    scrollbar-width: none;
}

.block-tendencias::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent; /* make scrollbar transparent */
}

.block-tendencias strong{
    font-size: 13px;
    margin-right: 5px;
    max-width: 75px;
}

.block-tendencias .list-tendencias{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.block-tendencias .list-tendencias li.item-tendencia{
    min-width: max-content;
}

.block-tendencias .list-tendencias li.item-tendencia:last-child{
    margin-right: 0;
}

.block-tendencias .list-tendencias li.item-tendencia a{
    display: block;
    color: #FFF;
    font-size: 13px;
    padding: 0 5px;
    position: relative;
}

.block-tendencias .list-tendencias li.item-tendencia a::after{
    content: "|";
    color: #FFF;
    position: absolute;
    right: -1px;
}
.block-tendencias .list-tendencias li.item-tendencia:last-child a::after{
    content: "";
    display: none;
}

.block-tendencias.count-8 .list-tendencias li.item-tendencia a,
.block-tendencias.count-7 .list-tendencias li.item-tendencia a{
    font-size: 11px;
}
.block-tendencias.count-6 .list-tendencias li.item-tendencia a{
    font-size: 12px;
}

@media(min-width: 1480px){
    .block-tendencias{
        justify-content: center;
    }
}