/**
 * @file
 * search styles
 */
@charset 'UTF-8';
.search-results hr{
   display: none;
}
.search-results > a{
   font: 700 2.2rem Oswald;
   display: block;
}
.search-results > a:nth-of-type(n+2){
   border-top: 1px solid #7086c7;
   padding-top: 1.6rem;
}
.search-results .lssrchres{
   font-size: 0.8em;
   font-weight: normal;
   padding-bottom: 1.6rem;
}
.search-results .lssrchres strong{
   font-weight: bold;
}
.search-results .pagination ul{
   margin: 1em auto;
   padding: 0;
   list-style: none;
   display: flex;
   
}
.search-results li.disabled{
   display: none;
}
.search-results .pagination ul > li > a{
   display: block;
   text-align: center;
   font-weight: bold;
   width: 4.5rem;
   line-height: 4.5rem;
   background-color: #7086c7;
   color: white;
   font-size: 1.6rem;
   text-decoration: none;
   font-style: normal;
   transition: all 0.3s ease;
}
.search-results .pagination ul > li > a:hover,
.search-results .pagination ul > li.active > a{
   background-color: #183589;
   color: white;
}

