/**
 * @file
 * Search Callout Bar 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-callout-bar {
  position: relative;
  width: calc(100vw - 8px);
  left: calc((-100vw + 1316px) / 2);
  background-color: #003366;
  margin: 6rem 0;
  padding: 6rem 6%;
}
@media screen and (max-width: 94.3125rem) {
  .search-callout-bar {
    left: -6.8%;
    width: 113.6%;
  }
}
@media screen and (max-width: 73.0625rem) {
  .search-callout-bar {
    padding: 3.5rem 6%;
    margin: 3rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .search-callout-bar {
    padding: 2.5rem 6%;
    margin: 2rem 0;
  }
}
.search-callout-bar .search-callout-bar__container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 73.0625rem) {
  .search-callout-bar .search-callout-bar__container {
    flex-wrap: wrap;
  }
}

.search-callout-bar__title {
  font-size: 4.5rem;
  color: #ffffff;
  margin: 0;
  padding-right: 2rem;
  width: 50%;
}
@media screen and (max-width: 94.3125rem) {
  .search-callout-bar__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .search-callout-bar__title {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 1.375rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .search-callout-bar__title {
    font-size: 2.5rem;
  }
}

.search-callout-bar__searchform {
  width: 50%;
  display: flex;
}
@media screen and (max-width: 73.0625rem) {
  .search-callout-bar__searchform {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.search-callout-bar__searchform .search-callout-bar__search-field {
  width: calc(100% - 102px);
  border: none;
  background-color: #002A54;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 2.25rem 3rem;
}
@media screen and (max-width: 87.4375rem) {
  .search-callout-bar__searchform .search-callout-bar__search-field {
    font-size: 1.125rem;
    padding: 2rem;
    width: calc(100% - 89px);
  }
}
@media screen and (max-width: 47.9375rem) {
  .search-callout-bar__searchform .search-callout-bar__search-field {
    font-size: 1rem;
    padding: 1.5rem;
    width: calc(100% - 68px);
  }
}
.search-callout-bar__searchform .search-callout-bar__search-field::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.search-callout-bar__searchform .search-callout-bar__search-field::placeholder {
  color: #ffffff;
}

.search-callout-bar__submit {
  border: none;
  background-color: #002040;
  width: 6.375rem;
  transition: background-color 0.2s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 87.4375rem) {
  .search-callout-bar__submit {
    width: 5.5625rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .search-callout-bar__submit {
    width: 4.25rem;
  }
}
.search-callout-bar__submit:hover {
  background-color: #002A54;
  transition: background-color 0.2s ease-out;
}
.search-callout-bar__submit svg {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 87.4375rem) {
  .search-callout-bar__submit svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.search-callout-bar__submit span {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/*# sourceMappingURL=search-callout-bar.css.map*/