.pagination-group {
    display: flex;
    align-items: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > a {
    display: inline;
}
.pagination > a,
.pagination > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > a:first-child,
.pagination > span:first-child {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > a:last-child,
.pagination > span:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-right: 40px;
}
.pagination > a:hover,
.pagination > span:hover,
.pagination > a:focus,
.pagination > span:focus {
    z-index: 3;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}
.pagination > a.currentStep,
.pagination > span.currentStep,
.pagination > a.currentStep:hover,
.pagination > span.currentStep:hover,
.pagination > a.currentStep:focus,
.pagination > span.currentStep:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pagination > span.disabled,
.pagination > span.disabled:hover,
.pagination > span.disabled:focus,
.pagination > a.disabled,
.pagination > a.disabled:hover,
.pagination > a.disabled:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
