.pager {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: right;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  align-items: center;
}
.pager li {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  padding: 3px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  background: #ffffff;
  color: #1a365d;
  font-weight: normal;
  border: 1px solid #1a365d;
}
.pager li.prev {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  transform: rotateZ(180deg);
  background: #ffffff url(../../images/arrow.svg) no-repeat center center;
}
.pager li.next {
  width: 50px;
  height: 50px;
  margin-left: 20px;
  background: #ffffff url(../../images/arrow.svg) no-repeat center center;
}
.pager li.disable {
  cursor: auto;
  background-color: #ffffff;
}
.pager li.current {
  color: #ffffff;
  background: #1a365d;
}
@media screen and (max-width: 909px) {
  .pager {
    justify-content: center;
  }
  .pager li.prev {
    margin-right: 10px;
  }
  .pager li.next {
    margin-left: 10px;
  }
}
