.stores {
    background-color: #f4f4f4;
}

.letters-brand {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-height: calc(100vh - 500px);
    background-color: #fff;
    border-radius: 10px 0 0 10px;
    z-index: 5;
    padding: 5px 0;
    opacity: 0;
    transition: opacity .3s;
}

.letters-brand.active {
    opacity: 1;
    overflow: auto;
}

.letters-brand li a {
    padding: 4px 23px;
    font-family: var(--font-family);
    text-transform: uppercase;
    font-weight: bold;
    justify-content: center;
    transition: color .3s;
}

.brands__block p {
    width: 100%;
    margin-left: 16px;
    margin-right: 16px;
    border-bottom: 1px solid #e8e8e8;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.brands__block a.brands__item {
    overflow: hidden;
}

.brands__block a.brands__item span {
    text-align: center;
    font-weight: bold;
}

.brands__block a.brands__item span.small-text {
    font-size: .8em;
}

.letters-brand li.uk-active>a {
    color: #f00;
}

@media (max-width: 1599px) {
    .letters-brand li a {
        padding: 1px 5px;
    }
}

@media (max-width: 959px) {
    .letters-brand {
        max-height: calc(100vh - 300px);
    }
}

@media (max-width: 480px) {
    .brands .index-h2 {
        font-size: 22px;
    }
}

@media (max-width: 399px) {
    .brands__item img {
        max-width: 75px;
    }
}