/**
 * TABLE OF CONTENTS
 *
 * SETTINGS
 * Global..................Globally-available variables and config.
 *
 * TOOLS
 * Mixins..................Useful mixins.
 *
 * COMPONENTS
 * 
 * 
 * MODULES
 *
 */
/*------------------------------------*\
  #SETTINGS
\*------------------------------------*/
/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/*------------------------------------*\
  #TOOLS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
* [Strip the pesky units from values]
* @param  {[Number]} $value
*/
/**
* [Fluid Type]
*/
/*------------------------------------*\
  #EXTERNALS
\*------------------------------------*/
.secondary-navigation {
  position: relative;
}

@media (min-width: 48rem) {
  .secondary-navigation {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .secondary-navigation__title {
    margin-bottom: 1em;
  }
  .secondary-navigation__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .secondary-navigation__item--extra {
    margin-top: 2rem;
  }
  .secondary-navigation__anchor.set--active {
    color: #ff491c;
    font-weight: 700;
  }
}
@media (max-width: 47.9375rem) {
  .secondary-navigation {
    margin-bottom: 2rem;
  }
  .secondary-navigation__title {
    margin-bottom: 0.5em;
  }
  .secondary-navigation__trigger {
    position: relative;
    width: 100%;
    padding: 1rem;
    text-align: left;
    border: solid 0.0625rem;
    border-radius: 0.125rem;
    font-weight: 600;
  }
  .secondary-navigation__trigger-icon {
    right: 1rem;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
  }
  .toggle--active .secondary-navigation__trigger-icon {
    -webkit-transform: scale(-1);
            transform: scale(-1);
  }
  .secondary-navigation__list {
    z-index: 1;
    position: absolute;
    top: calc(100% - 0.0625rem);
    left: 0;
    width: 100%;
    background-color: #FFF;
    border: solid 0.0625rem;
  }
  .secondary-navigation__list:not(.toggle--active) {
    opacity: 0;
    visibility: hidden;
  }
  .secondary-navigation__item--extra {
    margin-top: 1rem;
  }
  .secondary-navigation__anchor {
    display: block;
    padding: 1rem;
  }
  .secondary-navigation__anchor.set--active {
    background-color: #F6F6F8;
    font-weight: 600;
    color: #ff491c;
  }
}
/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
.cms-page__contents:not(:first-child) {
  margin-top: 1.5rem;
}

@media (min-width: 48rem) {
  .cms-page--group,
  .cms-page--single {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 47.9375rem) {
  .cms-page--group,
  .cms-page--single {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

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