#suppliers {
    margin:0;
    padding:0;
    list-style: none;
    height: 70px;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    align-items: center;
}

#suppliers li {
    margin:0;
    list-style: none;
    display: block;
}

#suppliers li > a {
    margin:0;
    padding:0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#suppliers .suppliers__item_logo {
    padding: 1rem;
    background: var(--theme-color-background-light);
    border-radius: var(--block-border-radius);
    height: 4.6rem;
    display: flex;
    align-items: center;
}

.suppliers [data-controls=prev] {
    position: absolute;
    margin-top: -30px;
    top: 50px;
    left: 0;
    width: 30px;
    height: 30px;
    background: url(/images/s-arrows.png) no-repeat 0 -30px;
    border: none;
    text-indent: 9999px;
    overflow: hidden;
    z-index: 10;
}

.suppliers [data-controls=next] {
    position: absolute;
    margin-top: -30px;
    top: 50px;
    right: 0;
    width: 30px;
    height: 30px;
    border: none;
    background: url(/images/s-arrows.png) no-repeat -30px -30px;
    text-indent: 9999px;
    overflow: hidden;
    z-index: 10;
}

.suppliers [data-controls=prev]:hover {
    background-position: 0 0;
}

.suppliers [data-controls=next]:hover {
    background-position: -30px 0;
}

.suppliers {
    margin-left: 0px;
    position: relative;
    margin-bottom: 3.5rem;
}

.suppliers li {
    background-size: 100% !important;
}