.pagination {
    margin: 20px;
    width: 100%;
    position: relative;
    display: flex;
  }
  
  .page-link {
    position: relative;
    background-color: #eaf4fe;
    display: inline-block;
    margin: 0 12px 0 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #6987ab;
    font-size: 14px;
    border-radius: 100%;
    transition: all .3s ease;
    font-weight: 700; }
  
  .page-link:hover {
    background-color: #0083ff;
    color: #fff;
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15); }
    
    // Opinionated: add "hand" cursor to non-disabled .page-link elements
  .page-link:not([disabled]):not(.disabled) {
    cursor: pointer; }
  
  .page-item.active .page-link {
    background-color: transparent;
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
    color: #0083ff; }
  
  .page-item.disabled .page-link {
    pointer-events: none;
    cursor: auto; }
  