.pagination {
    margin-bottom: auto;
    border-radius: 0;
  }
  
  .pagination .page-item {
    width: 100%;
  }
  
  @media screen and (min-width: 420px) {
    .pagination .page-item {
      width: auto;
      min-width: 30px;
    }
  }
  
  
  .pagination .page-item:last-child {
    margin-right: 0;
  }
  
  .pagination .page-item:last-child .page-link {
    /* width: 91px; */
  }
  
  .pagination .page-item:last-child .page-link span {
    display: inline-block;
    margin-left: 3px;
  }
  
  .pagination .page-item .page-link {
    border-radius: 5px;
    background-color: #00b0cf;
    border-color: #00b0cf;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 30px;
    font-weight: bold;
    padding: 0;
    /* width: 30px;
    height: 30px; */
    text-align: center;
    margin: 0 2px;
  }
  
  .pagination .page-item .page-link em {
    font-style: normal;
    display: none;
  }
  
  @media screen and (min-width: 420px) {
    .pagination .page-item .page-link em {
      display: inline;
    }
  }
  
  .pagination .page-item .page-link:hover {
    color: #00b0cf;
    border-color: #00b0cf;
    background-color: #fff;
    /* display: flex; */
  }
  
  .pagination .page-item .page-link:focus {
    text-decoration: none;
    outline: none;
  }
  
  .pagination .page-item.active .page-link {
    background-color: #fff;
    border-color: #00b0cf;
    color: #00b0cf;
  }
  
  .pagination .dots {
    font-family: "Antonio", sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 1;
    color: #00b0cf;
    margin-left: 1px;
    margin-right: 6px;
    align-self: flex-end;
  }
  
  