/*
    - Name: "pager.scss"
    - Description: "Add custom styles to pager"
*/
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.ui-autocomplete {
  border-color: #002855;
  border-color: rgba(0, 40, 85, 0.5);
  background-clip: padding-box;
}

.ui-autocomplete li a {
  display: block;
  color: #002855;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-16);
  text-decoration: none;
}

.ui-autocomplete li a.ui-state-active, .ui-autocomplete li a:hover {
  border-color: #002855;
  background-color: #CCD5E2;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #002855;
}

.pagination {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .pagination {
    margin: 40px 0;
  }
}
.pagination li {
  padding: 8px 4px;
}

.pagination li.next, .pagination li.last, .pagination li.previous, .pagination li.first {
  padding: 8px 10px;
}

@media (min-width: 768px) {
  .pagination li.next, .pagination li.last, .pagination li.previous, .pagination li.first {
    padding: 0 12px;
  }
}
.pagination li.next > a, .pagination li.next > span, .pagination li.last > a, .pagination li.last > span, .pagination li.previous > a, .pagination li.previous > span, .pagination li.first > a, .pagination li.first > span {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.pagination li.next > a span, .pagination li.next > span span, .pagination li.last > a span, .pagination li.last > span span, .pagination li.previous > a span, .pagination li.previous > span span, .pagination li.first > a span, .pagination li.first > span span {
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #002855;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-14);
  line-height: 1.375rem;
  transition: all 0.25s ease-in-out;
}

.pagination li.next > a:hover span, .pagination li.next > span:hover span, .pagination li.last > a:hover span, .pagination li.last > span:hover span, .pagination li.previous > a:hover span, .pagination li.previous > span:hover span, .pagination li.first > a:hover span, .pagination li.first > span:hover span {
  border: 0;
  background-color: transparent;
  color: #002855;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.pagination li.next {
  display: none;
}

@media (min-width: 768px) {
  .pagination li.next {
    display: block;
  }
}
.pagination li.next a {
  display: flex;
  align-items: center;
  transition: all 0.25s ease-in-out;
}

.pagination li.next a::after {
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  margin-left: 12px;
  color: #405D8F;
  transition: all 0.25s ease-in-out;
}

.pagination li.next a:hover::after {
  color: #091D31;
}

.pagination li.last {
  padding: 0;
}

.pagination li.last a {
  display: flex;
  align-items: center;
  font-size: 0;
}

.pagination li.last a > span {
  font-size: 0;
}

.pagination li.last a::after {
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90f";
  color: #405D8F;
  transition: all 0.25s ease-in-out;
}

.pagination li.last a:hover::after {
  color: #091D31;
}

.pagination li.previous {
  display: none;
}

@media (min-width: 768px) {
  .pagination li.previous {
    display: block;
  }
}
.pagination li.previous a {
  display: flex;
  align-items: center;
  transition: all 0.25s ease-in-out;
}

.pagination li.previous a::before {
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  margin-right: 12px;
  color: #405D8F;
  transition: all 0.25s ease-in-out;
}

.pagination li.previous a:hover::before {
  color: #091D31;
}

.pagination li.first {
  padding: 0;
}

.pagination li.first a {
  display: flex;
  align-items: center;
  font-size: 0;
}

.pagination li.first a > span {
  font-size: 0;
}

.pagination li.first a::before {
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e910";
  color: #405D8F;
  transition: all 0.25s ease-in-out;
}

.pagination li.first a:hover::before {
  color: #091D31;
}

.pagination li span:not(.exclude), .pagination li a:not(.exclude) {
  margin: 0 !important;
  padding: 3px 11px;
  border: 1px solid #777779;
  border-radius: 8px;
  background-color: transparent;
  color: #777779;
  font-size: var(--font-16);
  line-height: 1.5rem;
  transition: all 0.25s ease-in-out;
}

.pagination li span:not(.exclude):hover, .pagination li a:not(.exclude):hover {
  border: 1px solid #405D8F;
  background-color: #405D8F;
  color: #fff;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.pagination li[role=presentation] span {
  border: 0;
  background-color: transparent;
  color: #002855;
}

.pagination li[role=presentation] span:hover {
  border: 0;
  background-color: transparent;
  color: #002855;
}

.page-item.active .page-link {
  padding: 2px 11px;
  border: 1px solid #405D8F;
  border-radius: 8px;
  background-color: #405D8F;
  color: #fff;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-22);
  line-height: 1.875rem;
}

[class*=style-2] .page-item.active .page-link {
  border: 0;
  background-color: transparent;
  color: #002855;
}

[class*=style-2] .pagination li a:not(.exclude) {
  border: 0;
  background-color: transparent;
  color: #777779;
}

[class*=style-2] .pagination li.next, [class*=style-2] .pagination li.previous {
  padding: 0 10px;
}

[class*=style-2] .pagination li.next a span, [class*=style-2] .pagination li.previous a span {
  font-size: 0;
}

[class*=style-3] .page-item.active .page-link {
  border-radius: 0;
}

[class*=style-3] .pagination li span:not(.exclude), [class*=style-3] .pagination li a:not(.exclude) {
  border: 0;
  border-radius: 0;
}

[class*=style-3] .pagination li.next, [class*=style-3] .pagination li.previous {
  padding: 0 10px;
}

[class*=style-3] .pagination li.next a span, [class*=style-3] .pagination li.previous a span {
  font-size: 0;
}
/*# sourceMappingURL=pager.css.map */
