/**
 * @file
 * Alert 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.
 */
.alert-bar {
  background-color: #ace1af;
  color: #195905;
  padding: 0.875rem 7.75rem 0.875rem 13.5rem;
  position: relative;
}
@media screen and (max-width: 87.4375rem) {
  .alert-bar {
    padding: 0.875rem 7rem 0.875rem 12.75rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .alert-bar {
    padding: 0.875rem 4rem 0.875rem 9.75rem;
  }
}
@media screen and (max-width: 27.4375rem) {
  .alert-bar {
    padding: 0.5rem 1rem 0.875rem 4rem;
  }
}
.alert-bar.alert-bar--red {
  background-color: #FFCCCC;
  color: #b22222;
}
.alert-bar.alert-bar--red .alert-bar__icon,
.alert-bar.alert-bar--red .alert-bar__title {
  background-color: #FFCCCC;
}
.alert-bar.alert-bar--red .alert-bar__readmore a {
  color: #b22222;
}
.alert-bar.alert-bar--blue {
  background-color: #b0e0e6;
  color: #191970;
}
.alert-bar.alert-bar--blue .alert-bar__icon,
.alert-bar.alert-bar--blue .alert-bar__title {
  background-color: #b0e0e6;
}
.alert-bar.alert-bar--blue .alert-bar__readmore a {
  color: #191970;
}
.alert-bar.alert-bar--yellow {
  background-color: #ffffe0;
  color: #9b870c;
}
.alert-bar.alert-bar--yellow .alert-bar__icon,
.alert-bar.alert-bar--yellow .alert-bar__title {
  background-color: #ffffe0;
}
.alert-bar.alert-bar--yellow .alert-bar__readmore a {
  color: #9b870c;
}
.alert-bar.alert-bar--green {
  background-color: #ace1af;
  color: #195905;
}
.alert-bar.alert-bar--green .alert-bar__icon,
.alert-bar.alert-bar--green .alert-bar__title {
  background-color: #ace1af;
}
.alert-bar.alert-bar--green .alert-bar__readmore a {
  color: #195905;
}

.alert-bar__icon {
  background-color: #ace1af;
  font-size: 3.75rem;
  position: absolute;
  top: 0.75rem;
  left: 7.75rem;
}
@media screen and (max-width: 87.4375rem) {
  .alert-bar__icon {
    left: 7rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .alert-bar__icon {
    left: 4rem;
  }
}
@media screen and (max-width: 27.4375rem) {
  .alert-bar__icon {
    font-size: 2.25rem;
    left: 0.75rem;
  }
}

.alert-bar__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  background-color: #ace1af;
  display: block;
}
@media screen and (max-width: 27.4375rem) {
  .alert-bar__title {
    font-size: 1rem;
  }
}

.alert-bar__text {
  display: block;
}
@media screen and (max-width: 27.4375rem) {
  .alert-bar__text {
    font-size: 0.875rem;
  }
}
.alert-bar__text p {
  margin: 0.25rem 0 1rem;
}

.alert-bar__readmore {
  display: block;
}
@media screen and (max-width: 27.4375rem) {
  .alert-bar__readmore {
    font-size: 0.875rem;
  }
}
.alert-bar__readmore a {
  font-weight: 700;
  color: #195905;
}
.alert-bar__readmore a:hover {
  text-decoration: none;
}

/*# sourceMappingURL=alert-bar.css.map*/