.bst-pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.bst-pagination__list {
    list-style: none;
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.bst-pagination__button {
    font-family: 'Open Sans' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    color: #FFFFFF;
    padding: 7px 13px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1e-06);
    color: var(--ast-global-color-1, #394a80);
}

.bst-pagination__button:hover,
.bst-pagination__button:focus {
    background-color: #F1F5FB;
    cursor: pointer;
}


.bst-pagination__button--active {
    background-color: var(--ast-global-color-1, #394a80);
    color: white;
}

.bst-pagination__button--active:hover,
.bst-pagination__button--active:focus {
    background-color: #F1F5FB;
    color: var(--ast-global-color-1, #394a80);
}

.bst-pagination__button--arrow,
.bst-pagination__button--dots {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bst-pagination__button--arrow::after {
    display: block;
    width: 6px;
    height: 10px;
    line-height: 0;
}

.bst-pagination__button--dots::after {
    display: block;
    line-height: 0;
}

.bst-pagination__button--arrow-left::after {
    content: url('../images/pagination_arrow_left.svg');
}

.bst-pagination__button--arrow-right::after {
    content: url('../images/pagination_arrow_right.svg');
}

.bst-pagination__button--dots::after {
    content: url('../images/dots_icon.svg');
}
