/* pagination */
.pagination-items {
  display: block;
}

ul.pagination {
  width: 100%;
  background: none;
  border: none;
  height: auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.pagination li:first-child,
ul.pagination li:last-child {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

ul.pagination li:hover {
  background: none;
}

ul.pagination li > a {
  padding: 7px 12px;
  font-weight: 700;
  font-size: 12px;
  color: #FFFFFF;
  border-radius: 3px;
  position: relative;
  white-space: nowrap;
}

ul.pagination > .active > a,
ul.pagination > .active > a:hover {
  background: linear-gradient(180deg, #FA57CC 0%, #F444B8 34.9%, #E51E8D 67.19%, #E51E8D 83.33%, #BB116D 100%);
}

ul.pagination li.disabled > a {

}

ul.pagination li:nth-child(1) > a::after {
  content: "";
  width: 1px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #39BAF2;
  transform: translate(25px, -45%);
  opacity: 100%;

}

ul.pagination li:last-child > a::after {
  content: "";
  width: 1px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #39BAF2;
  transform: translate(0, -50%);
  opacity: 100%;
}
