body, .f--form-item textarea, .cc--gravity-form .ginput_container textarea, .f--form-item .select-wrap select, .cc--gravity-form .ginput_container_select select, .f--form-item input[type='date'], .f--form-item input[type='datetime-local'], .f--form-item input[type='email'], .f--form-item input[type='month'], .f--form-item input[type='number'], .f--form-item input[type='password'], .f--form-item input[type='search'], .f--form-item input[type='tel'], .f--form-item input[type='text'], .f--form-item input[type='time'], .f--form-item input[type='url'], .f--form-item input[type='week'], .cc--gravity-form .ginput_container input[type='text'],
.cc--gravity-form .ginput_container input[type='url'],
.cc--gravity-form .ginput_container input[type='passwords'],
.cc--gravity-form .ginput_container input[type='number'],
.cc--gravity-form .ginput_container input[type='email'] {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 400; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }
  .hamburger.is-active:hover {
    opacity: 1; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 16px;
  height: 12px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 16px;
    height: 2px;
    background-color: #000;
    border-radius: 0px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -5px; }
  .hamburger-inner::after {
    bottom: -5px; }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* Sets card max width
*
* @param 	$margin           gap between cards
* @param  $cards-per-row    cards amount per container row
*
*/
/*  Centering an element within its parent element
*
*   @param {Axis} $axis - x: centers horizontally, y: centers vertically, null: centers both axis
*
*   Example Usage:
*
*   // Center on both x and y axis
*   .container {
*     .link {
*       @include centered;
*     }
*   }
*
*   // Center on the X axis
*   .container {
*     .link {
*       @include centered(x);
*     }
*   }
*
*   // Center on the Y axis
*   .container {
*     .link {
*       @include centered(y);
*     }
*   }
*
*/
/*  Centering within an flex container
*
*   @param {Display} $display - inline: display set to inline-flex, else display set to flex
*
*
*   Example Usage:
*
*   .container {
*     @include vertical-align-flex;
*   }
*
*/
/* Chevron mixin for creating chevrons
*
*  @param {Size} $size - the size of the chevron
*  @param {Thickness} $thickness - thickness
*  @param {Color} $color - color
*  @param {Direction} $direction - direction chevron faces
*
*  Example Usage:
*
*     .chevron {
*       @include chevron(12px, 12px, #000, 'down');
*     }
*
*/
/*  Circle helper mixin
*
*   @param {Diameter} $diameter - Circle diameter
*
*/
/*  Clearfix for clearing floats within a container
*
*   No Params
*
*   Example Usage:
*
*     .container {
*       @include clearfix;
*
*       .link {
*          float: left;
*       }
*     }
*
*/
/*  Centers element children using flex box properties
*
*/
/*  Sets fixed width for flexbox child element
*
* @param    str   $width - width of the element
*
*/
/*  Set font-size and optionally leading
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - (default: null) - Optional- Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     p {
*       @include font-size(12,14);
*     }
*
*/
/**
* Hide Text
*/
/* Hover mixin for hover states
*
*  Note: This mixin has a dependency on what-intent plugin which detects the current input method
*        https://github.com/ten1seven/what-input
*
*  @param {Transition Duration} $transition-duration - the duration of transitions on hover states
*
*  Example Usage:
*
*     a {
*       @include hover() {
*         background-color: red
*       }
*     }
*
*/
/**
 * Returns a percentage width based on the number and total number of columns
 *
 * @param 	int 	$num 	  Number of columns (e.g. 4)
 * @param 	int 	$total 	Total number of columns (e.g. 24)
 * @return 	float 			  Total width (%)
 */
/**
 * Returns a vw width based on the number and total number of columns
 *
 * @param 	int 	$num 	Number of columns (e.g. 4)
 * @param 	int 	$total 	Total number of columns (e.g. 24)
 * @return 	float 			 Total width (vw)
 */
/**
 * Returns a px width based on the number and total number of columns
 *
 * @param 	int 	$num 	          Number of columns (e.g. 4)
 * @param 	int 	$total 	        Total number of columns (e.g. 24)
 * @param 	int 	$layout-width 	Width of the layout
 * @return 	float 			          Total width (px)
 */
/*  Unitless line-height
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     @include line-height(16, 20);
*
*/
/*  Remove List Styles
*
*   No Params
*
*   Example Usage:
*
*     ul {
*       @include no-bullet;
*     }
*
*/
/*
  Maintain ratio mixin.
  @param {List} [$ratio] Ratio the element needs to maintain. A 16:9 ratio would look like this:
    .element { @include maintain-ratio(16 9); }
*/
/*  Media Query Mixin
*
*   @param {Media Query} $mq - Media query in single quotes: eg. 'screen and (min-width: 480px)'
*
*   Example Usage:
*
*     .selector {
*       property: value;
*
*       @include mq($bp768) {
*         property: value;
*       }
*     }
*
*/
/*  Oposite Direction Function
*
*   @param {direction} $direction - direction that will be reversed
*
*   Example Usage:
*   opposite-direction(bottom) will output 'top'
*
*/
/*  Overflow Scroll
*   Allows you to set overflow scrolling on the x and y axis
*
*   @param {axix} $axis - the axis on which to set scroll
*/
/*  Placeholder Mixin
*
*   No Params
*
*   Example Usage:
*
*     input[placeholder] {
*       @include placeholder {
*         color: red;
*       }
*     }
*
*/
/*  PX to REM Conversion
*
*   @param {Pixel} $px - Unitless pixel value to be converted into rems.
*
*   Example Usage:
*
*     margin-bottom: rem(20);
*
*/
/*  Triangle helper mixin
*
*   @param {Direction} $direction - Triangle direction, either `top`, `right`, `bottom` or `left`
*   @param {Color} $color [currentcolor] - Triangle color
*   @param {Length} $size [1em] - Triangle size
*
*/
/*  Visually hide text within an element
*   Used mostly for accessibility reasonse
*
*   No Params
*
*   Example Usage:
*
*     button {
*       span {
*         @include visuallyhidden;
*       }
*     }
*
*/
/* Applies passed theme collors. Should be applied to <body> tag.
*
*/
/*  Button mixin for creating buttons
*
*   @param {Size}     $size         - (default: small)   - defines button size properties
*   @param {Reversed} $reversed     - (default: false)   - deprecated //FIXME
*   @param {Colors}   $red, $white  - (default: false)   - defines button style in terms of color
*
*/
/* Styles fields-image field to be a cicrcle.
*
* Is used in conjunction with lays-on-hero mixin.
*
*/
/* Styles filter forms
*
*/
/* Sets padding for site global sections
*
* @param 	string 	$vertical-padding	  type of vertical padding (e.g. small, normal)
* @param  bool    $horizontal-padding       eiether to include side padding
*
*/
/* Makes component lay on hero (in case it is placed first in the component list)
*
* @param 	str 	$first-elem-type  type of first element in the section style  (e.g. input, circle)
*
*/
/* Menu wrapper mixin for creating menu/search/etc popup wrappers
*
*/
.lc--two-column .content-sidebar-main-wrapper-inner {
  padding-right: 4.16667vw;
  padding-left: 4.16667vw; }
  @media screen and (min-width: 1024px) {
    .lc--two-column .content-sidebar-main-wrapper-inner {
      padding-right: 4.16667vw;
      padding-left: 4.16667vw;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  @media screen and (min-width: 1800px) {
    .lc--two-column .content-sidebar-main-wrapper-inner {
      padding-right: 75px;
      padding-left: 75px; } }

.lc--two-column .content-sidebar {
  margin-right: 6.25%;
  margin-bottom: 50px;
  margin-left: 6.25%; }
  @media screen and (min-width: 768px) {
    .lc--two-column .content-sidebar {
      margin-right: 12.5vw;
      margin-bottom: 80px;
      margin-left: 12.5vw; } }
  @media screen and (min-width: 1024px) {
    .lc--two-column .content-sidebar {
      margin-top: 100px;
      margin-right: 0;
      margin-bottom: 100px;
      margin-left: 6.25vw;
      min-width: 20.83333vw;
      max-width: 20.83333vw; } }
  @media screen and (min-width: 1800px) {
    .lc--two-column .content-sidebar {
      margin-left: 112.5px;
      min-width: 375px;
      max-width: 375px; } }

.lc--two-column .content-main {
  width: 100%; }

@media screen and (min-width: 1024px) {
  .lc--two-column .cc--body-content .cc--share-icons-section {
    left: 0 !important; } }

@media screen and (min-width: 1024px) {
  .lc--two-column .body-inner > * {
    padding-right: 0 !important;
    padding-left: 10.41667vw !important; } }

@media screen and (min-width: 1800px) {
  .lc--two-column .body-inner > * {
    padding-left: 187.5px; } }

body {
  margin: 0;
  padding: 0; }
  html[data-whatintent="mouse"] body .cc--menu-main .m--main > .menu-item a, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body .cc--menu-main .m--main > .menu-item a:hover, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--menu-main .m--main > .menu-item a:hover {
      color: #48994A; }
  html[data-whatintent="mouse"] body .cc--menu-main .m--main > .menu-item .button-arrow-down, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #48994A; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body .cc--menu-main .m--main > .menu-item .submenu a, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body .cc--menu-main .m--main > .menu-item .submenu a:hover, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #48994A;
        color: #FFF; } }
  body .cc--hero, body.theme-monday-campaigns .cc--hero {
    background-color: #CBEBC6; }
  body .hero-main, body.theme-monday-campaigns .hero-main {
    background-color: #CBEBC6; }
  body .cc--body-content li::before, body.theme-monday-campaigns .cc--body-content li::before {
    color: #000; }
  body .f--page-title,
  body .f--section-title, body.theme-monday-campaigns .f--page-title,
  body.theme-monday-campaigns .f--section-title {
    color: #48994A; }
    body .f--page-title.color-secondary,
    body .f--section-title.color-secondary, body.theme-monday-campaigns .f--page-title.color-secondary,
    body.theme-monday-campaigns .f--section-title.color-secondary {
      color: #000; }
  body .f--quote, body.theme-monday-campaigns .f--quote {
    color: #48994A; }
  body .cc--item-list .cc--item .f--cta-title,
  body .cc--card .f--cta-title, body.theme-monday-campaigns .cc--item-list .cc--item .f--cta-title,
  body.theme-monday-campaigns .cc--card .f--cta-title {
    color: #000; }
    body .cc--item-list .cc--item .f--cta-title a,
    body .cc--card .f--cta-title a, body.theme-monday-campaigns .cc--item-list .cc--item .f--cta-title a,
    body.theme-monday-campaigns .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body .cc--card .f--cta-title a, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-monday-campaigns .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body .cc--card .f--cta-title a:hover, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-monday-campaigns .cc--card .f--cta-title a:hover {
          color: #000; }
  body .cc--card .main-image, body.theme-monday-campaigns .cc--card .main-image {
    background-color: #CBEBC6; }
  body .cc--card .card-links a,
  body .cc--card .card-bottom a, body.theme-monday-campaigns .cc--card .card-links a,
  body.theme-monday-campaigns .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body .cc--card .card-links a, html[data-whatintent="mouse"]
    body .cc--card .card-bottom a, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-monday-campaigns .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body .cc--card .card-bottom a:hover, html[data-whatintent="mouse"] body.theme-monday-campaigns .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-monday-campaigns .cc--card .card-bottom a:hover {
        color: #000; }
  body .cc--promo-text-only, body.theme-monday-campaigns .cc--promo-text-only {
    background-color: #CBEBC6; }
  body .j-loading, body.theme-monday-campaigns .j-loading {
    border-color: #CBEBC6; }
  body .j-loading:before, body.theme-monday-campaigns .j-loading:before {
    background-color: #CBEBC6; }
  body .cc--footer-cta-sections, body.theme-monday-campaigns .cc--footer-cta-sections {
    background-color: #CBEBC6 !important; }
  html[data-whatintent="mouse"] body.theme-healthy-monday .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-healthy-monday .cc--menu-main .m--main > .menu-item a:hover {
      color: #48994A; }
  html[data-whatintent="mouse"] body.theme-healthy-monday .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-healthy-monday .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #48994A; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body.theme-healthy-monday .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-healthy-monday .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #48994A;
        color: #FFF; } }
  body.theme-healthy-monday .cc--hero {
    background-color: #CBEBC6; }
  body.theme-healthy-monday .hero-main {
    background-color: #CBEBC6; }
  body.theme-healthy-monday .cc--body-content li::before {
    color: #000; }
  body.theme-healthy-monday .f--page-title,
  body.theme-healthy-monday .f--section-title {
    color: #48994A; }
    body.theme-healthy-monday .f--page-title.color-secondary,
    body.theme-healthy-monday .f--section-title.color-secondary {
      color: #000; }
  body.theme-healthy-monday .f--quote {
    color: #48994A; }
  body.theme-healthy-monday .cc--item-list .cc--item .f--cta-title,
  body.theme-healthy-monday .cc--card .f--cta-title {
    color: #000; }
    body.theme-healthy-monday .cc--item-list .cc--item .f--cta-title a,
    body.theme-healthy-monday .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body.theme-healthy-monday .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-healthy-monday .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body.theme-healthy-monday .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-healthy-monday .cc--card .f--cta-title a:hover {
          color: #000; }
  body.theme-healthy-monday .cc--card .main-image {
    background-color: #CBEBC6; }
  body.theme-healthy-monday .cc--card .card-links a,
  body.theme-healthy-monday .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body.theme-healthy-monday .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-healthy-monday .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-healthy-monday .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-healthy-monday .cc--card .card-bottom a:hover {
        color: #000; }
  body.theme-healthy-monday .cc--promo-text-only {
    background-color: #CBEBC6; }
  body.theme-healthy-monday .j-loading {
    border-color: #CBEBC6; }
  body.theme-healthy-monday .j-loading:before {
    background-color: #CBEBC6; }
  body.theme-healthy-monday .cc--footer-cta-sections {
    background-color: #CBEBC6 !important; }
  html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--menu-main .m--main > .menu-item a:hover {
      color: #DE1F53; }
  html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #DE1F53; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #DE1F53;
        color: #FFF; } }
  body.theme-kids-cook-monday .cc--hero {
    background-color: #D5EEFF; }
  body.theme-kids-cook-monday .hero-main {
    background-color: #D5EEFF; }
  body.theme-kids-cook-monday .cc--body-content li::before {
    color: #066CB1; }
  body.theme-kids-cook-monday .f--page-title,
  body.theme-kids-cook-monday .f--section-title {
    color: #DE1F53; }
    body.theme-kids-cook-monday .f--page-title.color-secondary,
    body.theme-kids-cook-monday .f--section-title.color-secondary {
      color: #066CB1; }
  body.theme-kids-cook-monday .f--quote {
    color: #DE1F53; }
  body.theme-kids-cook-monday .cc--item-list .cc--item .f--cta-title,
  body.theme-kids-cook-monday .cc--card .f--cta-title {
    color: #066CB1; }
    body.theme-kids-cook-monday .cc--item-list .cc--item .f--cta-title a,
    body.theme-kids-cook-monday .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-kids-cook-monday .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-kids-cook-monday .cc--card .f--cta-title a:hover {
          color: #066CB1; }
  body.theme-kids-cook-monday .cc--card .main-image {
    background-color: #D5EEFF; }
  body.theme-kids-cook-monday .cc--card .card-links a,
  body.theme-kids-cook-monday .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-kids-cook-monday .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-kids-cook-monday .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-kids-cook-monday .cc--card .card-bottom a:hover {
        color: #066CB1; }
  body.theme-kids-cook-monday .cc--promo-text-only {
    background-color: #D5EEFF; }
  body.theme-kids-cook-monday .j-loading {
    border-color: #D5EEFF; }
  body.theme-kids-cook-monday .j-loading:before {
    background-color: #D5EEFF; }
  body.theme-kids-cook-monday .cc--footer-cta-sections {
    background-color: #D5EEFF !important; }
  html[data-whatintent="mouse"] body.theme-meatless-monday .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-meatless-monday .cc--menu-main .m--main > .menu-item a:hover {
      color: #EB6400; }
  html[data-whatintent="mouse"] body.theme-meatless-monday .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-meatless-monday .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #EB6400; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body.theme-meatless-monday .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-meatless-monday .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #EB6400;
        color: #FFF; } }
  body.theme-meatless-monday .cc--hero {
    background-color: #FFFBE2; }
  body.theme-meatless-monday .hero-main {
    background-color: #FFFBE2; }
  body.theme-meatless-monday .cc--body-content li::before {
    color: #006600; }
  body.theme-meatless-monday .f--page-title,
  body.theme-meatless-monday .f--section-title {
    color: #EB6400; }
    body.theme-meatless-monday .f--page-title.color-secondary,
    body.theme-meatless-monday .f--section-title.color-secondary {
      color: #006600; }
  body.theme-meatless-monday .f--quote {
    color: #EB6400; }
  body.theme-meatless-monday .cc--item-list .cc--item .f--cta-title,
  body.theme-meatless-monday .cc--card .f--cta-title {
    color: #006600; }
    body.theme-meatless-monday .cc--item-list .cc--item .f--cta-title a,
    body.theme-meatless-monday .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body.theme-meatless-monday .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-meatless-monday .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body.theme-meatless-monday .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-meatless-monday .cc--card .f--cta-title a:hover {
          color: #006600; }
  body.theme-meatless-monday .cc--card .main-image {
    background-color: #FFFBE2; }
  body.theme-meatless-monday .cc--card .card-links a,
  body.theme-meatless-monday .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body.theme-meatless-monday .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-meatless-monday .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-meatless-monday .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-meatless-monday .cc--card .card-bottom a:hover {
        color: #006600; }
  body.theme-meatless-monday .cc--promo-text-only {
    background-color: #FFFBE2; }
  body.theme-meatless-monday .j-loading {
    border-color: #FFFBE2; }
  body.theme-meatless-monday .j-loading:before {
    background-color: #FFFBE2; }
  body.theme-meatless-monday .cc--footer-cta-sections {
    background-color: #FFFBE2 !important; }
  html[data-whatintent="mouse"] body.theme-destress-monday .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-destress-monday .cc--menu-main .m--main > .menu-item a:hover {
      color: #005691; }
  html[data-whatintent="mouse"] body.theme-destress-monday .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-destress-monday .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #005691; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body.theme-destress-monday .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-destress-monday .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #005691;
        color: #FFF; } }
  body.theme-destress-monday .cc--hero {
    background-color: #ECF9FF; }
  body.theme-destress-monday .hero-main {
    background-color: #ECF9FF; }
  body.theme-destress-monday .cc--body-content li::before {
    color: #0099CC; }
  body.theme-destress-monday .f--page-title,
  body.theme-destress-monday .f--section-title {
    color: #005691; }
    body.theme-destress-monday .f--page-title.color-secondary,
    body.theme-destress-monday .f--section-title.color-secondary {
      color: #0099CC; }
  body.theme-destress-monday .f--quote {
    color: #005691; }
  body.theme-destress-monday .cc--item-list .cc--item .f--cta-title,
  body.theme-destress-monday .cc--card .f--cta-title {
    color: #0099CC; }
    body.theme-destress-monday .cc--item-list .cc--item .f--cta-title a,
    body.theme-destress-monday .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body.theme-destress-monday .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-destress-monday .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body.theme-destress-monday .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-destress-monday .cc--card .f--cta-title a:hover {
          color: #0099CC; }
  body.theme-destress-monday .cc--card .main-image {
    background-color: #ECF9FF; }
  body.theme-destress-monday .cc--card .card-links a,
  body.theme-destress-monday .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body.theme-destress-monday .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-destress-monday .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-destress-monday .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-destress-monday .cc--card .card-bottom a:hover {
        color: #0099CC; }
  body.theme-destress-monday .cc--promo-text-only {
    background-color: #ECF9FF; }
  body.theme-destress-monday .j-loading {
    border-color: #ECF9FF; }
  body.theme-destress-monday .j-loading:before {
    background-color: #ECF9FF; }
  body.theme-destress-monday .cc--footer-cta-sections {
    background-color: #ECF9FF !important; }
  html[data-whatintent="mouse"] body.theme-move-it-monday .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-move-it-monday .cc--menu-main .m--main > .menu-item a:hover {
      color: #7C9E2A; }
  html[data-whatintent="mouse"] body.theme-move-it-monday .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-move-it-monday .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #7C9E2A; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body.theme-move-it-monday .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-move-it-monday .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #7C9E2A;
        color: #FFF; } }
  body.theme-move-it-monday .cc--hero {
    background-color: #EEFEE9; }
  body.theme-move-it-monday .hero-main {
    background-color: #EEFEE9; }
  body.theme-move-it-monday .cc--body-content li::before {
    color: #366129; }
  body.theme-move-it-monday .f--page-title,
  body.theme-move-it-monday .f--section-title {
    color: #7C9E2A; }
    body.theme-move-it-monday .f--page-title.color-secondary,
    body.theme-move-it-monday .f--section-title.color-secondary {
      color: #366129; }
  body.theme-move-it-monday .f--quote {
    color: #7C9E2A; }
  body.theme-move-it-monday .cc--item-list .cc--item .f--cta-title,
  body.theme-move-it-monday .cc--card .f--cta-title {
    color: #366129; }
    body.theme-move-it-monday .cc--item-list .cc--item .f--cta-title a,
    body.theme-move-it-monday .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body.theme-move-it-monday .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-move-it-monday .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body.theme-move-it-monday .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-move-it-monday .cc--card .f--cta-title a:hover {
          color: #366129; }
  body.theme-move-it-monday .cc--card .main-image {
    background-color: #EEFEE9; }
  body.theme-move-it-monday .cc--card .card-links a,
  body.theme-move-it-monday .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body.theme-move-it-monday .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-move-it-monday .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-move-it-monday .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-move-it-monday .cc--card .card-bottom a:hover {
        color: #366129; }
  body.theme-move-it-monday .cc--promo-text-only {
    background-color: #EEFEE9; }
  body.theme-move-it-monday .j-loading {
    border-color: #EEFEE9; }
  body.theme-move-it-monday .j-loading:before {
    background-color: #EEFEE9; }
  body.theme-move-it-monday .cc--footer-cta-sections {
    background-color: #EEFEE9 !important; }
  html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--menu-main .m--main > .menu-item a:hover {
      color: #336699; }
  html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #336699; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #336699;
        color: #FFF; } }
  body.theme-quit-stay-quit .cc--hero {
    background-color: #FFEEEF; }
  body.theme-quit-stay-quit .hero-main {
    background-color: #FFEEEF; }
  body.theme-quit-stay-quit .cc--body-content li::before {
    color: #990000; }
  body.theme-quit-stay-quit .f--page-title,
  body.theme-quit-stay-quit .f--section-title {
    color: #336699; }
    body.theme-quit-stay-quit .f--page-title.color-secondary,
    body.theme-quit-stay-quit .f--section-title.color-secondary {
      color: #990000; }
  body.theme-quit-stay-quit .f--quote {
    color: #336699; }
  body.theme-quit-stay-quit .cc--item-list .cc--item .f--cta-title,
  body.theme-quit-stay-quit .cc--card .f--cta-title {
    color: #990000; }
    body.theme-quit-stay-quit .cc--item-list .cc--item .f--cta-title a,
    body.theme-quit-stay-quit .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-quit-stay-quit .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-quit-stay-quit .cc--card .f--cta-title a:hover {
          color: #990000; }
  body.theme-quit-stay-quit .cc--card .main-image {
    background-color: #FFEEEF; }
  body.theme-quit-stay-quit .cc--card .card-links a,
  body.theme-quit-stay-quit .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-quit-stay-quit .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-quit-stay-quit .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-quit-stay-quit .cc--card .card-bottom a:hover {
        color: #990000; }
  body.theme-quit-stay-quit .cc--promo-text-only {
    background-color: #FFEEEF; }
  body.theme-quit-stay-quit .j-loading {
    border-color: #FFEEEF; }
  body.theme-quit-stay-quit .j-loading:before {
    background-color: #FFEEEF; }
  body.theme-quit-stay-quit .cc--footer-cta-sections {
    background-color: #FFEEEF !important; }
  html[data-whatintent="mouse"] body.theme-monday-2000 .cc--menu-main .m--main > .menu-item a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-monday-2000 .cc--menu-main .m--main > .menu-item a:hover {
      color: #03ADEF; }
  html[data-whatintent="mouse"] body.theme-monday-2000 .cc--menu-main .m--main > .menu-item .button-arrow-down {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] body.theme-monday-2000 .cc--menu-main .m--main > .menu-item .button-arrow-down:hover svg {
      fill: #03ADEF; }
  @media screen and (min-width: 1024px) {
    html[data-whatintent="mouse"] body.theme-monday-2000 .cc--menu-main .m--main > .menu-item .submenu a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-monday-2000 .cc--menu-main .m--main > .menu-item .submenu a:hover {
        background: #03ADEF;
        color: #FFF; } }
  body.theme-monday-2000 .cc--hero {
    background-color: #ECDAF8; }
  body.theme-monday-2000 .hero-main {
    background-color: #ECDAF8; }
  body.theme-monday-2000 .cc--body-content li::before {
    color: #71418F; }
  body.theme-monday-2000 .f--page-title,
  body.theme-monday-2000 .f--section-title {
    color: #03ADEF; }
    body.theme-monday-2000 .f--page-title.color-secondary,
    body.theme-monday-2000 .f--section-title.color-secondary {
      color: #71418F; }
  body.theme-monday-2000 .f--quote {
    color: #03ADEF; }
  body.theme-monday-2000 .cc--item-list .cc--item .f--cta-title,
  body.theme-monday-2000 .cc--card .f--cta-title {
    color: #71418F; }
    body.theme-monday-2000 .cc--item-list .cc--item .f--cta-title a,
    body.theme-monday-2000 .cc--card .f--cta-title a {
      color: inherit; }
      html[data-whatintent="mouse"] body.theme-monday-2000 .cc--item-list .cc--item .f--cta-title a, html[data-whatintent="mouse"]
      body.theme-monday-2000 .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] body.theme-monday-2000 .cc--item-list .cc--item .f--cta-title a:hover, html[data-whatintent="mouse"]
        body.theme-monday-2000 .cc--card .f--cta-title a:hover {
          color: #71418F; }
  body.theme-monday-2000 .cc--card .main-image {
    background-color: #ECDAF8; }
  body.theme-monday-2000 .cc--card .card-links a,
  body.theme-monday-2000 .cc--card .card-bottom a {
    color: #000; }
    html[data-whatintent="mouse"] body.theme-monday-2000 .cc--card .card-links a, html[data-whatintent="mouse"]
    body.theme-monday-2000 .cc--card .card-bottom a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] body.theme-monday-2000 .cc--card .card-links a:hover, html[data-whatintent="mouse"]
      body.theme-monday-2000 .cc--card .card-bottom a:hover {
        color: #71418F; }
  body.theme-monday-2000 .cc--promo-text-only {
    background-color: #ECDAF8; }
  body.theme-monday-2000 .j-loading {
    border-color: #ECDAF8; }
  body.theme-monday-2000 .j-loading:before {
    background-color: #ECDAF8; }
  body.theme-monday-2000 .cc--footer-cta-sections {
    background-color: #ECDAF8 !important; }

html[data-whatinput="keyboard"] *:focus {
  outline: 3px solid #00B5E2; }

html[data-whatinput="mouse"] *:focus {
  outline: none; }

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px; }

.skip-link {
  font-size: 1rem;
  color: #000; }
  .skip-link:not(:focus) {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    margin: -1px; }

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html {
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden; }

body {
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.1; }

h1 {
  font-size: 4.5rem;
  line-height: 1; }

h2 {
  font-size: 2.25rem;
  line-height: 1.1112; }

h3 {
  font-size: 1.875rem;
  line-height: 1.5; }

h4 {
  font-size: 1.5rem;
  line-height: 1.25; }

h5 {
  font-size: 1.375rem;
  line-height: 1.4546; }

h6 {
  font-size: 0.875rem;
  line-height: 1.5; }

p {
  font-size: 1.125rem;
  line-height: 1.4445;
  margin-top: 0; }
  p:last-child {
    margin-bottom: 0; }

ul,
ol {
  margin-top: 0; }
  ul:not(.default),
  ol:not(.default) {
    list-style: none;
    padding: 0;
    margin: 0; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

ul {
  list-style-type: disc; }

img {
  display: block;
  height: auto;
  max-width: 100%; }

img:not([width]) {
  width: 100%; }

svg path,
svg polygon,
svg line,
svg rect,
svg ellipse,
svg circle {
  -webkit-transition: fill 0.1s ease-in-out;
  transition: fill 0.1s ease-in-out; }
  html[data-whatintent="mouse"] svg path, html[data-whatintent="mouse"]
  svg polygon, html[data-whatintent="mouse"]
  svg line, html[data-whatintent="mouse"]
  svg rect, html[data-whatintent="mouse"]
  svg ellipse, html[data-whatintent="mouse"]
  svg circle {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] svg path:hover, html[data-whatintent="mouse"]
    svg polygon:hover, html[data-whatintent="mouse"]
    svg line:hover, html[data-whatintent="mouse"]
    svg rect:hover, html[data-whatintent="mouse"]
    svg ellipse:hover, html[data-whatintent="mouse"]
    svg circle:hover {
      -webkit-transition: fill 0.1s ease-in-out;
      transition: fill 0.1s ease-in-out; }

nav ul,
nav ol {
  margin: 0;
  padding: 0;
  list-style: none; }

dl {
  margin-top: 0; }

dd {
  margin: 0; }

figure {
  margin: 0 0 1.25rem; }
  figure img:not([width]) {
    width: 100%; }
  figure figcaption {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.7143;
    font-style: oblique;
    text-align: right; }
  @media screen and (min-width: 768px) {
    figure.left {
      margin-top: 0;
      margin-right: 4.16667%;
      margin-bottom: 1.25rem;
      margin-left: -10.41667%;
      width: 60%;
      float: left; } }
  @media screen and (min-width: 768px) {
    figure.right {
      margin-top: 0;
      margin-right: -10.41667%;
      margin-bottom: 1.25rem;
      margin-left: 4.16667%;
      width: 60%;
      float: right; } }

form {
  margin: 0; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0; }

textarea {
  resize: vertical; }

button {
  padding: 0;
  border: 0;
  background-color: transparent; }

button,
[type='button'],
[type='reset'],
[type='submit'],
.button-reset {
  cursor: pointer; }

[disabled] {
  cursor: default; }

iframe {
  border: 0; }

section.two-cols {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem; }
  @media screen and (min-width: 768px) {
    section.two-cols {
      -webkit-column-gap: 2.5rem;
         -moz-column-gap: 2.5rem;
              column-gap: 2.5rem;
      -webkit-column-count: 2;
         -moz-column-count: 2;
              column-count: 2; } }
  section.two-cols img {
    margin-bottom: 0.9375rem;
    float: left; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }
  table tr td,
  table tr th {
    padding-top: 0.625rem;
    padding-right: 2.5%;
    padding-bottom: 0.625rem;
    padding-left: 2.5%;
    font-size: 1rem;
    line-height: 1.625;
    text-align: left;
    vertical-align: top; }
    @media screen and (min-width: 768px) {
      table tr td,
      table tr th {
        padding-right: 2.08333%;
        padding-left: 2.08333%;
        font-size: 1.125rem;
        line-height: 1.4445; } }
    table tr td:first-child,
    table tr th:first-child {
      color: #000; }
  table tr:nth-child(2n) {
    background: #F5F5F5; }
  table.two-col tr th:nth-child(1) {
    width: 40%;
    font-weight: 600; }
  table.two-col tr td:nth-child(2) {
    color: #000; }

th,
td {
  padding: 0; }

th {
  font-weight: normal; }

[tabindex='-1']:focus {
  outline: none !important; }

b,
strong {
  font-weight: 700; }

/* ==========================================================================
   Print styles.
   https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]::after {
    content: " (" attr(href) ")"; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  a[href^='#']::after,
  a[href^='javascript:']::after {
    content: ''; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

.button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.3125rem;
  margin-right: 0.3125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  white-space: normal;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-family: inherit;
  font-weight: 700;
  color: #000;
  background-color: #FFF;
  border: 0.0625rem solid #000;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 #000;
          box-shadow: 0.3125rem 0.3125rem 0 #000;
  -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  cursor: pointer;
  padding-top: 0.6875rem;
  padding-bottom: 0.5625rem; }
  html[data-whatintent="mouse"] .button {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .button:hover {
      -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: #000;
      color: #FFF;
      text-decoration: none; }
      html[data-whatintent="mouse"] .button:hover svg {
        fill: #FFF; }
  @media screen and (min-width: 768px) {
    .button {
      width: auto;
      margin-bottom: 0.375rem;
      margin-right: 0.375rem;
      padding: 1.1875rem 2.5rem 0.9375rem;
      -webkit-box-shadow: 0.375rem 0.375rem 0 #000;
              box-shadow: 0.375rem 0.375rem 0 #000;
      font-size: 1.1875rem;
      line-height: 1.5rem; } }
  .button .f--icon {
    padding-right: 0.1875rem;
    padding-left: 0.75rem; }

.button-icon {
  outline: none; }

.cc--component-container {
  position: relative; }

@media screen and (min-width: 1024px) {
  > .cc--component-container.narrow {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto; } }

@media screen and (min-width: 1024px) {
  > .cc--component-container.maxwidth {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto; } }

@media screen and (min-width: 1024px) {
  > .cc--component-container.fullbackground > .c--component {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto; } }

.f--form-item > label, .cc--gravity-form .gfield .gfield_label {
  font-size: 0.875rem;
  line-height: 1.1429;
  margin-bottom: 0.5625rem;
  display: block;
  color: #000;
  font-weight: 700; }

.f--form-item textarea, .cc--gravity-form .ginput_container textarea, .f--form-item .select-wrap select, .cc--gravity-form .ginput_container_select select, .f--form-item input[type='date'], .f--form-item input[type='datetime-local'], .f--form-item input[type='email'], .f--form-item input[type='month'], .f--form-item input[type='number'], .f--form-item input[type='password'], .f--form-item input[type='search'], .f--form-item input[type='tel'], .f--form-item input[type='text'], .f--form-item input[type='time'], .f--form-item input[type='url'], .f--form-item input[type='week'], .cc--gravity-form .ginput_container input[type='text'],
.cc--gravity-form .ginput_container input[type='url'],
.cc--gravity-form .ginput_container input[type='passwords'],
.cc--gravity-form .ginput_container input[type='number'],
.cc--gravity-form .ginput_container input[type='email'] {
  padding-top: 0;
  padding-right: 1.25rem;
  padding-bottom: 0;
  padding-left: 1.375rem;
  font-size: 1rem;
  line-height: 2.5;
  position: relative;
  width: 100%;
  border: 0.0625rem solid #000;
  border-radius: 0;
  background-color: #FFF;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  @media screen and (min-width: 768px) {
    .f--form-item textarea, .cc--gravity-form .ginput_container textarea, .f--form-item .select-wrap select, .cc--gravity-form .ginput_container_select select, .f--form-item input[type='date'], .f--form-item input[type='datetime-local'], .f--form-item input[type='email'], .f--form-item input[type='month'], .f--form-item input[type='number'], .f--form-item input[type='password'], .f--form-item input[type='search'], .f--form-item input[type='tel'], .f--form-item input[type='text'], .f--form-item input[type='time'], .f--form-item input[type='url'], .f--form-item input[type='week'], .cc--gravity-form .ginput_container input[type='text'],
    .cc--gravity-form .ginput_container input[type='url'],
    .cc--gravity-form .ginput_container input[type='passwords'],
    .cc--gravity-form .ginput_container input[type='number'],
    .cc--gravity-form .ginput_container input[type='email'] {
      padding-right: 1.875rem;
      padding-left: 2rem;
      font-size: 1.1875rem;
      line-height: 3.0527; } }
  .f--form-item textarea::-webkit-input-placeholder, .cc--gravity-form .ginput_container textarea::-webkit-input-placeholder, .f--form-item .select-wrap select::-webkit-input-placeholder, .cc--gravity-form .ginput_container_select select::-webkit-input-placeholder, .f--form-item input[type='date']::-webkit-input-placeholder, .f--form-item input[type='datetime-local']::-webkit-input-placeholder, .f--form-item input[type='email']::-webkit-input-placeholder, .f--form-item input[type='month']::-webkit-input-placeholder, .f--form-item input[type='number']::-webkit-input-placeholder, .f--form-item input[type='password']::-webkit-input-placeholder, .f--form-item input[type='search']::-webkit-input-placeholder, .f--form-item input[type='tel']::-webkit-input-placeholder, .f--form-item input[type='text']::-webkit-input-placeholder, .f--form-item input[type='time']::-webkit-input-placeholder, .f--form-item input[type='url']::-webkit-input-placeholder, .f--form-item input[type='week']::-webkit-input-placeholder, .cc--gravity-form .ginput_container input[type='text']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='url']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='passwords']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='number']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='email']::-webkit-input-placeholder {
    color: #6C6F70; }
  .f--form-item textarea::-moz-placeholder, .cc--gravity-form .ginput_container textarea::-moz-placeholder, .f--form-item .select-wrap select::-moz-placeholder, .cc--gravity-form .ginput_container_select select::-moz-placeholder, .f--form-item input[type='date']::-moz-placeholder, .f--form-item input[type='datetime-local']::-moz-placeholder, .f--form-item input[type='email']::-moz-placeholder, .f--form-item input[type='month']::-moz-placeholder, .f--form-item input[type='number']::-moz-placeholder, .f--form-item input[type='password']::-moz-placeholder, .f--form-item input[type='search']::-moz-placeholder, .f--form-item input[type='tel']::-moz-placeholder, .f--form-item input[type='text']::-moz-placeholder, .f--form-item input[type='time']::-moz-placeholder, .f--form-item input[type='url']::-moz-placeholder, .f--form-item input[type='week']::-moz-placeholder, .cc--gravity-form .ginput_container input[type='text']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='url']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='passwords']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='number']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='email']::-moz-placeholder {
    color: #6C6F70; }
  .f--form-item textarea:-ms-input-placeholder, .cc--gravity-form .ginput_container textarea:-ms-input-placeholder, .f--form-item .select-wrap select:-ms-input-placeholder, .cc--gravity-form .ginput_container_select select:-ms-input-placeholder, .f--form-item input:-ms-input-placeholder[type='date'], .f--form-item input:-ms-input-placeholder[type='datetime-local'], .f--form-item input:-ms-input-placeholder[type='email'], .f--form-item input:-ms-input-placeholder[type='month'], .f--form-item input:-ms-input-placeholder[type='number'], .f--form-item input:-ms-input-placeholder[type='password'], .f--form-item input:-ms-input-placeholder[type='search'], .f--form-item input:-ms-input-placeholder[type='tel'], .f--form-item input:-ms-input-placeholder[type='text'], .f--form-item input:-ms-input-placeholder[type='time'], .f--form-item input:-ms-input-placeholder[type='url'], .f--form-item input:-ms-input-placeholder[type='week'], .cc--gravity-form .ginput_container input:-ms-input-placeholder[type='text'],
  .cc--gravity-form .ginput_container input:-ms-input-placeholder[type='url'],
  .cc--gravity-form .ginput_container input:-ms-input-placeholder[type='passwords'],
  .cc--gravity-form .ginput_container input:-ms-input-placeholder[type='number'],
  .cc--gravity-form .ginput_container input:-ms-input-placeholder[type='email'] {
    color: #6C6F70; }
  .f--form-item textarea::-webkit-input-placeholder, .cc--gravity-form .ginput_container textarea::-webkit-input-placeholder, .f--form-item .select-wrap select::-webkit-input-placeholder, .cc--gravity-form .ginput_container_select select::-webkit-input-placeholder, .f--form-item input[type='date']::-webkit-input-placeholder, .f--form-item input[type='datetime-local']::-webkit-input-placeholder, .f--form-item input[type='email']::-webkit-input-placeholder, .f--form-item input[type='month']::-webkit-input-placeholder, .f--form-item input[type='number']::-webkit-input-placeholder, .f--form-item input[type='password']::-webkit-input-placeholder, .f--form-item input[type='search']::-webkit-input-placeholder, .f--form-item input[type='tel']::-webkit-input-placeholder, .f--form-item input[type='text']::-webkit-input-placeholder, .f--form-item input[type='time']::-webkit-input-placeholder, .f--form-item input[type='url']::-webkit-input-placeholder, .f--form-item input[type='week']::-webkit-input-placeholder, .cc--gravity-form .ginput_container input[type='text']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='url']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='passwords']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='number']::-webkit-input-placeholder,
  .cc--gravity-form .ginput_container input[type='email']::-webkit-input-placeholder {
    color: #6C6F70; }
  .f--form-item textarea::-moz-placeholder, .cc--gravity-form .ginput_container textarea::-moz-placeholder, .f--form-item .select-wrap select::-moz-placeholder, .cc--gravity-form .ginput_container_select select::-moz-placeholder, .f--form-item input[type='date']::-moz-placeholder, .f--form-item input[type='datetime-local']::-moz-placeholder, .f--form-item input[type='email']::-moz-placeholder, .f--form-item input[type='month']::-moz-placeholder, .f--form-item input[type='number']::-moz-placeholder, .f--form-item input[type='password']::-moz-placeholder, .f--form-item input[type='search']::-moz-placeholder, .f--form-item input[type='tel']::-moz-placeholder, .f--form-item input[type='text']::-moz-placeholder, .f--form-item input[type='time']::-moz-placeholder, .f--form-item input[type='url']::-moz-placeholder, .f--form-item input[type='week']::-moz-placeholder, .cc--gravity-form .ginput_container input[type='text']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='url']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='passwords']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='number']::-moz-placeholder,
  .cc--gravity-form .ginput_container input[type='email']::-moz-placeholder {
    color: #6C6F70; }
  .f--form-item textarea:-ms-input-placeholder, .cc--gravity-form .ginput_container textarea:-ms-input-placeholder, .f--form-item .select-wrap select:-ms-input-placeholder, .cc--gravity-form .ginput_container_select select:-ms-input-placeholder, .f--form-item input[type='date']:-ms-input-placeholder, .f--form-item input[type='datetime-local']:-ms-input-placeholder, .f--form-item input[type='email']:-ms-input-placeholder, .f--form-item input[type='month']:-ms-input-placeholder, .f--form-item input[type='number']:-ms-input-placeholder, .f--form-item input[type='password']:-ms-input-placeholder, .f--form-item input[type='search']:-ms-input-placeholder, .f--form-item input[type='tel']:-ms-input-placeholder, .f--form-item input[type='text']:-ms-input-placeholder, .f--form-item input[type='time']:-ms-input-placeholder, .f--form-item input[type='url']:-ms-input-placeholder, .f--form-item input[type='week']:-ms-input-placeholder, .cc--gravity-form .ginput_container input[type='text']:-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='url']:-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='passwords']:-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='number']:-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='email']:-ms-input-placeholder {
    color: #6C6F70; }
  .f--form-item textarea::-ms-input-placeholder, .cc--gravity-form .ginput_container textarea::-ms-input-placeholder, .f--form-item .select-wrap select::-ms-input-placeholder, .cc--gravity-form .ginput_container_select select::-ms-input-placeholder, .f--form-item input[type='date']::-ms-input-placeholder, .f--form-item input[type='datetime-local']::-ms-input-placeholder, .f--form-item input[type='email']::-ms-input-placeholder, .f--form-item input[type='month']::-ms-input-placeholder, .f--form-item input[type='number']::-ms-input-placeholder, .f--form-item input[type='password']::-ms-input-placeholder, .f--form-item input[type='search']::-ms-input-placeholder, .f--form-item input[type='tel']::-ms-input-placeholder, .f--form-item input[type='text']::-ms-input-placeholder, .f--form-item input[type='time']::-ms-input-placeholder, .f--form-item input[type='url']::-ms-input-placeholder, .f--form-item input[type='week']::-ms-input-placeholder, .cc--gravity-form .ginput_container input[type='text']::-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='url']::-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='passwords']::-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='number']::-ms-input-placeholder,
  .cc--gravity-form .ginput_container input[type='email']::-ms-input-placeholder {
    color: #6C6F70; }
  .f--form-item textarea::placeholder, .cc--gravity-form .ginput_container textarea::placeholder, .f--form-item .select-wrap select::placeholder, .cc--gravity-form .ginput_container_select select::placeholder, .f--form-item input[type='date']::placeholder, .f--form-item input[type='datetime-local']::placeholder, .f--form-item input[type='email']::placeholder, .f--form-item input[type='month']::placeholder, .f--form-item input[type='number']::placeholder, .f--form-item input[type='password']::placeholder, .f--form-item input[type='search']::placeholder, .f--form-item input[type='tel']::placeholder, .f--form-item input[type='text']::placeholder, .f--form-item input[type='time']::placeholder, .f--form-item input[type='url']::placeholder, .f--form-item input[type='week']::placeholder, .cc--gravity-form .ginput_container input[type='text']::placeholder,
  .cc--gravity-form .ginput_container input[type='url']::placeholder,
  .cc--gravity-form .ginput_container input[type='passwords']::placeholder,
  .cc--gravity-form .ginput_container input[type='number']::placeholder,
  .cc--gravity-form .ginput_container input[type='email']::placeholder {
    color: #6C6F70; }

.f--form-item textarea, .cc--gravity-form .ginput_container textarea {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  height: 9.375rem;
  line-height: unset; }
  @media screen and (min-width: 768px) {
    .f--form-item textarea, .cc--gravity-form .ginput_container textarea {
      height: 12.5rem; } }

.f--form-item .select-wrap, .cc--gravity-form .ginput_container_select {
  position: relative;
  background-color: #FFF; }
  .f--form-item .select-wrap select, .cc--gravity-form .ginput_container_select select {
    background: transparent;
    background-image: none;
    z-index: 2; }
    .f--form-item .select-wrap select::-ms-expand, .cc--gravity-form .ginput_container_select select::-ms-expand {
      display: none; }
    html[data-whatinput="keyboard"] .f--form-item .select-wrap select:focus, .f--form-item html[data-whatinput="keyboard"] .select-wrap select:focus, html[data-whatinput="keyboard"] .cc--gravity-form .ginput_container_select select:focus, .cc--gravity-form html[data-whatinput="keyboard"] .ginput_container_select select:focus {
      outline: 3px solid #00B5E2; }
    html[data-whatinput="mouse"] .f--form-item .select-wrap select:focus, .f--form-item html[data-whatinput="mouse"] .select-wrap select:focus, html[data-whatinput="mouse"] .cc--gravity-form .ginput_container_select select:focus, .cc--gravity-form html[data-whatinput="mouse"] .ginput_container_select select:focus {
      outline: none; }
  .f--form-item .select-wrap .f--icon, .cc--gravity-form .ginput_container_select .f--icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1.375rem; }
    @media screen and (min-width: 768px) {
      .f--form-item .select-wrap .f--icon, .cc--gravity-form .ginput_container_select .f--icon {
        right: 2rem; } }
    @media screen and (min-width: 1024px) {
      .f--form-item .select-wrap .f--icon, .cc--gravity-form .ginput_container_select .f--icon {
        right: 3.125vw; } }
    @media screen and (min-width: 1800px) {
      .f--form-item .select-wrap .f--icon, .cc--gravity-form .ginput_container_select .f--icon {
        right: 56.25px; } }
    .f--form-item .select-wrap .f--icon img, .cc--gravity-form .ginput_container_select .f--icon img,
    .f--form-item .select-wrap .f--icon svg,
    .cc--gravity-form .ginput_container_select .f--icon svg {
      width: 0.8125rem;
      pointer-events: none; }
      .f--form-item .select-wrap .f--icon img polygon, .cc--gravity-form .ginput_container_select .f--icon img polygon,
      .f--form-item .select-wrap .f--icon svg polygon,
      .cc--gravity-form .ginput_container_select .f--icon svg polygon {
        fill: #000; }

.cc--gravity-form .gfield_radio label::before, .cc--gravity-form .gfield_radio label::after {
  border-radius: 6.25rem; }

.cc--gravity-form .gfield_radio input[type='radio']:checked + label::after {
  top: 0.75rem;
  left: 0.375rem;
  height: 0.875rem;
  width: 0.875rem;
  background-color: #000; }

.checkbox-wrapper input[type='checkbox']:checked + label::after, .cc--gravity-form .gfield_checkbox input[type='checkbox']:checked + label::after {
  left: 0.5625rem;
  top: 0.125rem;
  width: 0.5rem;
  height: 0.9375rem;
  border: solid #000;
  border-width: 0 0.125rem 0.125rem 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.cc--gravity-form .gfield_radio, .checkbox-wrapper, .cc--gravity-form .gfield_checkbox {
  position: relative;
  text-align: left; }
  .cc--gravity-form .gfield_radio input[type='radio'], .checkbox-wrapper input[type='radio'], .cc--gravity-form .gfield_checkbox input[type='radio'],
  .cc--gravity-form .gfield_radio input[type='checkbox'],
  .checkbox-wrapper input[type='checkbox'],
  .cc--gravity-form .gfield_checkbox input[type='checkbox'] {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    margin: -1px;
    bottom: 0;
    -webkit-transform: translateX(0.9375rem);
            transform: translateX(0.9375rem); }
    html[data-whatinput="keyboard"] .cc--gravity-form .gfield_radio input[type='radio']:focus + label::before, .cc--gravity-form html[data-whatinput="keyboard"] .gfield_radio input[type='radio']:focus + label::before, html[data-whatinput="keyboard"] .checkbox-wrapper input[type='radio']:focus + label::before, html[data-whatinput="keyboard"] .cc--gravity-form .gfield_checkbox input[type='radio']:focus + label::before, .cc--gravity-form html[data-whatinput="keyboard"] .gfield_checkbox input[type='radio']:focus + label::before, html[data-whatinput="keyboard"] .cc--gravity-form .gfield_radio input[type='checkbox']:focus + label::before, .cc--gravity-form html[data-whatinput="keyboard"] .gfield_radio input[type='checkbox']:focus + label::before, html[data-whatinput="keyboard"] .checkbox-wrapper input[type='checkbox']:focus + label::before, html[data-whatinput="keyboard"] .cc--gravity-form .gfield_checkbox input[type='checkbox']:focus + label::before, .cc--gravity-form html[data-whatinput="keyboard"] .gfield_checkbox input[type='checkbox']:focus + label::before {
      outline: 3px solid #00B5E2; }
    html[data-whatinput="mouse"] .cc--gravity-form .gfield_radio input[type='radio']:focus + label::before, .cc--gravity-form html[data-whatinput="mouse"] .gfield_radio input[type='radio']:focus + label::before, html[data-whatinput="mouse"] .checkbox-wrapper input[type='radio']:focus + label::before, html[data-whatinput="mouse"] .cc--gravity-form .gfield_checkbox input[type='radio']:focus + label::before, .cc--gravity-form html[data-whatinput="mouse"] .gfield_checkbox input[type='radio']:focus + label::before, html[data-whatinput="mouse"] .cc--gravity-form .gfield_radio input[type='checkbox']:focus + label::before, .cc--gravity-form html[data-whatinput="mouse"] .gfield_radio input[type='checkbox']:focus + label::before, html[data-whatinput="mouse"] .checkbox-wrapper input[type='checkbox']:focus + label::before, html[data-whatinput="mouse"] .cc--gravity-form .gfield_checkbox input[type='checkbox']:focus + label::before, .cc--gravity-form html[data-whatinput="mouse"] .gfield_checkbox input[type='checkbox']:focus + label::before {
      outline: none; }
    .cc--gravity-form .gfield_radio input[type='radio']:checked + label, .checkbox-wrapper input[type='radio']:checked + label, .cc--gravity-form .gfield_checkbox input[type='radio']:checked + label,
    .cc--gravity-form .gfield_radio input[type='checkbox']:checked + label,
    .checkbox-wrapper input[type='checkbox']:checked + label,
    .cc--gravity-form .gfield_checkbox input[type='checkbox']:checked + label {
      color: #000; }
      .cc--gravity-form .gfield_radio input[type='radio']:checked + label::after, .checkbox-wrapper input[type='radio']:checked + label::after, .cc--gravity-form .gfield_checkbox input[type='radio']:checked + label::after,
      .cc--gravity-form .gfield_radio input[type='checkbox']:checked + label::after,
      .checkbox-wrapper input[type='checkbox']:checked + label::after,
      .cc--gravity-form .gfield_checkbox input[type='checkbox']:checked + label::after {
        display: block; }
  .cc--gravity-form .gfield_radio label, .checkbox-wrapper label, .cc--gravity-form .gfield_checkbox label {
    padding-left: 2.5rem;
    position: relative;
    display: inline-block;
    height: 1.5rem;
    margin-bottom: 0;
    color: #000;
    cursor: pointer; }
    .cc--gravity-form .gfield_radio label::before, .checkbox-wrapper label::before, .cc--gravity-form .gfield_checkbox label::before, .cc--gravity-form .gfield_radio label::after, .checkbox-wrapper label::after, .cc--gravity-form .gfield_checkbox label::after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: ''; }
    .cc--gravity-form .gfield_radio label::before, .checkbox-wrapper label::before, .cc--gravity-form .gfield_checkbox label::before {
      left: 0.0625rem;
      width: 1.5rem;
      height: 1.5rem;
      border: 0.0625rem solid #000;
      background-color: #FFF; }
    .cc--gravity-form .gfield_radio label::after, .checkbox-wrapper label::after, .cc--gravity-form .gfield_checkbox label::after {
      display: none; }
    html[data-whatintent="mouse"] .cc--gravity-form .gfield_radio label, .cc--gravity-form html[data-whatintent="mouse"] .gfield_radio label, html[data-whatintent="mouse"] .checkbox-wrapper label, html[data-whatintent="mouse"] .cc--gravity-form .gfield_checkbox label, .cc--gravity-form html[data-whatintent="mouse"] .gfield_checkbox label {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--gravity-form .gfield_radio label:hover::before, .cc--gravity-form html[data-whatintent="mouse"] .gfield_radio label:hover::before, html[data-whatintent="mouse"] .checkbox-wrapper label:hover::before, html[data-whatintent="mouse"] .cc--gravity-form .gfield_checkbox label:hover::before, .cc--gravity-form html[data-whatintent="mouse"] .gfield_checkbox label:hover::before {
        border-width: 0.125rem; }

.f--form-item:not(:last-child), .cc--form-section:not(:last-child), .cc--gravity-form .gform_body:not(:last-child), .cc--gravity-form .gfield:not(:last-child) {
  margin-bottom: 1.25rem; }
  @media screen and (min-width: 768px) {
    .f--form-item:not(:last-child), .cc--form-section:not(:last-child), .cc--gravity-form .gform_body:not(:last-child), .cc--gravity-form .gfield:not(:last-child) {
      margin-bottom: 1.5625rem; } }

.f--form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

@media screen and (min-width: 768px) {
  .cc--form-section.two-columns .c--form-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .cc--form-section.two-columns .c--form-section > * {
      width: 100%; }
    .cc--form-section.two-columns .c--form-section > *:first-child {
      margin-right: 4.16667vw; } }
    @media screen and (min-width: 768px) and (min-width: 1800px) {
      .cc--form-section.two-columns .c--form-section > *:first-child {
        margin-right: 75px; } }

.cc--form-section.two-columns .f--form-item:nth-last-child(1) {
  margin-bottom: 0; }

@media screen and (min-width: 768px) {
  .cc--form-section.two-columns .f--form-item:nth-last-child(2) {
    margin-bottom: 0; } }

.f--form-success-notification {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .f--form-success-notification {
      margin-top: 3.125rem;
      font-size: 1.25rem;
      line-height: 1.4;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .state-success .f--form-success-notification {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .f--form-success-notification .f--icon {
    display: block;
    width: 1.75rem;
    overflow: hidden;
    border-radius: 100%;
    height: 1.75rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #FFF; }
    @media screen and (min-width: 768px) {
      .f--form-success-notification .f--icon {
        margin-right: 0.75rem;
        margin-bottom: 0; } }

.f--form-item input[type='button'] {
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.3125rem;
  margin-right: 0.3125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  white-space: normal;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-family: inherit;
  font-weight: 700;
  color: #000;
  background-color: #FFF;
  border: 0.0625rem solid #000;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 #000;
          box-shadow: 0.3125rem 0.3125rem 0 #000;
  -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  cursor: pointer;
  padding-top: 0.6875rem;
  padding-bottom: 0.5625rem;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  background-color: #FFF;
  color: #000;
  border: 0.0625rem solid #9E1B32;
  width: 100%;
  min-width: 10rem;
  height: 3.125rem; }
  html[data-whatintent="mouse"] .f--form-item input[type='button'] {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .f--form-item input[type='button']:hover {
      -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: #000;
      color: #FFF;
      text-decoration: none; }
      html[data-whatintent="mouse"] .f--form-item input[type='button']:hover svg {
        fill: #FFF; }
  html[data-whatintent="mouse"] .f--form-item input[type='button'] {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .f--form-item input[type='button']:hover {
      -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: #9E1B32;
      color: #FFF;
      text-decoration: none; }
      html[data-whatintent="mouse"] .f--form-item input[type='button']:hover svg {
        fill: #FFF; }
  @media screen and (min-width: 768px) {
    .f--form-item input[type='button'] {
      width: auto;
      margin-bottom: 0.375rem;
      margin-right: 0.375rem;
      padding: 1.1875rem 2.5rem 0.9375rem;
      -webkit-box-shadow: 0.375rem 0.375rem 0 #000;
              box-shadow: 0.375rem 0.375rem 0 #000;
      font-size: 1.1875rem;
      line-height: 1.5rem; } }

.f--form-item .radio-wrapper {
  position: relative;
  padding: 20px 0 20px 40px;
  text-align: left; }
  .f--form-item .radio-wrapper input[type='radio'] {
    position: absolute;
    top: 0;
    left: -9999px; }
    html[data-whatinput='keyboard'] .f--form-item .radio-wrapper input[type='radio']:focus + label::before {
      outline: 3px solid #9E1B32; }
    .f--form-item .radio-wrapper input[type='radio']:checked + label {
      font-weight: 700;
      color: #9E1B32; }
      .f--form-item .radio-wrapper input[type='radio']:checked + label::before {
        border: 2px solid #9E1B32; }
      .f--form-item .radio-wrapper input[type='radio']:checked + label::after {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        opacity: 1; }
  .f--form-item .radio-wrapper label {
    margin-bottom: 0;
    font-weight: 700;
    cursor: pointer; }
    .f--form-item .radio-wrapper label::before, .f--form-item .radio-wrapper label::after {
      position: absolute;
      top: 50%;
      content: ''; }
    .f--form-item .radio-wrapper label::before {
      left: 1px;
      width: 26px;
      height: 26px;
      margin: -15px 0 0;
      border: 1px solid #9E1B32;
      border-radius: 50%;
      background-color: #FFF; }
    .f--form-item .radio-wrapper label::after {
      left: 7px;
      width: 14px;
      height: 14px;
      margin: -9px 0 0;
      -webkit-transform: translate3d(-40px, 0, 0) scale(0.5);
              transform: translate3d(-40px, 0, 0) scale(0.5);
      border-radius: 50%;
      background-color: #9E1B32;
      opacity: 0; }

.f--form-item button[type='submit'],
.f--form-item input[type='submit'] {
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.3125rem;
  margin-right: 0.3125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  white-space: normal;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-family: inherit;
  font-weight: 700;
  color: #000;
  background-color: #FFF;
  border: 0.0625rem solid #000;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 #000;
          box-shadow: 0.3125rem 0.3125rem 0 #000;
  -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  cursor: pointer;
  padding-top: 0.6875rem;
  padding-bottom: 0.5625rem;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  background-color: #FFF;
  color: #000;
  border: 0.0625rem solid #9E1B32;
  width: 100%;
  min-width: 10rem;
  height: 3.125rem; }
  html[data-whatintent="mouse"] .f--form-item button[type='submit'], html[data-whatintent="mouse"]
  .f--form-item input[type='submit'] {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .f--form-item button[type='submit']:hover, html[data-whatintent="mouse"]
    .f--form-item input[type='submit']:hover {
      -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: #000;
      color: #FFF;
      text-decoration: none; }
      html[data-whatintent="mouse"] .f--form-item button[type='submit']:hover svg, html[data-whatintent="mouse"]
      .f--form-item input[type='submit']:hover svg {
        fill: #FFF; }
  html[data-whatintent="mouse"] .f--form-item button[type='submit'], html[data-whatintent="mouse"]
  .f--form-item input[type='submit'] {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .f--form-item button[type='submit']:hover, html[data-whatintent="mouse"]
    .f--form-item input[type='submit']:hover {
      -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: #9E1B32;
      color: #FFF;
      text-decoration: none; }
      html[data-whatintent="mouse"] .f--form-item button[type='submit']:hover svg, html[data-whatintent="mouse"]
      .f--form-item input[type='submit']:hover svg {
        fill: #FFF; }
  @media screen and (min-width: 768px) {
    .f--form-item button[type='submit'],
    .f--form-item input[type='submit'] {
      width: auto;
      margin-bottom: 0.375rem;
      margin-right: 0.375rem;
      padding: 1.1875rem 2.5rem 0.9375rem;
      -webkit-box-shadow: 0.375rem 0.375rem 0 #000;
              box-shadow: 0.375rem 0.375rem 0 #000;
      font-size: 1.1875rem;
      line-height: 1.5rem; } }

.f--form-item textarea {
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.625rem; }

.link,
a {
  color: #000;
  text-decoration: underline; }
  html[data-whatintent="mouse"] .link, html[data-whatintent="mouse"]
  a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .link:hover, html[data-whatintent="mouse"]
    a:hover {
      color: #48994A;
      text-decoration: none; }
      html[data-whatintent="mouse"] .link:hover svg, html[data-whatintent="mouse"]
      a:hover svg {
        fill: #48994A; }

.menu-item.active > .submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.menu-item.active > .arrow-wrapper .button-arrow-down img,
.menu-item.active > .arrow-wrapper .button-arrow-down svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.menu-item .arrow-wrapper {
  position: relative; }

.menu-item .button-arrow-down {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 6.25%;
  width: 0.8125rem; }
  @media screen and (max-width: 1023px) {
    .menu-item .button-arrow-down {
      width: 2.5rem;
      height: 2.5rem; } }
  @media screen and (min-width: 1024px) {
    .menu-item .button-arrow-down {
      margin-left: 0.4375rem;
      position: unset;
      -webkit-transform: unset;
              transform: unset; } }

.menu-item .submenu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10; }
  .menu-item .submenu a {
    font-size: 0.9375rem;
    line-height: 1.3334; }

@media screen and (min-width: 1024px) {
  .mc--menu .button-hamburger {
    display: none; } }

@media screen and (min-width: 768px) {
  .mc--menu .hamburger.is-active .hamburger-inner::after {
    bottom: -0.03125rem; } }

@media screen and (min-width: 768px) {
  .mc--menu .hamburger-inner {
    width: 24px;
    height: 2.4px; } }

@media screen and (min-width: 768px) {
  .mc--menu .hamburger-inner::before {
    top: -7.5px;
    width: 24px;
    height: 2.4px; } }

@media screen and (min-width: 768px) {
  .mc--menu .hamburger-inner::after {
    bottom: -7.5px;
    width: 24px;
    height: 2.4px; } }

.f--image.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }
  .f--image.bg-image img {
    height: inherit;
    width: inherit; }

.f--branding {
  text-align: center; }
  .f--branding img {
    display: inline-block; }

.f--cta-title {
  font-size: 1.125rem;
  line-height: 1.3334;
  color: #000;
  font-weight: 700; }
  @media screen and (min-width: 768px) {
    .f--cta-title {
      font-size: 1.75rem;
      line-height: 1.2143; } }
  .f--cta-title h3 {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit; }
  .f--cta-title a {
    text-decoration: none; }
    html[data-whatintent="mouse"] .f--cta-title a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .f--cta-title a:hover {
        text-decoration: underline; }

.f--description, .cc--gravity-form .gform_confirmation_wrapper {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400; }
  @media screen and (min-width: 768px) {
    .f--description, .cc--gravity-form .gform_confirmation_wrapper {
      font-size: 1.5rem;
      line-height: 1.3334; } }
  .f--description p, .cc--gravity-form .gform_confirmation_wrapper p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit; }

.f--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0; }
  .f--icon .icon-wrapper {
    line-height: 0; }
  .f--icon img {
    width: 1.125rem;
    height: auto; }
  .f--icon svg {
    width: 1.125rem;
    height: 1.125rem;
    -webkit-transition: inherit;
    transition: inherit; }

.f--image img {
  -o-object-fit: cover;
     object-fit: cover; }

.f--button-load-more, .cc--social-media-feed .j-paginate.juicer-button {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 700;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .f--button-load-more, .cc--social-media-feed .j-paginate.juicer-button {
      margin-top: 3.125rem;
      font-size: 1.1875rem;
      line-height: 1.2632; } }
  @media screen and (min-width: 1024px) {
    .f--button-load-more, .cc--social-media-feed .j-paginate.juicer-button {
      margin-top: 3.75rem; } }

.f--no-results {
  margin-top: 1.25rem;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: auto;
  font-size: 1.125rem;
  line-height: 1.4445;
  display: block;
  color: #666;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .f--no-results {
      margin-top: 1.875rem;
      margin-bottom: 1.875rem;
      font-size: 1.375rem;
      line-height: 1.4546; } }

.f--page-title {
  font-size: 2rem;
  line-height: 1.1875;
  font-weight: 900;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .f--page-title {
      font-size: 3rem;
      line-height: 1.125; } }
  @media screen and (min-width: 1024px) {
    .f--page-title {
      font-size: 3.375rem;
      line-height: 1.1112; } }
  .f--page-title h1 {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit; }

.f--quote {
  text-align: center; }
  .content-sidebar .f--quote {
    text-align: left; }
    .content-sidebar .f--quote .quote-inner {
      margin-top: 1.875rem;
      margin-bottom: 2.5rem;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 2.875rem;
      padding-left: 0;
      border-top: unset; }
      @media screen and (min-width: 768px) {
        .content-sidebar .f--quote .quote-inner {
          padding-bottom: 2rem; } }
      @media screen and (min-width: 1024px) {
        .content-sidebar .f--quote .quote-inner {
          padding-bottom: 2.875rem; } }
    .content-sidebar .f--quote .quote-content {
      font-size: 1.5rem;
      line-height: 1.25;
      font-weight: 700; }
  .f--quote .quote-inner {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    border: 0.25rem solid currentColor;
    border-right: unset;
    border-left: unset; }
    @media screen and (min-width: 768px) {
      .f--quote .quote-inner {
        padding-top: 2.5rem;
        padding-right: 8.33333vw;
        padding-bottom: 2.5rem;
        padding-left: 8.33333vw; } }
    @media screen and (min-width: 1024px) {
      .f--quote .quote-inner {
        padding-right: 6.25vw;
        padding-left: 6.25vw; } }
    @media screen and (min-width: 1800px) {
      .f--quote .quote-inner {
        padding-right: 112.5px;
        padding-left: 112.5px; } }
  .f--quote .quote-content {
    font-size: 1.375rem;
    line-height: 1.6364; }
    @media screen and (min-width: 768px) {
      .f--quote .quote-content {
        font-size: 2rem;
        line-height: 1.5; } }
    .f--quote .quote-content p {
      color: inherit;
      font-size: inherit;
      line-height: inherit; }
  .f--quote .quote-attribution {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.375;
    color: #666; }
    @media screen and (min-width: 768px) {
      .f--quote .quote-attribution {
        margin-top: 2rem;
        font-size: 1.125rem;
        line-height: 1.3334; } }
    @media screen and (min-width: 1024px) {
      .f--quote .quote-attribution {
        margin-top: 1.4375rem; } }

.f--section-heading .f--description {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .f--section-heading .f--description {
      max-width: 70.83333vw;
      margin-left: auto;
      margin-right: auto; } }
  @media screen and (min-width: 1200px) {
    .f--section-heading .f--description {
      max-width: 50vw;
      margin-left: auto;
      margin-right: auto; } }
  @media screen and (min-width: 1800px) {
    .f--section-heading .f--description {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto; } }

.f--section-title {
  margin-bottom: 1.25rem;
  font-size: 1.625rem;
  line-height: 1.2308;
  font-weight: 900;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .f--section-title {
      max-width: 70.83333vw;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 1.875rem;
      font-size: 2.5rem;
      line-height: 1.15; } }
  @media screen and (min-width: 1024px) {
    .f--section-title {
      max-width: 58.33333vw;
      margin-left: auto;
      margin-right: auto;
      font-size: 3rem;
      line-height: 1.125; } }
  @media screen and (min-width: 1800px) {
    .f--section-title {
      max-width: 1050px;
      margin-left: auto;
      margin-right: auto; } }
  .f--section-title.secondary {
    font-size: 1.5rem;
    line-height: 1.25;
    color: #000;
    font-weight: 700; }
    @media screen and (min-width: 768px) {
      .f--section-title.secondary {
        margin-bottom: 1.9375rem;
        font-size: 2rem;
        line-height: 1.1875; } }
    @media screen and (min-width: 1024px) {
      .f--section-title.secondary {
        margin-bottom: 2.4375rem;
        font-size: 2.5rem;
        line-height: 1.15; } }
  .f--section-title h2 {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit; }

.f--spacer {
  height: 1.875rem; }
  @media screen and (min-width: 768px) {
    .f--spacer {
      height: 2.1875rem; } }
  @media screen and (min-width: 1024px) {
    .f--spacer {
      height: 3.125rem; } }

.cc--admin-tabs .c--admin-tabs {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-right: 2.08333%;
  padding-bottom: 20px;
  padding-left: 2.08333%;
  display: none; }
  @media screen and (min-width: 768px) {
    .cc--admin-tabs .c--admin-tabs {
      display: block; }
      .cc--admin-tabs .c--admin-tabs > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        list-style-type: none; }
        .cc--admin-tabs .c--admin-tabs > ul > li {
          margin: 0 2.5rem 0 0; } }

.cc--author .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%; }

.cc--author .f--image {
  display: block;
  width: 5rem;
  overflow: hidden;
  border-radius: 100%;
  height: 5rem;
  max-width: 5rem;
  min-width: 5rem;
  margin-right: 1.25rem; }
  @media screen and (min-width: 1024px) {
    .cc--author .f--image + .author-reference .name {
      display: block; } }

.cc--author img {
  height: 100%; }

.cc--author .author-reference {
  font-size: 1rem;
  line-height: 1.5; }
  .cc--author .author-reference .prefix {
    font-style: italic; }
  .cc--author .author-reference .name {
    font-weight: 700; }
  .cc--author .author-reference a {
    display: block;
    color: #9E1B32;
    font-weight: 700;
    text-decoration: underline; }
    html[data-whatintent="mouse"] .cc--author .author-reference a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--author .author-reference a:hover {
        color: #000;
        text-decoration: none; }

.cc--body-content .body-inner .body-inner-section ul, .cc--body-content .body-inner .body-inner-section ol {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  font-size: 1rem;
  line-height: 1.5; }
  .cc--body-content .body-inner .body-inner-section ul li, .cc--body-content .body-inner .body-inner-section ol li {
    margin-bottom: 0.625rem;
    margin-left: 0.625rem;
    padding-left: 1.875rem;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--body-content .body-inner .body-inner-section ul li, .cc--body-content .body-inner .body-inner-section ol li {
        margin-left: 0.9375rem;
        font-size: 1.5rem;
        line-height: 1.3334; } }
    .cc--body-content .body-inner .body-inner-section ul li:last-of-type, .cc--body-content .body-inner .body-inner-section ol li:last-of-type {
      margin-bottom: 0; }
    .cc--body-content .body-inner .body-inner-section ul li::before, .cc--body-content .body-inner .body-inner-section ol li::before {
      margin-right: 0.9375rem;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 0.8125rem;
      font-weight: 700; }
      @media screen and (min-width: 768px) {
        .cc--body-content .body-inner .body-inner-section ul li::before, .cc--body-content .body-inner .body-inner-section ol li::before {
          margin-right: 0.9375rem;
          width: 1rem;
          font-size: 1.5rem;
          line-height: 1.3334; } }

.cc--body-content .body-inner .body-inner-section .img_wrapper, .cc--body-content .body-inner .body-inner-section figure, .cc--body-content .body-inner .body-inner-section .iframe_wrapper {
  margin-top: 1.875rem;
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  width: 100% !important;
  max-width: 100%; }
  @media screen and (min-width: 768px) {
    .cc--body-content .body-inner .body-inner-section .img_wrapper, .cc--body-content .body-inner .body-inner-section figure, .cc--body-content .body-inner .body-inner-section .iframe_wrapper {
      margin-top: 3.125rem;
      margin-bottom: 3.125rem;
      padding-right: 4.16667vw;
      padding-left: 4.16667vw; } }
  @media screen and (min-width: 1024px) {
    .cc--body-content .body-inner .body-inner-section .img_wrapper, .cc--body-content .body-inner .body-inner-section figure, .cc--body-content .body-inner .body-inner-section .iframe_wrapper {
      margin-top: 3.75rem;
      padding-right: 14.58333vw;
      padding-left: 14.58333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--body-content .body-inner .body-inner-section .img_wrapper, .cc--body-content .body-inner .body-inner-section figure, .cc--body-content .body-inner .body-inner-section .iframe_wrapper {
      padding-right: 262.5px;
      padding-left: 262.5px; } }
  .cc--body-content .body-inner .body-inner-section .img_wrapper ~ img, .cc--body-content .body-inner .body-inner-section figure ~ img, .cc--body-content .body-inner .body-inner-section .iframe_wrapper ~ img,
  .cc--body-content .body-inner .body-inner-section .img_wrapper ~ figure,
  .cc--body-content .body-inner .body-inner-section figure ~ figure,
  .cc--body-content .body-inner .body-inner-section .iframe_wrapper ~ figure {
    margin-top: 4.375rem; }

.cc--body-content .body-inner .body-inner-section .alignleft, .cc--body-content .body-inner .body-inner-section .alignright {
  width: auto !important;
  clear: both; }
  @media screen and (min-width: 1024px) {
    .cc--body-content .body-inner .body-inner-section .alignleft, .cc--body-content .body-inner .body-inner-section .alignright {
      max-width: calc( 100% - 10.41667vw); } }
  @media screen and (min-width: 1800px) {
    .cc--body-content .body-inner .body-inner-section .alignleft, .cc--body-content .body-inner .body-inner-section .alignright {
      max-width: calc( 100% - 187.5px); } }
  @media screen and (min-width: 768px) {
    .cc--body-content .body-inner .body-inner-section .alignleft figcaption, .cc--body-content .body-inner .body-inner-section .alignright figcaption {
      text-align: left; } }

.cc--body-content {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  .cc--body-content .body-inner {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 20px; }
    @media screen and (min-width: 768px) {
      .cc--body-content .body-inner {
        padding-top: 80px;
        padding-bottom: 30px; } }
    @media screen and (min-width: 1024px) {
      .cc--body-content .body-inner {
        padding-top: 100px;
        padding-bottom: 35px; } }
    .cc--body-content .body-inner .body-inner-section {
      margin-bottom: 1.875rem;
      overflow: hidden; }
      @media screen and (min-width: 768px) {
        .cc--body-content .body-inner .body-inner-section {
          margin-bottom: 2.1875rem; } }
      @media screen and (min-width: 1024px) {
        .cc--body-content .body-inner .body-inner-section {
          margin-bottom: 3.125rem; } }
      .cc--body-content .body-inner .body-inner-section.intro {
        margin-bottom: 2.5rem; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section.intro {
            margin-bottom: 5rem;
            padding-right: 4.16667vw;
            padding-left: 4.16667vw; } }
        @media screen and (min-width: 1024px) {
          .cc--body-content .body-inner .body-inner-section.intro {
            margin-bottom: 6.25rem;
            padding-right: 14.58333vw;
            padding-left: 14.58333vw; } }
        @media screen and (min-width: 1800px) {
          .cc--body-content .body-inner .body-inner-section.intro {
            padding-right: 262.5px;
            padding-left: 262.5px; } }
        .cc--body-content .body-inner .body-inner-section.intro::after {
          margin-top: 1.875rem;
          display: block;
          height: 1px;
          background: #DDD;
          content: ''; }
          @media screen and (min-width: 768px) {
            .cc--body-content .body-inner .body-inner-section.intro::after {
              margin-top: 3.4375rem; } }
          @media screen and (min-width: 1024px) {
            .cc--body-content .body-inner .body-inner-section.intro::after {
              margin-top: 4.0625rem; } }
        .cc--body-content .body-inner .body-inner-section.intro p {
          font-size: 1.125rem;
          line-height: 1.4445;
          color: #000; }
          @media screen and (min-width: 768px) {
            .cc--body-content .body-inner .body-inner-section.intro p {
              font-size: 1.5rem;
              line-height: 1.8334;
              padding-right: 8.33333vw;
              padding-left: 8.33333vw; } }
          @media screen and (min-width: 1024px) {
            .cc--body-content .body-inner .body-inner-section.intro p {
              padding-right: 6.25vw;
              padding-left: 6.25vw; } }
          @media screen and (min-width: 1800px) {
            .cc--body-content .body-inner .body-inner-section.intro p {
              padding-right: 112.5px;
              padding-left: 112.5px; } }
      .cc--body-content .body-inner .body-inner-section:last-of-type {
        margin-bottom: 0; }
      .cc--body-content .body-inner .body-inner-section > * {
        max-width: 1800px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding-left: 6.25%;
        padding-right: 6.25%; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section > * {
            padding-left: 4.16667%;
            padding-right: 4.16667%; } }
        @media screen and (min-width: 1024px) {
          .cc--body-content .body-inner .body-inner-section > * {
            padding-left: 6.25%;
            padding-right: 6.25%; } }
        @media screen and (min-width: 1800px) {
          .cc--body-content .body-inner .body-inner-section > * {
            padding-left: 112.5px;
            padding-right: 112.5px; } }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section > * {
            padding-right: 12.5vw;
            padding-left: 12.5vw; } }
        @media screen and (min-width: 1024px) {
          .cc--body-content .body-inner .body-inner-section > * {
            padding-right: 20.83333vw;
            padding-left: 20.83333vw; } }
        @media screen and (min-width: 1800px) {
          .cc--body-content .body-inner .body-inner-section > * {
            padding-right: 375px;
            padding-left: 375px; } }
        .tc--recipe .cc--body-content .body-inner .body-inner-section > * {
          padding: 0; }
      .cc--body-content .body-inner .body-inner-section > *:first-child {
        margin-top: 0 !important; }
        .cc--body-content .body-inner .body-inner-section > *:first-child .img_wrapper:first-child {
          margin-top: 0 !important; }
      .cc--body-content .body-inner .body-inner-section > *:last-child {
        margin-bottom: 0 !important; }
      .cc--body-content .body-inner .body-inner-section > p,
      .cc--body-content .body-inner .body-inner-section > *:not(.f--quote) p {
        margin-top: 1.375rem;
        margin-bottom: 1.375rem;
        font-size: 1rem;
        line-height: 1.75;
        color: #444; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section > p,
          .cc--body-content .body-inner .body-inner-section > *:not(.f--quote) p {
            margin-top: 1.875rem;
            margin-bottom: 1.875rem;
            font-size: 1.5rem;
            line-height: 1.8334; } }
      .cc--body-content .body-inner .body-inner-section .cc--meta {
        font-size: 1.125rem;
        line-height: 1.3334;
        font-weight: 900; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section .cc--meta {
            margin-bottom: 1.875rem;
            font-size: 1.5rem;
            line-height: 1.25; } }
      .cc--body-content .body-inner .body-inner-section h2 {
        margin-top: 1.875rem;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        line-height: 1.25;
        font-weight: 900; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section h2 {
            margin-top: 2.5rem;
            margin-bottom: 1.875rem;
            font-size: 2rem;
            line-height: 1.1875; } }
      .cc--body-content .body-inner .body-inner-section h3 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        font-size: 1.25rem;
        line-height: 1.3;
        font-weight: 900; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section h3 {
            margin-top: 1.875rem;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
            line-height: 1.2143; } }
      .cc--body-content .body-inner .body-inner-section h4 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        font-size: 1.125rem;
        line-height: 1.3334;
        font-weight: 900; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section h4 {
            margin-top: 1.875rem;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            line-height: 1.25; } }
      .cc--body-content .body-inner .body-inner-section ul {
        color: #666; }
        @media screen and (max-width: 767px) {
          .cc--body-content .body-inner .body-inner-section ul {
            margin-top: 1.25rem;
            margin-bottom: 1.25rem; } }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section ul {
            font-size: 1.5rem;
            line-height: 1.3334; } }
        .cc--body-content .body-inner .body-inner-section ul li::before {
          content: '\2022'; }
      .cc--body-content .body-inner .body-inner-section ol {
        color: #666;
        counter-reset: item; }
        .cc--body-content .body-inner .body-inner-section ol li::before {
          content: counter(item) ". ";
          counter-increment: item; }
      .cc--body-content .body-inner .body-inner-section .f--quote {
        margin-top: 1.875rem;
        margin-bottom: 2.5rem; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section .f--quote {
            padding-right: 4.16667vw;
            padding-left: 4.16667vw;
            margin-top: 3.75rem;
            margin-bottom: 5rem; } }
        @media screen and (min-width: 1024px) {
          .cc--body-content .body-inner .body-inner-section .f--quote {
            padding-right: 14.58333vw;
            padding-left: 14.58333vw;
            margin-top: 4.1875rem;
            margin-bottom: 6.25rem; } }
        @media screen and (min-width: 1800px) {
          .cc--body-content .body-inner .body-inner-section .f--quote {
            padding-right: 262.5px;
            padding-left: 262.5px; } }
        .cc--body-content .body-inner .body-inner-section .f--quote .quote-attribution {
          margin-bottom: 0; }
      .cc--body-content .body-inner .body-inner-section a {
        color: #000;
        text-decoration: underline; }
        html[data-whatintent="mouse"] .cc--body-content .body-inner .body-inner-section a {
          -webkit-transition: all 0.1s;
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--body-content .body-inner .body-inner-section a:hover {
            color: #48994A;
            text-decoration: none; }
      .cc--body-content .body-inner .body-inner-section .img_wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .cc--body-content .body-inner .body-inner-section .img_wrapper:not(.alignleft):not(.alignright) {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; }
        .cc--body-content .body-inner .body-inner-section .img_wrapper img {
          height: intrinsic; }
          @media screen and (max-width: 767px) {
            .cc--body-content .body-inner .body-inner-section .img_wrapper img {
              width: 100%; } }
      .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper {
        max-width: unset; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper {
            margin-right: -8.33333vw;
            margin-left: -8.33333vw;
            width: calc(100% + 16.66667vw) !important; } }
        @media screen and (min-width: 1024px) {
          .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper {
            margin-right: -6.25vw;
            margin-left: -6.25vw;
            width: calc(100% + 12.5vw) !important; } }
        @media screen and (min-width: 1800px) {
          .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper {
            margin-right: -112.5px;
            margin-left: -112.5px;
            width: calc(100% + 225px) !important; } }
        .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper.alignright {
          padding-right: 0; }
          @media screen and (min-width: 768px) {
            .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper.alignright {
              margin-left: unset;
              width: auto !important; } }
        .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper.alignleft {
          padding-left: 0; }
          @media screen and (min-width: 768px) {
            .cc--body-content .body-inner .body-inner-section > *:not(figure) .img_wrapper.alignleft {
              margin-right: unset;
              width: auto !important; } }
      .cc--body-content .body-inner .body-inner-section figure figcaption {
        margin-top: 0.9375rem;
        font-size: 0.875rem;
        line-height: 1.4286;
        color: #666;
        font-style: normal;
        text-align: center; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section figure figcaption {
            margin-top: 1.25rem;
            font-size: 1rem;
            line-height: 1.5; } }
      .cc--body-content .body-inner .body-inner-section figure .img_wrapper {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0; }
      .cc--body-content .body-inner .body-inner-section .iframe_wrapper {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem; }
        @media screen and (min-width: 768px) {
          .cc--body-content .body-inner .body-inner-section .iframe_wrapper {
            margin-top: 3.75rem;
            margin-bottom: 3.75rem; } }
        .cc--body-content .body-inner .body-inner-section .iframe_wrapper iframe {
          margin-right: auto;
          margin-left: auto;
          display: block;
          max-width: 100%; }
          .cc--body-content .body-inner .body-inner-section .iframe_wrapper iframe[src*='youtube.com'] {
            width: 100%;
            height: calc(100vw / 16 * 9); }
            @media screen and (min-width: 768px) {
              .cc--body-content .body-inner .body-inner-section .iframe_wrapper iframe[src*='youtube.com'] {
                height: calc((100vw - 8.33333vw) / 16 * 9); } }
            @media screen and (min-width: 1024px) {
              .cc--body-content .body-inner .body-inner-section .iframe_wrapper iframe[src*='youtube.com'] {
                height: calc((100vw - 29.16667vw) / 16 * 9); } }
            @media screen and (min-width: 1800px) {
              .cc--body-content .body-inner .body-inner-section .iframe_wrapper iframe[src*='youtube.com'] {
                height: calc((100vw - 525px ) / 16 * 9); } }
      @media screen and (max-width: 767px) {
        .cc--body-content .body-inner .body-inner-section iframe:not([src*='youtube.com']) {
          width: 100%; } }
      .cc--body-content .body-inner .body-inner-section .alignnone > *,
      .cc--body-content .body-inner .body-inner-section .aligncenter > * {
        margin-right: auto;
        margin-left: auto; }
      @media screen and (min-width: 768px) {
        .cc--body-content .body-inner .body-inner-section .alignleft {
          float: left; } }
      @media screen and (min-width: 1024px) {
        .cc--body-content .body-inner .body-inner-section .alignleft {
          padding-right: 4.16667vw; } }
      @media screen and (min-width: 1800px) {
        .cc--body-content .body-inner .body-inner-section .alignleft {
          padding-right: 75px; } }
      @media screen and (min-width: 768px) {
        .cc--body-content .body-inner .body-inner-section .alignright {
          float: right; } }
      @media screen and (min-width: 1024px) {
        .cc--body-content .body-inner .body-inner-section .alignright {
          padding-left: 4.16667vw; } }
      @media screen and (min-width: 1800px) {
        .cc--body-content .body-inner .body-inner-section .alignright {
          padding-left: 75px; } }
  .cc--body-content .clearfix {
    clear: both; }

.cc--meta .meta {
  padding-right: 0.3125rem; }

.cc--meta .separator {
  margin-right: 0.3125rem;
  display: inline-block; }

.cc--share-icons-section {
  margin-top: 1.875rem;
  position: relative; }
  @media screen and (min-width: 768px) {
    .cc--share-icons-section {
      margin-top: 2.5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--share-icons-section {
      margin-top: 0;
      position: absolute;
      top: 100px;
      left: 4.16667vw; } }
  @media screen and (min-width: 1800px) {
    .cc--share-icons-section {
      left: 75px; } }
  .cc--share-icons-section .addtoany_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media screen and (min-width: 1024px) {
      .cc--share-icons-section .addtoany_list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .cc--share-icons-section .addtoany_list > a {
      display: block;
      width: 3.125rem;
      overflow: hidden;
      border-radius: 100%;
      height: 3.125rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-right: 0.625rem;
      border-collapse: separate;
      -webkit-box-shadow: 0 1.5rem 2.5rem -0.625rem rgba(0, 0, 0, 0.2);
              box-shadow: 0 1.5rem 2.5rem -0.625rem rgba(0, 0, 0, 0.2);
      background-color: #FFF; }
      @media screen and (min-width: 1024px) {
        .cc--share-icons-section .addtoany_list > a {
          margin-right: 0;
          margin-bottom: 1.25rem;
          margin-left: 0; } }
      .cc--share-icons-section .addtoany_list > a:last-child {
        margin-right: 0; }
        @media screen and (min-width: 1024px) {
          .cc--share-icons-section .addtoany_list > a:last-child {
            margin-bottom: 0; } }

.cc--campaign-carousel-slide .bg-image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1; }
  .cc--campaign-carousel-slide .bg-image img {
    width: 100%;
    height: 12.5rem; }
    @media screen and (min-width: 768px) {
      .cc--campaign-carousel-slide .bg-image img {
        margin-top: 0.75rem;
        height: 25rem; } }
    @media screen and (min-width: 1024px) {
      .cc--campaign-carousel-slide .bg-image img {
        height: 31.25rem; } }

.cc--campaign-carousel-slide .text-container {
  display: block;
  width: 18.3125rem;
  overflow: hidden;
  border-radius: 100%;
  height: 18.3125rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1.5625rem;
  padding-right: 1.5625rem;
  padding-bottom: 1.5625rem;
  padding-left: 1.5625rem;
  border-collapse: separate;
  -webkit-box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel-slide .text-container {
      display: block;
      width: 34rem;
      overflow: hidden;
      border-radius: 100%;
      height: 34rem;
      padding-top: 6.875rem;
      padding-right: 4rem;
      padding-bottom: 6.875rem;
      padding-left: 4rem; } }
  @media screen and (min-width: 1024px) {
    .cc--campaign-carousel-slide .text-container {
      display: block;
      width: 37.5rem;
      overflow: hidden;
      border-radius: 100%;
      height: 37.5rem;
      padding-top: 6.5rem;
      padding-right: 6.25rem;
      padding-bottom: 6.5rem;
      padding-left: 6.25rem; } }

.cc--campaign-carousel-slide .company-logo img {
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  width: 5.625rem; }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel-slide .company-logo img {
      margin-bottom: 1.6875rem;
      width: 11.625rem; } }
  @media screen and (min-width: 1024px) {
    .cc--campaign-carousel-slide .company-logo img {
      margin-bottom: 1.875rem;
      width: 14.0625rem; } }

.cc--campaign-carousel-slide .f--cta-title {
  margin-bottom: 0.9375rem;
  font-size: 1.25rem;
  line-height: 1.4; }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel-slide .f--cta-title {
      margin-bottom: 1.1875rem;
      font-size: 1.75rem;
      line-height: 1.2143; } }

.cc--campaign-carousel-slide .f--description {
  margin-bottom: 1.3125rem;
  font-size: 0.875rem;
  line-height: 1.5715;
  color: #444; }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel-slide .f--description {
      margin-bottom: 1.875rem;
      font-size: 1.5rem;
      line-height: 1.3334; } }
  @media screen and (min-width: 1024px) {
    .cc--campaign-carousel-slide .f--description {
      margin-bottom: 2.875rem; } }

.cc--campaign-carousel-slide .f--button-link {
  display: inline-block; }

.cc--campaign-carousel {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 25px;
  padding-bottom: 1.675rem;
  padding-bottom: 2.5rem;
  max-width: unset;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel {
      padding-top: 40px;
      padding-bottom: 55px; } }
  @media screen and (min-width: 1024px) {
    .cc--campaign-carousel {
      padding-top: 50px;
      padding-bottom: 35px; } }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel {
      padding-bottom: 1.875rem; } }
  @media screen and (min-width: 1024px) {
    .cc--campaign-carousel {
      padding-bottom: 2.5rem; } }
  @media screen and (max-width: 767px) {
    .cc--campaign-carousel .f--section-heading {
      max-width: 1800px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (max-width: 767px) and (min-width: 768px) {
    .cc--campaign-carousel .f--section-heading {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (max-width: 767px) and (min-width: 1024px) {
    .cc--campaign-carousel .f--section-heading {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (max-width: 767px) and (min-width: 1800px) {
    .cc--campaign-carousel .f--section-heading {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  .cc--campaign-carousel .c--campaign-carousel > .text-container {
    padding-right: 6.25%;
    padding-left: 6.25%; }
    @media screen and (min-width: 768px) {
      .cc--campaign-carousel .c--campaign-carousel > .text-container {
        padding-right: 4.16667%;
        padding-left: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--campaign-carousel .c--campaign-carousel > .text-container {
        padding-right: 6.25%;
        padding-left: 6.25%; } }
  .cc--campaign-carousel .cc--swiper {
    margin-top: 1.375rem; }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel .swiper-button-next {
      right: unset !important;
      left: calc( 50% + ( 34rem / 2 ) + 5.20833vw) !important; } }
  @media screen and (min-width: 1024px) {
    .cc--campaign-carousel .swiper-button-next {
      left: calc( 50% + ( 37.5rem / 2 ) + 4.16667vw) !important; } }
  @media screen and (min-width: 1800px) {
    .cc--campaign-carousel .swiper-button-next {
      left: calc( 50% + ( 37.5rem / 2 ) + 75px) !important; } }
  @media screen and (min-width: 768px) {
    .cc--campaign-carousel .swiper-button-prev {
      left: unset !important;
      right: calc( 50% + ( 34rem / 2 ) + 5.20833vw) !important; } }
  @media screen and (min-width: 1024px) {
    .cc--campaign-carousel .swiper-button-prev {
      right: calc( 50% + ( 37.5rem / 2 ) + 4.16667vw) !important; } }
  @media screen and (min-width: 1800px) {
    .cc--campaign-carousel .swiper-button-prev {
      right: calc( 50% + ( 37.5rem / 2 ) + 75px) !important; } }

.cc--campaigns-filter .cc--card .card-buttons .f--button-link:last-of-type .button {
  padding-right: 11.45833vw;
  padding-left: 11.45833vw; }
  @media screen and (min-width: 768px) {
    .cc--campaigns-filter .cc--card .card-buttons .f--button-link:last-of-type .button {
      padding-right: 7.29167vw;
      padding-left: 7.29167vw; } }
  @media screen and (min-width: 1024px) {
    .cc--campaigns-filter .cc--card .card-buttons .f--button-link:last-of-type .button {
      padding-right: 4.6875vw;
      padding-left: 4.6875vw; } }
  @media screen and (min-width: 1800px) {
    .cc--campaigns-filter .cc--card .card-buttons .f--button-link:last-of-type .button {
      padding-right: 84.375px;
      padding-left: 84.375px; } }

.cc--campaigns-filter .cc--card .f--image.main-image {
  background-color: unset; }

.cc--campaigns-relevant {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 40px;
  padding-bottom: 40px; }
  @media screen and (min-width: 768px) {
    .cc--campaigns-relevant {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--campaigns-relevant {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--campaigns-relevant {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--campaigns-relevant {
      padding-top: 60px;
      padding-bottom: 60px; } }
  @media screen and (min-width: 1024px) {
    .cc--campaigns-relevant {
      padding-top: 80px;
      padding-bottom: 80px; } }
  .cc--campaigns-relevant .f--section-title {
    color: #000 !important; }
  .cc--campaigns-relevant .cc--card {
    background: unset; }
    .cc--campaigns-relevant .cc--card .card-inner {
      -webkit-box-shadow: unset;
              box-shadow: unset; }
      .cc--campaigns-relevant .cc--card .card-inner:last-child {
        padding-bottom: 0; }
    .cc--campaigns-relevant .cc--card .image-container {
      margin-bottom: 0.9375rem; }
      @media screen and (min-width: 768px) {
        .cc--campaigns-relevant .cc--card .image-container {
          margin-bottom: 1.25rem; } }
    .cc--campaigns-relevant .cc--card .f--image.main-image {
      background-color: unset; }
    .cc--campaigns-relevant .cc--card .f--cta-title a {
      text-decoration: underline; }
      html[data-whatintent="mouse"] .cc--campaigns-relevant .cc--card .f--cta-title a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--campaigns-relevant .cc--card .f--cta-title a:hover {
          text-decoration: unset; }

.cc--campaigns-filter .cc--card .f--image.main-image img, .cc--campaigns-relevant .cc--card .f--image.main-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
  width: calc(100% - 41.66667vw); }

@media screen and (min-width: 768px) {
  .cc--campaigns-filter .cc--card .f--image.main-image img {
    width: calc(100% - 8.33333vw); } }

@media screen and (min-width: 1024px) {
  .cc--campaigns-filter .cc--card .f--image.main-image img {
    width: calc(100% - 16.66667vw); } }

@media screen and (min-width: 1800px) {
  .cc--campaigns-filter .cc--card .f--image.main-image img {
    width: calc(100% - 300px); } }

@media screen and (min-width: 768px) {
  .cc--campaigns-relevant .cc--card .f--image.main-image img {
    width: calc(100% - 8.33333vw); } }

.cc--card {
  margin-bottom: 1.875rem;
  position: relative;
  width: 100%;
  background-color: #FFF;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cc--card {
      margin-bottom: 2.5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--card {
      margin-bottom: 3.125rem; } }
  @media screen and (min-width: 768px) {
    .cols-1 .cc--card {
      text-align: left; } }
  @media screen and (min-width: 768px) {
    .cols-2 .cc--card {
      margin-right: 4.16667vw;
      max-width: calc(50% - 4.16667vw); } }
  @media screen and (min-width: 1800px) {
    .cols-2 .cc--card {
      margin-right: 75px;
      max-width: calc(50% - 75px); } }
  @media screen and (min-width: 768px) {
    .cols-3 .cc--card {
      margin-right: 4.16667vw;
      max-width: calc(33.33333% - 4.16667vw); } }
  @media screen and (min-width: 1800px) {
    .cols-3 .cc--card {
      margin-right: 75px;
      max-width: calc(33.33333% - 75px); } }
  .cols-3 .cc--card:nth-child(3) {
    margin-right: 0; }
  @media screen and (min-width: 1024px) {
    .cols-3 .cc--card .card-inner {
      padding-bottom: 3.125rem; } }
  @media screen and (min-width: 768px) {
    .cols-3 .cc--card .f--cta-title {
      font-size: 1.5rem;
      line-height: 1.25; } }
  .cc--cards-list:not(.with-central-main) .cols-3 .cc--card .f--cta-title {
    margin-bottom: 0.9375rem; }
    @media screen and (min-width: 768px) {
      .cc--cards-list:not(.with-central-main) .cols-3 .cc--card .f--cta-title {
        margin-bottom: 1.625rem; } }
    @media screen and (min-width: 1024px) {
      .cc--cards-list:not(.with-central-main) .cols-3 .cc--card .f--cta-title {
        margin-bottom: 1.25rem; } }
  @media screen and (min-width: 1024px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card {
      padding-bottom: 1.4375rem;
      max-width: calc((100% - 33.33333vw - 12.5vw) / 2); } }
  @media screen and (min-width: 1800px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card {
      padding-bottom: 1.4375rem;
      max-width: calc((100% - 600px - 225px) / 2); } }
  @media screen and (min-width: 1024px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card:nth-child(3n-1) {
      padding-bottom: 0;
      max-width: 33.33333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card:nth-child(3n-1) {
      max-width: 600px; } }
  @media screen and (min-width: 768px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card:nth-child(3n-1) .card-inner {
      padding-bottom: 3.5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card:nth-child(3n-1) .image-container {
      margin-bottom: 2.5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card:nth-child(3n-1) .f--cta-title {
      font-size: 1.75rem;
      line-height: 1.2143; } }
  @media screen and (min-width: 768px) {
    .cc--cards-list.with-central-main .cols-3 .cc--card .f--cta-title {
      font-size: 1.5rem;
      line-height: 1.25; } }
  @media screen and (min-width: 768px) {
    .cc--card .c--card {
      height: 100%; } }
  .cc--card .card-inner {
    padding-bottom: 1.875rem;
    border-collapse: separate;
    -webkit-box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2); }
    @media screen and (min-width: 768px) {
      .cc--card .card-inner {
        padding-bottom: 3.125rem;
        height: 100%; } }
    @media screen and (min-width: 1024px) {
      .cc--card .card-inner {
        padding-bottom: 4.375rem; } }
    @media screen and (max-width: 767px) {
      .cols-1 .cc--card .card-inner {
        padding-bottom: 2.125rem; } }
    @media screen and (min-width: 768px) {
      .cols-1 .cc--card .card-inner {
        padding-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .cc--card .has-secondary-image .image-container {
    margin-bottom: 0; }
  .cc--card .has-secondary-image .f--cta-title {
    margin-bottom: 0.9375rem; }
    @media screen and (min-width: 1024px) {
      .cc--card .has-secondary-image .f--cta-title {
        margin-bottom: 1.25rem; } }
  .cc--card .image-container {
    margin-bottom: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .cc--card .image-container {
        margin-bottom: 1.875rem; } }
    @media screen and (min-width: 768px) {
      .cols-1 .cc--card .image-container {
        max-width: 37.5vw;
        height: 100%; } }
    @media screen and (min-width: 1800px) {
      .cols-1 .cc--card .image-container {
        max-width: 675px; } }
    .cols-1 .cc--card .image-container * {
      max-height: 100%;
      height: inherit; }
  .cc--card .main-image {
    padding-bottom: 56.25%;
    position: relative; }
    .cc--card .main-image img {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%; }
  .cc--card .secondary-image {
    margin-top: -1.25rem;
    margin-right: auto;
    margin-left: auto;
    display: inline-block;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--card .secondary-image {
        margin-top: -1.89394rem; } }
    @media screen and (min-width: 1024px) {
      .cc--card .secondary-image {
        margin-top: -3.53774rem; } }
    .cc--card .secondary-image::before {
      display: block;
      width: 5rem;
      overflow: hidden;
      border-radius: 100%;
      height: 5rem;
      background: #FFF;
      content: '';
      -webkit-box-shadow: 0 0 7px 0 rgba 0, 0, 0, 0.1;
              box-shadow: 0 0 7px 0 rgba 0, 0, 0, 0.1; }
      @media screen and (min-width: 768px) {
        .cc--card .secondary-image::before {
          display: block;
          width: 6.25rem;
          overflow: hidden;
          border-radius: 100%;
          height: 6.25rem; } }
      @media screen and (min-width: 1024px) {
        .cc--card .secondary-image::before {
          display: block;
          width: 9.375rem;
          overflow: hidden;
          border-radius: 100%;
          height: 9.375rem; } }
    .cc--card .secondary-image img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      position: absolute;
      width: 3.375rem; }
      @media screen and (min-width: 768px) {
        .cc--card .secondary-image img {
          width: 4.25rem; } }
      @media screen and (min-width: 1024px) {
        .cc--card .secondary-image img {
          width: 6.25rem; } }
  .cc--card .text-container {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .cc--card .text-container {
        padding-right: 2.08333vw;
        padding-left: 2.08333vw; } }
    @media screen and (min-width: 1800px) {
      .cc--card .text-container {
        padding-right: 37.5px;
        padding-left: 37.5px; } }
    @media screen and (min-width: 768px) {
      .cols-1 .cc--card .text-container {
        padding-top: 2.5rem;
        padding-right: 6.25vw;
        padding-bottom: 2.5rem;
        padding-left: 6.25vw; } }
    @media screen and (min-width: 1024px) {
      .cols-1 .cc--card .text-container {
        padding-top: 3.125rem;
        padding-right: 4.16667vw;
        padding-bottom: 3.125rem; } }
    @media screen and (min-width: 1800px) {
      .cols-1 .cc--card .text-container {
        padding-right: 75px; } }
    .cc--card .text-container > *:last-child {
      margin-bottom: 0 !important; }
  .cc--card .f--cta-title {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.3334; }
    @media screen and (min-width: 768px) {
      .cc--card .f--cta-title {
        font-size: 1.75rem;
        line-height: 1.2143; } }
    .cc--card .f--cta-title:last-of-type {
      margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      .cols-1 .cc--card .f--cta-title {
        margin-bottom: 0.9375rem;
        font-size: 1.25rem;
        line-height: 1.3; } }
  .cc--card .f--description {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    font-weight: 400; }
    @media screen and (min-width: 768px) {
      .cc--card .f--description {
        font-size: 1.5rem;
        line-height: 1.3334; } }
    @media screen and (min-width: 1024px) {
      .cols-2 .cc--card .f--description {
        padding-right: 2.08333vw;
        padding-left: 2.08333vw; } }
    @media screen and (min-width: 1800px) {
      .cols-2 .cc--card .f--description {
        padding-right: 37.5px;
        padding-left: 37.5px; } }
  .cc--card .card-links {
    margin-top: 1.0625rem;
    font-size: 1rem;
    line-height: 1.375;
    font-weight: 700; }
    @media screen and (min-width: 768px) {
      .cc--card .card-links {
        margin-top: 1.25rem;
        font-size: 1.1875rem;
        line-height: 1.2632; } }
  .cc--card .card-buttons {
    margin-top: 2rem; }
    @media screen and (min-width: 768px) {
      .cc--card .card-buttons {
        margin-top: 2.5rem; } }
    @media screen and (min-width: 1024px) {
      .cc--card .card-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    @media screen and (min-width: 1024px) {
      .cols-1 .cc--card .card-buttons {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: start; } }
    .cc--card .card-buttons .f--button-link {
      margin-right: 0.3125rem;
      margin-bottom: 1.5rem;
      margin-left: 0.3125rem; }
      @media screen and (min-width: 1024px) {
        .cols-1 .cc--card .card-buttons .f--button-link {
          margin-right: 1.25rem;
          margin-bottom: 0;
          margin-left: 0; } }
    .cc--card .card-buttons .f--button-link:last-of-type {
      margin-bottom: 0; }
      @media screen and (min-width: 1024px) {
        .cols-1 .cc--card .card-buttons .f--button-link:last-of-type {
          margin-top: 0;
          margin-right: 0;
          margin-bottom: 0;
          margin-left: 0; } }

.cc--cards-list {
  text-align: center; }
  .cc--cards-list:not(:first-child) {
    margin-top: 1.875rem; }
    @media screen and (min-width: 768px) {
      .cc--cards-list:not(:first-child) {
        margin-top: 2.5rem; } }
    @media screen and (min-width: 1024px) {
      .cc--cards-list:not(:first-child) {
        margin-top: 3.125rem; } }
  .cc--cards-list .list-inner {
    margin-bottom: -1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
    @media screen and (min-width: 768px) {
      .cc--cards-list .list-inner {
        margin-bottom: -2.5rem; } }
    @media screen and (min-width: 1024px) {
      .cc--cards-list .list-inner {
        margin-bottom: -3.125rem; } }
    @media screen and (min-width: 768px) {
      .cc--cards-list .list-inner.cols-2 {
        margin-right: -4.16667vw; } }
    @media screen and (min-width: 1800px) {
      .cc--cards-list .list-inner.cols-2 {
        margin-right: -75px; } }
    @media screen and (min-width: 768px) {
      .cc--cards-list .list-inner.cols-3 {
        margin-right: -4.16667vw; } }
    @media screen and (min-width: 1800px) {
      .cc--cards-list .list-inner.cols-3 {
        margin-right: -75px; } }
    @media screen and (min-width: 1024px) {
      .cc--cards-list .list-inner.cols-3.with-central-main .cta-buttons {
        margin-top: 3.125rem; } }
  .cc--cards-list .cta-buttons {
    margin-top: 2.5rem;
    margin-bottom: -1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--cards-list .cta-buttons {
        margin-top: 3.125rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media screen and (min-width: 1024px) {
      .cc--cards-list .cta-buttons {
        margin-top: 3.75rem; } }
    .cc--cards-list .cta-buttons .f--button-link {
      margin-bottom: 1.25rem; }
      @media screen and (min-width: 768px) {
        .cc--cards-list .cta-buttons .f--button-link {
          margin-left: 1.1875rem; } }
      @media screen and (min-width: 768px) {
        .cc--cards-list .cta-buttons .f--button-link:first-child {
          margin-left: 0; } }

.cc--cta-email-subscription .form-wrapper.state-success form {
  display: none; }

@media screen and (min-width: 1024px) {
  .cc--cta-email-subscription form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

@media screen and (max-width: 767px) {
  .cc--cta-email-subscription .f--form-item {
    margin-bottom: 0.625rem; } }

@media screen and (min-width: 1024px) {
  .cc--cta-email-subscription .f--form-item {
    margin-right: 1.25rem;
    margin-bottom: 0 !important;
    width: 27.60417vw; } }

@media screen and (min-width: 1800px) {
  .cc--cta-email-subscription .f--form-item {
    width: 496.875px; } }

.cc--cta-email-subscription .f--form-item input::-webkit-input-placeholder {
  color: #6C6F70; }

.cc--cta-email-subscription .f--form-item input::-moz-placeholder {
  color: #6C6F70; }

.cc--cta-email-subscription .f--form-item input:-ms-input-placeholder {
  color: #6C6F70; }

.cc--cta-email-subscription .f--form-item input::-ms-input-placeholder {
  color: #6C6F70; }

.cc--cta-email-subscription .f--form-item input::placeholder {
  color: #6C6F70; }

.cc--custom-cards {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--custom-cards {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--custom-cards {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--custom-cards {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--custom-cards {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--custom-cards {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .cc--body-content + .cc--custom-cards {
    padding-top: 0; }
  @media screen and (min-width: 1024px) {
    .cc--custom-cards .cc--card .image-container {
      margin-bottom: 2.5rem; } }
  @media screen and (max-width: 767px) {
    .cc--custom-cards .cc--card .f--cta-title {
      margin-bottom: 0.9375rem;
      font-size: 1.25rem;
      line-height: 1.3; } }

.cc--featured-image:first-child,
.cc--hero + .cc--featured-image {
  position: relative;
  padding-top: 0;
  margin-top: -1.25rem; }
  @media screen and (min-width: 768px) {
    .cc--featured-image:first-child,
    .cc--hero + .cc--featured-image {
      padding-top: 0; } }
  @media screen and (min-width: 1024px) {
    .cc--featured-image:first-child,
    .cc--hero + .cc--featured-image {
      padding-top: 0; } }
  @media screen and (min-width: 768px) {
    .cc--featured-image:first-child,
    .cc--hero + .cc--featured-image {
      margin-top: -2.1875rem; } }
  @media screen and (min-width: 1024px) {
    .cc--featured-image:first-child,
    .cc--hero + .cc--featured-image {
      margin-top: -2.1875rem; } }
  .cc--featured-image:first-child:before,
  .cc--hero + .cc--featured-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0rem;
    background: #CBEBC6;
    z-index: -1; }
    @media screen and (min-width: 768px) {
      .cc--featured-image:first-child:before,
      .cc--hero + .cc--featured-image:before {
        height: 5rem; } }
    @media screen and (min-width: 1024px) {
      .cc--featured-image:first-child:before,
      .cc--hero + .cc--featured-image:before {
        height: 5rem; } }
    .theme-healthy-monday .cc--featured-image:first-child:before, .theme-healthy-monday
    .cc--hero + .cc--featured-image:before {
      background: #CBEBC6; }
    .theme-kids-cook-monday .cc--featured-image:first-child:before, .theme-kids-cook-monday
    .cc--hero + .cc--featured-image:before {
      background: #D5EEFF; }
    .theme-meatless-monday .cc--featured-image:first-child:before, .theme-meatless-monday
    .cc--hero + .cc--featured-image:before {
      background: #FFFBE2; }
    .theme-destress-monday .cc--featured-image:first-child:before, .theme-destress-monday
    .cc--hero + .cc--featured-image:before {
      background: #ECF9FF; }
    .theme-move-it-monday .cc--featured-image:first-child:before, .theme-move-it-monday
    .cc--hero + .cc--featured-image:before {
      background: #EEFEE9; }
    .theme-quit-stay-quit .cc--featured-image:first-child:before, .theme-quit-stay-quit
    .cc--hero + .cc--featured-image:before {
      background: #FFEEEF; }
    .theme-monday-2000 .cc--featured-image:first-child:before, .theme-monday-2000
    .cc--hero + .cc--featured-image:before {
      background: #ECDAF8; }

@media screen and (min-width: 768px) {
  .cc--featured-image .c--featured-image {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%; } }
  @media screen and (min-width: 768px) and (min-width: 768px) {
    .cc--featured-image .c--featured-image {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 768px) and (min-width: 1024px) {
    .cc--featured-image .c--featured-image {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 768px) and (min-width: 1800px) {
    .cc--featured-image .c--featured-image {
      padding-left: 112.5px;
      padding-right: 112.5px; } }

@media screen and (min-width: 1024px) {
  .cc--featured-image .c--featured-image {
    padding-right: 14.58333vw;
    padding-left: 14.58333vw; } }

@media screen and (min-width: 1800px) {
  .cc--featured-image .c--featured-image {
    padding-right: 262.5px;
    padding-left: 262.5px; } }

.cc--filter .filter-controls {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0; }
  @media screen and (min-width: 768px) {
    .cc--filter .filter-controls {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--filter .filter-controls {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--filter .filter-controls {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--filter .filter-controls {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--filter .filter-controls {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 768px) {
    .cc--filter .filter-controls {
      padding-top: 0;
      padding-right: 0;
      padding-left: 0; } }
  @media screen and (min-width: 1024px) {
    .cc--filter .filter-controls {
      padding-top: 0;
      padding-right: 0;
      padding-left: 0; } }
  .cc--filter .filter-controls .select-wrap svg,
  .cc--filter .filter-controls .select-wrap img {
    width: 0.9375rem !important; }

.cc--filter button[type='submit'],
.cc--filter input[type='submit'] {
  width: calc(100% - 0.25rem); }
  @media screen and (min-width: 768px) {
    .cc--filter button[type='submit'],
    .cc--filter input[type='submit'] {
      width: auto; } }

.cc--filter .filter-description {
  font-size: 1.125rem;
  line-height: 1.4445;
  color: #666; }
  @media screen and (min-width: 768px) {
    .cc--filter .filter-description {
      padding-right: 8.33333vw;
      padding-left: 8.33333vw;
      font-size: 1.375rem;
      line-height: 1.4546; } }
  @media screen and (min-width: 1024px) {
    .cc--filter .filter-description {
      padding-right: 14.58333vw;
      padding-left: 14.58333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--filter .filter-description {
      padding-right: 262.5px;
      padding-left: 262.5px; } }

.cc--filter .filter-section:not(:first-child) {
  margin-top: 3.125rem; }
  @media screen and (min-width: 768px) {
    .cc--filter .filter-section:not(:first-child) {
      margin-top: 3.75rem; } }
  @media screen and (min-width: 1024px) {
    .cc--filter .filter-section:not(:first-child) {
      margin-top: 5rem; } }

.cc--filter .filter-section .f--section-title {
  color: #000; }

.cc--filter .filter-section + .f--no-results {
  display: none; }

.cc--footer-copyright {
  padding-top: 1.75rem;
  padding-bottom: 2.125rem;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cc--footer-copyright {
      padding-top: 2.25rem;
      padding-bottom: 3.125rem;
      font-size: 0.875rem;
      line-height: 1.4286; } }

.cc--footer-cta-sections {
  position: relative;
  text-align: center; }
  @media screen and (min-width: 1024px) {
    .cc--footer-cta-sections {
      padding-top: 4.375rem;
      padding-right: 2.08333vw !important;
      padding-bottom: 4.375rem;
      padding-left: 2.08333vw !important; } }
  @media screen and (min-width: 1800px) {
    .cc--footer-cta-sections {
      padding-right: 37.5px !important;
      padding-left: 37.5px !important; } }
  .cc--footer-cta-sections > .bg-image {
    z-index: unset; }
    @media screen and (max-width: 767px) {
      .cc--footer-cta-sections > .bg-image {
        display: none; } }
    @media screen and (min-width: 768px) {
      .cc--footer-cta-sections > .bg-image {
        top: 4.375rem;
        width: 22.5rem;
        height: unset; } }
  @media screen and (min-width: 1024px) {
    .cc--footer-cta-sections .c--footer-cta-sections {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .cc--footer-cta-sections .c--footer-cta-sections > * {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 50px; }
    @media screen and (min-width: 768px) {
      .cc--footer-cta-sections .c--footer-cta-sections > * {
        padding-top: 80px;
        padding-bottom: 80px; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-cta-sections .c--footer-cta-sections > * {
        padding-top: 100px;
        padding-bottom: 100px; } }
    @media screen and (min-width: 768px) {
      .cc--footer-cta-sections .c--footer-cta-sections > * {
        padding-top: 3.75rem;
        padding-right: 10.41667vw;
        padding-bottom: 3.75rem;
        padding-left: 10.41667vw; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-cta-sections .c--footer-cta-sections > * {
        padding-top: 2.5rem;
        padding-right: 0;
        padding-bottom: 2.5rem;
        padding-left: 0;
        width: 50%; } }
    .cc--footer-cta-sections .c--footer-cta-sections > *:first-child {
      border-bottom: 0.0625rem solid #FFF; }
      @media screen and (min-width: 1024px) {
        .cc--footer-cta-sections .c--footer-cta-sections > *:first-child {
          padding-right: 2.08333vw;
          border-right: 0.0625rem solid #FFF;
          border-bottom: unset; } }
      body.theme-meatless-monday .cc--footer-cta-sections .c--footer-cta-sections > *:first-child {
        border-color: rgba(0, 0, 0, 0.25); }
        @media screen and (min-width: 1024px) {
          body.theme-meatless-monday .cc--footer-cta-sections .c--footer-cta-sections > *:first-child {
            border-color: rgba(0, 0, 0, 0.25); } }
      @media screen and (min-width: 1800px) {
        .cc--footer-cta-sections .c--footer-cta-sections > *:first-child {
          padding-right: 37.5px; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-cta-sections .c--footer-cta-sections > *:last-child {
        padding-left: 2.08333vw; } }
    @media screen and (min-width: 1800px) {
      .cc--footer-cta-sections .c--footer-cta-sections > *:last-child {
        padding-left: 37.5px; } }
  .cc--footer-cta-sections .f--section-title {
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #000 !important;
    font-weight: 900; }
    @media screen and (min-width: 768px) {
      .cc--footer-cta-sections .f--section-title {
        margin-bottom: 1.1875rem;
        font-size: 1.75rem;
        line-height: 1.2143; } }
  .cc--footer-cta-sections .f--description {
    margin-bottom: 1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--footer-cta-sections .f--description {
        margin-bottom: 1.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-cta-sections .f--description {
        margin-bottom: 2.5rem; } }

.cc--footer-menu-section {
  margin-top: 1.9375rem; }
  @media screen and (min-width: 768px) {
    .cc--footer-menu-section {
      margin-top: 2.625rem; } }
  .cc--footer-menu-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media screen and (min-width: 768px) {
      .cc--footer-menu-section ul {
        margin-bottom: -1rem;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .cc--footer-menu-section li {
    margin-bottom: 1rem; }
    @media screen and (min-width: 768px) {
      .cc--footer-menu-section li {
        margin-right: 1.875rem; } }
    @media screen and (max-width: 767px) {
      .cc--footer-menu-section li:last-of-type {
        margin-bottom: 0; } }
    @media screen and (min-width: 768px) {
      .cc--footer-menu-section li:last-of-type {
        margin-right: 0; } }
  .cc--footer-menu-section a {
    font-size: 0.9375rem;
    line-height: 1.3334;
    color: #000;
    font-weight: 700;
    text-decoration: none; }
    html[data-whatintent="mouse"] .cc--footer-menu-section a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--footer-menu-section a:hover {
        color: #48994A;
        text-decoration: underline; }
    @media screen and (min-width: 768px) {
      .cc--footer-menu-section a {
        font-size: 1.1875rem;
        line-height: 1.2632; } }

.cc--footer-social-section {
  margin-top: 3.5rem; }
  .cc--footer-social-section .a2a_follow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%; }
  .cc--footer-social-section a {
    margin-right: 1.5625rem;
    width: 1.5rem;
    height: 1.5rem; }
    @media screen and (min-width: 768px) {
      .cc--footer-social-section a {
        margin-right: 2.625rem;
        width: 2.5625rem;
        height: 2.5625rem; } }
    .cc--footer-social-section a:last-of-type {
      margin-right: 0; }
    .cc--footer-social-section a * {
      width: inherit !important;
      height: inherit !important; }

.cc--footer .c--footer > .cc--component-container > .c--component {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%; }
  @media screen and (min-width: 768px) {
    .cc--footer .c--footer > .cc--component-container > .c--component {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--footer .c--footer > .cc--component-container > .c--component {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--footer .c--footer > .cc--component-container > .c--component {
      padding-left: 112.5px;
      padding-right: 112.5px; } }

.cc--footer .f--branding {
  margin-top: 2.5rem; }
  @media screen and (min-width: 768px) {
    .cc--footer .f--branding {
      margin-top: 3.125rem; } }
  .cc--footer .f--branding img {
    max-width: 12.5rem;
    margin-left: auto;
    margin-right: auto; }

.cc--gravity-form {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--gravity-form {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--gravity-form {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--gravity-form {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--gravity-form {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--gravity-form {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 1024px) {
    .cc--gravity-form .gravity-form-wrapper {
      padding-right: 16.66667%;
      padding-left: 16.66667%; } }
  .cc--gravity-form .validation_error {
    margin-bottom: 1.5625rem;
    color: #9E1B32; }
  @media screen and (min-width: 768px) {
    .cc--gravity-form .gform_body {
      margin-bottom: 2.5rem !important; } }
  .cc--gravity-form .gform_fields {
    margin-left: -4.54545%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media screen and (min-width: 1024px) {
      .cc--gravity-form .gform_fields {
        margin-left: -7.14286%; } }
  .cc--gravity-form .gfield {
    margin-left: 4.54545%;
    width: 100%; }
    @media screen and (min-width: 1024px) {
      .cc--gravity-form .gfield {
        margin-left: 7.14286%; } }
    @media screen and (min-width: 768px) {
      .cc--gravity-form .gfield.small {
        max-width: 28.78788%; } }
    @media screen and (min-width: 1024px) {
      .cc--gravity-form .gfield.small {
        max-width: 26.19048%; } }
    @media screen and (min-width: 768px) {
      .cc--gravity-form .gfield.medium {
        max-width: 45.45455%; } }
    @media screen and (min-width: 1024px) {
      .cc--gravity-form .gfield.medium {
        max-width: 42.85714%; } }
  .cc--gravity-form .gfield_checkbox,
  .cc--gravity-form .gfield_radio {
    margin-bottom: -1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--gravity-form .gfield_checkbox,
      .cc--gravity-form .gfield_radio {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .cc--gravity-form .gfield_checkbox li,
    .cc--gravity-form .gfield_radio li {
      margin-bottom: 1.25rem; }
      @media screen and (min-width: 768px) {
        .cc--gravity-form .gfield_checkbox li,
        .cc--gravity-form .gfield_radio li {
          padding-right: 2.5rem;
          width: 25%; } }
  @media screen and (min-width: 1024px) {
    .cc--gravity-form .ginput_container textarea {
      height: 10rem; } }
  .cc--gravity-form .ginput_container_select .f--icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1.375rem; }
    .cc--gravity-form .ginput_container_select .f--icon svg {
      width: 1.5625rem; }
  .cc--gravity-form .ginput_container_fileupload > * {
    display: none; }
  .cc--gravity-form .ginput_container_fileupload .field-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cc--gravity-form .ginput_container_fileupload .field-controls .field-description {
      margin-left: 1.25rem;
      font-size: 0.875rem;
      line-height: 1.1429;
      max-width: 7.5rem;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden; }
      @media screen and (min-width: 768px) {
        .cc--gravity-form .ginput_container_fileupload .field-controls .field-description {
          max-width: unset; } }
  .cc--gravity-form .ginput_container_fileupload .validation_message {
    display: block; }
  .cc--gravity-form .gfield_required {
    margin-left: 0.1875rem; }
  .cc--gravity-form .validation_message {
    margin-top: 0.3125rem;
    color: #9E1B32; }
  @media screen and (min-width: 768px) {
    .cc--gravity-form .button,
    .cc--gravity-form input[type='button'],
    .cc--gravity-form input[type='submit'] {
      width: 15.625vw;
      max-width: 11.875rem; } }
  .cc--gravity-form input[type='submit'] {
    margin-right: auto;
    margin-left: auto;
    display: block; }
    @media screen and (min-width: 1024px) {
      .cc--gravity-form input[type='submit'] {
        margin-right: unset;
        margin-left: unset; } }
  .cc--gravity-form .gform_ajax_spinner {
    display: none !important; }
  .cc--gravity-form .gform_confirmation_wrapper {
    text-align: center; }

.cc--header-cta {
  margin-right: 4.16667vw; }
  @media screen and (min-width: 1800px) {
    .cc--header-cta {
      margin-right: 75px; } }
  .cc--header-cta .button {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0.3125rem;
    margin-right: 0.3125rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    text-align: center;
    border-radius: 0;
    white-space: normal;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    font-family: inherit;
    font-weight: 700;
    color: #000;
    background-color: #FFF;
    border: 0.0625rem solid #000;
    -webkit-box-shadow: 0.3125rem 0.3125rem 0 #000;
            box-shadow: 0.3125rem 0.3125rem 0 #000;
    -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    cursor: pointer;
    padding-top: 1rem;
    padding-bottom: 1rem; }
    html[data-whatintent="mouse"] .cc--header-cta .button {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--header-cta .button:hover {
        -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
        transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
        background-color: #000;
        color: #FFF;
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--header-cta .button:hover svg {
          fill: #FFF; }
    @media screen and (min-width: 768px) {
      .cc--header-cta .button {
        width: auto;
        margin-bottom: 0.375rem;
        margin-right: 0.375rem;
        padding: 1.1875rem 2.5rem 0.9375rem;
        -webkit-box-shadow: 0.375rem 0.375rem 0 #000;
                box-shadow: 0.375rem 0.375rem 0 #000;
        font-size: 1.1875rem;
        line-height: 1.5rem; } }

.cc--header-search {
  position: unset; }
  .cc--header-search .c--search-form {
    height: 100%; }
  .cc--header-search .controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    min-width: 2.08333vw;
    height: 100%; }
    @media screen and (min-width: 1800px) {
      .cc--header-search .controls {
        min-width: 37.5px; } }
  .cc--header-search .form-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 6.5625rem;
    background: #CBEBC6;
    z-index: -1;
    padding-bottom: 2.8125rem;
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    max-width: unset; }
    @media screen and (min-width: 768px) {
      .cc--header-search .form-wrapper {
        padding-top: 11.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--header-search .form-wrapper {
        height: auto;
        padding-top: 16.875rem;
        background: #48994A; } }
    @media screen and (min-width: 768px) {
      .cc--header-search .form-wrapper {
        padding-bottom: 6.875rem; } }
    .theme-healthy-monday .cc--header-search .form-wrapper {
      background: #CBEBC6; }
      @media screen and (min-width: 1024px) {
        .theme-healthy-monday .cc--header-search .form-wrapper {
          background: #48994A; } }
    .theme-kids-cook-monday .cc--header-search .form-wrapper {
      background: #D5EEFF; }
      @media screen and (min-width: 1024px) {
        .theme-kids-cook-monday .cc--header-search .form-wrapper {
          background: #DE1F53; } }
    .theme-meatless-monday .cc--header-search .form-wrapper {
      background: #FFFBE2; }
      @media screen and (min-width: 1024px) {
        .theme-meatless-monday .cc--header-search .form-wrapper {
          background: #EB6400; } }
    .theme-destress-monday .cc--header-search .form-wrapper {
      background: #ECF9FF; }
      @media screen and (min-width: 1024px) {
        .theme-destress-monday .cc--header-search .form-wrapper {
          background: #005691; } }
    .theme-move-it-monday .cc--header-search .form-wrapper {
      background: #EEFEE9; }
      @media screen and (min-width: 1024px) {
        .theme-move-it-monday .cc--header-search .form-wrapper {
          background: #7C9E2A; } }
    .theme-quit-stay-quit .cc--header-search .form-wrapper {
      background: #FFEEEF; }
      @media screen and (min-width: 1024px) {
        .theme-quit-stay-quit .cc--header-search .form-wrapper {
          background: #336699; } }
    .theme-monday-2000 .cc--header-search .form-wrapper {
      background: #ECDAF8; }
      @media screen and (min-width: 1024px) {
        .theme-monday-2000 .cc--header-search .form-wrapper {
          background: #03ADEF; } }
    .cc--header-search .form-wrapper.active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center; }
      .cc--header-search .form-wrapper.active > * {
        width: 100%; }
    @media screen and (min-width: 768px) {
      .cc--header-search .form-wrapper {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--header-search .form-wrapper {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--header-search .form-wrapper {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
  @media screen and (min-width: 1024px) {
    .cc--header-search form {
      max-width: 71.42857%;
      margin-left: auto;
      margin-right: auto; } }
  @media screen and (max-width: 767px) {
    .cc--header-search .f--search {
      margin-bottom: 0.625rem; } }
  @media screen and (max-width: 767px) {
    .cc--header-search .f--search input {
      padding-right: 1.25rem;
      padding-left: 2.875rem;
      font-size: 0.9375rem;
      line-height: 2.6667; } }
  .cc--header-search button[type='submit'],
  .cc--header-search input[type='submit'] {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0.3125rem;
    margin-right: 0.3125rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    text-align: center;
    border-radius: 0;
    white-space: normal;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    font-family: inherit;
    font-weight: 700;
    color: #000;
    background-color: #FFF;
    border: 0.0625rem solid #000;
    -webkit-box-shadow: 0.3125rem 0.3125rem 0 #000;
            box-shadow: 0.3125rem 0.3125rem 0 #000;
    -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    cursor: pointer;
    padding-top: 0.8125rem;
    padding-bottom: 0.6875rem; }
    html[data-whatintent="mouse"] .cc--header-search button[type='submit'], html[data-whatintent="mouse"]
    .cc--header-search input[type='submit'] {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--header-search button[type='submit']:hover, html[data-whatintent="mouse"]
      .cc--header-search input[type='submit']:hover {
        -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
        transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
        background-color: #000;
        color: #FFF;
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--header-search button[type='submit']:hover svg, html[data-whatintent="mouse"]
        .cc--header-search input[type='submit']:hover svg {
          fill: #FFF; }
    @media screen and (min-width: 768px) {
      .cc--header-search button[type='submit'],
      .cc--header-search input[type='submit'] {
        width: auto;
        margin-bottom: 0.375rem;
        margin-right: 0.375rem;
        padding: 1.1875rem 2.5rem 0.9375rem;
        -webkit-box-shadow: 0.375rem 0.375rem 0 #000;
                box-shadow: 0.375rem 0.375rem 0 #000;
        font-size: 1.1875rem;
        line-height: 1.5rem; } }
    @media screen and (max-width: 767px) {
      .cc--header-search button[type='submit'],
      .cc--header-search input[type='submit'] {
        margin-right: auto !important;
        margin-left: auto !important;
        display: block !important; } }
    @media screen and (min-width: 768px) {
      .cc--header-search button[type='submit'],
      .cc--header-search input[type='submit'] {
        margin-right: 0;
        margin-left: 1.25rem; } }

#header {
  position: relative;
  background: #FFF;
  z-index: 100; }
  #header .cc--menu-super-nav {
    position: relative;
    z-index: 10; }
    @media screen and (max-width: 1023px) {
      #header .cc--menu-super-nav {
        display: none; } }
  #header .main-nav-container-wrapper {
    background: #FFF; }
  #header .main-nav-container {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (min-width: 768px) {
      #header .main-nav-container {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      #header .main-nav-container {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      #header .main-nav-container {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
    @media screen and (min-width: 1024px) {
      #header .main-nav-container {
        padding-right: 2.08333vw;
        padding-left: 2.08333vw; } }
    @media screen and (min-width: 1800px) {
      #header .main-nav-container {
        padding-right: 37.5px;
        padding-left: 37.5px; } }
  #header .main-nav-left {
    width: 20.83333vw; }
    @media screen and (min-width: 768px) {
      #header .main-nav-left {
        width: 30.20833vw; } }
    @media screen and (min-width: 1024px) {
      #header .main-nav-left {
        width: 35.41667vw; } }
    @media screen and (min-width: 1800px) {
      #header .main-nav-left {
        width: 637.5px; } }
  #header .f--branding {
    position: relative;
    width: 7.8125rem; }
    @media screen and (min-width: 768px) {
      #header .f--branding {
        width: 15rem; } }
    @media screen and (min-width: 1024px) {
      #header .f--branding {
        width: 18.75rem; } }
    #header .f--branding::after {
      display: block;
      width: 100%;
      overflow: hidden;
      border-radius: 100%;
      padding-top: 50%;
      padding-bottom: 50%;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      position: absolute;
      bottom: -1.5625rem;
      background: #FFF;
      content: '';
      z-index: 2; }
      @media screen and (min-width: 768px) {
        #header .f--branding::after {
          bottom: -3.75rem; } }
    #header .f--branding a {
      margin-top: 1.375rem;
      margin-right: auto;
      margin-bottom: 0.625rem;
      margin-left: auto;
      display: block;
      position: relative;
      height: 1.875rem;
      z-index: 10; }
      @media screen and (min-width: 768px) {
        #header .f--branding a {
          margin-top: 2.4375rem;
          margin-bottom: -0.25rem;
          height: 2.8125rem; } }
      @media screen and (min-width: 1024px) {
        #header .f--branding a {
          margin-top: 2.5rem;
          margin-bottom: 0.625rem;
          height: 3.75rem; } }
    @media screen and (min-width: 1024px) {
      #header .f--branding .icon-logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 20.3125rem;
        height: 4.1875rem;
        fill: #FFF; } }
    #header .f--branding img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      max-width: 63.63636%;
      margin-left: auto;
      margin-right: auto;
      width: 100%; }
      @media screen and (min-width: 768px) {
        #header .f--branding img {
          max-width: 63.33333%;
          margin-left: auto;
          margin-right: auto; } }
      @media screen and (min-width: 1024px) {
        #header .f--branding img {
          max-width: 66.66667%;
          margin-left: auto;
          margin-right: auto; } }
  #header .main-nav-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 20.83333vw; }
    @media screen and (min-width: 768px) {
      #header .main-nav-right {
        width: 30.20833vw; } }
    @media screen and (min-width: 1024px) {
      #header .main-nav-right {
        width: 35.41667vw; } }
    @media screen and (min-width: 1800px) {
      #header .main-nav-right {
        width: 637.5px; } }
    @media screen and (max-width: 1023px) {
      #header .main-nav-right .cc--header-cta {
        display: none; } }
  #header .button-search,
  #header .icon-close {
    width: auto; }

.cc--menu-main {
  position: unset;
  font-weight: 700; }
  .cc--menu-main .menu-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 6.5625rem;
    background: #CBEBC6;
    z-index: -1; }
    @media screen and (min-width: 768px) {
      .cc--menu-main .menu-wrapper {
        padding-top: 11.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .menu-wrapper {
        height: auto;
        padding-top: 16.875rem;
        background: #48994A; } }
    .theme-healthy-monday .cc--menu-main .menu-wrapper {
      background: #CBEBC6; }
      @media screen and (min-width: 1024px) {
        .theme-healthy-monday .cc--menu-main .menu-wrapper {
          background: #48994A; } }
    .theme-kids-cook-monday .cc--menu-main .menu-wrapper {
      background: #D5EEFF; }
      @media screen and (min-width: 1024px) {
        .theme-kids-cook-monday .cc--menu-main .menu-wrapper {
          background: #DE1F53; } }
    .theme-meatless-monday .cc--menu-main .menu-wrapper {
      background: #FFFBE2; }
      @media screen and (min-width: 1024px) {
        .theme-meatless-monday .cc--menu-main .menu-wrapper {
          background: #EB6400; } }
    .theme-destress-monday .cc--menu-main .menu-wrapper {
      background: #ECF9FF; }
      @media screen and (min-width: 1024px) {
        .theme-destress-monday .cc--menu-main .menu-wrapper {
          background: #005691; } }
    .theme-move-it-monday .cc--menu-main .menu-wrapper {
      background: #EEFEE9; }
      @media screen and (min-width: 1024px) {
        .theme-move-it-monday .cc--menu-main .menu-wrapper {
          background: #7C9E2A; } }
    .theme-quit-stay-quit .cc--menu-main .menu-wrapper {
      background: #FFEEEF; }
      @media screen and (min-width: 1024px) {
        .theme-quit-stay-quit .cc--menu-main .menu-wrapper {
          background: #336699; } }
    .theme-monday-2000 .cc--menu-main .menu-wrapper {
      background: #ECDAF8; }
      @media screen and (min-width: 1024px) {
        .theme-monday-2000 .cc--menu-main .menu-wrapper {
          background: #03ADEF; } }
    .cc--menu-main .menu-wrapper.active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center; }
      .cc--menu-main .menu-wrapper.active > * {
        width: 100%; }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .menu-wrapper {
        display: block;
        position: unset;
        min-height: auto;
        padding: 0;
        background: transparent !important;
        z-index: unset; } }
  @media screen and (min-width: 1024px) and (min-width: 768px) {
    .cc--menu-main .menu-wrapper {
      padding: 0; } }
  @media screen and (min-width: 1024px) and (min-width: 1024px) {
    .cc--menu-main .menu-wrapper {
      padding: 0;
      background: transparent; } }
  .cc--menu-main .cc--header-cta {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    margin-bottom: 1.5625rem; }
    @media screen and (min-width: 768px) {
      .cc--menu-main .cc--header-cta {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .cc--header-cta {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--menu-main .cc--header-cta {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .cc--header-cta {
        display: none; } }
    .cc--menu-main .cc--header-cta .button {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 0.3125rem;
      margin-right: 0.3125rem;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-decoration: none;
      text-align: center;
      border-radius: 0;
      white-space: normal;
      font-size: 0.9375rem;
      line-height: 1.25rem;
      font-family: inherit;
      font-weight: 700;
      color: #000;
      background-color: #FFF;
      border: 0.0625rem solid #000;
      -webkit-box-shadow: 0.3125rem 0.3125rem 0 #000;
              box-shadow: 0.3125rem 0.3125rem 0 #000;
      -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      cursor: pointer;
      padding-top: 0.8125rem;
      padding-bottom: 0.6875rem;
      display: block; }
      html[data-whatintent="mouse"] .cc--menu-main .cc--header-cta .button {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--menu-main .cc--header-cta .button:hover {
          -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
          transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
          background-color: #000;
          color: #FFF;
          text-decoration: none; }
          html[data-whatintent="mouse"] .cc--menu-main .cc--header-cta .button:hover svg {
            fill: #FFF; }
      @media screen and (min-width: 768px) {
        .cc--menu-main .cc--header-cta .button {
          width: auto;
          margin-bottom: 0.375rem;
          margin-right: 0.375rem;
          padding: 1.1875rem 2.5rem 0.9375rem;
          -webkit-box-shadow: 0.375rem 0.375rem 0 #000;
                  box-shadow: 0.375rem 0.375rem 0 #000;
          font-size: 1.1875rem;
          line-height: 1.5rem; } }
  .cc--menu-main .m--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .m--main {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .cc--menu-main .m--main .menu-item {
      border-top: 0.0625rem solid #FFF; }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .m--main > .menu-item {
        margin-left: 2.08333vw;
        position: relative;
        border: unset; } }
    @media screen and (min-width: 1800px) {
      .cc--menu-main .m--main > .menu-item {
        margin-left: 37.5px; } }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .m--main > .menu-item:first-of-type {
        margin-left: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .m--main > .menu-item a {
        letter-spacing: -0.03125rem; } }
  @media screen and (min-width: 1024px) {
    .cc--menu-main .arrow-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .cc--menu-main a {
    padding-top: 0.9375rem;
    padding-right: 18.75vw;
    padding-bottom: 0.9375rem;
    padding-left: 18.75vw;
    display: block;
    text-decoration: none; }
    @media screen and (min-width: 1024px) {
      .cc--menu-main a {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        font-size: 1.1875rem;
        line-height: 1.2632; } }
  @media screen and (min-width: 768px) {
    .cc--menu-main .button-arrow-down {
      right: 4.16667%; } }
  .cc--menu-main .submenu {
    background: #FFF; }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .submenu {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        padding-bottom: 0.625rem;
        border-collapse: separate;
        -webkit-box-shadow: 0 0 0.25rem 0 rgba(161, 161, 161, 0.25);
                box-shadow: 0 0 0.25rem 0 rgba(161, 161, 161, 0.25);
        position: absolute;
        top: calc(100% + 1.5625rem);
        width: calc(100% + 2.08333vw * 2); } }
    @media screen and (min-width: 1800px) {
      .cc--menu-main .submenu {
        width: calc(100% + 37.5px * 2); } }
    .cc--menu-main .submenu .menu-item {
      border-color: #DDD; }
      @media screen and (min-width: 1024px) {
        .cc--menu-main .submenu .menu-item {
          border: unset; } }
    .cc--menu-main .submenu a {
      padding-top: 1.0625rem;
      padding-bottom: 1.0625rem;
      display: block; }
      @media screen and (min-width: 1024px) {
        .cc--menu-main .submenu a {
          padding-top: 0.9375rem;
          padding-right: 1.25rem;
          padding-bottom: 0.8125rem;
          padding-left: 1.25rem;
          font-size: 1.125rem;
          line-height: 1.1112;
          text-align: left; }
          html[data-whatintent="mouse"] .cc--menu-main .submenu a {
            -webkit-transition: all 0.1s;
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--menu-main .submenu a:hover {
              color: #FFF; } }
  .cc--menu-main .super-nav-links-section {
    background: #000; }
    @media screen and (min-width: 1024px) {
      .cc--menu-main .super-nav-links-section {
        display: none; } }
    .cc--menu-main .super-nav-links-section a {
      color: #FFF; }
    .cc--menu-main .super-nav-links-section .button-arrow-down {
      fill: #FFF; }
    .cc--menu-main .super-nav-links-section .submenu {
      max-width: 1800px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding-left: 6.25%;
      padding-right: 6.25%;
      padding-top: 0.625rem;
      padding-bottom: 1.25rem;
      position: relative;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      background: inherit; }
      @media screen and (min-width: 768px) {
        .cc--menu-main .super-nav-links-section .submenu {
          padding-left: 4.16667%;
          padding-right: 4.16667%; } }
      @media screen and (min-width: 1024px) {
        .cc--menu-main .super-nav-links-section .submenu {
          padding-left: 6.25%;
          padding-right: 6.25%; } }
      @media screen and (min-width: 1800px) {
        .cc--menu-main .super-nav-links-section .submenu {
          padding-left: 112.5px;
          padding-right: 112.5px; } }
      .cc--menu-main .super-nav-links-section .submenu::before {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 0;
        width: 87.5vw;
        border-top: 0.0625rem solid rgba(221, 221, 221, 0.3);
        content: ''; }
        @media screen and (min-width: 1800px) {
          .cc--menu-main .super-nav-links-section .submenu::before {
            width: 1575px; } }
    .cc--menu-main .super-nav-links-section .menu-item {
      width: 39.58333vw;
      border: unset; }
      @media screen and (min-width: 1800px) {
        .cc--menu-main .super-nav-links-section .menu-item {
          width: 712.5px; } }
      .cc--menu-main .super-nav-links-section .menu-item a {
        padding-top: 0.625rem;
        padding-right: 0;
        padding-bottom: 0.625rem;
        padding-left: 0;
        font-size: 0.875rem;
        line-height: 1.4286; }

.cc--menu-super-nav {
  background: #000;
  color: #FFF;
  font-weight: 700; }
  .cc--menu-super-nav .c--menu-super-nav {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    padding-top: 0.875rem;
    padding-bottom: 0.75rem; }
    @media screen and (min-width: 768px) {
      .cc--menu-super-nav .c--menu-super-nav {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--menu-super-nav .c--menu-super-nav {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--menu-super-nav .c--menu-super-nav {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
  @media screen and (min-width: 1024px) {
    .cc--menu-super-nav .menu-super-nav-inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media screen and (min-width: 1024px) {
    .cc--menu-super-nav #supernav-label {
      padding-right: 1.5625rem;
      position: relative;
      font-weight: 900; } }
  @media screen and (min-width: 1024px) {
    .cc--menu-super-nav #supernav-label::after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 0;
      width: 0.0625rem;
      height: 1.25rem;
      background: #FFF;
      content: '';
      opacity: 0.3; } }
  .cc--menu-super-nav .m--menu {
    font-size: 0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  @media screen and (min-width: 1024px) {
    .cc--menu-super-nav .menu-item {
      margin-left: 1.5625rem;
      width: auto; } }
  .cc--menu-super-nav a {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    color: inherit;
    text-decoration: none; }
    html[data-whatintent="mouse"] .cc--menu-super-nav a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--menu-super-nav a:hover {
        color: #48994A;
        text-decoration: underline; }
    @media screen and (min-width: 1024px) {
      .cc--menu-super-nav a {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0; } }

.cc--hero-article .hero .f--page-title {
  font-size: 1.5rem;
  line-height: 1.25; }
  @media screen and (min-width: 768px) {
    .cc--hero-article .hero .f--page-title {
      font-size: 2.5rem;
      line-height: 1.15; } }

.cc--hero-article .hero .post-info {
  font-size: 0.875rem;
  line-height: 1.4286;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (min-width: 768px) {
    .cc--hero-article .hero .post-info {
      font-size: 1rem;
      line-height: 1.375; } }
  .cc--hero-article .hero .post-info > *:not(:last-of-type) {
    margin-right: 1.25rem; }

.cc--hero-article .hero .author .prefix {
  font-style: italic; }

@media screen and (max-width: 767px) {
  .cc--hero.cc--hero-home {
    background: unset !important; } }

@media screen and (max-width: 767px) {
  .cc--hero.cc--hero-home > .bg-image {
    display: none; } }

@media screen and (max-width: 767px) {
  .cc--hero.cc--hero-home .hero {
    padding-top: 0;
    padding-right: 0 !important;
    padding-bottom: 2.0625rem;
    padding-left: 0 !important; } }

@media screen and (min-width: 768px) {
  .cc--hero.cc--hero-home .hero {
    padding-top: 5.8125rem;
    padding-right: 10.41667vw;
    padding-bottom: 5.8125rem;
    padding-left: 10.41667vw;
    min-height: 30rem; } }

@media screen and (min-width: 1024px) {
  .cc--hero.cc--hero-home .hero {
    padding-top: 6.875rem;
    padding-right: 18.75vw;
    padding-bottom: 6.875rem;
    padding-left: 18.75vw;
    min-height: 37.5rem; } }

@media screen and (min-width: 1200px) {
  .cc--hero.cc--hero-home .hero {
    padding-top: 9.0625rem;
    padding-bottom: 9.0625rem; } }

@media screen and (min-width: 1800px) {
  .cc--hero.cc--hero-home .hero {
    padding-right: 337.5px;
    padding-left: 337.5px; } }

.cc--hero.cc--hero-home .hero > * {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%; }
  @media screen and (min-width: 768px) {
    .cc--hero.cc--hero-home .hero > * {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--hero.cc--hero-home .hero > * {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--hero.cc--hero-home .hero > * {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--hero.cc--hero-home .hero > * {
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0; } }

.cc--hero.cc--hero-home .hero-main {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  position: relative; }
  @media screen and (min-width: 768px) {
    .cc--hero.cc--hero-home .hero-main {
      padding-top: 0;
      padding-bottom: 0;
      background: transparent !important; } }
  @media screen and (min-width: 768px) {
    .cc--hero.cc--hero-home .hero-main > .bg-image {
      display: none; } }
  @media screen and (min-width: 768px) {
    .cc--hero.cc--hero-home .hero-main .f--page-title {
      font-size: 3.5rem;
      line-height: 1.1072; } }
  @media screen and (min-width: 1024px) {
    .cc--hero.cc--hero-home .hero-main .f--page-title {
      font-size: 3.4375rem;
      line-height: 1.1273; } }

@media screen and (min-width: 768px) {
  .cc--hero.cc--hero-home .hero-secondary {
    padding-right: 6.25vw;
    padding-left: 6.25vw; } }

@media screen and (min-width: 1024px) {
  .cc--hero.cc--hero-home .hero-secondary {
    padding-right: 8.33333vw;
    padding-left: 8.33333vw; } }

@media screen and (min-width: 1800px) {
  .cc--hero.cc--hero-home .hero-secondary {
    padding-right: 150px;
    padding-left: 150px; } }

.cc--hero.cc--hero-home .hero-secondary .f--description {
  margin-top: 1.875rem; }
  @media screen and (max-width: 767px) {
    .cc--hero.cc--hero-home .hero-secondary .f--description {
      font-size: 1.125rem;
      line-height: 1.3334; } }
  @media screen and (min-width: 768px) {
    .cc--hero.cc--hero-home .hero-secondary .f--description {
      margin-top: 2.1875rem;
      font-size: 1.75rem;
      line-height: 1.2858; } }

.cc--hero {
  position: relative; }
  .cc--hero .bg-image {
    z-index: unset; }
  .cc--hero .hero {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .cc--hero .hero {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--hero .hero {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--hero .hero {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
    @media screen and (min-width: 768px) {
      .cc--hero .hero {
        padding-top: 6.875rem;
        padding-bottom: 6.5625rem;
        position: relative; } }
    @media screen and (min-width: 1024px) {
      .cc--hero .hero {
        padding-top: 8.125rem;
        padding-right: 14.58333vw;
        padding-bottom: 7.8125rem;
        padding-left: 14.58333vw; } }
    @media screen and (min-width: 1800px) {
      .cc--hero .hero {
        padding-right: 262.5px;
        padding-left: 262.5px; } }
  .cc--hero .f--page-title {
    position: relative;
    z-index: 2; }
  .cc--hero .hero-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 1024px) {
      .cc--hero .hero-secondary {
        padding-right: 6.25vw;
        padding-left: 6.25vw; } }
    @media screen and (min-width: 1800px) {
      .cc--hero .hero-secondary {
        padding-right: 112.5px;
        padding-left: 112.5px; } }
    .cc--hero .hero-secondary > * {
      margin-top: 1.25rem; }
      @media screen and (min-width: 768px) {
        .cc--hero .hero-secondary > * {
          margin-top: 1.625rem; } }
      @media screen and (min-width: 1024px) {
        .cc--hero .hero-secondary > * {
          margin-top: 2.1875rem; } }
  .cc--hero .f--description {
    font-size: 1.125rem;
    line-height: 1.4445;
    font-weight: 500; }
    @media screen and (min-width: 768px) {
      .cc--hero .f--description {
        font-size: 1.5rem;
        line-height: 1.3334; } }
  .cc--hero .f--button-link {
    margin-top: 1.875rem; }
    @media screen and (min-width: 1024px) {
      .cc--hero .f--button-link {
        margin-top: 2.625rem; } }
  .cc--hero .hero-bottom {
    position: relative;
    display: none;
    z-index: 1; }
    @media screen and (min-width: 768px) {
      .cc--hero .hero-bottom {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        bottom: 2.1875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--hero .hero-bottom {
        bottom: 2.4375rem; } }
    @media screen and (min-width: 768px) {
      .cc--hero .hero-bottom .icon-arrow-down img {
        margin-right: auto;
        margin-left: auto;
        width: 2.08333vw; } }
    @media screen and (min-width: 1800px) {
      .cc--hero .hero-bottom .icon-arrow-down img {
        width: 37.5px; } }

.cc--item-list .item-list-description {
  margin-bottom: 2.5625rem;
  font-size: 1.125rem;
  line-height: 1.4445;
  color: #666; }
  @media screen and (min-width: 768px) {
    .cc--item-list .item-list-description {
      margin-bottom: 3.625rem;
      padding-right: 8.33333vw;
      padding-left: 8.33333vw;
      font-size: 1.5rem;
      line-height: 1.3334; } }
  @media screen and (min-width: 1024px) {
    .cc--item-list .item-list-description {
      margin-bottom: 3.875rem;
      padding-right: 14.58333vw;
      padding-left: 14.58333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--item-list .item-list-description {
      padding-right: 262.5px;
      padding-left: 262.5px; } }

.cc--news-cards {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 35px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--news-cards {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--news-cards {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--news-cards {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--news-cards {
      padding-top: 55px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--news-cards {
      padding-top: 65px;
      padding-bottom: 100px; } }

.cc--news-filter {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--news-filter {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--news-filter {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--news-filter {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--news-filter {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--news-filter {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 768px) {
    .cc--news-filter .filter-controls {
      margin-bottom: 0.3125rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; } }
  @media screen and (min-width: 1024px) {
    .cc--news-filter .filter-controls {
      margin-bottom: 0;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media screen and (min-width: 768px) {
    .cc--news-filter .filter-controls > * {
      width: 100%;
      margin-left: 2.08333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--news-filter .filter-controls > * {
      margin-left: 37.5px; } }
  @media screen and (min-width: 1024px) {
    .cc--news-filter .filter-controls > * {
      max-width: 31.25vw; } }
  @media screen and (min-width: 1800px) {
    .cc--news-filter .filter-controls > * {
      max-width: 562.5px; } }
  @media screen and (min-width: 768px) {
    .cc--news-filter .filter-controls > *:first-child {
      margin-left: 0; } }
  @media screen and (min-width: 768px) {
    .cc--news-filter .filter-controls .f--form-item {
      margin-bottom: 0 !important; } }
  @media screen and (min-width: 768px) {
    .cc--news-filter .filter-controls .select-wrap .f--icon {
      right: 1.375rem; } }
  .cc--news-filter .filter-controls .select-wrap .f--icon img,
  .cc--news-filter .filter-controls .select-wrap .f--icon svg {
    width: 1rem; }
  .cc--news-filter .filter-controls select,
  .cc--news-filter .filter-controls input[type="text"] {
    font-size: 1rem;
    line-height: 2.5rem; }
    @media screen and (min-width: 768px) {
      .cc--news-filter .filter-controls select,
      .cc--news-filter .filter-controls input[type="text"] {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        line-height: 3.625rem; } }
  @media screen and (min-width: 768px) {
    .cc--news-filter .filter-controls input[type="submit"] {
      margin-bottom: 0; } }
  .cc--news-filter .cc--card .f--description {
    padding-right: 0;
    padding-left: 0; }

.cc--nutrition-info {
  font-size: 1rem;
  line-height: 1.375; }
  .cc--nutrition-info .f--cta-title {
    font-size: 1.1875rem;
    line-height: 1.4737;
    font-weight: 700; }
  .cc--nutrition-info p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: inherit;
    line-height: inherit; }
    .cc--nutrition-info p .label {
      display: block;
      font-weight: 700; }
  .cc--nutrition-info .detailed-nutrition-secondary {
    margin-top: 1.3125rem;
    margin-bottom: 1.0625rem;
    padding-bottom: 1.0625rem;
    border: 0.125rem solid #000;
    border-right: unset;
    border-left: unset;
    padding-right: 1.04167vw; }
    @media screen and (min-width: 1800px) {
      .cc--nutrition-info .detailed-nutrition-secondary {
        padding-right: 18.75px; } }
    .cc--nutrition-info .detailed-nutrition-secondary li {
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-bottom: 0.0625rem solid #000; }
    .cc--nutrition-info .detailed-nutrition-secondary .label {
      margin-right: 4.16667vw;
      display: inline-block;
      width: 43.75vw; }
      @media screen and (min-width: 768px) {
        .cc--nutrition-info .detailed-nutrition-secondary .label {
          width: 37.5vw; } }
      @media screen and (min-width: 1024px) {
        .cc--nutrition-info .detailed-nutrition-secondary .label {
          margin-right: 2.08333vw;
          width: 10.41667vw; } }
      @media screen and (min-width: 1800px) {
        .cc--nutrition-info .detailed-nutrition-secondary .label {
          margin-right: 37.5px;
          width: 187.5px; } }
  .cc--nutrition-info .guidelines h4 {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5715; }
  .cc--nutrition-info .guidelines .f--description {
    font-size: 0.875rem;
    line-height: 1.4286;
    color: #444; }

.cc--package-card {
  margin-bottom: 3.75rem; }
  .cc--package-card .card-inner {
    padding-bottom: 5.5rem !important; }
    @media screen and (min-width: 768px) {
      .cc--package-card .card-inner {
        padding-bottom: 6.125rem !important; } }
    @media screen and (min-width: 1024px) {
      .cc--package-card .card-inner {
        padding-bottom: 6.8125rem !important; } }
  .cc--package-card .f--cta-title {
    font-size: 1.5rem;
    line-height: 1.25; }
    @media screen and (max-width: 767px) {
      .cc--package-card .f--cta-title {
        margin-bottom: 0.9375rem; } }
  .cc--package-card .card-bottom {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 0.875rem;
    line-height: 1.4286;
    position: absolute;
    bottom: -1.875rem;
    font-weight: 700; }
    @media screen and (min-width: 768px) {
      .cc--package-card .card-bottom {
        font-size: 1rem;
        line-height: 1.375; } }
    .cc--package-card .card-bottom a {
      text-decoration: none; }
      html[data-whatintent="mouse"] .cc--package-card .card-bottom a {
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--package-card .card-bottom a:hover {
          text-decoration: underline; }
    .cc--package-card .card-bottom .f--icon {
      display: block;
      width: 3.75rem;
      overflow: hidden;
      border-radius: 100%;
      height: 3.75rem;
      margin-top: 0.5625rem;
      margin-right: auto;
      margin-left: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background: #FFF; }
      .cc--package-card .card-bottom .f--icon svg {
        width: 1.125rem; }

@media (min-width: 768px) {
  .cols-1 .cc--package-card .card-inner {
    padding-bottom: 0px !important; }
  .cols-1 .cc--package-card .card-bottom .f--icon {
    margin-top: 0;
    margin-left: 0; }
  .cols-1 .cc--package-card .card-bottom {
    padding-left: 6.25vw;
    font-size: 20px; }
  .cols-1 .cc--card .f--description {
    margin-bottom: 35px !important; }
  .cols-1 .cc--card .card-links {
    margin-bottom: 35px !important;
    margin-top: 0 !important; } }

.cc--package-cards {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--package-cards {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--package-cards {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--package-cards {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--package-cards {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--package-cards {
      padding-top: 100px;
      padding-bottom: 100px; } }

.cc--package-download-current {
  text-align: center; }
  .cc--package-download-current:first-child,
  .cc--hero + .cc--package-download-current {
    position: relative;
    padding-top: 0;
    margin-top: -1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--package-download-current:first-child,
      .cc--hero + .cc--package-download-current {
        padding-top: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--package-download-current:first-child,
      .cc--hero + .cc--package-download-current {
        padding-top: 0; } }
    @media screen and (min-width: 768px) {
      .cc--package-download-current:first-child,
      .cc--hero + .cc--package-download-current {
        margin-top: -2.5rem; } }
    @media screen and (min-width: 1024px) {
      .cc--package-download-current:first-child,
      .cc--hero + .cc--package-download-current {
        margin-top: -2.5rem; } }
    .cc--package-download-current:first-child:before,
    .cc--hero + .cc--package-download-current:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2.5rem;
      background: #CBEBC6;
      z-index: -1; }
      @media screen and (min-width: 768px) {
        .cc--package-download-current:first-child:before,
        .cc--hero + .cc--package-download-current:before {
          height: 5.625rem; } }
      @media screen and (min-width: 1024px) {
        .cc--package-download-current:first-child:before,
        .cc--hero + .cc--package-download-current:before {
          height: 5.625rem; } }
      .theme-healthy-monday .cc--package-download-current:first-child:before, .theme-healthy-monday
      .cc--hero + .cc--package-download-current:before {
        background: #CBEBC6; }
      .theme-kids-cook-monday .cc--package-download-current:first-child:before, .theme-kids-cook-monday
      .cc--hero + .cc--package-download-current:before {
        background: #D5EEFF; }
      .theme-meatless-monday .cc--package-download-current:first-child:before, .theme-meatless-monday
      .cc--hero + .cc--package-download-current:before {
        background: #FFFBE2; }
      .theme-destress-monday .cc--package-download-current:first-child:before, .theme-destress-monday
      .cc--hero + .cc--package-download-current:before {
        background: #ECF9FF; }
      .theme-move-it-monday .cc--package-download-current:first-child:before, .theme-move-it-monday
      .cc--hero + .cc--package-download-current:before {
        background: #EEFEE9; }
      .theme-quit-stay-quit .cc--package-download-current:first-child:before, .theme-quit-stay-quit
      .cc--hero + .cc--package-download-current:before {
        background: #FFEEEF; }
      .theme-monday-2000 .cc--package-download-current:first-child:before, .theme-monday-2000
      .cc--hero + .cc--package-download-current:before {
        background: #ECDAF8; }
  .cc--package-download-current .c--package-download-current {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%; }
    @media screen and (min-width: 768px) {
      .cc--package-download-current .c--package-download-current {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--package-download-current .c--package-download-current {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--package-download-current .c--package-download-current {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
  .cc--package-download-current .f--image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    -webkit-box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
    border-radius: 6.25rem;
    background-color: #FFF;
    margin-bottom: 1.875rem; }
    @media screen and (min-width: 768px) {
      .cc--package-download-current .f--image {
        width: 11.25rem;
        height: 11.25rem; } }
    .cc--package-download-current .f--image img {
      width: 3.75rem; }
      @media screen and (min-width: 768px) {
        .cc--package-download-current .f--image img {
          width: 8.25rem; } }
    @media screen and (min-width: 768px) {
      .cc--package-download-current .f--image {
        margin-bottom: 2.5rem; } }

@media screen and (max-width: 767px) {
  .cc--resources-page-filter .cc--card .f--cta-title {
    font-size: 1.25rem;
    line-height: 1.3; } }

.cc--packages-campaign-archive-button {
  text-align: center; }
  .cc--packages-campaign-archive-button:first-child,
  .cc--hero + .cc--packages-campaign-archive-button {
    position: relative;
    padding-top: 0;
    margin-top: -1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--packages-campaign-archive-button:first-child,
      .cc--hero + .cc--packages-campaign-archive-button {
        padding-top: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--packages-campaign-archive-button:first-child,
      .cc--hero + .cc--packages-campaign-archive-button {
        padding-top: 0; } }
    @media screen and (min-width: 768px) {
      .cc--packages-campaign-archive-button:first-child,
      .cc--hero + .cc--packages-campaign-archive-button {
        margin-top: -1.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--packages-campaign-archive-button:first-child,
      .cc--hero + .cc--packages-campaign-archive-button {
        margin-top: -1.875rem; } }
    .cc--packages-campaign-archive-button:first-child:before,
    .cc--hero + .cc--packages-campaign-archive-button:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1.25rem;
      background: #CBEBC6;
      z-index: -1; }
      @media screen and (min-width: 768px) {
        .cc--packages-campaign-archive-button:first-child:before,
        .cc--hero + .cc--packages-campaign-archive-button:before {
          height: 1.875rem; } }
      @media screen and (min-width: 1024px) {
        .cc--packages-campaign-archive-button:first-child:before,
        .cc--hero + .cc--packages-campaign-archive-button:before {
          height: 1.875rem; } }
      .theme-healthy-monday .cc--packages-campaign-archive-button:first-child:before, .theme-healthy-monday
      .cc--hero + .cc--packages-campaign-archive-button:before {
        background: #CBEBC6; }
      .theme-kids-cook-monday .cc--packages-campaign-archive-button:first-child:before, .theme-kids-cook-monday
      .cc--hero + .cc--packages-campaign-archive-button:before {
        background: #D5EEFF; }
      .theme-meatless-monday .cc--packages-campaign-archive-button:first-child:before, .theme-meatless-monday
      .cc--hero + .cc--packages-campaign-archive-button:before {
        background: #FFFBE2; }
      .theme-destress-monday .cc--packages-campaign-archive-button:first-child:before, .theme-destress-monday
      .cc--hero + .cc--packages-campaign-archive-button:before {
        background: #ECF9FF; }
      .theme-move-it-monday .cc--packages-campaign-archive-button:first-child:before, .theme-move-it-monday
      .cc--hero + .cc--packages-campaign-archive-button:before {
        background: #EEFEE9; }
      .theme-quit-stay-quit .cc--packages-campaign-archive-button:first-child:before, .theme-quit-stay-quit
      .cc--hero + .cc--packages-campaign-archive-button:before {
        background: #FFEEEF; }
      .theme-monday-2000 .cc--packages-campaign-archive-button:first-child:before, .theme-monday-2000
      .cc--hero + .cc--packages-campaign-archive-button:before {
        background: #ECDAF8; }
  .cc--packages-campaign-archive-button .c--packages-campaign-archive-button {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%; }
    @media screen and (min-width: 768px) {
      .cc--packages-campaign-archive-button .c--packages-campaign-archive-button {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--packages-campaign-archive-button .c--packages-campaign-archive-button {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--packages-campaign-archive-button .c--packages-campaign-archive-button {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
  .cc--packages-campaign-archive-button .button {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem; }
    @media screen and (min-width: 768px) {
      .cc--packages-campaign-archive-button .button {
        padding-right: 3.4375rem;
        padding-left: 3.4375rem; } }

.cc--partner-highlight-cards {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 20px;
  padding-bottom: 25px;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cc--partner-highlight-cards {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--partner-highlight-cards {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--partner-highlight-cards {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--partner-highlight-cards {
      padding-top: 30px;
      padding-bottom: 40px; } }
  @media screen and (min-width: 1024px) {
    .cc--partner-highlight-cards {
      padding-top: 35px;
      padding-bottom: 50px; } }

.clc--page-popups {
  display: none; }

.cc--popup-with-form .form-wrapper.state-success button[type='submit'],
.cc--popup-with-form .form-wrapper.state-success input[type='submit'] {
  display: none; }

.cc--primary-filter {
  text-align: center; }
  .cc--primary-filter:first-child,
  .cc--hero + .cc--primary-filter {
    position: relative;
    padding-top: 0;
    margin-top: -1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--primary-filter:first-child,
      .cc--hero + .cc--primary-filter {
        padding-top: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter:first-child,
      .cc--hero + .cc--primary-filter {
        padding-top: 0; } }
    @media screen and (min-width: 768px) {
      .cc--primary-filter:first-child,
      .cc--hero + .cc--primary-filter {
        margin-top: -1.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter:first-child,
      .cc--hero + .cc--primary-filter {
        margin-top: -1.875rem; } }
    .cc--primary-filter:first-child:before,
    .cc--hero + .cc--primary-filter:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1.25rem;
      background: #CBEBC6;
      z-index: -1; }
      @media screen and (min-width: 768px) {
        .cc--primary-filter:first-child:before,
        .cc--hero + .cc--primary-filter:before {
          height: 1.875rem; } }
      @media screen and (min-width: 1024px) {
        .cc--primary-filter:first-child:before,
        .cc--hero + .cc--primary-filter:before {
          height: 1.875rem; } }
      .theme-healthy-monday .cc--primary-filter:first-child:before, .theme-healthy-monday
      .cc--hero + .cc--primary-filter:before {
        background: #CBEBC6; }
      .theme-kids-cook-monday .cc--primary-filter:first-child:before, .theme-kids-cook-monday
      .cc--hero + .cc--primary-filter:before {
        background: #D5EEFF; }
      .theme-meatless-monday .cc--primary-filter:first-child:before, .theme-meatless-monday
      .cc--hero + .cc--primary-filter:before {
        background: #FFFBE2; }
      .theme-destress-monday .cc--primary-filter:first-child:before, .theme-destress-monday
      .cc--hero + .cc--primary-filter:before {
        background: #ECF9FF; }
      .theme-move-it-monday .cc--primary-filter:first-child:before, .theme-move-it-monday
      .cc--hero + .cc--primary-filter:before {
        background: #EEFEE9; }
      .theme-quit-stay-quit .cc--primary-filter:first-child:before, .theme-quit-stay-quit
      .cc--hero + .cc--primary-filter:before {
        background: #FFEEEF; }
      .theme-monday-2000 .cc--primary-filter:first-child:before, .theme-monday-2000
      .cc--hero + .cc--primary-filter:before {
        background: #ECDAF8; }
  .cc--primary-filter .c--primary-filter {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    padding-top: 50px;
    padding-bottom: 50px; }
    @media screen and (min-width: 768px) {
      .cc--primary-filter .c--primary-filter {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter .c--primary-filter {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--primary-filter .c--primary-filter {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
    @media screen and (min-width: 768px) {
      .cc--primary-filter .c--primary-filter {
        padding-top: 80px;
        padding-bottom: 80px; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter .c--primary-filter {
        padding-top: 100px;
        padding-bottom: 100px; } }
  .cc--primary-filter .filter-controls {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-top: 0; }
    @media screen and (min-width: 768px) {
      .cc--primary-filter .filter-controls {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter .filter-controls {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--primary-filter .filter-controls {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
    @media screen and (min-width: 768px) {
      .cc--primary-filter .filter-controls {
        padding-top: 80px;
        padding-bottom: 80px; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter .filter-controls {
        padding-top: 100px;
        padding-bottom: 100px; } }
    @media screen and (min-width: 768px) {
      .cc--primary-filter .filter-controls {
        padding-top: 0;
        padding-right: 14.58333vw;
        padding-left: 14.58333vw; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter .filter-controls {
        padding-right: 0;
        padding-left: 0;
        width: 29.6875rem; } }
    .cc--primary-filter .filter-controls .select-wrap {
      border-collapse: separate;
      -webkit-box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
              box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2); }
    .cc--primary-filter .filter-controls .f--form-item .select-wrap select {
      font-weight: 700; }
  .cc--primary-filter .filter-description {
    margin-bottom: 2.5rem; }
    @media screen and (min-width: 768px) {
      .cc--primary-filter .filter-description {
        margin-bottom: 3.125rem; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter .filter-description {
        margin-bottom: 3.75rem; } }
  .cc--primary-filter .filterable-items {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%; }
    @media screen and (min-width: 768px) {
      .cc--primary-filter .filterable-items {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--primary-filter .filterable-items {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--primary-filter .filterable-items {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
  .cc--primary-filter .cc--cards-list {
    margin-top: 0; }

@media screen and (min-width: 768px) {
  .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .c--promo-imagetext {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem; } }

@media screen and (min-width: 1024px) {
  .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .c--promo-imagetext {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem; } }

@media screen and (max-width: 767px) {
  .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .image-container {
    margin-bottom: 1.25rem; } }

@media screen and (min-width: 768px) {
  .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .text-container {
    text-align: center; } }

.cc--promo-imagetext.cc--promo-imagetext-with-centered-items .f--section-title {
  margin-bottom: 0.9375rem; }
  @media screen and (max-width: 767px) {
    .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .f--section-title {
      font-size: 1.25rem;
      line-height: 1.3; } }
  @media screen and (min-width: 768px) {
    .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .f--section-title {
      margin-bottom: 1.125rem; } }
  @media screen and (min-width: 1024px) {
    .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .f--section-title {
      margin-bottom: 1.75rem; } }

.cc--promo-imagetext.cc--promo-imagetext-with-centered-items .f--description {
  margin-bottom: 1.625rem;
  color: #666; }
  @media screen and (min-width: 768px) {
    .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .f--description {
      margin-bottom: 1.875rem; } }
  @media screen and (min-width: 1024px) {
    .cc--promo-imagetext.cc--promo-imagetext-with-centered-items .f--description {
      margin-bottom: 2.5rem; } }

.cc--promo-imagetext.cc--promo-imagetext-with-centered-items .cta-buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.cc--promo-imagetext {
  position: relative; }
  @media screen and (min-width: 768px) {
    .cc--promo-imagetext.reversed .c--promo-imagetext {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  @media screen and (min-width: 768px) {
    .cc--promo-imagetext.reversed .c--promo-imagetext .image-container {
      margin-right: 0;
      margin-left: 4.16667vw; } }
  @media screen and (min-width: 1800px) {
    .cc--promo-imagetext.reversed .c--promo-imagetext .image-container {
      margin-left: 75px; } }
  .cc--promo-imagetext .c--promo-imagetext {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    padding-top: 50px;
    padding-bottom: 50px; }
    @media screen and (min-width: 768px) {
      .cc--promo-imagetext .c--promo-imagetext {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-imagetext .c--promo-imagetext {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--promo-imagetext .c--promo-imagetext {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
    @media screen and (min-width: 768px) {
      .cc--promo-imagetext .c--promo-imagetext {
        padding-top: 80px;
        padding-bottom: 80px; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-imagetext .c--promo-imagetext {
        padding-top: 100px;
        padding-bottom: 100px; } }
    @media screen and (min-width: 768px) {
      .cc--promo-imagetext .c--promo-imagetext {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    .cc--promo-imagetext .c--promo-imagetext > * {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%; }
  @media screen and (min-width: 768px) {
    .cc--promo-imagetext .priority-column {
      max-width: 45.83333vw !important;
      min-width: 45.83333vw !important; } }
  @media screen and (min-width: 1024px) {
    .cc--promo-imagetext .priority-column {
      max-width: 43.75vw !important;
      min-width: 43.75vw !important; } }
  @media screen and (min-width: 1800px) {
    .cc--promo-imagetext .priority-column {
      max-width: 787.5px !important;
      min-width: 787.5px !important; } }
  .cc--promo-imagetext .image-container {
    margin-bottom: 1.875rem;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--promo-imagetext .image-container {
        margin-right: 4.16667vw;
        margin-bottom: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-imagetext .image-container {
        margin-right: 6.25vw; } }
    @media screen and (min-width: 1800px) {
      .cc--promo-imagetext .image-container {
        margin-right: 112.5px; } }
  .cc--promo-imagetext .secondary-image-wrapper {
    display: block;
    width: 6.25rem;
    overflow: hidden;
    border-radius: 100%;
    height: 6.25rem;
    position: absolute;
    top: -1.875rem;
    left: -4.16667vw;
    -webkit-box-shadow: 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 1.5rem 2.5rem -1.5rem rgba(0, 0, 0, 0.2);
    background: #FFF; }
    @media screen and (min-width: 768px) {
      .cc--promo-imagetext .secondary-image-wrapper {
        left: -2.08333vw; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-imagetext .secondary-image-wrapper {
        display: block;
        width: 9.375rem;
        overflow: hidden;
        border-radius: 100%;
        height: 9.375rem;
        top: -3.75rem;
        left: -4.16667vw; } }
    @media screen and (min-width: 1800px) {
      .cc--promo-imagetext .secondary-image-wrapper {
        left: -75px; } }
    .cc--promo-imagetext .secondary-image-wrapper img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: calc(100% - 1.25rem); }
      @media screen and (min-width: 1024px) {
        .cc--promo-imagetext .secondary-image-wrapper img {
          width: calc(100% - 1.875rem); } }
  .cc--promo-imagetext .text-container {
    text-align: center; }
  .cc--promo-imagetext .f--description {
    margin-bottom: 1.375rem; }
    @media screen and (min-width: 768px) {
      .cc--promo-imagetext .f--description {
        margin-bottom: 2rem; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-imagetext .f--description {
        margin-bottom: 2.5625rem; } }
  .cc--promo-imagetext .cta-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media screen and (min-width: 1024px) {
      .cc--promo-imagetext .cta-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .cc--promo-imagetext .cta-buttons .f--button-link {
      margin-bottom: 0.625rem; }
      @media screen and (min-width: 768px) {
        .cc--promo-imagetext .cta-buttons .f--button-link {
          margin-bottom: 1.25rem; } }
      @media screen and (min-width: 1024px) {
        .cc--promo-imagetext .cta-buttons .f--button-link {
          margin-right: 0.875rem;
          margin-bottom: 0; } }
      .cc--promo-imagetext .cta-buttons .f--button-link:last-child {
        margin-bottom: 0; }
        @media screen and (min-width: 1024px) {
          .cc--promo-imagetext .cta-buttons .f--button-link:last-child {
            margin-right: 0; } }
    @media screen and (max-width: 1023px) {
      .cc--promo-imagetext .cta-buttons .button {
        margin-right: 0; } }
  @media screen and (min-width: 768px) {
    .cc--promo-imagetext.cc--promo-program-50-50 .text-container {
      text-align: left; } }

.cc--promo-multirow-imagetext {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--promo-multirow-imagetext {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--promo-multirow-imagetext {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--promo-multirow-imagetext {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--promo-multirow-imagetext {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--promo-multirow-imagetext {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .cc--promo-multirow-imagetext .f--section-heading {
    margin-bottom: 1.875rem; }
    @media screen and (min-width: 768px) {
      .cc--promo-multirow-imagetext .f--section-heading {
        margin-bottom: 2.5rem; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-multirow-imagetext .f--section-heading {
        margin-bottom: 3.125rem; } }
  .cc--promo-multirow-imagetext .cc--promo-imagetext {
    margin-bottom: 5rem; }
    @media screen and (min-width: 768px) {
      .cc--promo-multirow-imagetext .cc--promo-imagetext {
        margin-bottom: 3.75rem; } }
    .cc--promo-multirow-imagetext .cc--promo-imagetext:last-of-type {
      margin-bottom: 0; }
  .cc--promo-multirow-imagetext .c--promo-imagetext {
    padding-top: 0;
    padding-bottom: 0; }
    @media screen and (min-width: 1024px) {
      .cc--promo-multirow-imagetext .c--promo-imagetext {
        padding-right: 14.58333vw;
        padding-left: 14.58333vw; } }
    @media screen and (min-width: 1800px) {
      .cc--promo-multirow-imagetext .c--promo-imagetext {
        padding-right: 262.5px;
        padding-left: 262.5px; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-multirow-imagetext .c--promo-imagetext .reversed .image-container {
        max-width: 29.16667vw;
        min-width: 29.16667vw;
        margin-left: 4.16667vw; } }
    @media screen and (min-width: 1800px) {
      .cc--promo-multirow-imagetext .c--promo-imagetext .reversed .image-container {
        max-width: 525px;
        min-width: 525px;
        margin-left: 75px; } }
    .cc--promo-multirow-imagetext .c--promo-imagetext .text-container {
      text-align: left; }
      @media screen and (min-width: 1024px) {
        .cc--promo-multirow-imagetext .c--promo-imagetext .text-container {
          max-width: unset !important;
          min-width: unset !important;
          padding-left: 6.25vw; } }
      @media screen and (min-width: 1800px) {
        .cc--promo-multirow-imagetext .c--promo-imagetext .text-container {
          padding-left: 112.5px; } }
      .cc--promo-multirow-imagetext .c--promo-imagetext .text-container .f--section-title {
        margin-right: 0;
        margin-bottom: 0.9375rem;
        margin-left: 0;
        font-size: 1.25rem;
        line-height: 1.3;
        text-align: inherit; }
        @media screen and (min-width: 768px) {
          .cc--promo-multirow-imagetext .c--promo-imagetext .text-container .f--section-title {
            margin-bottom: 1.25rem;
            font-size: 1.75rem;
            line-height: 1.2143; } }
      .cc--promo-multirow-imagetext .c--promo-imagetext .text-container .f--description {
        margin-bottom: 2.125rem; }
        @media screen and (min-width: 768px) {
          .cc--promo-multirow-imagetext .c--promo-imagetext .text-container .f--description {
            margin-bottom: 2.625rem; } }
      .cc--promo-multirow-imagetext .c--promo-imagetext .text-container p {
        font-size: 1rem;
        line-height: 1.75;
        color: #666; }
        @media screen and (min-width: 768px) {
          .cc--promo-multirow-imagetext .c--promo-imagetext .text-container p {
            font-size: 1.25rem;
            line-height: 1.6; } }

.cc--promo-program-50-50 .image-container {
  padding-right: 2.08333vw;
  padding-left: 2.08333vw; }
  @media screen and (min-width: 768px) {
    .cc--promo-program-50-50 .image-container {
      padding-right: 0;
      padding-left: 0; } }

.cc--promo-program-50-50 .f--section-title {
  margin-right: 0;
  margin-left: 0;
  text-align: inherit; }

.cc--promo-program-50-50 .secondary-image-wrapper {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg); }

.cc--promo-text-only {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cc--promo-text-only {
      padding-right: 14.58333vw;
      padding-left: 14.58333vw; } }
  @media screen and (min-width: 1024px) {
    .cc--promo-text-only {
      padding-right: 20.83333vw;
      padding-left: 20.83333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--promo-text-only {
      padding-right: 375px;
      padding-left: 375px; } }
  .cc--promo-text-only .c--promo-text-only {
    max-width: 1800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 6.25%;
    padding-right: 6.25%;
    padding-top: 40px;
    padding-bottom: 40px; }
    @media screen and (min-width: 768px) {
      .cc--promo-text-only .c--promo-text-only {
        padding-left: 4.16667%;
        padding-right: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-text-only .c--promo-text-only {
        padding-left: 6.25%;
        padding-right: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--promo-text-only .c--promo-text-only {
        padding-left: 112.5px;
        padding-right: 112.5px; } }
    @media screen and (min-width: 768px) {
      .cc--promo-text-only .c--promo-text-only {
        padding-top: 60px;
        padding-bottom: 60px; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-text-only .c--promo-text-only {
        padding-top: 80px;
        padding-bottom: 80px; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-text-only .c--promo-text-only {
        padding-top: 3.125rem;
        padding-bottom: 3.125rem; } }
  .cc--promo-text-only .f--section-title {
    font-weight: 900; }
    @media screen and (min-width: 768px) {
      .cc--promo-text-only .f--section-title {
        margin-bottom: 1.75rem;
        font-size: 2.5rem;
        line-height: 1.15; } }
  .cc--promo-text-only .f--description {
    margin-bottom: 1.625rem; }
    @media screen and (min-width: 768px) {
      .cc--promo-text-only .f--description {
        margin-bottom: 1.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--promo-text-only .f--description {
        margin-bottom: 2.5rem;
        padding-right: 4.16667vw;
        padding-left: 4.16667vw; } }
    @media screen and (min-width: 1800px) {
      .cc--promo-text-only .f--description {
        padding-right: 75px;
        padding-left: 75px; } }

@media screen and (min-width: 1024px) {
  .cc--recipe-card .card-inner {
    padding-bottom: 3.125rem; } }

.cc--recipe-card .f--cta-title {
  margin-bottom: 0 !important;
  font-size: 1.5rem;
  line-height: 1.25; }
  .cc--recipe-card .f--cta-title a {
    color: #9E1B32;
    text-decoration: none; }
    @media screen and (max-width: 767px) {
      .cc--recipe-card .f--cta-title a {
        font-size: 1.5rem;
        line-height: 1.25; } }
    html[data-whatintent="mouse"] .cc--recipe-card .f--cta-title a {
      -webkit-transition: all 0.1s;
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--recipe-card .f--cta-title a:hover {
        color: #000;
        text-decoration: underline; }

.cc--recipe-card .f--description {
  margin-top: 0.9375rem; }
  @media screen and (min-width: 768px) {
    .cc--recipe-card .f--description {
      margin-top: 1.25rem; } }

.cc--recipe-cards .c--recipe-cards {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--recipe-cards .c--recipe-cards {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--recipe-cards .c--recipe-cards {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--recipe-cards .c--recipe-cards {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-cards .c--recipe-cards {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--recipe-cards .c--recipe-cards {
      padding-top: 100px;
      padding-bottom: 100px; } }

.cc--recipe-filter {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-top: 2.5rem; }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--recipe-filter {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--recipe-filter {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--recipe-filter {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter {
      padding-top: 2.5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--recipe-filter {
      padding-top: 3.125rem; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter .filter-controls {
      margin-bottom: 0.3125rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; } }
  @media screen and (min-width: 1024px) {
    .cc--recipe-filter .filter-controls {
      margin-bottom: 0;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter .filter-controls > * {
      width: 100%;
      margin-left: 2.08333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--recipe-filter .filter-controls > * {
      margin-left: 37.5px; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter .filter-controls > * {
      max-width: 22.91667vw; } }
  @media screen and (min-width: 1800px) {
    .cc--recipe-filter .filter-controls > * {
      max-width: 412.5px; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter .filter-controls > *:first-child {
      margin-left: 0; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter .filter-controls .f--form-item {
      margin-bottom: 0 !important; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter .filter-controls .select-wrap .f--icon {
      right: 1.375rem; } }
  .cc--recipe-filter .filter-controls .select-wrap .f--icon img,
  .cc--recipe-filter .filter-controls .select-wrap .f--icon svg {
    width: 1rem; }
  .cc--recipe-filter .filter-controls select,
  .cc--recipe-filter .filter-controls input[type="text"] {
    font-size: 1rem;
    line-height: 2.5rem; }
    @media screen and (min-width: 768px) {
      .cc--recipe-filter .filter-controls select,
      .cc--recipe-filter .filter-controls input[type="text"] {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        line-height: 3.625rem; } }
  @media screen and (min-width: 768px) {
    .cc--recipe-filter .filter-controls input[type="submit"] {
      margin-bottom: 0; } }

.cc--search-form-with-results:first-child,
.cc--hero + .cc--search-form-with-results {
  position: relative;
  padding-top: 0;
  margin-top: -1.25rem; }
  @media screen and (min-width: 768px) {
    .cc--search-form-with-results:first-child,
    .cc--hero + .cc--search-form-with-results {
      padding-top: 0; } }
  @media screen and (min-width: 1024px) {
    .cc--search-form-with-results:first-child,
    .cc--hero + .cc--search-form-with-results {
      padding-top: 0; } }
  @media screen and (min-width: 768px) {
    .cc--search-form-with-results:first-child,
    .cc--hero + .cc--search-form-with-results {
      margin-top: -1.875rem; } }
  @media screen and (min-width: 1024px) {
    .cc--search-form-with-results:first-child,
    .cc--hero + .cc--search-form-with-results {
      margin-top: -1.875rem; } }
  .cc--search-form-with-results:first-child:before,
  .cc--hero + .cc--search-form-with-results:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.25rem;
    background: #CBEBC6;
    z-index: -1; }
    @media screen and (min-width: 768px) {
      .cc--search-form-with-results:first-child:before,
      .cc--hero + .cc--search-form-with-results:before {
        height: 1.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--search-form-with-results:first-child:before,
      .cc--hero + .cc--search-form-with-results:before {
        height: 1.875rem; } }
    .theme-healthy-monday .cc--search-form-with-results:first-child:before, .theme-healthy-monday
    .cc--hero + .cc--search-form-with-results:before {
      background: #CBEBC6; }
    .theme-kids-cook-monday .cc--search-form-with-results:first-child:before, .theme-kids-cook-monday
    .cc--hero + .cc--search-form-with-results:before {
      background: #D5EEFF; }
    .theme-meatless-monday .cc--search-form-with-results:first-child:before, .theme-meatless-monday
    .cc--hero + .cc--search-form-with-results:before {
      background: #FFFBE2; }
    .theme-destress-monday .cc--search-form-with-results:first-child:before, .theme-destress-monday
    .cc--hero + .cc--search-form-with-results:before {
      background: #ECF9FF; }
    .theme-move-it-monday .cc--search-form-with-results:first-child:before, .theme-move-it-monday
    .cc--hero + .cc--search-form-with-results:before {
      background: #EEFEE9; }
    .theme-quit-stay-quit .cc--search-form-with-results:first-child:before, .theme-quit-stay-quit
    .cc--hero + .cc--search-form-with-results:before {
      background: #FFEEEF; }
    .theme-monday-2000 .cc--search-form-with-results:first-child:before, .theme-monday-2000
    .cc--hero + .cc--search-form-with-results:before {
      background: #ECDAF8; }

.cc--search-form-with-results .c--search-form {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%; }
  @media screen and (min-width: 768px) {
    .cc--search-form-with-results .c--search-form {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--search-form-with-results .c--search-form {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--search-form-with-results .c--search-form {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 1024px) {
    .cc--search-form-with-results .c--search-form {
      padding-right: 19.27083vw;
      padding-left: 19.27083vw; } }
  @media screen and (min-width: 1800px) {
    .cc--search-form-with-results .c--search-form {
      padding-right: 346.875px;
      padding-left: 346.875px; } }

.cc--search-form-with-results .f--search {
  width: 100%; }
  .cc--search-form-with-results .f--search input::-webkit-input-placeholder {
    color: #000; }
  .cc--search-form-with-results .f--search input::-moz-placeholder {
    color: #000; }
  .cc--search-form-with-results .f--search input:-ms-input-placeholder {
    color: #000; }
  .cc--search-form-with-results .f--search input::-ms-input-placeholder {
    color: #000; }
  .cc--search-form-with-results .f--search input::placeholder {
    color: #000; }

@media screen and (max-width: 767px) {
  .cc--search-form-with-results .button {
    width: calc(100% - 0.25rem); } }

.cc--search-form-with-results .cc--search-results {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--search-form-with-results .cc--search-results {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--search-form-with-results .cc--search-results {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--search-form-with-results .cc--search-results {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--search-form-with-results .cc--search-results {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--search-form-with-results .cc--search-results {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 1024px) {
    .cc--search-form-with-results .cc--search-results {
      padding-right: 14.58333vw;
      padding-left: 14.58333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--search-form-with-results .cc--search-results {
      padding-right: 262.5px;
      padding-left: 262.5px; } }

.cc--search-form.togleable .form-wrapper {
  display: none; }

.cc--search-form.is-open .controls .button-search {
  display: none; }

.cc--search-form.is-open .controls .button-close {
  display: inline-block; }

.cc--search-form.is-open .form-wrapper {
  display: block; }

.cc--search-form .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.375rem; }
  @media screen and (min-width: 768px) {
    .cc--search-form .controls .icon-search img,
    .cc--search-form .controls .icon-search svg {
      width: 1.375rem; } }
  @media screen and (min-width: 768px) {
    .cc--search-form .controls .icon-close img,
    .cc--search-form .controls .icon-close svg {
      width: 1.125rem; } }

@media screen and (min-width: 768px) {
  .cc--search-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

.cc--search-form .icon-search img,
.cc--search-form .icon-search svg {
  width: 0.875rem;
  height: auto; }

.cc--search-form .button-close {
  display: none; }
  .cc--search-form .button-close img,
  .cc--search-form .button-close svg {
    width: 0.75rem;
    height: auto; }

.cc--search-form .f--search {
  margin-bottom: 1.25rem; }
  @media screen and (min-width: 768px) {
    .cc--search-form .f--search {
      margin-bottom: 0; } }
  .cc--search-form .f--search input {
    padding-right: 1.875rem;
    padding-left: 3.125rem; }
    @media screen and (min-width: 768px) {
      .cc--search-form .f--search input {
        padding-left: 4.125rem;
        -webkit-box-shadow: 0 1.25rem 1.25rem rgba(0, 0, 0, 0.25);
                box-shadow: 0 1.25rem 1.25rem rgba(0, 0, 0, 0.25); } }

.cc--search-form .input-wrapper {
  position: relative;
  width: 100%; }
  .cc--search-form .input-wrapper .icon-search {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 48%;
    left: 1.3125rem; }
    @media screen and (min-width: 768px) {
      .cc--search-form .input-wrapper .icon-search {
        left: 1.9375rem; } }
    @media screen and (min-width: 768px) {
      .cc--search-form .input-wrapper .icon-search img,
      .cc--search-form .input-wrapper .icon-search svg {
        margin-top: 0.1875rem; } }

.cc--search-form button[type='submit'],
.cc--search-form input[type='submit'] {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.3125rem;
  margin-right: 0.3125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  white-space: normal;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-family: inherit;
  font-weight: 700;
  color: #000;
  background-color: #FFF;
  border: 0.0625rem solid #000;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 #000;
          box-shadow: 0.3125rem 0.3125rem 0 #000;
  -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  cursor: pointer;
  padding-top: 0.6875rem;
  padding-bottom: 0.5625rem; }
  html[data-whatintent="mouse"] .cc--search-form button[type='submit'], html[data-whatintent="mouse"]
  .cc--search-form input[type='submit'] {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .cc--search-form button[type='submit']:hover, html[data-whatintent="mouse"]
    .cc--search-form input[type='submit']:hover {
      -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: #000;
      color: #FFF;
      text-decoration: none; }
      html[data-whatintent="mouse"] .cc--search-form button[type='submit']:hover svg, html[data-whatintent="mouse"]
      .cc--search-form input[type='submit']:hover svg {
        fill: #FFF; }
  @media screen and (min-width: 768px) {
    .cc--search-form button[type='submit'],
    .cc--search-form input[type='submit'] {
      width: auto;
      margin-bottom: 0.375rem;
      margin-right: 0.375rem;
      padding: 1.1875rem 2.5rem 0.9375rem;
      -webkit-box-shadow: 0.375rem 0.375rem 0 #000;
              box-shadow: 0.375rem 0.375rem 0 #000;
      font-size: 1.1875rem;
      line-height: 1.5rem; } }
  @media screen and (min-width: 768px) {
    .cc--search-form button[type='submit'],
    .cc--search-form input[type='submit'] {
      margin-left: 2.08333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--search-form button[type='submit'],
    .cc--search-form input[type='submit'] {
      margin-left: 37.5px; } }

.cc--search-result-item {
  margin-bottom: 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #DDD; }
  @media screen and (min-width: 768px) {
    .cc--search-result-item {
      margin-bottom: 2.5rem;
      padding-right: 8.33333vw;
      padding-bottom: 1.875rem;
      padding-left: 8.33333vw; } }
  @media screen and (min-width: 1024px) {
    .cc--search-result-item {
      padding-right: 6.25vw;
      padding-left: 6.25vw; } }
  @media screen and (min-width: 1800px) {
    .cc--search-result-item {
      padding-right: 112.5px;
      padding-left: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--search-result-item.has-image {
      padding-right: 0; } }
  @media screen and (min-width: 768px) {
    .cc--search-result-item .c--item-list-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  .cc--search-result-item .image-wrapper {
    margin-bottom: 1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--search-result-item .image-wrapper {
        margin-bottom: 0;
        margin-left: 4.16667vw;
        min-width: 20.83333vw;
        max-width: 20.83333vw; } }
    @media screen and (min-width: 1800px) {
      .cc--search-result-item .image-wrapper {
        margin-left: 75px;
        min-width: 375px;
        max-width: 375px; } }
    .cc--search-result-item .image-wrapper .f--image {
      padding-top: 56.25%;
      position: relative; }
    .cc--search-result-item .image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .cc--search-result-item .text-container {
    width: 100%; }
  .cc--search-result-item .f--cta-title {
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700; }
    @media screen and (min-width: 768px) {
      .cc--search-result-item .f--cta-title {
        margin-bottom: 0.75rem;
        font-size: 1.75rem;
        line-height: 1.2143; } }
    @media screen and (min-width: 1024px) {
      .cc--search-result-item .f--cta-title {
        margin-bottom: 1.1875rem; } }
  .cc--search-result-item time {
    font-size: 1rem;
    line-height: 1.75;
    color: #666; }

.cc--social-media-feed .bg-image {
  margin-bottom: -2.5rem;
  height: 9.375rem; }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .bg-image {
      margin-bottom: -5.3125rem;
      height: 17.5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .bg-image {
      height: 20rem; } }
  .cc--social-media-feed .bg-image + .c--social-media-feed .f--section-title {
    color: #FFF; }

.cc--social-media-feed .c--social-media-feed {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .c--social-media-feed {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .c--social-media-feed {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--social-media-feed .c--social-media-feed {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .c--social-media-feed {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .c--social-media-feed {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .c--social-media-feed {
      padding-top: 6.25rem; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .c--social-media-feed {
      padding-top: 7.5rem; } }

.cc--social-media-feed .f--section-title {
  margin-bottom: 1.875rem; }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .f--section-title {
      margin-bottom: 3.125rem; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .f--section-title {
      margin-bottom: 3.4375rem; } }

.cc--social-media-feed .juicer-feed {
  font-family: inherit;
  overflow: unset; }

.cc--social-media-feed .referral {
  display: none !important; }

.cc--social-media-feed .j-stack {
  padding-right: 0 !important;
  padding-left: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.cc--social-media-feed .j-stacker-wrapper {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.cc--social-media-feed .feed-item {
  border: 0 !important; }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .feed-item {
      margin-bottom: 1.875rem !important;
      width: calc(50% - 2.08333vw) !important; } }
  @media screen and (min-width: 768px) and (max-width: 1023px) {
    .cc--social-media-feed .feed-item:nth-child(2n) {
      margin-left: 4.16667vw !important; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .feed-item {
      margin-right: 1.5625rem !important;
      width: calc(33.33% - 1.5625rem) !important; }
      .cc--social-media-feed .feed-item:nth-child(3n) {
        margin-right: 0 !important; } }
  .cc--social-media-feed .feed-item * {
    display: none; }
  .cc--social-media-feed .feed-item.j-instagram .j-image::after {
    background-image: url("/wp-content/themes/tmc/pattern_lab/source/images/icons/instagram.svg"); }
  .cc--social-media-feed .feed-item.j-youtube .j-image::after {
    background-image: url("/wp-content/themes/tmc/pattern_lab/source/images/icons/youtube.svg"); }
  .cc--social-media-feed .feed-item.j-facebook .j-image::after {
    background-image: url("/wp-content/themes/tmc/pattern_lab/source/images/icons/facebook.svg"); }
  .cc--social-media-feed .feed-item.j-twitter .j-image::after {
    background-image: url("/wp-content/themes/tmc/pattern_lab/source/images/icons/twitter.svg"); }
  .cc--social-media-feed .feed-item.j-pinterest .j-image::after {
    background-image: url("/wp-content/themes/tmc/pattern_lab/source/images/icons/pinterest.svg"); }
  .cc--social-media-feed .feed-item.j-linkedin .j-image::after {
    background-image: url("/wp-content/themes/tmc/pattern_lab/source/images/icons/linkedin.svg"); }

.cc--social-media-feed .j-image {
  display: block;
  position: relative;
  margin: auto;
  padding-top: 100%; }
  .cc--social-media-feed .j-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover; }
  .cc--social-media-feed .j-image::after {
    position: absolute;
    right: 1.3125rem;
    bottom: 1.3125rem;
    width: 1.4375rem;
    height: 1.4375rem;
    background-size: cover;
    content: ''; }

.cc--social-media-feed .j-paginate.juicer-button {
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  width: auto;
  border: 0;
  color: #000;
  letter-spacing: unset;
  text-decoration: underline !important;
  text-transform: unset; }
  html[data-whatintent="mouse"] .cc--social-media-feed .j-paginate.juicer-button {
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .cc--social-media-feed .j-paginate.juicer-button:hover {
      background: transparent !important;
      text-decoration: none !important; }

.cc--swiper {
  overflow: unset; }
  .cc--swiper .swiper-container {
    padding-bottom: 2.3125rem; }
  .cc--swiper .swiper-nav-button {
    display: block;
    width: 3.75rem;
    overflow: hidden;
    border-radius: 100%;
    height: 3.75rem;
    border-collapse: separate;
    -webkit-box-shadow: 0 1.5rem 2.5rem 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1.5rem 2.5rem 0 rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    outline: none;
    background: #FFF;
    z-index: 1; }
    @media screen and (max-width: 767px) {
      .cc--swiper .swiper-nav-button {
        display: none; } }
  .cc--swiper .cc--card.swiper-slide {
    margin-bottom: 0;
    margin-left: 6.25%;
    width: 83.33333vw;
    height: auto !important; }
    @media screen and (min-width: 768px) {
      .cc--swiper .cc--card.swiper-slide {
        margin-left: 4.16667%;
        width: 33.33333vw; } }
    @media screen and (min-width: 1024px) {
      .cc--swiper .cc--card.swiper-slide {
        margin-left: 4.16667vw;
        width: 25vw; } }
    @media screen and (min-width: 1800px) {
      .cc--swiper .cc--card.swiper-slide {
        margin-left: 75px;
        width: 450px; } }
    @media screen and (min-width: 1024px) {
      .cc--swiper .cc--card.swiper-slide:first-child {
        margin-left: 6.25%; } }
    @media screen and (min-width: 1800px) {
      .cc--swiper .cc--card.swiper-slide:first-child {
        margin-left: 112.5px; } }
    .cc--swiper .cc--card.swiper-slide:last-child {
      margin-right: 6.25%; }
      @media screen and (min-width: 768px) {
        .cc--swiper .cc--card.swiper-slide:last-child {
          margin-right: 4.16667%; } }
      @media screen and (min-width: 1024px) {
        .cc--swiper .cc--card.swiper-slide:last-child {
          margin-right: 6.25%; } }
      @media screen and (min-width: 1800px) {
        .cc--swiper .cc--card.swiper-slide:last-child {
          margin-right: 112.5px; } }
  .cc--swiper .swiper-button-prev {
    left: 2.08333vw; }
    @media screen and (min-width: 1024px) {
      .cc--swiper .swiper-button-prev {
        left: 2.5rem; } }
  .cc--swiper .swiper-button-next {
    right: 2.08333vw; }
    @media screen and (min-width: 1024px) {
      .cc--swiper .swiper-button-next {
        right: 2.5rem; } }
  .cc--swiper .swiper-button-disabled {
    display: none !important; }
  .cc--swiper .swiper-pagination {
    bottom: 0;
    line-height: 0; }
  .cc--swiper .swiper-pagination-bullet {
    margin-top: 0;
    margin-right: 5px !important;
    margin-bottom: 0;
    margin-left: 5px !important;
    width: 0.4375rem;
    height: 0.4375rem;
    border: 0.0625rem solid #000;
    outline: none;
    background-color: #FFF;
    opacity: 1; }
    .cc--swiper .swiper-pagination-bullet:last-child {
      margin-right: 0; }
  .cc--swiper .swiper-pagination-bullet-active {
    background: #000; }

.cc--weekly-asset-cards {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-bottom: 40px;
  max-width: unset; }
  @media screen and (min-width: 768px) {
    .cc--weekly-asset-cards {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-asset-cards {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-asset-cards {
      padding-bottom: 60px; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-asset-cards {
      padding-bottom: 80px; } }
  .cc--weekly-asset-cards .f--section-title {
    margin-bottom: 1.8125rem; }
    @media screen and (min-width: 768px) {
      .cc--weekly-asset-cards .f--section-title {
        margin-bottom: 2.375rem; } }
    @media screen and (min-width: 1024px) {
      .cc--weekly-asset-cards .f--section-title {
        margin-bottom: 2.875rem; } }
  .cc--weekly-asset-cards .cc--card .c--card {
    height: 100%; }
  .cc--weekly-asset-cards .cc--card .card-inner {
    height: 100%; }
    @media screen and (min-width: 768px) {
      .cc--weekly-asset-cards .cc--card .card-inner {
        padding-bottom: 4.375rem; } }
    @media screen and (min-width: 1024px) {
      .cc--weekly-asset-cards .cc--card .card-inner {
        padding-bottom: 3.125rem; } }
  .cc--weekly-asset-cards .cc--card .image-container {
    margin-bottom: 0; }
  @media screen and (min-width: 768px) {
    .cc--weekly-asset-cards .cc--card .f--card-secondary-image {
      margin-top: -1.5625rem; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-asset-cards .cc--card .f--card-secondary-image {
      margin-top: -2.5rem; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-asset-cards .cc--card .f--card-secondary-image::before {
      display: block;
      width: 5rem;
      overflow: hidden;
      border-radius: 100%;
      height: 5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-asset-cards .cc--card .f--card-secondary-image::before {
      display: block;
      width: 7.8125rem;
      overflow: hidden;
      border-radius: 100%;
      height: 7.8125rem; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-asset-cards .cc--card .f--card-secondary-image img {
      width: 3.5rem; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-asset-cards .cc--card .f--card-secondary-image img {
      width: 4.875rem; } }
  @media screen and (max-width: 767px) {
    .cc--weekly-asset-cards .cc--card .f--cta-title {
      margin-bottom: 0.9375rem; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-asset-cards .cc--card .f--cta-title {
      font-size: 1.5rem;
      line-height: 1.25; } }

.cc--weekly-assets-filter {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter {
      padding-left: 4.16667%;
      padding-right: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-assets-filter {
      padding-left: 6.25%;
      padding-right: 6.25%; } }
  @media screen and (min-width: 1800px) {
    .cc--weekly-assets-filter {
      padding-left: 112.5px;
      padding-right: 112.5px; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-assets-filter {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter .filter-controls {
      margin-bottom: 0.3125rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-assets-filter .filter-controls {
      margin-bottom: 0;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter .filter-controls > * {
      width: 100%;
      margin-left: 2.08333vw; } }
  @media screen and (min-width: 1800px) {
    .cc--weekly-assets-filter .filter-controls > * {
      margin-left: 37.5px; } }
  @media screen and (min-width: 1024px) {
    .cc--weekly-assets-filter .filter-controls > * {
      max-width: 31.25vw; } }
  @media screen and (min-width: 1800px) {
    .cc--weekly-assets-filter .filter-controls > * {
      max-width: 562.5px; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter .filter-controls > *:first-child {
      margin-left: 0; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter .filter-controls .f--form-item {
      margin-bottom: 0 !important; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter .filter-controls .select-wrap .f--icon {
      right: 1.375rem; } }
  .cc--weekly-assets-filter .filter-controls .select-wrap .f--icon img,
  .cc--weekly-assets-filter .filter-controls .select-wrap .f--icon svg {
    width: 1rem; }
  .cc--weekly-assets-filter .filter-controls select,
  .cc--weekly-assets-filter .filter-controls input[type="text"] {
    font-size: 1rem;
    line-height: 2.5rem; }
    @media screen and (min-width: 768px) {
      .cc--weekly-assets-filter .filter-controls select,
      .cc--weekly-assets-filter .filter-controls input[type="text"] {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        line-height: 3.625rem; } }
  @media screen and (min-width: 768px) {
    .cc--weekly-assets-filter .filter-controls input[type="submit"] {
      margin-bottom: 0; } }
  .cc--weekly-assets-filter .cc--card .f--description {
    padding-right: 0;
    padding-left: 0; }

@media screen and (max-width: 767px) {
  .custom-package-page .cc--share-body-content {
    display: none; } }

.cc--404 {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto; }
  .cc--404 .c--404 {
    padding-top: 1.25rem;
    padding-right: 8.33333%;
    padding-bottom: 1.25rem;
    padding-left: 8.33333%;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .cc--404 .c--404 {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-bottom: 9.375rem;
        padding-left: 8.33333%; } }
    .cc--404 .c--404 h1 {
      font-size: 2.5rem;
      line-height: 1.25;
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      color: #000; }
      @media screen and (min-width: 1024px) {
        .cc--404 .c--404 h1 {
          font-size: 4.75rem;
          line-height: 1.0527; } }

.lity-active,
.lity-active body {
  overflow: hidden; }

.lity .lity-wrap {
  padding-top: 3.75rem;
  padding-right: 6.25vw;
  padding-bottom: 1.25rem;
  padding-left: 6.25vw; }
  @media screen and (min-width: 768px) {
    .lity .lity-wrap {
      padding-right: 8.33333vw;
      padding-bottom: 3.75rem;
      padding-left: 8.33333vw; } }
  @media screen and (min-width: 1024px) {
    .lity .lity-wrap {
      padding-top: 5.625rem;
      padding-right: 22.91667vw;
      padding-bottom: 5.625rem;
      padding-left: 22.91667vw; } }
  @media screen and (min-width: 1800px) {
    .lity .lity-wrap {
      padding-right: 412.5px;
      padding-left: 412.5px; } }

.lity .lity-container {
  width: 100%;
  background-color: #FFF;
  vertical-align: top;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }
  @media screen and (min-width: 768px) {
    .lity .lity-container {
      vertical-align: middle; } }

.lity .lity-content {
  padding-top: 2.5rem;
  padding-right: 6.25vw;
  padding-bottom: 2.5rem;
  padding-left: 6.25vw;
  -webkit-transition: none;
  transition: none; }
  @media screen and (min-width: 768px) {
    .lity .lity-content {
      padding-top: 3.75rem;
      padding-right: 4.16667vw;
      padding-bottom: 3.125rem;
      padding-left: 4.16667vw; } }
  @media screen and (min-width: 1800px) {
    .lity .lity-content {
      padding-right: 75px;
      padding-left: 75px; } }
  .lity .lity-content::after {
    display: none; }

.lity .lity-close {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 1.0625rem;
  right: 1.0625rem;
  width: 1rem;
  height: 1rem;
  color: #000; }
  @media screen and (min-width: 768px) {
    .lity .lity-close {
      top: 1.6875rem;
      right: 1.75rem;
      width: 1.4375rem;
      height: 1.4375rem; } }
  .lity .lity-close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("/wp-content/themes/tmc/pattern_lab/source/images/icons/close.svg");
    background-size: cover;
    content: ''; }
  html[data-whatinput="keyboard"] .lity .lity-close:focus {
    outline: 3px solid #00B5E2; }
  html[data-whatinput="mouse"] .lity .lity-close:focus {
    outline: none; }

.lity .f--section-title {
  margin-bottom: 1.875rem;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #000;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .lity .f--section-title {
      margin-bottom: 2.5rem;
      font-size: 1.75rem;
      line-height: 1.2143; } }

@media screen and (min-width: 768px) {
  .lity .f--form-item label {
    font-size: 1rem;
    line-height: 1.375; } }

.lity input[type='text'],
.lity input[type='email'],
.lity textarea {
  padding-right: 1.25rem;
  padding-left: 1.25rem; }

.lity textarea {
  height: 6.25rem; }
  @media screen and (min-width: 768px) {
    .lity textarea {
      height: 7.5rem; } }

.lity .checkbox-wrapper {
  margin-top: -0.3125rem; }
  @media screen and (min-width: 768px) {
    .lity .checkbox-wrapper {
      text-align: center; } }

.lity button[type='submit'],
.lity input[type='submit'] {
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (min-width: 768px) {
    .lity button[type='submit'],
    .lity input[type='submit'] {
      margin-top: 2.5rem; } }

/*# sourceMappingURL=maps/style.css.map */
