.pagination {
    display: flex;
    gap: 16px;
    align-items: center;
}

.arrow {
    width: 32px;
    height: 23px;
}

.arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.arrow.pred {
    transform: rotate(-180deg);
}

.page {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-foreground-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.2px;
}

.page.active {
    border-radius: 50px;
    border: .8px solid var(--color-foreground-primary);
}

/* 375 */
@media screen and (max-width: 725px) {
    .pagination {
        gap: 8px;
    }

    .arrow {
        width: 21px;
        height: 18px;
    }

    .page {
        width: 18px;
        height: 18px;

        font-size: 14px;
        line-height: 110%;
    }
}