/**
 * @file
 * Accordion 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.
 */
.accordion {
  margin: 4rem 0;
}
@media screen and (max-width: 73.0625rem) {
  .accordion {
    margin: 3rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion {
    margin: 2rem 0;
  }
}
.accordion details {
  margin-bottom: 1.25rem;
}
.accordion summary {
  position: relative;
  background: #EFEFEF;
  color: #003366;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  outline: none;
  padding: 1.675rem 4rem 1.675rem 2.5rem;
  cursor: pointer;
  list-style: none;
}
@media screen and (max-width: 87.4375rem) {
  .accordion summary {
    font-size: 1.25rem;
    padding: 1.25rem 3.25rem 1.25rem 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion summary {
    font-size: 1rem;
  }
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary:after {
  content: "+";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2rem;
  position: absolute;
  right: 2rem;
  top: 1.875rem;
}
@media screen and (max-width: 87.4375rem) {
  .accordion summary:after {
    top: 1.375rem;
    right: 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion summary:after {
    top: 1.125rem;
    right: 1.25rem;
  }
}
.accordion details[open] summary:after {
  content: "-";
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.75rem;
}
.accordion .accordion__content {
  margin: 0;
  padding: 2rem 2rem 0.25rem 2.5rem;
}
@media screen and (max-width: 87.4375rem) {
  .accordion .accordion__content {
    padding: 1.5rem 1.25rem 0.25rem 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion .accordion__content {
    padding-top: 1rem;
  }
}
.accordion.accordion--large details {
  margin-bottom: 2.75rem;
}
@media screen and (max-width: 73.0625rem) {
  .accordion.accordion--large details {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion.accordion--large details {
    margin-bottom: 1.25rem;
  }
}
.accordion.accordion--large details.accordion--columns .accordion__content {
  padding: 2rem 0 0;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
.accordion.accordion--large details.accordion--columns .accordion__content a {
  color: #003366;
  text-decoration: none;
}
.accordion.accordion--large details.accordion--columns .accordion__content a:hover {
  text-decoration: underline;
}
.accordion.accordion--large details.accordion--columns .accordion__content ul {
  padding: 0;
  list-style: none;
}
.accordion.accordion--large details.accordion--columns .accordion__content ul ul {
  padding-left: 1.25rem;
  margin: 0;
}
.accordion.accordion--large details.accordion--columns .accordion__content ul ul a {
  font-weight: 400;
}
@media screen and (max-width: 47.9375rem) {
  .accordion.accordion--large details.accordion--columns .accordion__content {
    padding: 1rem 1.5rem 0 1.5rem;
    -moz-columns: auto;
         columns: auto;
  }
}
.accordion.accordion--large summary {
  background: none;
  border: 0.375rem solid #003366;
  font-family: "Proxima-Nova", sans-serif;
  text-transform: uppercase;
  font-size: 2.25rem;
  padding: 2.125rem 7rem 2.125rem 3.5rem;
}
@media screen and (max-width: 87.4375rem) {
  .accordion.accordion--large summary {
    font-size: 1.75rem;
    padding: 2rem 4.5rem 2rem 2.5rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .accordion.accordion--large summary {
    padding: 1.5rem 4rem 1.5rem 2rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion.accordion--large summary {
    font-size: 1.25rem;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border-width: 0.25rem;
  }
}
.accordion.accordion--large summary:after {
  font-family: "Muli", Arial, sans-serif;
  line-height: 1.5rem;
  font-size: 4rem;
  top: 2.5rem;
  right: 3rem;
}
@media screen and (max-width: 87.4375rem) {
  .accordion.accordion--large summary:after {
    font-size: 3rem;
    top: 2.125rem;
    right: 2rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .accordion.accordion--large summary:after {
    top: 1.675rem;
    right: 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion.accordion--large summary:after {
    font-size: 2rem;
    top: 0.875rem;
    right: 1.25rem;
  }
}
.accordion.accordion--large details[open] summary:after {
  font-size: 6rem;
}
@media screen and (max-width: 87.4375rem) {
  .accordion.accordion--large details[open] summary:after {
    font-size: 5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion.accordion--large details[open] summary:after {
    font-size: 3rem;
    line-height: 1.25rem;
  }
}
.accordion.accordion--large .accordion__content {
  padding: 2rem 0 0.125rem;
}
@media screen and (max-width: 87.4375rem) {
  .accordion.accordion--large .accordion__content {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .accordion.accordion--large .accordion__content {
    padding: 1rem 1.5rem 0 1.5rem;
  }
}

/*# sourceMappingURL=accordion.css.map*/