@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.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';
}
.pager:has(strong){
  display: none;
}
.pager li{
  color: #333;
  width: 2.1875em;
  height: 2.1875em;
  vertical-align: top;
  background-color: #E9F4FF;
  margin: 0 1px;
  overflow: hidden;
  border-radius: 0.3125em;
  background-color:#E9F4FF;
}
.pager li.active{ 
  background-color: var(--theme-blue);
  color: #fff;
}
.pager li a,.pager li span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.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: "FontAwesome";
  content: "\f054";
  font-size: 1.125rem;
}
.pager li:first-child a,.pager li:first-child span{
  transform: rotate(-180deg);
}
@media only screen and (min-width:1025px){
  .pager li:hover{ 
    background-color: var(--theme-blue);
    color: #fff;
  }
}
@media only screen and (max-width:1024px){
  .pager{
    font-size: 1.2em;
  }

}