@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('../fonts/fa-regular-400.eot');
    src: url('../fonts/fa-regular-400.eot?#iefix') format('embedded-opentype'),
        url('../fonts/fa-regular-400.woff2') format('woff2'),
        url('../fonts/fa-regular-400.woff') format('woff'),
        url('../fonts/fa-regular-400.ttf') format('truetype'),
        url('../fonts/fa-regular-400.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff'),
        url('../fonts/Roboto-Regular.ttf') format('truetype'),
        url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
.pager{
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  font-family: 'roboto';
  transform: translateY(20vh);
  opacity: 0;
  transition: transform 0.75s,opacity 0.75s;
}
.pager.actived{
  transform: translateY(0);
  opacity: 1;
}
.pager li{
  color: #999;
  width: 2.8125em;
  height: 2.8125em;
  vertical-align: top;
  background-color: #fafafa;
  margin: 0 0.125em;
  overflow: hidden;
}
.pager li.active{ 
  background-color: var(--theme-color);
  color: #fff;
}
.pager li a,.pager li span{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125em;
  width: 100%;
  height: 100%;
}
.pager li.active a{
  text-decoration: underline;
}
.pager li:first-child a,.pager li:last-child a,.pager li:first-child span,.pager li:last-child span{
  font-size: 0;
}
.pager li:first-child a::before,.pager li:last-child a::before,.pager li:first-child span::before,.pager li:last-child span::before{
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  font-size: 1.125rem;
}
.pager li:first-child a,.pager li:first-child span{
  transform: rotate(-90deg);
}
.pager li:last-child a,.pager li:last-child span{
  transform: rotate(90deg);
}
@media only screen and (min-width:1025px){
  .pager li:hover{ 
    color: var(--theme-color);
  }
  .pager li.active:hover{ 
    color: #fff;
  }
}
@media only screen and (max-width:1024px){
  .pager{
    font-size: 0.875em;
  }
}