/* 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);}
 *
 */
.block-route-search {
  background: white;
  -webkit-box-shadow: 0 2.2rem 2.8rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 2.2rem 2.8rem rgba(0, 0, 0, 0.12);
}
@media only screen and (min-width: 1200px) {
  .block-route-search {
    max-width: 34.4rem;
  }
}
.block-route-search .block-title {
  padding: 0 2rem;
}
.block-route-search .block-title h2 {
  margin-bottom: 0;
}
.block-route-search .block-content {
  margin-top: 2rem;
  padding-left: 0.5rem;
}
.block-route-search #ritr_container {
  background: transparent;
}
.block-route-search #ritr_container:not(.hfs_formWrapper) {
  background-image: url("../images/components/block-route-search/ajax-loader.gif");
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

footer {
  border-top: 0 !important;
  padding: 0 !important;
}