/* Mixins */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
@media only screen and (max-width: 959px) {
  .page-search .layout-inner-container {
    padding-bottom: 8rem;
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 960px) {
  .page-search .layout-inner-container {
    padding-bottom: 9rem;
    padding-top: 3.5rem;
    max-width: 87.6rem;
  }
}
.page-search header {
  font-family: "Roboto-Medium", sans-serif !important;
  margin-bottom: 2.5rem;
}
.page-search .views-row {
  margin-bottom: 2.5rem;
}
.page-search .views-field-title h2 {
  font-family: "Roboto-Regular", sans-serif !important;
  font-size: 1.8rem;
  line-height: 1.4 !important;
  margin: 0;
}
.page-search .empty {
  text-align: center;
}