
.pagination{
    display: inline-block;
    padding-left: 0px;
}

.pagination .page-item{
    float: left;
}

.pagination::after{
    content:'';
    clear:both;
    display:block;
    width:0;
    height:0;
    visibility:hidden;
}

.page-link{
    display: block;
    line-height: 20px;
    font-size: 16px;
    padding: .375rem .75rem;
    color: #1c878d;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.page-item.disabled .page-link {
    color: #6c757d;
}

.page-item.active .page-link {
    background-color: #1c878d;;
    border-color: #1c878d;;
    color: #fff;
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}