.pager{
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  font-family: 'fontello';
}
.pager li{
  color: #6C757D;
  width: 2.75em;
  height: 2.5em;
  border-radius: 0.25em;
  background-color: #fff;
  margin: 0 0.125em;
  overflow: hidden;
  border: 1px solid #E9ECEF;
}
.pager li.active,.pager li .current{ 
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}
.pager li a,.pager li span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pager li:first-child a::before,.pager li:last-child a::before,.pager li:first-child span::before,.pager li:last-child span::before{
  content: "\e92b";
}
.pager li:first-child a,.pager li:first-child span{
  transform: rotate(-180deg);
}
@media only screen and (min-width:1024px){
  .pager li:hover{ 
    color: var(--theme-color);
  }
  .pager li.active:hover{ 
    color: #fff;
  }
}
@media only screen and (max-width:1024px){
  .pager{
    font-size: 1.5em;
  }
}