/* 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 (max-width: 1199px) {
  .block-route-search {
    height: 40.7rem;
    padding: 3rem 0 3rem 0.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .block-route-search {
    height: 40.6rem;
    max-width: 34.4rem;
    padding: 3rem 0.5rem;
  }
}
.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;
  height: 27rem;
}
.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;
}
.block-route-search .hfs_widgetAppContainer .lyr_atomBtnWrap {
  margin-top: 0.5rem;
  text-align: center;
}
.block-route-search .hfs_widgetAppContainer .lyr_atomPrimaryBtn {
  font-family: "Roboto-Medium", sans-serif !important;
  font-size: 1.8rem;
  line-height: 1.4 !important;
  border-radius: 2.7rem;
  margin: 0 auto;
  padding: 1.1rem 4.2rem;
  text-transform: none;
}
@media only screen and (max-width: 1199px) {
  .block-route-search .hfs_widgetAppContainer .lyr_atomPrimaryBtn {
    max-width: 60rem;
  }
}
.block-route-search .hfs_widgetAppContainer[widget-tab=SQ] .lyr_atomBtnWrap {
  margin-top: 6.1rem;
}

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