.pagination {
    display: flex;
  flex-direction: row;
  gap: .2rem;
  flex-wrap: nowrap;
  }
  .ord-list {
    background-color: transparent;
    padding: .3rem .6rem;
    white-space: nowrap;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: center;
    width: min-content;
    align-items: center;
    border-radius: .2rem;
    transition: .2s ease;
    border: 0 !important;
    font-family: inherit;
    font-size: initial;
    line-height: normal;
  }
  .pagination .current{
    background: #18baad;
  }
 
@media (min-width: 1024px) {
.pagination {
gap: .5rem;
}

}