.pagination {
  border-radius: 5px;
  background-color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.pagi-numbers {
  display: flex;
  flex-direction: row;
  /*    justify-content: space-evenly;*/
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}
.pagi-numbers a,
.pagi-numbers span {
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #b8b8b6;
  border-radius: 5px;
  flex: 1 0 auto;
  max-width: 50px;
  background-color: #fdfdfd;
}
.pagi-numbers a:hover,
.pagi-numbers span:hover {
  color: #303030;
}
.pagi-numbers span {
  margin: auto 10px;
  color: #b8b8b6;
}
.pagi-numbers .active,
.pagi-numbers .current {
  background: #fffae0;
  color: #ffc107;
  border-radius: 5px;
  padding: 11px 0px;
  width: 30px;
  max-width: 88px;
}
.pagi-numbers .prev,
.pagi-numbers .next {
  position: relative;
  width: 14px;
  height: auto;
  margin: auto 15px;
  font-size: 0;
  background-color: transparent;
  border-radius: 0;
}
.pagi-numbers .prev {
  border-right: 1px #e8e8e1 solid;
}
.pagi-numbers .next {
  border-left: 1px #e8e8e1 solid;
}
.pagi-numbers .prev::before,
.pagi-numbers .next::before {
  font-family: "Sportbet";
  color: #b8b8b6;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  font-size: 14px;
  font-weight: normal;
}
.pagi-numbers .prev::before {
  content: "\e901";
}
.pagi-numbers .next::before {
  content: "\e902";
}
.pagi-numbers .prev:hover:before,
.pagi-numbers .next:hover:before {
  color: #303030;
}
@media screen and (max-width: 991px) {
  .pagi-numbers .pages-7 {
    display: none;
  }
}
@media screen and (max-width: 850px) {
  .pagi-numbers .pages-6 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .pagi-numbers .pages-5 {
    display: none;
  }
  .pagi-numbers {
    border: 0;
  }
  .pagi-numbers .prev,
  .pagi-numbers .next {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .pagi-numbers .pages-4 {
    display: none;
  }
}
