/**
 * 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
\*------------------------------------*/
/*------------------------------------*\
  #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-container {
    margin-top: -1.5rem; }
  .secondary-navigation {
    padding-top: 1.5rem;
    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: 3.75rem; }
  .secondary-navigation__anchor.set--active {
    color: #14100B;
    font-weight: 500; } }

@media (max-width: 47.9375rem) {
  .secondary-navigation {
    margin-bottom: 2rem; }
  .secondary-navigation__title {
    margin-bottom: .5em; }
  .secondary-navigation__trigger {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: solid 0.0625rem #E1E1E1;
    font-weight: 700;
    text-transform: uppercase; }
  .secondary-navigation__trigger-icon {
    right: 0;
    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: 2;
    position: absolute;
    top: calc(100% - .0625rem);
    left: 0;
    width: 100%;
    background-color: #FFF;
    border: solid .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;
    padding: 1rem; }
    .secondary-navigation__anchor.set--active {
      background-color: #F6F5F5;
      font-weight: 500;
      color: #14100B; } }

/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
@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; } }

.mt-1 {
  margin-top: .5rem; }

.mt-2 {
  margin-top: 1rem; }

.mt-4 {
  margin-top: 2rem; }

.mt-6 {
  margin-top: 3rem; }

.mt-8 {
  margin-top: 4rem; }

.mb-2 {
  margin-bottom: 1rem; }

.mb-4 {
  margin-bottom: 2rem; }

.mb-6 {
  margin-bottom: 3rem; }

.mb-8 {
  margin-bottom: 4rem; }

.underline-link {
  color: #0563c1;
  text-decoration: underline; }

.required-note {
  margin-top: 1.5rem;
  margin-bottom: -1.5rem; }

.appeal-page .required-note {
  margin-bottom: .7rem; }

.contact-us-signup-message {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  top: 15%;
  left: 50%;
  z-index: 999; }
  .contact-us-signup-message .alert-danger {
    background-color: #f7a2a2; }
  .contact-us-signup-message .alert-success {
    background-color: #a4f899; }

.contact-us-signup-alert {
  -webkit-animation: fade 5s linear forwards;
          animation: fade 5s linear forwards;
  -webkit-box-shadow: 1px 1px 5px grey;
          box-shadow: 1px 1px 5px grey;
  padding: 1em; }

@-webkit-keyframes fade {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fade {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }
  .contact-us-signup-alert.show {
    display: block; }

/*unsubscribe page */
/* Container */
.toggle-container {
  /* Slider */ }
  .toggle-container .toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px; }
  .toggle-container .toggle input {
    opacity: 0;
    width: 0;
    height: 0; }
  .toggle-container .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 34px; }
  .toggle-container .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 50%; }
  .toggle-container input:checked + .slider {
    background-color: #4CAF50; }
  .toggle-container input:checked + .slider:before {
    -webkit-transform: translateX(28px);
            transform: translateX(28px); }

.hide-on-select {
  display: none; }

.contact-us-customer-type, .contact-us-update-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 40px;
  /* Hide default radio */
  /* Selected state via input:checked */ }
  .contact-us-customer-type .customer-type-options, .contact-us-customer-type .update-type-options, .contact-us-update-type .customer-type-options, .contact-us-update-type .update-type-options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 47.9375rem) {
      .contact-us-customer-type .customer-type-options, .contact-us-customer-type .update-type-options, .contact-us-update-type .customer-type-options, .contact-us-update-type .update-type-options {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: inherit;
        -webkit-justify-content: inherit;
            -ms-flex-pack: inherit;
                justify-content: inherit; } }
  .contact-us-customer-type input[type="radio"], .contact-us-update-type input[type="radio"] {
    display: none; }
  .contact-us-customer-type input[type="checkbox"], .contact-us-update-type input[type="checkbox"] {
    display: none; }
  .contact-us-customer-type .rectangle, .contact-us-update-type .rectangle {
    padding: .5rem;
    width: 185px;
    height: 80px;
    border: 2px solid #999;
    border-radius: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: background-color 0.2s, border-color 0.2s;
    transition: background-color 0.2s, border-color 0.2s; }
    @media (max-width: 47.9375rem) {
      .contact-us-customer-type .rectangle, .contact-us-update-type .rectangle {
        width: 100%;
        margin-bottom: 1rem; } }
  .contact-us-customer-type input[type="radio"]:checked + .rectangle, .contact-us-update-type input[type="radio"]:checked + .rectangle {
    background-color: lightblue;
    border-color: #4a90e2; }
  .contact-us-customer-type input[type="checkbox"]:checked + .rectangle, .contact-us-update-type input[type="checkbox"]:checked + .rectangle {
    background-color: lightblue;
    border-color: #4a90e2; }


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