.pagination .page {
  width: 48px;
  
}

.easyPaginateNav a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-block;
  margin: 5px;
  line-height: 48px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.easyPaginateNav a:hover {
  color: #ff7f00;
  background: #fff;
}

.easyPaginateNav .current {
  background: #ff7f00;
  color: #fff;
}

.easyPaginateNav .prev {
  position: relative;
}

.easyPaginateNav .prev:before {
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -10px;
  content: '';
  transform: rotate(180deg);
  transition: all .2s linear;

}

.easyPaginateNav .prev:after {
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -10px;
  content: '';
  transform: rotate(180deg);
  opacity: 0;
  transition: all .2s linear;
}

.easyPaginateNav .prev:hover:before {
  opacity: 0;
  transition: all .2s linear;
}

.easyPaginateNav .prev:hover:after {
  opacity: 1;
  transition: all .2s linear;
}

.easyPaginateNav .next {
  position: relative;
}

.easyPaginateNav .next:before {
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -10px;
  content: '';
  transition: all .2s linear;
}

.easyPaginateNav .next:after {
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -10px;
  content: '';
  opacity: 0;
  transition: all .2s linear;
}

.easyPaginateNav .next:hover:before {
  opacity: 0;
  transition: all .2s linear;
}

.easyPaginateNav .next:hover:after {
  opacity: 1;
  transition: all .2s linear;
}

.pagination{
  width: inherit!important;
}
.easyPaginateNav .pagination {
  width: inherit!important;
  margin-right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 430px) {
  /*.pagination{
    width: 300px!important;
  }*/

}