/**
 * @file
 * Search Page styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.search-page__container,
.search__count {
  width: 82.25rem;
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (max-width: 94.3125rem) {
  .search-page__container,
  .search__count {
    width: 100%;
    padding: 3rem 6%;
  }
}
@media screen and (max-width: 47.9375rem) {
  .search-page__container,
  .search__count {
    padding: 2rem 6%;
  }
}

.search__form {
  background-color: #EFEFEF;
  padding: 2rem;
}
@media screen and (max-width: 47.9375rem) {
  .search__form {
    padding: 1.25rem;
  }
}
.search__form form {
  display: flex;
}
@media screen and (max-width: 27.4375rem) {
  .search__form form {
    display: block;
  }
}
.search__form form .form-item {
  width: 40%;
  min-width: 15rem;
}
@media screen and (max-width: 27.4375rem) {
  .search__form form .form-item {
    min-width: inherit;
    width: 100%;
  }
}
.search__form form input[type=search] {
  background-color: #ffffff;
  padding: 0.688rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.12);
  border: 1px solid #EFEFEF;
  width: calc(100% - 1rem);
  box-sizing: border-box;
}
@media screen and (max-width: 27.4375rem) {
  .search__form form input[type=search] {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.search__form form input[type=submit] {
  color: #ffffff;
  background-color: #005028;
  font-weight: 700;
  border: none;
  width: 100%;
  padding: 0.75rem 1.25rem;
  margin: 0;
  transition: background-color 0.2s;
}
@media screen and (max-width: 27.4375rem) {
  .search__form form input[type=submit] {
    width: 92%;
    margin-top: 1rem;
  }
}
.search__form form input[type=submit]:hover {
  background-color: #2b7751;
}

.search__count {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.25rem;
  padding: 2.25rem 0 0;
}
@media screen and (max-width: 47.9375rem) {
  .search__count {
    font-size: 1.5rem;
  }
}

.search__item {
  text-decoration: none;
  display: block;
  margin-bottom: 2.25rem;
  color: #003366;
}
@media screen and (max-width: 47.9375rem) {
  .search__item {
    margin-bottom: 1.5rem;
  }
}
.search__item:hover {
  text-decoration: underline;
}
.search__item .content__title {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 47.9375rem) {
  .search__item .content__title {
    font-size: 1.5rem;
  }
}
.search__item .content__description {
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 47.9375rem) {
  .search__item .content__description {
    font-size: 0.875rem;
  }
}

.pager {
  text-align: center;
  margin: 4rem 0 0;
}
@media screen and (max-width: 47.9375rem) {
  .pager {
    margin: 2rem 0 0;
  }
}

.pager__items {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media screen and (max-width: 47.9375rem) {
  .pager__items {
    font-size: 1.25rem;
  }
}

.pager__item {
  display: inline-block;
  margin: 0 0.5rem;
}
.pager__item a {
  color: #005028;
  text-decoration: none;
}
.pager__item a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=search-page.css.map*/