
.pagination__wrap {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--offset-3xs);
    padding: var(--offset-xs);
    background-color: var(--base-100);
    border-radius: var(--offset-xxs);
}

/* Счетчик элементов */
.pagination__counter {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.02em;
    color: var(--base-1000);
}

/* Переключение страниц */
.pagination__pages {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 8px;
}

.pagination__pages a {
    height: 36px;
    width: 36px;
    display: grid;
    align-content: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--base-1000);
}

.pagination__pages a.page__selected {
    font-weight: bold;
    border-radius: 50%;
    background-color: var(--accent-300);
    color: var(--accent-1000);
}

/* Переделать на nativejs-select */
/* Дропдаун Показать */
.pagination__quantity {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    align-items: center;
    gap: var(--offset-3xs);
}

.pagination__dropdown {
    -moz-appearance:none;
    -webkit-appearance:none;
    appearance:none;
    width: 66px;
    height: 36px;
    padding: var(--offset-3xs) var(--offset-xxs);
    border: none;
    border-radius: var(--offset-3xs);
    position: relative;
    background: var(--base-200) url('/img/icons/down.svg') no-repeat;
    background-position: 75% 50%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: 0.01em;
    color: var(--base-1000);
    cursor: pointer;
}
/* /переделать на nativejs-select */