/*
  Conversion Drawer Default Theme

  ----------------------------------------

  NOTE: These are the default (fall-back) token values that should be imported in 
  the proxy component before the brand specific tokens. This should help prevent
  difficult to debug LESS compilation errors.

  This file can be used as a starting point for creating new component themes.

  ----------------------------------------

  The tokens are organized by those that are common to all of a brand's themes,
  and those which must be changed for each theme--which is mainly colors.

  Brand Tokens
  - Core Drawer Styles (tab, slider, overlay)
  - Utilities (disclaimer modal, action)
  - Card Templates (text card)

  Theme Tokens
  - Light (Default)
  - Dark

*/
/* 
  ------------------
  Core Drawer Styles
  ------------------
*/
/*
  Tab
*/
/* Common (Open or Closed) */
/* Closed State */
/*
  Slider
*/
/* 
  Overlay 
*/
/* 
  ---------
  Utilities
  ---------
*/
/*
  Disclaimer Modal
*/
/*
  Card Action
*/
/* 
  --------------
  Card Templates
  --------------
*/
/*
  Text Card
*/
/* Overline */
/* End Date */
/* Headline */
/* Body */
/*
  Conversion Drawer Theme Variables

  Core Drawer Styles (tab, slider, overlay)
  Utilities (disclaimer modal, action)
  Card Templates (text card)
*/
/* 
  ------------------
  Core Drawer Styles
  ------------------
*/
/*
  Tab
*/
/* Common (Open or Closed) */
/* 
  ---------
  Utilities
  ---------
*/
/*
  Disclaimer Modal
*/
/*
  Card Action
*/
/* 
  --------------
  Card Templates
  --------------
*/
/*
  Text Card
*/
/* Overline */
/* End Date */
/* Headline */
/* Body */
/*
  Drawer Theme
*/
/* Light Theme (Default) */
.digital-platform__conversion-drawer,
.digital-platform__conversion-drawer.light {
  --drawer__background: #ffffff;
  --drawer__box-shadow: 0px -4px 74px 0px rgba(255, 255, 255, 0.35);
  --tab__box-shadow: 0px -3px 34px 0px rgba(255, 255, 255, 0.35);
  --outline-color: #2e2e2e;
  --authoring-border: 2px dashed #2e2e2e;
  /* Closed State */
  --tab-offer-count__color: #c41239;
  --tab-offer-count__background-color: #ffffff;
  --tab-offer-count__color--hover: #c41239;
  --tab-offer-count__background-color--hover: #ffffff;
  --tab__color: #ffffff;
  --tab__background-color: #c41239;
  --tab__background-color--hover: #9b132b;
  --tab-open-close__color--hover: #ffffff;
  --tab-open-close__background-color--hover: #c41239;
  /* Open State */
  --tab-offer-count__color--open: #ffffff;
  --tab-offer-count__background-color--open: #c41239;
  --tab__color--open: #2e2e2e;
  --tab__background-color--open: #ffffff;
  --tab__background-color--open--hover: #ffffff;
  /* Pagination Control Buttons (Open Only) */
  --tab-pagination-controls__color: #2e2e2e;
  --tab-pagination-controls__background-color: transparent;
  --tab-pagination-controls__color--hover: #ffffff;
  --tab-pagination-controls__background-color--hover: #9b132b;
  --tab-pagination-controls__color--disabled: #7f7f7f;
  --tab-pagination-controls__background-color--disabled: transparent;
  /* Disclaimer Modals */
  --modal__color: #2e2e2e;
  --modal__background-color: #ffffff;
  --modal-close__color: #ffffff;
  --modal-close__background-color: transparent;
  --modal-close__color--hover: #000000;
  --modal-close__background-color--hover: #ffffff;
}
/* Dark Theme */
.digital-platform__conversion-drawer.dark {
  --drawer__background: #121212;
  --drawer__box-shadow: 0px -4px 74px 0px rgba(255, 255, 255, 0.35);
  --tab__box-shadow: 0px -3px 34px 0px rgba(255, 255, 255, 0.35);
  --outline-color: #ffffff;
  --authoring-border: 2px solid #c41239;
  /* Closed State */
  --tab-offer-count__color: #ffffff;
  --tab-offer-count__background-color: #c41239;
  --tab-offer-count__color--hover: #c41239;
  --tab-offer-count__background-color--hover: #ffffff;
  --tab__color: #ffffff;
  --tab__background-color: #121212;
  --tab__background-color--hover: #c41239;
  --tab-open-close__color--hover: #ffffff;
  --tab-open-close__background-color--hover: #9b132b;
  /* Open State */
  --tab-offer-count__color--open: #c41239;
  --tab-offer-count__background-color--open: #ffffff;
  --tab__color--open: #ffffff;
  --tab__background-color--open: #121212;
  --tab__background-color--open--hover: #121212;
  /* Pagination Control Buttons (Open Only) */
  --tab-pagination-controls__color: #ffffff;
  --tab-pagination-controls__background-color: transparent;
  --tab-pagination-controls__color--hover: #c41239;
  --tab-pagination-controls__background-color--hover: #ffffff;
  --tab-pagination-controls__color--disabled: #7f7f7f;
  --tab-pagination-controls__background-color--disabled: transparent;
  /* Disclaimer Modals */
  --modal__color: #ffffff;
  --modal__background-color: #121212;
  --modal-close__color: #ffffff;
  --modal-close__background-color: transparent;
  --modal-close__color--hover: #000000;
  --modal-close__background-color--hover: #ffffff;
}
/*
  Card Theme

  Cards inherit their their theme from the drawer by default, so these custom
  css properties are added to the drawer and overwritten at the card level
  if a theme class is added to the card.
*/
/* Light Theme (Default) */
.digital-platform__conversion-drawer .conversion-drawer-text-card,
.digital-platform__conversion-drawer.light .conversion-drawer-text-card,
.digital-platform__conversion-drawer section.conversion-drawer-text-card.light {
  --outline-color: #000000;
  /* Text Card */
  --text-card__color: #2e2e2e;
  --text-card__background-color: #f2f2f2;
  /* Actions */
  --action__color: #ffffff;
  --action__background-color: #c41239;
  --action__color--hover: #ffffff;
  --action__background-color--hover: #9b132b;
  --action__color--success: #ffffff;
  --action__background-color--success: #080;
  --action__color--error: #000000;
  --action__background-color--error: #ffffff;
  --action__border-color--error: #c41239;
  /* Modal Trigger ("i" icon) */
  --modal-trigger__color: #2e2e2e;
  --modal-trigger__color--hover: #ffffff;
  --modal-trigger__background-color--hover: #2e2e2e;
}
/* Dark Theme */
.digital-platform__conversion-drawer.dark .conversion-drawer-text-card,
.digital-platform__conversion-drawer section.conversion-drawer-text-card.dark {
  --outline-color: #ffffff;
  /* Text Card */
  --text-card__color: #f2f2f2;
  --text-card__background-color: #222222;
  /* Actions */
  --action__color: #ffffff;
  --action__background-color: #c41239;
  --action__color--hover: #ffffff;
  --action__background-color--hover: #9b132b;
  --action__color--success: #ffffff;
  --action__background-color--success: #080;
  --action__color--error: #000000;
  --action__background-color--error: #ffffff;
  --action__border-color--error: #c41239;
  /* Modal Trigger ("i" icon) */
  --modal-trigger__color: #f2f2f2;
  --modal-trigger__color--hover: #222222;
  --modal-trigger__background-color--hover: #f2f2f2;
}
/* Accent Theme (Card Only) */
.digital-platform__conversion-drawer section.conversion-drawer-text-card.accent {
  --outline-color: #ffffff;
  /* Text Card */
  --text-card__color: #ffffff;
  --text-card__background-color: #c41239;
  /* Actions */
  --action__color: #c41239;
  --action__background-color: #ffffff;
  --action__color--hover: #ffffff;
  --action__background-color--hover: #9b132b;
  --action__color--success: #ffffff;
  --action__background-color--success: #080;
  --action__color--error: #000000;
  --action__background-color--error: #ffffff;
  --action__border-color--error: #9b132b;
  /* Modal Trigger ("i" icon) */
  --modal-trigger__color: #f2f2f2;
  --modal-trigger__color--hover: #c41239;
  --modal-trigger__background-color--hover: #f2f2f2;
}
/*
    Closed Initial State

    Position the drawer just below the screen
*/
.digital-platform__conversion-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 500ms cubic-bezier(0.28, 0.47, 0.57, 0.97);
  z-index: 10;
  background: var(--drawer__background);
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  /*
    Remove conflict with global rule. It's a long story:
    https://whirlpool.atlassian.net/browse/USAB-3151?focusedCommentId=7254032
  */
  /*
    Add element resets to prevent custom code bleed
  */
}
.digital-platform__conversion-drawer svg:not(:root) {
  height: 100%;
}
.digital-platform__conversion-drawer *:focus {
  outline: none;
}
.digital-platform__conversion-drawer a:focus-visible,
.digital-platform__conversion-drawer button:focus-visible,
.digital-platform__conversion-drawer [role="button"]:focus-visible {
  outline: 1px dashed var(--outline-color);
  outline-offset: 3px;
}
.digital-platform__conversion-drawer h1,
.digital-platform__conversion-drawer h2,
.digital-platform__conversion-drawer h3,
.digital-platform__conversion-drawer h4,
.digital-platform__conversion-drawer h5,
.digital-platform__conversion-drawer h6,
.digital-platform__conversion-drawer p,
.digital-platform__conversion-drawer a {
  margin: 0;
  padding: 0;
  color: inherit;
}
/*
    Open State
*/
.digital-platform__conversion-drawer[data-open="true"] {
  /* Unsets the translate value */
  transform: translateY(0);
  z-index: 1055;
  box-shadow: var(--drawer__box-shadow);
}
.digital-platform__conversion-drawer .conversion-drawer-tab {
  display: grid;
  grid-template-columns: repeat(4, auto);
  width: fit-content;
  padding-block: 9px;
  padding-inline: 18px;
  align-items: center;
  gap: 10px;
  position: absolute;
  transform: translate(calc(50vw - 50%), calc(-100% + 1px));
  text-align: center;
  border-radius: 0;
  background-color: var(--tab__background-color);
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  cursor: pointer;
  user-select: none;
  transition: color 200ms ease-in, background-color 200ms ease-in, translate 0.5s ease-out;
}
.digital-platform__conversion-drawer .conversion-drawer-tab::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 0;
  box-shadow: var(--tab__box-shadow);
  clip-path: inset(-100px -100px 1px -100px);
  z-index: -1;
}
.digital-platform__conversion-drawer .conversion-drawer-tab:focus-visible,
.digital-platform__conversion-drawer .conversion-drawer-tab:hover:not(:has(.conversion-drawer-tab__pagination-controls:hover)) {
  background-color: var(--tab__background-color--hover);
  outline-color: var(--outline-color);
}
.digital-platform__conversion-drawer .conversion-drawer-tab:focus-visible .conversion-drawer-tab__offer-count,
.digital-platform__conversion-drawer .conversion-drawer-tab:hover:not(:has(.conversion-drawer-tab__pagination-controls:hover)) .conversion-drawer-tab__offer-count {
  color: var(--tab-offer-count__color--hover);
  background-color: var(--tab-offer-count__background-color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-tab:focus-visible .conversion-drawer-tab__open-close,
.digital-platform__conversion-drawer .conversion-drawer-tab:hover:not(:has(.conversion-drawer-tab__pagination-controls:hover)) .conversion-drawer-tab__open-close {
  background-color: var(--tab-open-close__background-color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-tab:focus-visible .conversion-drawer-tab__open-close path,
.digital-platform__conversion-drawer .conversion-drawer-tab:hover:not(:has(.conversion-drawer-tab__pagination-controls:hover)) .conversion-drawer-tab__open-close path {
  fill: var(--tab-open-close__color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-tab__message {
  color: var(--tab__color);
  text-transform: uppercase;
}
.digital-platform__conversion-drawer .conversion-drawer-tab__offer-count {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5em;
  width: 1.5em;
  color: var(--tab-offer-count__color);
  background-color: var(--tab-offer-count__background-color);
  border-radius: 100%;
  transition-property: color, background-color;
  transition-duration: 200ms;
  transition-timing-function: ease-in;
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls {
  display: none;
  height: calc(100% +  18px );
  margin-left: 75px;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  cursor: default;
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls button {
  display: flex;
  height: 30px;
  width: 30px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--tab-pagination-controls__background-color);
  border-radius: 100%;
  transition-property: color, background-color;
  transition-duration: 200ms;
  transition-timing-function: ease-in;
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls button path {
  fill: var(--tab-pagination-controls__color);
  transition: fill 200ms ease-in;
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls button:hover {
  background-color: var(--tab-pagination-controls__background-color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls button:hover path {
  fill: var(--tab-pagination-controls__color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls button[disabled] {
  background-color: var(--tab-pagination-controls__background-color--disabled);
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls button[disabled] path {
  fill: var(--tab-pagination-controls__color--disabled);
}
.digital-platform__conversion-drawer .conversion-drawer-tab__pages {
  height: fit-content;
  width: 20px;
  min-width: max-content;
  font-size: 12px;
  color: var(--tab-pagination-controls__color);
}
.digital-platform__conversion-drawer .conversion-drawer-tab__open-close {
  display: flex;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: transform 500ms cubic-bezier(0.28, 0.47, 0.57, 0.97), background-color 200ms ease-in;
}
.digital-platform__conversion-drawer .conversion-drawer-tab__open-close path {
  fill: var(--tab__color);
  transition: fill 200ms ease-in;
}
@supports (transform: translateX(calc(50dvw - 50%)) translateY(calc(-100% + 1px))) {
  .digital-platform__conversion-drawer .conversion-drawer-tab {
    transform: translateX(calc(50dvw - 50%)) translateY(calc(-100% + 1px));
  }
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab {
  background-color: var(--tab__background-color--open);
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:focus-visible,
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:hover:not( :has(.conversion-drawer-tab__pagination-controls:hover)) {
  background-color: var(--tab__background-color--open--hover);
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:focus-visible .conversion-drawer-tab__offer-count,
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:hover:not( :has(.conversion-drawer-tab__pagination-controls:hover)) .conversion-drawer-tab__offer-count {
  color: var(--tab-offer-count__color--open);
  background-color: var(--tab-offer-count__background-color--open);
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:focus-visible .conversion-drawer-tab__open-close,
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:hover:not( :has(.conversion-drawer-tab__pagination-controls:hover)) .conversion-drawer-tab__open-close {
  background-color: var(--tab-pagination-controls__background-color--hover);
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:focus-visible .conversion-drawer-tab__open-close path,
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab:hover:not( :has(.conversion-drawer-tab__pagination-controls:hover)) .conversion-drawer-tab__open-close path {
  fill: var(--tab-pagination-controls__color--hover);
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab__offer-count {
  color: var(--tab-offer-count__color--open);
  background-color: var(--tab-offer-count__background-color--open);
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab__message {
  color: var(--tab__color--open);
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab__open-close {
  transform: rotate(180deg);
  padding-bottom: 2px;
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab__open-close path {
  fill: var(--tab__color--open);
}
.digital-platform__conversion-drawer.loading .conversion-drawer-tab {
  translate: 0 100%;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-tab__pagination-controls {
    display: flex;
    visibility: hidden;
  }
}
@media only screen and (min-width: 1024px) {
  .digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-tab__pagination-controls {
    visibility: visible;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-slider {
  display: grid;
  grid-auto-flow: column;
  gap: 15px;
  min-height: 160px;
  max-width: fit-content;
  margin-inline: auto;
  padding: 15px;
  overflow-x: auto;
  /* Scrolls on overflow */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  /* 
    Temporarily hide scroll-bar

    It's quite ugly on Maytag and the dark themes
  */
  scrollbar-width: none;
}
.digital-platform__conversion-drawer .conversion-drawer-slider > section {
  user-select: none;
  scroll-snap-align: center;
  scroll-behavior: smooth;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-slider {
    min-height: 185px;
    padding: 20px;
    gap: 20px;
    scroll-snap-type: x proximity;
  }
  .digital-platform__conversion-drawer .conversion-drawer-slider > section {
    scroll-snap-align: start;
    scroll-margin-inline: 20px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-slider:hover {
  cursor: grab;
}
.digital-platform__conversion-drawer .conversion-drawer-slider:active {
  cursor: grabbing;
}
.digital-platform__conversion-drawer .conversion-drawer-overlay {
  display: none;
  background-color: transparent;
  transition: background-color 500ms ease-in;
}
.digital-platform__conversion-drawer[data-open="true"] .conversion-drawer-overlay {
  display: block;
  height: 100vh;
  inset: 0;
  position: fixed;
  transform: translateY(-100%);
  z-index: -1;
  background-color: #1e1e1e80;
}
.digital-platform__conversion-drawer .conversion-drawer-action {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-action {
    margin-top: 24px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-action__button {
  display: flex;
  height: fit-content;
  width: fit-content;
  min-height: 30px;
  padding: 3px 10px;
  border-radius: 0;
  background-color: var(--action__background-color);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--action__color);
  text-align: center;
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  transition-property: background-color, color;
  transition-duration: 200ms;
  transition-timing-function: ease-in;
}
.digital-platform__conversion-drawer .conversion-drawer-action__button svg path {
  transition: fill 200ms ease-in;
  fill: var(--action__color);
}
.digital-platform__conversion-drawer .conversion-drawer-action__button * {
  text-transform: uppercase;
}
.digital-platform__conversion-drawer .conversion-drawer-action__button:hover,
.digital-platform__conversion-drawer .conversion-drawer-action__button:focus-visible {
  color: var(--action__color--hover);
  background-color: var(--action__background-color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-action__button:hover path,
.digital-platform__conversion-drawer .conversion-drawer-action__button:focus-visible path {
  fill: var(--action__color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-action__button--icon {
  display: flex;
  align-items: center;
  gap: 5px;
}
.digital-platform__conversion-drawer .conversion-drawer-action__button--link {
  display: flex;
  padding-block: 5px;
  align-items: center;
}
.digital-platform__conversion-drawer .conversion-drawer-action__button--link span {
  height: fit-content;
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper {
  width: fit-content;
  position: static;
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="copy"] .conversion-drawer-action__status--success,
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="copy"] .conversion-drawer-action__status--failure {
  display: none;
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="success"] .conversion-drawer-action__status--copy,
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="success"] .conversion-drawer-action__status--failure {
  display: none;
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="success"] .conversion-drawer-action__coupon-code-button {
  background-color: var(--action__background-color--success);
  color: var(--action__color--success);
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="success"] .conversion-drawer-action__coupon-code-button path {
  fill: var(--action__color--success);
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="failure"] .conversion-drawer-action__coupon-code-button {
  display: none;
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="failure"] .conversion-drawer-action__button {
  border-radius: 0;
  border: 1px solid var(--action__border-color--error);
  color: var(--action__color--error);
  background: var(--action__background-color--error);
  user-select: text;
  cursor: text;
}
.digital-platform__conversion-drawer .conversion-drawer-action__coupon-code-wrapper[data-state="failure"] .conversion-drawer-action__button svg path {
  fill: var(--action__border-color--error);
}
.digital-platform__conversion-drawer .conversion-drawer-action__utility-message {
  margin-bottom: 4px;
}
.digital-platform__conversion-drawer .conversion-drawer-modal {
  min-width: 250px;
  width: 75%;
  max-width: 45ch;
  height: fit-content;
  margin: 0;
  padding: 0;
  background-color: var(--modal__background-color);
  border: none;
  border-radius: 0;
  overflow: visible;
  cursor: auto;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-modal {
    width: 66%;
    max-width: 600px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-modal::backdrop {
  background-color: transparent;
  cursor: pointer;
}
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger {
  display: inline-block;
  font-size: 14px;
  height: 0.75em;
  width: 0.75em;
  padding: 0;
  background: none;
  border-radius: 100%;
  position: relative;
}
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger svg path {
  fill: var(--modal-trigger__color);
}
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger:hover,
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger:focus-visible {
  background-color: var(--modal-trigger__background-color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger:hover svg path#i_line,
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger:focus-visible svg path#i_line,
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger:hover path#i_dot,
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger:focus-visible path#i_dot {
  fill: var(--modal-trigger__color--hover);
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-modal__trigger {
    font-size: 16px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-modal__trigger-click-target {
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  transform: translateX(-0.375em) translateY(-0.375em);
}
.digital-platform__conversion-drawer .conversion-drawer-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(calc(-100% - 10px));
}
.digital-platform__conversion-drawer .conversion-drawer-modal__close svg {
  height: initial;
}
.digital-platform__conversion-drawer .conversion-drawer-modal__container {
  height: fit-content;
  max-height: 70vh;
  padding: 15px;
  overflow-y: auto;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-modal__container {
    padding: 30px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-modal__container p {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  text-transform: none;
}
.digital-platform__conversion-drawer .conversion-drawer-modal__container p:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-modal__container p {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-modal__container p,
.digital-platform__conversion-drawer .conversion-drawer-modal__container h1,
.digital-platform__conversion-drawer .conversion-drawer-modal__container h2,
.digital-platform__conversion-drawer .conversion-drawer-modal__container h3,
.digital-platform__conversion-drawer .conversion-drawer-modal__container h4,
.digital-platform__conversion-drawer .conversion-drawer-modal__container h5,
.digital-platform__conversion-drawer .conversion-drawer-modal__container h6 {
  color: var(--modal__color);
}
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button {
  color: var(--modal-close__color);
  background-color: var(--modal-close__background-color);
  user-select: auto;
}
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button:hover,
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button:focus-visible {
  color: var(--modal-close__color--hover);
  background-color: var(--modal-close__background-color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button--icon svg path {
  fill: var(--modal-close__color);
}
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button--icon:hover,
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button--icon:focus-visible {
  outline-color: var(--modal-close__background-color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button--icon:hover svg path,
.digital-platform__conversion-drawer .conversion-drawer-modal .conversion-drawer-action__button--icon:focus-visible svg path {
  fill: var(--modal-close__color--hover);
}
.digital-platform__conversion-drawer .conversion-drawer-modal[open] {
  position: fixed;
  top: calc(-100vh + 100%);
  transform: translateX(calc(50vw - 50%)) translateY(calc(50vh - 50%));
}
.digital-platform__conversion-drawer .conversion-drawer-modal[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
@supports (transform: translateX(calc(50dvw - 50%)) translateY(calc(50dvh - 50%))) {
  .digital-platform__conversion-drawer .conversion-drawer-modal[open] {
    top: calc(-100dvh + 100%);
    transform: translateX(calc(50dvw - 50%)) translateY(calc(50dvh - 50%));
  }
}
.digital-platform__conversion-drawer .conversion-drawer-text-card {
  display: grid;
  min-height: fit-content;
  height: 100%;
  width: 280px;
  grid-template-rows: 1fr max-content;
  padding: 15px;
  color: var(--text-card__color);
  background-color: var(--text-card__background-color);
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-text-card {
    width: 330px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-text-card > :first-child {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: min-content max-content;
  grid-template-areas: "overline date" "main-content main-content";
  gap: 17px;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-text-card > :first-child {
    gap: 20px 10px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__main-content {
  grid-area: main-content;
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__overline,
.digital-platform__conversion-drawer .conversion-drawer-text-card__headline {
  text-transform: uppercase;
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__overline {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-text-card__overline {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__end-date {
  height: fit-content;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  grid-area: date;
  align-self: start;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-text-card__end-date {
    font-size: 12px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__headline {
  display: inline;
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.2px;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-text-card__headline {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__body,
.digital-platform__conversion-drawer .conversion-drawer-text-card .conversion-drawer-action__utility-message {
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .digital-platform__conversion-drawer .conversion-drawer-text-card__body,
  .digital-platform__conversion-drawer .conversion-drawer-text-card .conversion-drawer-action__utility-message {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__body {
  margin-top: 6px;
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__body a {
  text-decoration: underline;
}
.digital-platform__conversion-drawer .conversion-drawer-text-card__body a:hover,
.digital-platform__conversion-drawer .conversion-drawer-text-card__body a:focus-visible {
  opacity: 0.8;
}

.abandoned-cart-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1049;
	background: rgba(46,46,46,0.9);
	transform: translate3d(0,0,0);
	opacity: 1;
}

.abandoned-cart-modal__dialog {
	display: block;
	visibility: visible;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translate3d(0,0,0);
	opacity: 1;
	z-index: 2;
}

.abandoned-cart-modal h1 {
	margin: 30px 0 10px 15px;
	color: #fefefe;
	font-size: 2.6em;
	text-align: center;
	font-weight: 600;
	text-transform: none;
}

.abandoned-cart-modal h2 {
	font-size: .73em;
	padding-top: 30px;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: none;
	line-height: 1;
}

.abandoned-cart-modal__content {
	opacity: 1;
	margin: auto;
	padding: 10px;
	background-color: transparent;
	border: 0;
	box-shadow: none;
}

.abandoned-cart-modal .close {
	color: #fefefe;
	border: 2px solid #fefefe;
	opacity: unset;
	padding: 0 2px;
	font-size: 1.2em;
	float: right;
	margin: 0 0 10px;
	line-height: 1;
}

.abandoned-cart-modal .close:hover,.close:focus {
	text-decoration: none;
	cursor: pointer;
}

.abandoned-cart-modal__form__submit-btn:hover {
	background-color: #9a132b;
}

.abandoned-cart-modal .thankbtn:hover {
	background-color: #9a132b;
	border: 0;
	outline: 0;
	color: #fff;
}

.abandoned-cart-modal .btn {
	display: block;
	background-color: #c41230;
	margin: 10px auto;
	cursor: pointer;
}

.abandoned-cart-modal__subblock {
	height: 100%;
	padding: 25px 33px 40px;
	background-color: #eee;
}

.abandoned-cart-modal .abandoned-cart-modal__cx-widget {
	color: #444a52;
	background-color: #fff;
	text-align: center;
	font-size: 1.8em;
	padding: 0 13px;
}

.abandoned-cart-modal__subblock p {
	font-size: .7em;
	display: block;
	line-height: normal;
	margin: 0;
	padding: 0 30px;
}

.abandoned-cart-modal__form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin: 10px 0;
	height: 50px;
}

input.abandoned-cart-modal__form__input {
	font-size: .6em;
	border: 2px solid #ededed;
	transition: border-color .3s ease,box-shadow .3s ease;
	font-style: italic;
}

.abandoned-cart-modal__form__submit-btn {
	background-color: #c41230;
	color: #fff !important;
	display: inline-block;
	font-size: .54em !important;
	font-weight: 600 !important;
	text-align: center;
	text-decoration: none;
	width: 32%;
	height: 50px;
	border: 0;
	cursor: pointer;
}

.abandoned-cart-modal__form__submit-btn:focus {
	outline: 0;
}

input.abandoned-cart-modal__form__input {
	width: 70%;
	padding-left: 35px;
	margin-right: 10px;
}

.abandoned-cart-modal__opt-form p {
	font-size: .5em;
	padding: 0 0 20px 10px;
	display: inline;
	text-align: left;
}

.abandoned-cart-modal__opt-form p a {
	font-size: 1em;
	font-weight: normal;
	color: #c41230;
	text-decoration: none;
}

input.abandoned-cart-modal__opt-form__input {
	width: 35px;
	height: 20px;
	display: block;
}

.abandoned-cart-modal__opt-form {
	display: flex;
	line-height: 15px;
	margin: 10px 0;
}

.abandoned-cart-modal__form--right-arrow:after {
	position: absolute;
	margin-left: 20px;
	margin-top: 18px;
	content: " ";
	border-left: 8px solid brown;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
}

.abandoned-cart-modal .thankbtn {
	width: 50%;
	height: 50px;
	font-size: 1.5em;
	border: 0;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	text-transform: none;
}

.abandoned-cart-modal__thank-you h1 {
	color: #444a52;
}

.abandoned-cart-modal__end-note p {
	font-size: .83em;
	text-align: left;
    padding: 0 10px;
}

.abandoned-cart-modal__body {
	padding: 20px 0;
}

.abandoned-cart-modal .abandoned-cart-modal__cx-widget span.error {
	color: red;
	font-size: .4em;
	text-align: left;
	margin: 0;
	display: block;
}

.abandoned-cart-modal__dialog {
	position: relative;
	width: auto;
	margin: 10px;
}

@-moz-document url-prefix() {
	.abandoned-cart-modal h2 {
		font-size: .7em;
	}
	.abandoned-cart-modal__form__submit-btn {
		font-size: .52em !important;
	}
}

@media only screen and (min-device-width :768px) and (max-device-width :1024px) {
	.abandoned-cart-modal {
		bottom: 0;
	}

	.abandoned-cart-modal .abandoned-cart-modal__cx-widget span.error {
		font-size: .5em;
		margin: 0;
	}

	.abandoned-cart-modal h2 {
		font-size: .73em;
	}

	.abandoned-cart-modal__opt-form {
		margin: 10px 0;
	}
}

@media(min-width:768px) {
	.abandoned-cart-modal__dialog {
		width: 600px;
		margin: 30px auto;
	}
}

@media screen and (max-width:600px) {
	.abandoned-cart-modal .abandoned-cart-modal__thank-you .btn {
		display: block;
		background-color: #c41230;
		margin: 10px auto;
		width: 70px;
		height: 25px;
		font-size: .6em;
	}

	.abandoned-cart-modal__content {
		opacity: 1;
		margin: auto;
		padding: 10px;
		background-color: transparent;
		border: 0;
		box-shadow: none;
	}

	.abandoned-cart-modal .close {
		color: #fefefe;
		border: 2px solid #fefefe;
		opacity: unset;
		padding: 0 2px;
		font-size: 1em;
	}

	.abandoned-cart-modal .close:hover,.close:focus {
		text-decoration: none;
		cursor: pointer;
	}

	.abandoned-cart-modal h1 {
		font-size: 1.2em;
		height: 24px;
		margin: 30px 0 10px 0;
	}

	.abandoned-cart-modal h2 {
		font-size: .37em;
		padding: 10px 0 0;
		margin-top: 0;
	}

	.abandoned-cart-modal__subblock {
		padding: 10px;
	}

	.abandoned-cart-modal__subblock .abandoned-cart-modal__cx-widget {
		padding: 0;
	}

	.abandoned-cart-modal__subblock .abandoned-cart-modal__cx-widget p {
		font-size: .36em;
		padding: 0 15px;
	}

	.abandoned-cart-modal__form {
		margin: 10px;
		height: 30px;
	}

	input.abandoned-cart-modal__form__input {
		font-size: .35em;
		border: 1px solid #eee;
		transition: border-color .3s ease,box-shadow .3s ease;
		font-style: italic;
	}

	.abandoned-cart-modal__form__submit-btn {
		height: 30px;
		font-size: .3em !important;
		padding: 0;
	}

	.abandoned-cart-modal__subblock h1 {
		color: #444a52;
		margin: 0;
	}

	input.abandoned-cart-modal__form__input {
		width: 100%;
		padding-left: 20px;
		margin-right: 5px;
		display: inline-block;
	}

	.abandoned-cart-modal__opt-form p a {
		font-size: 1em;
	}

	.abandoned-cart-modal__subblock .abandoned-cart-modal__opt-form p {
		font-size: .32em;
		padding-left: 7px;
		line-height: 10px;
	}

	input.abandoned-cart-modal__opt-form__input {
		width: 25px;
		height: 15px;
		display: block;
	}

	.abandoned-cart-modal__opt-form {
		padding: 0 10px 10px;
	}

	.abandoned-cart-modal__form--right-arrow:after {
		margin-left: 10px;
		margin-top: 12px;
		border-left: 4px solid brown;
		border-bottom: 3px solid transparent;
		border-top: 3px solid transparent;
	}

	.abandoned-cart-modal .abandoned-cart-modal__cx-widget span.error {
		font-size: .34em;
		margin: 0 10px;
		display: block;
		line-height: 8px;
	}

	.abandoned-cart-modal__end-note p {
		font-size: .5em;
	}

}
.pdp-v2-section__title {
    font-family: "Avenir", sans-serif;
    font-weight: 900;
    font-size: 2.75rem;
    line-height: 2.063rem;
    color: #2e2e2e;
  }


@media (min-width: 48rem) {
  .pdp-v2-section__title {
      font-size: 1.875rem;
    }
}

.lead-gen-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1049;
	background: rgba(46,46,46,0.9);
	transform: translate3d(0,0,0);
	opacity: 1;
}

.lead-gen-modal .lead-gen-modal__dialog {
	display: block;
	visibility: visible;
	position: relative;
	top: 0;
	left: 0;
    z-index: 2;
	width: 600px;
	transform: translate3d(0,0,0);
	opacity: 1;
    margin:0 auto;
}

.lead-gen-modal h1 {
	margin: 30px 0 10px 15px;
	color: #fefefe;
	font-size: 2.6em;
	text-align: center;
	font-weight: bold;
	text-transform: none;
}

.lead-gen-modal h2 {
	font-size: .73em;
	padding-top: 30px;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: none;
	line-height: 1;
}

.lead-gen-modal .lead-gen-modal__content {
	opacity: 1;
	margin: auto;
	padding: 10px;
	background-color: transparent;
	border: 0;
	box-shadow: none;
}

.lead-gen-modal .close {
	color: #fefefe;
	border: 2px solid #fefefe;
	opacity: unset;
	padding: 0 2px;
	font-size: 1.2em;
	float: right;
	margin: 0 0 10px;
	line-height: 1;
}

.lead-gen-modal .close:hover,.close:focus {
	text-decoration: none;
	cursor: pointer;
}

.lead-gen-modal .lead-gen-modal__form__submit-btn:hover {
	background-color: #9a132b;
}

.lead-gen-modal .thankbtn:hover {
	background-color: #9a132b;
	border: 0;
	outline: 0;
	color: #fff;
}

.lead-gen-modal .btn {
	display: block;
	background-color: #c41230;
	margin: 10px auto;
	cursor: pointer;
}

.lead-gen-modal .lead-gen-modal__subblock {
	height: 100%;
	padding: 25px 33px;
	background-color: #eee;
}

.lead-gen-modal .lead-gen-modal__cx-widget {
	color: #444a52;
	background-color: #fff;
	text-align: center;
	font-size: 1.8em;
	padding: 0 15px;
}

.lead-gen-modal .lead-gen-modal__subblock p {
	font-size: .66em;
	display: block;
	line-height: normal;
	margin: 0;
	padding: 0 30px;
}

.lead-gen-modal .lead-gen-modal__form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin: 15px 0 0;
	height: 50px;
}

.lead-gen-modal input.lead-gen-modal__form__input {
	font-size: .6em;
	border: 2px solid #ededed;
	transition: border-color .3s ease,box-shadow .3s ease;
	font-style: italic;
	width: 70%;
	padding-left: 30px;
	margin-right: 10px;
}

.lead-gen-modal .lead-gen-modal__form__submit-btn {
	background-color: #c41239;
	color: #fff !important;
	display: inline-block;
	font-size: .54em;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	width: 32%;
	height: 50px;
	border: 0;
	cursor: pointer;
}

.lead-gen-modal .lead-gen-modal__form__submit-btn:focus {
	outline: 0;
}

.lead-gen-modal .lead-gen-modal__opt-form p {
	font-size: .5em;
	padding: 0 0 20px 10px;
	display: inline;
	text-align: left;
}

.lead-gen-modal .lead-gen-modal__opt-form p a {
	font-size: 1em;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}

.lead-gen-modal input.lead-gen-modal__opt-form__input {
	width: 35px;
	height: 20px;
	display: block;
}

.lead-gen-modal .lead-gen-modal__opt-form {
	display: flex;
	line-height: 15px;
	margin: 10px 0;
}
.lead-gen-modal__opt-form label {
    display: flex;
}

.lead-gen-modal .lead-gen-modal__form--right-arrow:after {
	position: absolute;
	margin-left: 18px;
	margin-top: 18px;
	content: " ";
	border-left: 5px solid brown;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
}

.lead-gen-modal .thankbtn {
	width: 50%;
	height: 50px;
	font-size: 1.5em;
	border: 0;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	text-transform: none;
}

.lead-gen-modal .lead-gen-modal__thank-you h1 {
	color: #444a52;
}

.lead-gen-modal .lead-gen-modal__end-note p {
	font-size: .83em;
	text-align: left;
    padding: 0 10px;
}

.lead-gen-modal .lead-gen-modal__body {
	padding: 20px 0;
}

.lead-gen-modal .lead-gen-modal__cx-widget span.error {
	color: red;
	font-size: .4em;
	text-align: left;
	margin: 0;
	display: block;
}

.lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_name {
    color: #fefefe;
    margin-left: 22px;
    font-size: 8.8em;
    text-align: center;
    font-weight: bold;
    font-family: "Avenir-Roman",sans-serif;
    text-transform: none;
    line-height: .8;
}

.lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sub {
    font-size: 1.6em;
    padding: 5px 0;
    font-weight: 600;
    margin: 0;
    text-transform: none;
    color: #fefefe;
    text-align: center;
    letter-spacing: 6.2px;
    font-family: "Avenir-Roman",sans-serif;
}

.lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
    font-size: 1.27em;
    padding: 18px 0 0;
    font-weight: 100;
    margin: 0;
    text-transform: none;
    line-height: 1;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
    font-size: .83em;
    display: block;
    line-height: normal;
    margin: 0;
    padding: 0;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__subblock {
    height: 100%;
    padding: 25px;
    background-color: #eee;
    width: auto;
}
.lead-gen-modal .lead-gen-modal__dialog__up input.lead-gen-modal__form__input {
    font-size: .4em;
    padding-left: 40px;
    margin-right: 5px;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__opt-form p {
    font-size: .4em;
    padding: 0 0 20px 5px;
    display: inline;
    text-align: left;
    line-height: 1.5;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__end-note p {
    font-size: .65em;
    text-align: left;
    padding: 0;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__end-note p a {
    color: #000;
}
.lead-gen-modal .lead-gen-modal__dialog__up .close {
    color: #fefefe;
    border: 1px solid #fefefe;
    opacity: unset;
    padding: 0 3px;
    font-size: 1em;
    margin: -50px 0px;
}
.lead-gen-modal .lead-gen-modal__dialog__up .super {
    font-size: x-large;
    vertical-align: top;
}
.lead-gen-modal .lead-gen-modal__dialog__up {
    width: 100%;
    display: flex;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__content {
    padding: 0;
    vertical-align: middle;
    display: table-cell;
    margin: 0;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__body {
    width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 10px;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__thank-you {
    background-color: #fff;
    height: 227px;
}
.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__thank-you h1 {
    color: #444a52;
    font-size: 1.1em;
    margin: 0;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-modal .lead-gen-modal__dialog__up .center_block{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-modal .lead-gen-modal__dialog__up .center_block p{
    text-align: center;
    font-size: 1em;
    letter-spacing: .8px;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-modal .lead-gen-modal__dialog__up .center_block .thankbtn {
    width: 60%;
    height: 35px;
    border: 0;
    border-radius: 0;
    color: white;
    font-weight: 600;
    text-transform: none;
    font-size: .7em;
}
@-moz-document url-prefix() {
	.lead-gen-modal h2 {
		font-size: .7em;
	}
	.lead-gen-modal .lead-gen-modal__form__submit-btn {
		font-size: .52em !important;
	}
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1199px){
    .lead-gen-modal .lead-gen-modal__dialog__up .close {
        color: #fefefe;
        border: 1px solid #fefefe;
        padding: 5px;
        font-size: 1.4em;
        margin: -53px 0;
        text-align: center;
    }
}
@media only screen and (min-device-width :768px) and (max-device-width :1024px) {
	.lead-gen-modal {
		bottom: 0;
	}

    .lead-gen-modal .lead-gen-modal__dialog {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }

    .lead-gen-modal .lead-gen-modal__content {
        display: table-cell;
        vertical-align: middle;
    }

	.lead-gen-modal .lead-gen-modal__cx-widget span.error {
		font-size: .5em;
		margin: 0;
	}

	.lead-gen-modal h2 {
		font-size: .73em;
	}

	.lead-gen-modal .lead-gen-modal__opt-form {
		margin: 10px 0;
	}

	.lead-gen-modal .lead-gen-modal__opt-form p {
    font-size: .5em;
    padding: 0 0 20px 10px;
    display: inline;
    text-align: left;
    letter-spacing: .2px;
    line-height: 1.2;
    }

	.lead-gen-modal .lead-gen-modal__opt-form p a {
    	font-size: 1em;
    	font-weight: bold;
    	color: #000;
    	text-decoration: underline;
	}

	.lead-gen-modal .lead-gen-modal__subblock {
   		height: 100%;
    	padding: 25px 33px;
    	background-color: #eee;
	}

	.lead-gen-modal .lead-gen-modal__end-note p {
		font-size: .75em;
        text-align: left;
        padding: 0 10px;
        letter-spacing: .2px;
        line-height: 1.2;
	}

    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_name {
    font-size: 9.1em;
    }

    .lead-gen-modal .close {
        margin: -33px 0 10px;
    }

    .lead-gen-modal .lead-gen-modal__body {
        margin-left: auto;
        margin-right: auto;
        width: 600px;
        padding: 0;
    }

    .lead-gen-modal .lead-gen-modal__end-note p a {
        color: #2e2e2e;
    }

	.lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sub {
        font-size: 1.6em;
        padding: 5px 0 5px 0;
        text-align: center;
        letter-spacing: 7px;
	}

	.lead-gen-modal .lead-gen-modal__dialog__up .close {
        color: #fefefe;
        border: 1px solid #fefefe;
        padding: 5px;
        font-size: 1.4em;
        margin: -53px 0;
        text-align: center;
    }

	.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__body {
	    padding: 0;
	}

    .lead-gen-modal .lead-gen-modal__dialog__up .super {
        font-size: x-large;
        vertical-align: top;
        top: 0;
	}

	.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__opt-form p a {
        font-size: .9em;
        letter-spacing: .3px;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__subblock {
        height: 100%;
        padding: 25px;
        background-color: #eee;
        width: auto;
    }

    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
        font-size: 1.29em;
        padding: 18px 0 0;
    }

    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
        font-size: .85em;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up input.lead-gen-modal__form__input {
        font-size: .55em;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__opt-form p {
        font-size: .5em;
        padding: 0 0 20px 5px;
        display: inline;
        text-align: left;
        line-height: 1.2;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__end-note p {
        font-size: .8em;
        text-align: left;
        padding: 0;
        font-family: "Avenir-Roman",sans-serif;
        line-height: 1.1;
    }
}



@media screen and (max-width:600px) {
	.lead-gen-modal .lead-gen-modal__thank-you .btn {
		display: block;
		background-color: #c41230;
		margin: 10px auto;
		width: 60%;
		height: 25px;
		font-size: .6em;
	}

	.lead-gen-modal .lead-gen-modal__body {
		padding: 20px 0 0;
		position: fixed;
		bottom: 100px;
		right:0;
		left:0;
	}

	.lead-gen-modal .lead-gen-modal__content {
		opacity: 1;
		margin: auto;
		padding: 0;
		background-color: transparent;
		border: 0;
		box-shadow: none;
	}

	.lead-gen-modal .close {
        color: #fefefe;
        border: 2px solid #fefefe;
        opacity: unset;
        padding: 4px;
        font-size: 1.1em;
        margin: -35px 12px;
    }

	.lead-gen-modal .lead-gen-modal__dialog {
		position: fixed;
		width: 100%;
		margin: 0;
		bottom:0;
	}

	.lead-gen-modal .close:hover,.close:focus {
		text-decoration: none;
		cursor: pointer;
	}

	.lead-gen-modal h1 {
		font-size: 1.7em;
		height: 24px;
		margin: 30px 0 10px 0;
	}

	.lead-gen-modal h2 {
		font-size: .49em;
		padding: 10px 0 0;
		margin-top: 0;
	}

	.lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__subblock {
		padding: 10px;
	}
	
	.lead-gen-modal .lead-gen-modal__subblock {
		padding: 10px;
	}

	.lead-gen-modal .lead-gen-modal__subblock .lead-gen-modal__cx-widget {
		padding: 0;
	}

	.lead-gen-modal .lead-gen-modal__subblock p {
		font-size: .49em;
		padding: 0 15px;
	}

	.lead-gen-modal .lead-gen-modal__form {
		margin: 5px 10px;
		height: 30px;
	}

	.lead-gen-modal input.lead-gen-modal__form__input {
		font-size: .35em;
		border: 1px solid #eee;
		transition: border-color .3s ease,box-shadow .3s ease;
		font-style: italic;
		width: 100%;
		padding-left: 20px;
		margin-right: 5px;
		display: inline-block;
	}

	.lead-gen-modal .lead-gen-modal__form__submit-btn {
		height: 30px;
		font-size: .37em;
		padding: 0;
	}

	.lead-gen-modal .lead-gen-modal__subblock h1 {
		color: #444a52;
		margin: 0;
	}

	.lead-gen-modal .lead-gen-modal__opt-form p a {
		font-size: 1em;
    	letter-spacing: 0.3px;
	}

	.lead-gen-modal .lead-gen-modal__opt-form p {
        font-size: .4em;
        padding-left: 7px;
        line-height: 15px;
        padding-right: 0;
	}

	.lead-gen-modal input.lead-gen-modal__opt-form__input {
		width: 30px;
		height: 15px;
		display: block;
	}

	.lead-gen-modal .lead-gen-modal__opt-form {
		padding: 0 10px 10px;
	}

	.lead-gen-modal .lead-gen-modal__form--right-arrow:after {
		margin-left: 10px;
		margin-top: 12px;
		border-left: 4px solid brown;
		border-bottom: 3px solid transparent;
		border-top: 3px solid transparent;
	}

	.lead-gen-modal .lead-gen-modal__cx-widget span.error {
		font-size: .34em;
		margin: 0 10px;
		display: block;
		line-height: 8px;
	}

	.lead-gen-modal .lead-gen-modal__end-note p {
		font-size: .7em;
	}

    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__body {
        width: auto;
        margin: 0 auto;
        text-align: left;
        padding: 0;
    }

    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_name {
        margin: 10px 0 10px 14px;
        font-size: 5.4em;
        line-height: .8;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up .super {
        font-size: medium;
        vertical-align: top;
        top: 0;
    }

    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sub {
        font-size: .9em;
        padding: 0;
        font-weight: 600;
        letter-spacing: 5px;
        margin: 10px 0;
        text-align: center;
    }

    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
        font-size: .76em;
        padding: 10px 0 0;
        font-weight: 100;
        margin: 0;
        line-height: 1;
    }

    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
        font-size: .5em;
        display: block;
        line-height: normal;
        margin: 0;
        padding: 0;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up input.lead-gen-modal__form__input {
        padding-left: 22px;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__opt-form p {
        font-size: .38em;
        padding: 0 0 0 5px;
        display: inline;
        text-align: left;
        line-height: 1.1;
    }

    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__end-note p {
        font-size: .54em;
        text-align: left;
        padding: 0;
        line-height: 1.1;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px)
and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71)
{
   .lead-gen-modal h2 {
        font-size: .42em;
        padding: 10px 0 0;
        margin-top: 0;
    }
    .lead-gen-modal .lead-gen-modal__form__submit-btn {
        font-size: .34em;
    }
    .lead-gen-modal input.lead-gen-modal__form__input {
        font-size: .33em;
    }
    .lead-gen-modal .lead-gen-modal__subblock .lead-gen-modal__opt-form p {
        font-size: .35em;
        padding-left: 5px;
        line-height: 12px;
        padding-right: 0;
        letter-spacing: .09px;
    }
    .lead-gen-modal .lead-gen-modal__opt-form p a {
        font-size: 1em;
        letter-spacing: 1.1px;
    }
    .lead-gen-modal .lead-gen-modal__subblock p {
        font-size: .43em;
        padding: 0 15px;
    }
    .lead-gen-modal h1 {
        font-size: 1.5em;
        height: 24px;
        margin: 30px 0 10px 0;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
        font-size: .7em;
        padding: 10px 0 0;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
        font-size: .48em;
    }
    .lead-gen-modal .close {
    padding: 3px;
        font-size: .8em;
        margin: -23px 8px 10px;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_name {
        margin: 10px 0 0 0px;
        font-size: 4.7em;
        line-height: .8;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sub {
        font-size: .8em;
        padding: 0;
        font-weight: 600;
        letter-spacing: 4px;
        margin: 5px 0;
        text-align:center;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__subblock {
        padding: 15px;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__form {
        margin: 5px;
        height: 30px;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up .super {
        font-size: medium;
        vertical-align: top;
        top: 0;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__opt-form p {
        font-size: .33em;
        padding-left: 5px;
        line-height: 1.1;
        padding-right: 0;
        letter-spacing: .09px;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__end-note p {
        font-size: .49em;
        text-align: left;
        padding: 0;
        line-height: 1.1;
    }
}

@media only screen and (device-width : 414px) and (device-height : 736px) and (-webkit-device-pixel-ratio : 3) {
    .lead-gen-modal h2 {
        font-size: .58em;
        padding: 10px 0 0;
        margin-top: 0;
    }
    .lead-gen-modal h1 {
        font-size: 2em;
        height: 24px;
        margin: 30px 0 10px 0;
    }
    .lead-gen-modal .lead-gen-modal__form__submit-btn {
        height: 30px;
		font-size: .45em !important;
        padding: 0;
    }
    .lead-gen-modal input.lead-gen-modal__form__input {
        font-size: .47em;
    }
    .lead-gen-modal .lead-gen-modal__subblock .lead-gen-modal__opt-form p {
  		font-size: .39em;
        padding-left: 7px;
        line-height: 1;
        letter-spacing: 0.5px;
    }
    .lead-gen-modal .lead-gen-modal__opt-form p a {
        font-size: 1em;
        letter-spacing: 1.2px;
    }
    .lead-gen-modal .lead-gen-modal__form--right-arrow:after {
        margin-left: 10px;
        margin-top: 12px;
        border-left: 3px solid brown;
        border-bottom: 3px solid transparent;
        border-top: 3px solid transparent;
    }
    .lead-gen-modal .lead-gen-modal__subblock p {
        font-size: .58em;
        padding: 0 15px;
    }
    .lead-gen-modal .lead-gen-modal__end-note p {
        font-size: .7em;
    }
    .lead-gen-modal .close {
        color: #fefefe;
        border: 2px solid #fefefe;
        opacity: unset;
        padding: 5px;
        font-size: 1.1em;
        margin: -46px 10px 0 0;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_name {
        margin: 0;
        font-size: 6.09em;
        line-height: .8;
        text-align: center;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up .super {
        font-size: medium;
        vertical-align: top;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sub {
        font-size: 1em;
        padding: 0;
        font-weight: 600;
        letter-spacing: 5.5px;
        margin: 10px 0;
        text-align: center;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
        font-size: .9em;
        padding: 5px 0 0;
    }
    .lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
        font-size: .59em;
        letter-spacing: 0.3px;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up input.lead-gen-modal__form__input {
        font-size: .5em;
        padding-left: 25px;
    }
    .lead-gen-modal .lead-gen-modal__dialog__up .lead-gen-modal__end-note p {
        font-size: .6em;
        text-align: left;
        padding: 0;
        line-height: 1.2;
        letter-spacing: 0.1px;
    }
}

/* SMS LeadGen CSS */

.sms-lead-gen-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1051;
	background: rgba(46, 46, 46, 0.9);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}	

.sms-lead-gen-modal .lead-gen-modal__dialog {
	display: block;
	visibility: visible;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	transform: translate3d(0, 0, 0);
	opacity: 1;
	z-index: 2;
}

.sms-lead-gen-modal h1 {
	margin: 30px 0 10px 15px;
	color: #fefefe;
	font-size: 2.6em;
	text-align: center;
	font-weight: bold;
	text-transform: none;
}

.sms-lead-gen-modal .close {
	color: #fefefe;
    opacity: unset;
    padding: 3px 2px 2px 2px;
    font-size: 14px;
    position: relative;
    top: -35px;
	right: 6px;
    float: right;
    border: 1px solid #ffffff;
    width: 24px;
    height: 24px;
    text-align: center;
	line-height: normal;
	font-family: 'Avenir-Roman','Avenir',sans-serif;
    font-weight: 400;
    background: none;
}

.sms-lead-gen-modal .lead-gen-modal__form__submit-btn span {
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'Avenir-Heavy','Avenir',sans-serif;
}

.sms-lead-gen-modal .close:hover,
.close:focus {
	text-decoration: none;
	cursor: pointer;
}

.sms-lead-gen-modal .lead-gen-modal__form__submit-btn:hover {
	background-color: #9b132b;
	color: #fff;
}

.sms-lead-gen-modal .thankbtn:hover {
	background-color: #9a132b;
	border: 0;
	outline: 0;
	color: #fff;
}

.sms-lead-gen-modal .btn {
	display: block;
	background-color: #c41230;
	margin: 10px auto;
	cursor: pointer;
}

.sms-lead-gen-modal .lead-gen-modal__subblock {
	height: 100%;
	width: 100%;
    padding: 25px;
    background-color: #F6F6F6;
}

.sms-lead-gen-modal .lead-gen-modal__cx-widget {
	text-align: center;
	font-size: 1.8em;
	padding: 0 25px;
	line-height: normal;
}

.sms-lead-gen-modal .lead-gen-modal__subblock p {
	padding: 0;
    text-align: left;
    font-family: 'Avenir-Roman','Avenir',sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 9px;
    color: #000000;
	margin: .2rem 0;
}

.sms-lead-gen-modal .lead-gen-modal__form {
	display: block;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin: 0;
}

.sms-lead-gen-modal .form-input {
	display: block;
	height: 43.02px;
	width: 486px;
	padding-left: 15px;
	background-color: #fff;
	border: 1px solid #E2E2E5;
}

.sms-lead-gen-modal .lead-gen-modal__form__submit-btn {
	margin: 10px 0;
	background: #C41230;
	color: #fff;
	width: auto;
	height: 48px;
	font-size: 14px;
    font-family: 'Avenir-Heavy','Avenir',sans-serif;
    text-transform: uppercase;
	border: 0;
	cursor: pointer;
	padding: 15px 25px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	order: 4;
}

.sms-lead-gen-modal .form-group {
	padding: 0;
	margin: 0 0 1rem;
	border: 0;
}

.sms-lead-gen-modal .form-label {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 12px;
	text-align: left;
	font-family: 'Avenir-Heavy','Avenir',sans-serif;
}
.sms-lead-gen-modal .form-error-item {
    margin: 0.25rem 0 0;
    padding: 0;
    color: #c41230;
    font-size: .9375rem;
	display:none;
}

.sms-lead-gen-modal .form-label span {
	padding-left: 5px;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	font-family: 'Avenir-Heavy','Avenir',sans-serif;
}

.sms-lead-gen-modal .lead-gen-modal__form__submit-btn:focus {
	outline: .125rem solid #000;
	outline-offset: .125rem;
}

.sms-lead-gen-modal .lead-gen-modal__subblock:focus, .sms-lead-gen-modal .close:focus {
	outline: .125rem solid #fff;
	outline-offset: .125rem;
}

.sms-lead-gen-modal label.email-label,  .sms-lead-gen-modal label.phone-label {
    display: block;
    margin: 5px 0;
    font-weight: 100;
    font-size: 14px;
    text-align: left;
    font-family: 'Avenir-Heavy','Avenir',sans-serif;
	color: #000;
}

.sms-lead-gen-modal label.email-label span {
	padding-left: 5px;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
}

.sms-lead-gen-modal label.phone-label span {
    padding-left: 5px;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
}

.sms-lead-gen-modal input.lead-gen-modal__form__input {
	display: block;
    height: 43.02px;
    width: 486px;
    padding-left: 15px;
    background-color: #fff;
    border: 1px solid #E2E2E5;
	font-size: 16px;
}

.sms-lead-gen-modal .lead-gen-modal__form input:focus, .sms-lead-gen-modal .lead-gen-modal__form input:focus-visible {
	border-color: #0079c1;
	box-shadow: inset 0 0.062rem 0.062rem rgb(0 0 0 / 8%), 0 0 0.5rem rgb(0 121 193 / 60%);
	outline: 0 none;
}

.sms-lead-gen-modal .lead-gen-modal__opt-form p {
    font-size: 14.4px;
    margin-left: 10px;
    display: inline-block;
    line-height: 125%;
    font-family: 'Avenir-Roman','Avenir',sans-serif;
    font-style: normal;
    padding: 0;
    align-items: center;
}

.sms-lead-gen-modal .lead-gen-modal__opt-form p a {
	font-size: 1em;
	font-weight: normal;
	color: #C41230;
	text-decoration: underline;
}

.sms-lead-gen-modal input.lead-gen-modal__opt-form__input {
	width: 22px;
	height: 22px;
	display: flex;
	margin: 0;
	border: 1px solid #E2E2E5;
	background: #fff;
	flex: none;
	order: 0;
	flex-grow: 0;
	box-sizing: border-box;
	accent-color: #c41230;
}

.sms-lead-gen-modal .lead-gen-modal__opt-form {
	display: flex;
	line-height: 15px;
	margin: 10px 0;
}

.sms-lead-gen-modal .lead-gen-modal__form--right-arrow:after {
	position: absolute;
	margin-left: 18px;
	margin-top: 18px;
	content: " ";
	border-left: 5px solid brown;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
}

.sms-lead-gen-modal .thankbtn {
	width: 50%;
	height: 50px;
	font-size: 1.5em;
	border: 0;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	text-transform: none;
}

.sms-lead-gen-modal .lead-gen-modal__thank-you h1 {
	color: #444a52;
}

.sms-lead-gen-modal .lead-gen-modal__end-note p {
	font-size: .57em;
    text-align: left;
    padding: 0 25px;
    font-family: 'Avenir-Roman','Avenir',sans-serif;
    display: flex;
    align-items: center;
}

.sms-lead-gen-modal .lead-gen-modal__body {
	width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 10px;
}

.sms-lead-gen-modal .lead-gen-modal__cx-widget span.error {
	color: #C41230;
	font-size: 14px;
	text-align: left;
	margin: 0;
	display: block;
	padding-top: 2px;
}

.sms-lead-gen-modal .sms-check-error {
	color: red;
	font-size: 14px;
	text-align: left;
	margin: 0;
	display: block;
}

.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_name {
	color: #fefefe;
	margin: 0;
	font-size: 8em;
	text-align: center;
	font-weight: bold;
	font-family: "Avenir-Roman", sans-serif;
	text-transform: none;
	line-height: .8;
}

.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sub {
	font-size: 1.6em;
	padding: 5px 0 5px 25px;
	font-weight: 600;
	margin: 0;
	text-transform: none;
	color: #fefefe;
	text-align: left;
	letter-spacing: 5px;
	font-family: "Avenir-Roman", sans-serif;
}

.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
	font-size: 26px;
	padding-top: 10px;
	font-weight: 100;
	margin: 0;
	text-transform: uppercase;
	font-family: 'Avenir-Heavy','Avenir',sans-serif;
	text-align: left;
	color: #000;
}

.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
	font-size: 13.8px;
	display: block;
	line-height: normal;
	font-family: 'Avenir-Roman','Avenir',sans-serif;
	font-weight: 400;
	text-align: left;
	padding-bottom: 0;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__subblock {
	height: auto;
    padding: 15px;
    background: #F6F6F6;
    width: 98%;
    margin: 0 auto;
}

.sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal__form__input,
.sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal_phone-form-input {
	font-size: .6em;
    margin-right: 5px;
    display: block;
    height: 43.02px;
    width: 486px;
    padding-left: 15px;
    background-color: #fff;
    border: 1px solid #E2E2E5;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__opt-form p {
	font-size: 14px;
	padding-left: 10px;
	padding-top: 5px;
	line-height: 125%;
	font-family: 'Avenir-Roman','Avenir',sans-serif;
	font-style: normal;
	margin: 0;
	align-items: center;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__end-note p {
	font-size: 9px;
	text-align: left;
	padding: 0 25px;
	font-family: 'Avenir-Roman','Avenir',sans-serif;
	display: flex;
	align-items: center;
	line-height: normal;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__end-note p a {
	color: #000;
}

.sms-lead-gen-modal .sms-lead-gen-modal.lead-gen-modal__dialog .close {
	color: #fefefe;
	opacity: unset;
	padding: 2px 5px;
	font-size: 1em;
	position: relative;
	top: -35px;
	right: 40px;
	background: #005ABB;
	border: none;
}

.sms-lead-gen-modal .super {
	font-size: x-large;
	vertical-align: top;
}

.sms-lead-gen-modal .lead-gen-modal__dialog__backlink {
	width: 100%;
	display: table;
	height: 100%;
	margin: 0;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__content {
	padding: 0;
	vertical-align: middle;
	display: table-cell;
	margin: 0;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__body {
	width: 600px;
	margin: 0 auto;
	text-align: left;
	padding: 10px;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you {
	background-color: #F6F6F6;
	height: 150px;
	padding: 15px;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you h1 {
	color: #000000;
    font-size: 28px;
    margin: 0;
    font-family: 'Avenir-Heavy','Avenir',sans-serif;
    text-transform: uppercase;
	text-align: left;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .center_block {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Avenir-Roman", sans-serif;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .center_block p {
	text-align: center;
    font-size: 12px;
    letter-spacing: .8px;
    font-family: 'Avenir-Roman','Avenir',sans-serif;
    margin-top: 20px;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .center_block .thankbtn {
	width: 60%;
	height: 35px;
	border: 0;
	border-radius: 0;
	color: white;
	font-weight: 600;
	text-transform: none;
	font-size: .7em;
}

.sms-lead-gen-modal .form-group.form-group-phone-field {
	margin-bottom: 0;
}

.sms-lead-gen-modal .lead-gen-modal__end-note_para p {
	padding: 0;
	font-size: .32em;
	text-align: left;
	font-family: 'Avenir-Heavy','Avenir',sans-serif;
}

.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you p {
	padding: 0;
    font-size: .9em;
    text-align: left;
    font-family: 'Avenir-Roman','Avenir',sans-serif;
    color: #000000;
	margin-top: 20px;
	line-height: normal;
}

.sms-lead-gen-modal .sms-email-error {
	font-family: 'Avenir-Heavy','Avenir',sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 125%;
	text-align: left;
	color: #C41230;
	padding-top: 5px;
}

.sms-lead-gen-modal .sms-phone-error {
	font-family: 'Avenir-Heavy','Avenir',sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 125%;
	text-align: left;
	color: #C41230;
	padding-top: 5px;
}

.sms-lead-gen-modal .lead-gen-modal__dialog input:focus {
	border: none;
}

.sms-lead-gen-modal .lead-gen-modal__opt-form label {
	display: flex;
}

.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sms_offer {
    font-size: 14px;
    display: block;
    line-height: normal;
    margin: 5px 0;
    padding: 0;
    font-family: 'Avenir-Roman','Avenir',sans-serif;
    font-weight: bold;
    text-align: left;
    letter-spacing: 0.32px;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {

	.sms-lead-gen-modal .lead-gen-modal__cx-widget span.error {
		font-size: .5em;
		margin: 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
		font-size: 28px;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
		font-size: 14.8px;
		display: block;
		line-height: normal;
		font-family: 'Avenir-Roman','Avenir',sans-serif;
		font-weight: 400;
		text-align: left;
		padding-bottom: 10px;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__opt-form p {
		font-size: 14px;
		margin: 0;
		display: inline-block;
		text-align: left;
		letter-spacing: 0.2px;
		padding-left: 10px;
		padding-top: 3px;
	}

	.sms-lead-gen-modal .lead-gen-modal__opt-form p a {
		font-size: 14px;
		font-weight: normal;
		color: #000;
		text-decoration: underline;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__subblock {
		height: 100%;
		padding: 25px 33px;
		background-color: #F6F6F6;
		width: auto;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__end-note p {
		font-size: .57em;
		text-align: left;
		padding: 0 25px;
	}

	.sms-lead-gen-modal .lead-gen-modal__form__submit-btn span {
		font-size: 18px;
	}

	.sms-lead-gen-modal .close {
		color: #fefefe;
		opacity: unset;
		padding: 0px 2px;
		font-size: 1.4em;
		margin: 0;
		right: 0.5rem;
		top: -50px;
		left: 0px;
		height: 30px;
		width: 30px;
		text-align: center;
	}
}

@media screen and (max-width:600px) {

	.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
		font-size: 12px;
		padding-bottom: 0;
        line-height: 17.5px;
		margin-top: 5px;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
		font-size: 18px;
		padding-top: 5px;
        padding-bottom: 0;
        line-height: 22px;
	}

    .sms-lead-gen-modal label.email-label {
        font-family: 'Avenir-Heavy','Avenir',sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 125%;
        display: flex;
        align-items: center;
        letter-spacing: 0.42px;
        padding-bottom: 10px;
        margin: 0px;
    }

    .sms-lead-gen-modal .email-label span {
        font-family: 'Avenir-Heavy','Avenir',sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 9px;
        line-height: 125%;
        display: flex;
        align-items: flex-end;
        letter-spacing: 0.54px;
        padding-top: 4px;
    }

    .sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal__form__input {
        font-size: 16px;
        margin-right: 5px;
		padding-left: 15px;
    }

	.sms-lead-gen-modal .sms-email-error {
		font-family: 'Avenir-Roman','Avenir',sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 125%;
		text-align: left;
		color: #C41230;
		padding-top: 5px;
	}

    .sms-lead-gen-modal label.phone-label{
        font-family: 'Avenir-Roman','Avenir',sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 125%;
        display: flex;
        align-items: center;
        letter-spacing: 0.42px;
        padding: 5px 0px 10px 0px;
        margin: 0px;
    }

    .sms-lead-gen-modal .lead-gen-modal_phone-form-input {
        font-size: 16px;
        margin-right: 5px;
        display: block;
        height: 43.02px;
        width: 460px;
        padding-left: 15px;
        background-color: #fff;
        border: 1px solid #E2E2E5;
    }

	.sms-lead-gen-modal .sms-phone-error {
		font-family: 'Avenir-Roman','Avenir',sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 125%;
		text-align: left;
		color: #C41230;
		padding-top: 5px;
	}

    .sms-lead-gen-modal input.lead-gen-modal__opt-form__input {
        width: 24px;
        height: 24px;
        display: flex;
        margin-top: 4.01px;
        border: 1px solid #E2E2E5;
        background: #fff;
        order: 0;
        box-sizing: border-box;
    }

	.sms-lead-gen-modal .form-input {
		max-width: 22em;
		height: 36.02px;
		padding-left: 5px;
	}

	.sms-lead-gen-modal .lead-gen-modal__form {
		margin: 10px 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__body {
		width: 100%;
		margin: 0 auto;
		text-align: left;
		padding: 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__thank-you .btn {
		display: block;
		background-color: #c41230;
		margin: 10px auto;
		width: 70px;
		height: 25px;
		font-size: .6rem;
		padding: 0px;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__content {
		opacity: 1;
		margin: auto;
		padding: 0;
		background-color: transparent;
		border: 0;
		box-shadow: none;
	}

	.sms-lead-gen-modal .close {
		color: #fefefe;
		display: block;
		position: relative;
		padding: 0px 1px;
		top: -18.6rem;
		right: 1.2rem;
		width: 24px;
		height: 24px;
		vertical-align: middle;
		text-align: center;
		text-indent: 0; 
		font-size: 1em;
		margin: 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog {
		position: fixed;
		width: 100%;
		margin: 0;
		bottom: 0;
	}

	.sms-lead-gen-modal .close:hover,
	.close:focus {
		text-decoration: none;
		cursor: pointer;
	}

	.sms-lead-gen-modal h1 {
		font-size: 1.7em;
		height: 24px;
		margin: 30px 0 10px 0;
	}

	.sms-lead-gen-modal h2 {
		font-size: .49em;
		padding: 10px 0 0;
		margin-top: 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__subblock {
		padding: 5px 15px;
		width: 90%;
		margin: 0 auto;
		display: inline-block;
		position: absolute;
		float: left;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		height: auto;
	}

	.sms-lead-gen-modal .lead-gen-modal__subblock .lead-gen-modal__cx-widget {
		padding: 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__subblock p {
		font-size: 9px;
		line-height: 1;
		margin-top: 10px;
    	text-align: left;
	}

	.sms-lead-gen-modal .lead-gen-modal__form__submit-btn {
		font-size: 16px;
		padding: 0;
		width: 185px;
		height: 50px;
		margin: 15px 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__subblock h1 {
		color: #444a52;
		margin: 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__opt-form {
		display: flex;
		line-height: 15px;
		margin-bottom: 0;
	}
	
	.sms-lead-gen-modal .lead-gen-modal__opt-form label {
		display: flex;
	}

	.sms-lead-gen-modal .lead-gen-modal__opt-form p a {
		font-size: 1em;
		letter-spacing: 0.3px;
	}

	.sms-lead-gen-modal .lead-gen-modal__opt-form p {
		font-size: .4em;
		padding-left: 7px;
		line-height: 15px;
		padding-right: 0;
	}

	.sms-lead-gen-modal .lead-gen-modal__form--right-arrow:after {
		margin-left: 10px;
		margin-top: 12px;
		border-left: 4px solid brown;
		border-bottom: 3px solid transparent;
		border-top: 3px solid transparent;
	}

	.sms-lead-gen-modal .lead-gen-modal__cx-widget span.error {
		font-size: .34em;
		margin: 0;
		display: block;
		line-height: 8px;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__end-note p {
		font-size: 9px;
        font-weight: 400;
		padding: 0px
	}

	.sms-lead-gen-modal .form-label {
		font-size: .6rem;
		margin-bottom: 5px;
	}

	.sms-lead-gen-modal .form-label span {
		font-size: .5rem;
	}

	.sms-lead-gen-modal .form-group {
		margin: 0 0 0.5rem;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__opt-form p {
		font-family: 'Avenir-Heavy','Avenir',sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 125%;
        letter-spacing: 0.42px;
        text-align: left;
		margin-top: 0px;
        display: block;
	}

	.sms-lead-gen-modal .lead-gen-modal__form__submit-btn span {
		font-size: 10px;
		letter-spacing: .5px;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you h1 {
		color: #000000;
		font-size: 18px;
		margin: 0;
		font-family: 'Avenir-Heavy','Avenir',sans-serif;
		text-transform: uppercase;
		height: auto;
		text-align: left;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you {
		background-color: #F6F6F6;
		height: 135px;
		padding: 18px 3px;
	}
	
	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you p{
		font-size: .78rem;
		margin-top: 10px;
		text-align: left;
		line-height: 1;
	}

	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__blog_subblock {
        width : 100%;
        bottom : 0;
		left: 0;
        top : auto;
        transform : none;
    }
    
    .sms-lead-gen-modal .blog_close {
        top : -14rem;
        right : 0.2rem;
    }

	.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_sms_offer {
		font-size: 11px;
	}
}

@media only screen  and (min-width : 568px) and (max-width:1281px) and (orientation : landscape){
	.sms-lead-gen-modal {
		overflow: scroll;
	}	
	.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__body {
		margin: 45px auto;  
	}
}

@media screen and (max-width: 350px) {
    .sms-lead-gen-modal {
        overflow: scroll;
    }
    .sms-lead-gen-modal::-webkit-scrollbar {
        display: none;
    }
    .sms-lead-gen-modal .close {
        top: -43.5rem;
    }
    .sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__body {
        margin-top: 44rem;
    }
}
.leadgen-loggedin.sms-lead-gen-modal {
    z-index: 200000000111;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__body {
    width: 637px;
    margin: 0 auto;
    text-align: left;
    padding: 0;
    float: right;
}

.leadgen-loggedin.sms-lead-gen-modal .close {
    color: #fefefe;
    opacity: unset;
    padding: 4px 2px 2px 2px;
    font-size: 14px;
    position: relative;
    top: 10px;
    right: 10px;
    float: right;
    border: 1px solid #fff;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: normal;
    font-family: 'Avenir-Roman', 'Avenir', sans-serif;
    font-weight: 400;
    background: 0;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__subblock {
    height: auto;
    padding: 25px;
    background: #2E2E2E;
    width: 100%;
    margin: 0 auto;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__cx-widget {
    text-align: center;
    font-size: 1.8em;
    padding: 0 5px;
    line-height: normal;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
    font-size: 30px;
    padding-top: 10px;
    font-weight: 100;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
    text-align: center;
    color: #FFFFFF;
    line-height: 37.5px;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
    font-size: 16px;
    display: block;
    line-height: 20px;
    font-family: 'Avenir-Roman', 'Avenir', sans-serif;
    font-weight: 400;
    text-align: center;
    padding-bottom: 5px;
    color: #FFFFFF;
    letter-spacing: 0.32px;
}

.leadgen-loggedin.sms-lead-gen-modal label.email-label,
.leadgen-loggedin.sms-lead-gen-modal label.phone-label {
    display: block;
    margin: 10px 0;
    font-weight: 800;
    font-size: 16px;
    text-align: left;
    font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
    color: #FFFFFF;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal__form__input,
.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal_phone-form-input {
    font-size: 14px;
    margin-right: 5px;
    display: block;
    height: 40px;
    width: 574px;
    padding-left: 15px;
    background-color: #fff;
    border: 1px solid #e2e2e5;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal_phone-form-input::placeholder {
    color: #000000B2;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you {
    height: 110px;
    padding: 15px;
    background: #2E2E2E;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__thank-you h1 {
    color: #FFFFFF;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__subblock p {
    padding: 0;
    text-align: left;
    font-family: 'Avenir-Roman', 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    color: #FFFFFF;
    margin: .7rem 0;
    line-height: 16px;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__opt-form {
    display: flex;
    line-height: 15px;
    margin: 15px 0 10px 0;
}

.leadgen-loggedin.sms-lead-gen-modal input.lead-gen-modal__opt-form__input {
    width: 15px;
    height: 15px;
    display: flex;
    margin: 0;
    border: 1px solid #e2e2e5;
    background: #fff;
    flex: none;
    order: 0;
    flex-grow: 0;
    box-sizing: border-box;
    accent-color: #c41230;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__opt-form p {
    font-size: 11px;
    padding-left: 10px;
    padding-top: 2px;
    line-height: 11px;
    font-family: 'Avenir-Roman', 'Avenir', sans-serif;
    font-style: normal;
    margin: 0;
    align-items: center;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__opt-form p a {
    font-size: 1em;
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: underline;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__form__submit-btn {
    margin: 20px 0;
    background: #c41230;
    color: #fff;
    width: auto;
    height: 48px;
    font-size: 14px;
    font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    padding: 15px 32px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    order: 4;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__end-note p {
    font-size: 10px;
    text-align: left;
    padding: 0 5px;
    font-family: 'Avenir-Roman', 'Avenir', sans-serif;
    display: flex;
    align-items: center;
    line-height: 12.5px;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__cx-widget span.error {
    color: #FF5E5E;
    font-size: 14px;
    text-align: left;
    margin: 0;
    display: block;
    padding-top: 2px;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__opt-form p a:focus {
    outline: 0.125rem solid #FFFFFF;
    outline-offset: 0.125rem;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__form__submit-btn:focus {
    outline: #FFFFFF solid 0.125rem !important;
    outline-offset: 0.125rem;
}

.leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog input:focus {
    border: 0;
    outline: 0.125rem solid #FFFFFF;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__subblock {
        height: 100%;
        padding: 25px 33px;
        width: auto;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
        font-size: 29px;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__opt-form p a {
        font-size: 14px;
        font-weight: normal;
        text-decoration: underline;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__end-note p {
        font-size: .57em;
        text-align: left;
    }

    .leadgen-loggedin.sms-lead-gen-modal .close {
        color: #fefefe;
        opacity: unset;
        padding: 0 2px;
        font-size: 16px;
        margin: 0;
        right: .5em;
        top: 10px;
        left: -10px;
        height: 24px;
        width: 24px;
        text-align: center;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
        font-size: 16px;
        display: block;
        line-height: normal;
        font-family: 'Avenir-Roman', 'Avenir', sans-serif;
        font-weight: 400;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 600px) {
    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__body {
        width: 100%;
        margin: 0 auto;
        text-align: left;
        padding: 0;
    }

    .leadgen-loggedin.sms-lead-gen-modal .close {
        color: #fefefe;
        display: block;
        position: relative;
        padding: 0px 1px;
        top: -11rem;
        right: 5px;
        width: 14.37px;
        height: 14.37px;
        vertical-align: middle;
        text-align: center;
        text-indent: 0;
        font-size: 10px;
        margin: 0;
        z-index: 1;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__subblock {
        padding: 5px 15px;
        width: 94%;
        margin: 0 auto;
        display: inline-block;
        position: absolute;
        float: left;
        left: 53%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: auto;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__cx-widget {
        padding: 0;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
        font-size: 16px;
        padding-top: 25px;
        padding-bottom: 0;
        line-height: 22.5px;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname_p {
        font-size: 12px;
        padding-bottom: 5px;
        line-height: 15px;
    }

    .leadgen-loggedin.sms-lead-gen-modal label.phone-label {
        font-family: 'Avenir-Roman', 'Avenir', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 12px;
        line-height: 7px;
        display: flex;
        align-items: center;
        letter-spacing: .42px;
        padding: 0px 0 10px 0;
        margin: 0;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal__form__input,
    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog input.lead-gen-modal_phone-form-input {
        font-size: 10px;
        margin-right: 5px;
        display: block;
        height: 20px;
        width: 344px;
        padding: 1px 0 0 5px;
        background-color: #fff;
        border: 1px solid #e2e2e5;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__cx-widget span.error {
        font-size: .34em;
        margin: 0;
        display: block;
        line-height: 8px;
        padding-top: 4px;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__subblock p {
        font-size: 9px;
        line-height: 10px;
        margin-top: 10px;
        text-align: left;
    }

    .leadgen-loggedin.sms-lead-gen-modal input.lead-gen-modal__opt-form__input {
        width: 10px;
        height: 10px;
        display: flex;
        margin-top: 0px;
        border: 1px solid #e2e2e5;
        background: #fff;
        order: 0;
        box-sizing: border-box;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__opt-form p {
        font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
        line-height: 125%;
        letter-spacing: .42px;
        text-align: left;
        margin-top: 0;
        display: block;
        padding-left: 10px;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__form__submit-btn {
        font-size: 8px;
        padding: 0;
        width: 105.37px;
        height: 22.75px;
        margin: 15px 0;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__end-note p {
        font-size: 9px;
        font-weight: 400;
        padding: 0;
        line-height: 10px;
    }
}

@media screen and (max-width: 350px) {
    .leadgen-loggedin.sms-lead-gen-modal {
        overflow: scroll;
    }

    .leadgen-loggedin.sms-lead-gen-modal::-webkit-scrollbar {
        display: none;
    }

    .leadgen-loggedin.sms-lead-gen-modal .close {
        top: -23.7rem;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog .lead-gen-modal__body {
        margin-top: 25rem;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__cx-widget span.error {
        font-size: 9px;
    }

    .leadgen-loggedin.sms-lead-gen-modal .lead-gen-modal__dialog__backlink .main_form_subname {
        font-size: 14px;
        padding-top: 25px;
        padding-bottom: 0;
        line-height: 17.5px;
    }
}
.ac-target-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1049;
	background: rgba(46,46,46,0.9);
	transform: translate3d(0,0,0);
	opacity: 1;
}

.ac-target-modal__dialog {
	display: block;
	visibility: visible;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translate3d(0,0,0);
	opacity: 1;
	z-index: 2;
}

.ac-target-modal h1 {
	color: #000000;
	font-size: 3.125em;
	text-align: center;
    padding-top: 20px;
	padding-bottom: 20px; 
	font-weight: 500;
	font-family:'Avenir','helvetica',sans-serif;
	text-transform: none;    
}

.ac-target-modal h2 {
	font-size: 1.48rem;
	margin-top: 0px;
    padding-top: 0px;
	padding-bottom: 5px; 
    font-weight: 200;
    margin-bottom: 0;
    text-transform: none;
    font-family: 'Avenir',sans-serif;
}

.ac-target-modal__content {
	opacity: 1;
	margin: auto;
	padding: 10px;
	background-color: transparent;
	border: 0;
    
	box-shadow: none;
}

.ac-target-modal .close {
	color: #fefefe;
	border: 2px solid #fefefe;
	opacity: unset;
	padding: 0 2px;
	font-size: 1.2em;
	float: right;
	margin: 0 0 10px;
	line-height: 1;
}

.ac-target-modal .close:hover,.close:focus {
	text-decoration: none;
	cursor: pointer;
}

.ac-target-modal__form__submit-btn:hover {
	background-color: #9a132b;
}

.ac-target-modal .thankbtn:hover {
	background-color: #9a132b;
	border: 0;
	outline: 0;
	color: #fff;
}

.ac-target-modal .btn {
	display: block;
	background-color: #c41230;
	margin: 10px auto;
	cursor: pointer;
}

.ac-target-modal__subblock {
	height: 415px;
    width: 575px;
	padding: 25px 33px;
	background-color: #fff;
}

.ac-target-modal .ac-target-modal__cx-widget {
	color: #444a52;
	background-color: #fff;
	text-align: center;
	font-size: 1.8em;
	padding: 0 13px;
}

.ac-target-modal__subblock p {
    font-size: .66em;
    display: block;
    line-height: 100%;
    margin-top: 1.2vh;
    padding-left: 1%;
    padding-right: 1%;
}

.ac-target-modal__form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin: 15px 0 0;
	height: 50px;
}

input.ac-target-modal__form__input {
	font-size: .6em;
	border: 2px solid #ededed;
	transition: border-color .3s ease,box-shadow .3s ease;
	font-style: italic;
}

.ac-target-modal__form__submit-btn {
	background-color: #c41239;
	color: #fff !important;
	display: inline-block;
	font-size: .54em;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	width: 32%;
	height: 50px;
	border: 0;
	cursor: pointer;
}

.ac-target-modal__form__submit-btn:focus {
	outline: 0;
}

input.ac-target-modal__form__input {
	width: 70%;
	padding-left: 30px;
	margin-right: 10px;
}

.ac-target-modal__opt-form p {
	font-size: .5em;
	padding: 0 0 20px 10px;
	display: inline;
	text-align: left;
}

.ac-target-modal__opt-form p a {
	font-size: 1em;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}

input.ac-target-modal__opt-form__input {
	width: 35px;
	height: 20px;
	display: block;
}

.ac-target-modal__opt-form {
	display: flex;
	line-height: 15px;
	margin: 10px 0;
}

.ac-target-modal__form--right-arrow:after {
	position: absolute;
	margin-left: 18px;
	margin-top: 18px;
	content: " ";
	border-left: 8px solid brown;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
}

.ac-target-modal .thankbtn {
	width: 50%;
	height: 50px;
	font-size: 1.5em;
	border: 0;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	text-transform: none;
}

.ac-target-modal__thank-you h1 {
	color: #444a52;
}

.ac-target-modal__end-note p {
	font-size: .83em;
	text-align: left;
    padding: 0 10px;
}

.ac-target-modal__body {
	padding: 20px 0;
}

.ac-target-modal .ac-target-modal__cx-widget span.error {
	color: red;
	font-size: .4em;
	text-align: left;
	margin: 0;
	display: block;
}

.ac-target-modal__dialog {
	position: relative;
	width: auto;
	margin: 10px;
}




@media(min-width:768px) {
	.ac-target-modal__dialog {
		width: 600px;
		margin: 30px auto;
	}
}

@media screen and (max-width: 800px) {
    .sideContent{
        float: left;
    }



    .float-child {
        display: none;
    }

    .imgrto {
        height: inherit;
        max-width: 100%;
    }

    .float-child1 {
        width: 100% !important;
        text-align: center;
    }

   .ac-target-modal__subblock {
	    height: 415px;
    width: 100%;
    background-color: #fff;
}

.ac-target-modal .ac-target-modal__cx-widget {
	color: #444a52;
	background-color: #fff;
	text-align: center;
	font-size: 1.8em;
	padding: 0 13px;
}

.ac-target-modal__subblock p {
	font-size: .66em;
	display: block;
	line-height: normal;
	margin: 10px;
	padding: 0 30px;
}
.form-group__button_n {
    background-color: #c41230;
    color: #ffffff;
    display: inline-block;
    font-size: 0.37rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    width: 75% !important;
    height: 30px;
    border: none;
    text-transform: uppercase;
}
.ac-target-modal__dialog {
    width: auto;
    margin: 0px !important;
}
.ac-target-modal__content {
    padding: 0px !important;
}
.ac-target-modal__opt-form {
    display: flex;
    line-height: 15px;
    margin: 10px;
}
.kADiscText {
    font-family: 'avenir', sans-serif;
    height: 14px;
    font-size: 59px !important;
    font-weight: 400;
    margin: -20px;
}
.discalimer-div{
padding: 10px 50px 0px 50px !important;
}

.ac-model-clsBtn{
    font-family: 'helvetica',sans-serif;
	cursor:pointer;
    font-weight: 400;
    color: #858585;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
	font-size:1.2rem;
    float: right;
}

.ac-target-modal__dialog {
    position: fixed;
    width: 100%;
    margin: 0;
    bottom: 0;
}

.ac-target-modal__dialog__up {
    width: 100%;
    display: flex;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.ac-target-modal__body{padding:20px 0 0;position:fixed;bottom:0;right:0;left:0}
.ac-target-modal__content{opacity:1;margin:auto;padding:0;background-color:transparent;border:0;box-shadow:none}
.ac-target-modal .close{color:#fefefe;border:2px solid #fefefe;opacity:unset;padding:4px;font-size:1.1em;margin:-35px 12px}
.ac-target-modal__dialog{position:fixed;width:100%;margin:0;bottom:0}
.ac-target-modal .close:hover,.close:focus{text-decoration:none;cursor:pointer}
.ac-target-modal h1{font-size:4.8vh;height:24px;margin:10px 0 10px 0}
.ac-target-modal h2{font-size:1.3em;padding:30px 0 30px;margin-top:0}
.ac-target-modal h3{font-size: 1.1rem !important;font-family: 'Avenir',SANS-SERIF !important;text-align: center !important;font-weight: 100 !important;margin-bottom: 5% !important;margin-top: 5% !important;text-transform:none;}
.ac-target-modal__dialog__up .ac-target-modal__subblock{padding:10px}
.ac-target-modal__subblock{padding:10px;overflow:scroll;}
.ac-target-modal__subblock .ac-target-modal__cx-widget{padding:0}
.ac-target-modal__subblock p{font-size:.49em;padding:0 15px}
.ac-target-modal h4 {
    font-size: 0.5rem;
    font-family: 'Avenir',sans-serif;
    font-weight: 100;
    text-align: center;
    padding-left: 45px;
    border-right-width: 20px;
    padding-right: 45px;
}

    }
@media screen and (max-width: 1000px) and (orientation: landscape) {
    .sideContent{
        float: left;
    }



    .float-child {
        display: none;
    }

    .imgrto {
        height: inherit;
        max-width: 100%;
    }

    .float-child1 {
        width: 100% !important;
        text-align: center;
        margin-bottom: 0px;
    }

   .ac-target-modal__subblock {
	    height: 100vh;
    	width: 60%;
        margin-left: 20%;
   		background-color: #fff;
}

.ac-target-modal .ac-target-modal__cx-widget {
	color: #444a52;
	background-color: #fff;
	text-align: center;
	font-size: 1.8em;
	padding: 0 13px;
}

.ac-target-modal__subblock p {
	font-size: .66em;
	display: block;
	line-height: normal;
	margin: 10px;
	padding: 0 30px;
    font-family: 'Avenir-Roman',sans-serif;
}
.form-group__button_n {
    display: inline-block;
    font-size: 0.37rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    width: 75% !important;
    height: 30px;
    border: none;
    text-transform: uppercase;
    background-color: #E0942F;
    color: #000000;
    font-family:'Roboto',sans-serif;
}

.ac-target-modal__dialog {
    width: auto;
    margin: 0px !important;
}
.ac-target-modal__content {
    padding: 0px !important;
}
.ac-target-modal__opt-form {
    display: flex;
    line-height: 15px;
    margin: 10px;
}
.kADiscText {
    font-family: 'avenir',sans-serif;
    height: 14px;
    font-size: 59px !important;
    font-weight: 400;
    margin: -20px;
}
.discalimer-div{
padding: 10px 50px 0px 50px !important;
}

.ac-model-clsBtn{
    font-family: 'helvetica',sans-serif;
	cursor:pointer;
    font-weight: 400;
    color: #858585;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
    margin-top: 10px;
	font-size:1.2rem;
    float: right;
}

.ac-target-modal__dialog {
    position: fixed;
    width: 100%;
    margin: 0;
    bottom: 0;
}

.ac-target-modal__dialog__up {
    width: 100%;
    display: flex;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.ac-target-modal__body{padding:20px 0 0;position:fixed;bottom:0;right:0;left:0}
.ac-target-modal__content{opacity:1;margin:auto;padding:0;background-color:transparent;border:0;box-shadow:none}
.ac-target-modal .close{color:#fefefe;border:2px solid #fefefe;opacity:unset;padding:4px;font-size:1.1em;margin:-35px 12px}
.ac-target-modal__dialog{position:fixed;width:100%;margin:0;bottom:0}
.ac-target-modal .close:hover,.close:focus{text-decoration:none;cursor:pointer}
.ac-target-modal h1{font-size:4.8vw;height:24px;margin:10px 0 10px 0;
    margin-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
}
.ac-target-modal h2{font-size:1.3em;padding:30px 0 20px;margin-top:0}
.ac-target-modal h3{font-size: 1.1rem !important;font-family: 'Avenir',SANS-SERIF !important;text-align: center !important;font-weight: 100 !important;margin-bottom: 5% !important;margin-top: 5% !important;text-transform:none;}
.ac-target-modal__dialog__up .ac-target-modal__subblock{padding:10px;}
.ac-target-modal__subblock{padding:10px;overflow:scroll;}
.ac-target-modal__subblock .ac-target-modal__cx-widget{padding:0}
.ac-target-modal__subblock p{font-size:.49em;padding:0 15px;margin-top:5px;}
h4 {
    font-size: 0.5rem;
    font-family: 'Avenir',sans-serif;
    font-weight: 100;
    text-align: center;
    padding-left: 45px;
    border-right-width: 20px;
    padding-right: 45px;
    margin-bottom: 0px;
}

    }

    .sideContent {
        float: left;
    }

    .imgrto {
        height: 415px;
        max-width: 100%;
    }

    .ModalPopUp {
        max-height: 445px;
        max-width: 626px !important;
        background-color: #808080 !important;
    }

    .reqModal {
        padding: 0px;
    }



    .float-container {
        padding: 0px;
    }

    .float-child {
        max-height: 415px;
        width: 20%;
        float: left;
    }

    .float-child1 {
        max-height: 415px;
        width: 80%;
        float: left;
        text-align: center;
    }

    .acLogoImg {
        margin:auto;
        height: 54px;
        width: 250px;
        max-width:35%;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .whippedText {
        padding-top: 5px;
        font-family: Avenir, sans-serif;
        font-size: 18px;
        font-weight: 100;
        margin: 0px;
    }

    .pad-top30 {
        padding-top: 30px;
    }

    .pad-top20 {
        padding-top: 20px;
    }
	.no-pad {
        padding: 0px !important;
    }

    .pad-btm30 {
        padding-top: 30px;
    }

    .kADiscText {
        font-family: 'avenir', sans-serif;
        height: 20px;
        font-size: 90px;
        font-weight: 400;
        margin: -20px;
    }

    .form-group__button_n {
        background-color: #c41230;
        color: #ffffff;
        display: inline-block;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        width: 300PX;
        height: 50px;
        border: none;
        text-transform: uppercase;
    }

    .popup_disclaimer_text {
        margin-bottom: 0px;
        padding-top: 10px;
       font-family: Avenir, sans-serif;
        font-size: 7px;
        text-align: center;
    }

    .Ad_text {
        margin-bottom: 0px;
        inline-size: 300px;
        font-family: Avenir, sans-serif;
        font-size: 35px;
        text-align: center;
    }

    .cross-mark {
        cursor: pointer;
        margin-right: 10px;
    }
	.ac-target-modal-disctext {
	text-align: center !important;
    max-width: 300px;
    padding-left: 84px !important;
    }
.discalimer-div{
padding: 3px 80px 0px 80px;
}

   .KAD-close {
    font-family: Avenir, sans-serif;
    font-size: 0.5rem;
    color: #000000 !important;
    float: right;
}

.ac-model-clsBtn{
    font-family: 'helvetica',sans-serif;
	cursor:pointer;
    font-weight: 400;
    color: #858585;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
	font-size: 1.2rem;
    float: right;
}

.ac-target-modal__dialog__up {
    width: 100%;
    display: flex;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.ac-target-modal h3 {
    font-size: 1.1rem;
    font-family: 'Avenir',SANS-SERIF;
	text-align:center;
    font-weight: 100;
    margin-bottom: 5%;
    margin-top: 5%;
	text-transform: none;
}

.ac-target-modal h4 {
    font-size: 0.5rem;
    font-family: 'Avenir',sans-serif;
    font-weight: 100;
	text-align:center;
    padding-left: 75px;
    border-right-width: 20px;
    padding-right: 75px;
}

.ac-target-modal__error {
    font-size: 0.7rem;
    font-family: 'Avenir','Arial','Helvetica',sans-serif;
}
.toast-container {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 5rem;
    z-index: 99;
 }
 .toast-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    gap: 20px;
    height:56px;
    position: absolute;
    left: 50%;
    top: 91.33%;
    background: #000000;
    border-radius: 10px;
    transform: translate(-50%, 0);
 }
 .toast-message {
    width: auto;
    height: 19px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
 }
 .toast-close {
    color: #fff;
    cursor: pointer;
    line-height: 19px;
 }
 #toast{
 transform: translateY(100vh);
 -webkit-transform:translateY(100vh);
 -ms-transform:translateY(100vh);
 }
 @-webkit-keyframes abscfadeIn{
 from {
    opacity: 0;
    -webkit-transform:translateY(100vh);
 }
 to {
    opacity: 1;
    -webkit-transform: translateY(0);
 }
 }
 @-moz-keyframes abscfadeIn{
from {
    opacity: 0;
    transform:translateY(100vh);
 }
 to {
    opacity: 1;
    transform: translateY(0);
 }
 }
 @-ms-keyframes abscfadeIn{
from {
    opacity: 0;
    -ms-transform:translateY(100vh);
 }
 to {
    opacity: 1;
    -ms-transform: translateY(0);
 }
 }
 @keyframes abscfadeIn{
 from {
    opacity: 0;
    transform:translateY(100vh);
 }
 to {
    opacity: 1;
    transform: translateY(0);
 }
 }
 @-webkit-keyframes abscfadeOut{
 from {
    opacity: 1;
    -webkit-transform:translateY(0);
 }
 to {
    opacity: 0;
    -webkit-transform: translateY(100vh);
 }
 }
 @-moz-keyframes abscfadeOut{
 from {
    opacity: 1;
    transform:translateY(0);
 }
 to {
    opacity: 0;
    transform: translateY(100vh);
 }
 }
 @-ms-keyframes abscfadeOut{
 from {
    opacity: 1;
    -ms-transform:translateY(0);
 }
 to {
    opacity: 0;
    -ms-transform: translateY(100vh);
 }
 }
 @keyframes abscfadeOut{
 from {
    opacity: 1;
    transform:translateY(0);
 }
 to {
    opacity: 0;
    transform: translateY(100vh);
 }
 }
 @media (max-width:767px) {
 .toast-main {
    left: 0;
    right: 0;
    margin: 0 auto;
    transform:none;
    width:fit-content;
 }
 .toast-container {
    bottom:5rem;
 }
 }
 @media (max-width:320px) {
 .toast-main {
    align-items: flex-start;
    width: 80%;
    transform:none;
 }
 .toast-message {
    width: 85%;
    height: 38px;
 }
 .toast-close {
    line-height: 22px;
 }
 }
.lead-gen-ca-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1049;
	background: rgba(46,46,46,0.9);
	transform: translate3d(0,0,0);
	opacity: 1;
}

.lead-gen-ca-modal__dialog {
	display: block;
	visibility: visible;
	position: relative;
	top: 50%;
	left: 50%;
    z-index: 2;
	width: 46.875rem;
	transform: translate(-50%,-50%);
	opacity: 1;
}

.lead-gen-ca-modal h1 {
	margin: 12px 0;
    font-size: 27px;
    text-align: center;
    font-weight: bold;
    text-transform: none;
    line-height: 16px;
	color:#000;
}

.lead-gen-ca-modal h2 {
	font-size: .73em;
	padding-top: 30px;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: none;
	line-height: 1;
}
.lead-gen-ca-modal .lead-gen-ca-modal__cx-widget h4, .lead-gen-ca-modal .lead-gen-ca-modal__cx-widget h3 {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}
.lead-gen-ca-modal__content {
	opacity: 1;
	margin: auto;
	padding: 10px;
	background-color: transparent;
	border: 0;
	box-shadow: none;
}

.lead-gen-ca-modal .close {
	color: #444a52;
	border: 2px solid #fefefe;
	opacity: unset;
	padding: 0 2px;
	font-size: 1.2em;
	float: right;
	margin: 0 0 10px;
	line-height: 1;
}

.lead-gen-ca-modal .close:hover,.close:focus {
	text-decoration: none;
	cursor: pointer;
}

.lead-gen-ca-modal__form__submit-btn:hover {
	background-color: #9a132b;
}

.lead-gen-ca-modal .thankbtn_ca:hover {
	background-color: #9a132b;
	border: 0;
	outline: 0;
	color: #fff;
}

.lead-gen-ca-modal .btn {
	display: block;
	background-color: #c41230;
	margin: 10px auto;
	cursor: pointer;
}

.lead-gen-ca-modal__subblock {
	height: 100%;
	padding: 25px 33px;
	background-color: #eee;
}

.lead-gen-ca-modal .lead-gen-ca-modal__cx-widget {
	color: #444a52;
	background-color: #fff;
	text-align: center;
	font-size: 1.8em;
	padding: 0 15px;
}

.lead-gen-ca-modal__subblock p {
	font-size: .66em;
	display: block;
	line-height: normal;
	margin: 0;
	padding: 0 30px;
}

.lead-gen-ca-modal__form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin: 15px 0 0;
	height: 50px;
    margin-top: 1%;
}

input.lead-gen-ca-modal__form__input {
	font-size: .6em;
	border: 2px solid #ededed;
	transition: border-color .3s ease,box-shadow .3s ease;
	font-style: italic;
}

.lead-gen-ca-modal__form__submit-btn {
	background-color: #c41239;
	color: #fff !important;
	display: inline-block;
	font-size: .54em;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	width: 32%;
	height: 50px;
	border: 0;
	cursor: pointer;
}

.lead-gen-ca-modal__form__submit-btn:focus {
	outline: 0;
}

input.lead-gen-ca-modal__form__input {
	width: 70%;
	padding-left: 30px;
	margin-right: 10px;
}

.lead-gen-ca-modal__opt-form p {
	font-size: 12px;
	padding: 0 0 20px 10px;
	display: inline;
	text-align: left;
}

.lead-gen-ca-modal__opt-form p a {
	font-size: 1em;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}

input.lead-gen-ca-modal__opt-form__input {
	width: 35px;
	height: 20px;
	display: block;
}

.lead-gen-ca-modal__opt-form {
	display: flex;
	line-height: 15px;
	margin: 10px 0;
	margin-bottom: -2px;
}

.lead-gen-ca-modal__form--right-arrow:after {
	position: absolute;
	margin-left: 18px;
	margin-top: 18px;
	content: " ";
	border-left: 5px solid brown;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
}

.lead-gen-ca-modal .thankbtn_ca {
	width: 50%;
	height: 50px;
	font-size: 1.5em;
	border: 0;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	text-transform: none;
}

.lead-gen-ca-modal__thank-you h1 {
	color: #444a52;
}

.lead-gen-ca-modal__end-note p {
	font-size: 11px;
	text-align: left;
    padding: 0 10px;
	margin-bottom: 10px;
}

.lead-gen-ca-modal__body {
	padding: 20px 0;
}

.lead-gen-ca-modal .lead-gen-ca-modal__cx-widget span.error {
	color: red;
	font-size: .4em;
	text-align: left;
	display: block;
    line-height: 0.1rem;
    margin-top: 1%;
}

section.lead-gen-ca-modal__thank-you{
    background: white;
    padding: 30px 20px;
}

.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda {
    color: #fefefe;
    margin-left: 22px;
    font-size: 8.8em;
    text-align: center;
    font-weight: bold;
    font-family: "Avenir-Roman",sans-serif;
    text-transform: uppercase;
    line-height: .8;
}

.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name.main_form_name_fr {
    color: #fefefe;
    margin-left: auto;
    margin-right: auto;
    font-size: 5.6em;
    text-align: center;
    font-weight: bold;
    font-family: "Avenir-Roman",sans-serif;
    text-transform: uppercase;
    line-height: .8;
    width: max-content;
    letter-spacing: -0.1rem;
}

.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda.main_form_name_fr {
    color: #fefefe;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.9em;
    text-align: center;
    font-weight: bold;
    font-family: "Avenir-Roman",sans-serif;
    text-transform: uppercase;
    line-height: .8;
	width: max-content;
}


.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_sub {
    font-size: 1.6em;
    padding: 5px 0;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    color: #fefefe;
    text-align: center;
    letter-spacing: 6.2px;
    font-family: "Avenir-Roman",sans-serif;
}

.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname {
    font-size: 1.09em;
    padding: 18px 0 0;
    font-weight: 100;
    margin: 0;
    text-transform: none;
    line-height: 1;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname_p {
    font-size: .83em;
    display: block;
    line-height: normal;
    margin: 0;
    padding: 0;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__subblock {
    height: 100%;
    padding: 25px;
    background-color: #eee;
    width: auto;
}
.lead-gen-ca-modal__dialog__up input.lead-gen-ca-modal__form__input {
    font-size: .4em;
    padding-left: 40px;
    margin-right: 5px;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__opt-form p {
    font-size: .4em;
    padding: 0 0 20px 5px;
    display: inline;
    text-align: left;
    line-height: 1.5;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__end-note p {
    font-size: .65em;
    text-align: left;
    padding: 0;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__end-note p a {
    color: #000;
}
.lead-gen-ca-modal__dialog__up .close {
    color: #fefefe;
    border: 1px solid #fefefe;
    opacity: unset;
    padding: 0 3px;
    font-size: 1em;
    margin: -50px 0px;
}
.lead-gen-ca-modal__dialog__up .super {
    font-size: x-large;
    vertical-align: top;
}
.lead-gen-ca-modal__dialog__up {
    width: 100%;
    display: flex;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__content {
    padding: 0;
    vertical-align: middle;
    display: table-cell;
    margin: 0;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__body {
    width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 10px;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__thank-you {
    background-color: #fff;
    height: 227px;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__thank-you h1 {
    color: #444a52;
    font-size: 2.5em;
    margin: 0;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-ca-modal__dialog__up .center_block__ca{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-ca-modal__dialog__up .center_block__ca p{
    text-align: center;
    font-size: 1em;
    letter-spacing: .8px;
    font-family: "Avenir-Roman",sans-serif;
}
.lead-gen-ca-modal__dialog__up .center_block__ca .thankbtn_ca {
    width: 60%;
    height: 35px;
    border: 0;
    border-radius: 0;
    color: white;
    font-weight: 600;
    text-transform: none;
    font-size: .7em;
}
.lead-gen-ca-modal .lead-gen-ca-modal__cx-widget img {
    width: 220px;
    padding: 20px 0;
    margin: 0 auto;
	padding-bottom:10px;
}
.lead-gen-ca-modal__end-note {
    background: #fff;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.lead-gen-ca-modal__opt-form > label {
    display: flex;
}
@-moz-document url-prefix() {
	.lead-gen-ca-modal h2 {
		font-size: .7em;
	}
	.lead-gen-ca-modal__form__submit-btn {
		font-size: .52em !important;
	}
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1199px){
.lead-gen-ca-modal__dialog__up .close {
        color: #fefefe;
        border: 1px solid #fefefe;
        padding: 5px;
        font-size: 1.4em;
        margin: -60px 0;
        text-align: center;
}
}
@media only screen and (min-device-width :768px) and (max-device-width :1024px) {
	.lead-gen-ca-modal {
		bottom: 0;
	}

    .lead-gen-ca-modal__dialog {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
		transform:none;
    }
    .lead-gen-ca-modal__content {
        display: table-cell;
        vertical-align: middle;
    }

	.lead-gen-ca-modal .lead-gen-ca-modal__cx-widget span.error {
		font-size: .5em;
		margin: 15px 0;
	}

	.lead-gen-ca-modal h2 {
		font-size: .73em;
	}

	.lead-gen-ca-modal__opt-form {
		margin: 10px 0;
		margin-bottom: -2px;
	}

	.lead-gen-ca-modal__opt-form p {
    font-size: .5em;
    padding: 0 0 20px 10px;
    display: inline;
    text-align: left;
    letter-spacing: .2px;
    line-height: 1.2;
    }

	.lead-gen-ca-modal__opt-form p a {
    	font-size: 1em;
    	font-weight: bold;
    	color: #000;
    	text-decoration: underline;
	}

	.lead-gen-ca-modal__subblock {
   		height: 100%;
    	padding: 25px 33px;
    	background-color: #eee;
	}

	.lead-gen-ca-modal__end-note p {
    	font-size: 1em;
    	text-align: left;
    	padding: 0 10px;
    	letter-spacing: .2px;
	}
    .lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name,
	.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda {
    font-size: 9.1em;
}
.lead-gen-ca-modal .close {
	margin: -25px 0 10px;
	color: #fff;
}

.lead-gen-ca-modal__body {
	margin-left: auto;
    margin-right: auto;
    width: 600px;
    padding: 0;
}
.lead-gen-ca-modal__end-note p {
    font-size: .75em;
    text-align: left;
    padding: 0 10px;
    letter-spacing: .2px;
    line-height: 1.2;
}
.lead-gen-ca-modal__end-note p a {
    color: #2e2e2e;
}

	.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_sub {
        font-size: 1.6em;
        padding: 5px 0 5px 0;
        text-align: center;
        letter-spacing: 7px;
	}

	.lead-gen-ca-modal__dialog__up .close {
        color: #fefefe;
        border: 1px solid #fefefe;
        padding: 5px;
        font-size: 1.4em;
        margin: -53px 0;
        text-align: center;
    }

	.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__body {
	    padding: 0;
	}

    .lead-gen-ca-modal__dialog__up .super {
        font-size: x-large;
        vertical-align: top;
        top: 0;
	}


	.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__opt-form p a {
        font-size: .9em;
        letter-spacing: .3px;
    }

    .lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__subblock {
        height: 100%;
        padding: 25px;
        background-color: #eee;
        width: auto;
    }

.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname {
    font-size: 1.09em;
    padding: 18px 0 0;

}

.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname_p {
    font-size: .85em;
}
.lead-gen-ca-modal__dialog__up input.lead-gen-ca-modal__form__input {
    font-size: .55em;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__opt-form p {
    font-size: .5em;
    padding: 0 0 20px 5px;
    display: inline;
    text-align: left;
    line-height: 1.2;

}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__end-note p {
    font-size: .8em;
    text-align: left;
    padding: 0;
    font-family: "Avenir-Roman",sans-serif;
    line-height: 1.1;
}
}



@media screen and (max-width:600px) {
	.lead-gen-ca-modal .lead-gen-ca-modal__thank-you .btn {
		display: block;
		background-color: #c41230;
		margin: 10px auto;
		width: 60%;
		height: 25px;
		font-size: .6em;
	}

	.lead-gen-ca-modal__body {
		padding: 20px 0 0;
		position: fixed;
		bottom: 0;
		right:0;
		left:0;
	}

	.lead-gen-ca-modal__content {
		opacity: 1;
		margin: auto;
		padding: 0;
		background-color: transparent;
		border: 0;
		box-shadow: none;
	}

	.lead-gen-ca-modal .close {
        color: #fefefe;
        border: 2px solid #fefefe;
        opacity: unset;
        padding: 4px;
        font-size: 1.1em;
        margin: -32px 2px;
    }

	.lead-gen-ca-modal__dialog {
		position: fixed;
		width: 100%;
		margin: 0;
		bottom:0;
		top:0;
		transform: none;
	}

	.lead-gen-ca-modal .close:hover,.close:focus {
		text-decoration: none;
		cursor: pointer;
	}

	.lead-gen-ca-modal h1 {
		font-size: 22px;
		height: 24px;
		margin: 6px 0 6px 0;
	}
	.lead-gen-ca-modal .lead-gen-ca-modal__cx-widget h4, .lead-gen-ca-modal .lead-gen-ca-modal__cx-widget h3 {
		font-size: 12px;
		margin-top: 6px;
	}

	.lead-gen-ca-modal h2 {
		font-size: .49em;
		padding: 10px 0 0;
		margin-top: 0;
	}

	.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__subblock {
		padding: 10px;
	}
	
	.lead-gen-ca-modal__subblock {
		padding: 10px;
	}

	.lead-gen-ca-modal__subblock .lead-gen-ca-modal__cx-widget {
		padding: 0;
	}

	.lead-gen-ca-modal__subblock p {
		font-size: .49em;
		padding: 0 15px;
	}

	.lead-gen-ca-modal__form {
		margin: 5px 10px;
		height: 30px;
	}

	input.lead-gen-ca-modal__form__input {
		font-size: .35em;
		border: 1px solid #eee;
		transition: border-color .3s ease,box-shadow .3s ease;
		font-style: italic;
	}

	.lead-gen-ca-modal__form__submit-btn {
		height: 30px;
		font-size: .37em;
		padding: 0;
	}

	.lead-gen-ca-modal__subblock h1 {
		color: #444a52;
		margin: 0;
	}

	input.lead-gen-ca-modal__form__input {
		width: 100%;
		padding-left: 20px;
		margin-right: 5px;
		display: inline-block;
	}

	.lead-gen-ca-modal__opt-form p a {
		font-size: 1em;
    	letter-spacing: 0.3px;
	}

	.lead-gen-ca-modal__opt-form p {
        font-size: 10px;
        padding-left: 7px;
        line-height: 15px;
        padding-right: 0;
	}

	input.lead-gen-ca-modal__opt-form__input {
		width: 30px;
		height: 15px;
		display: block;
	}

	.lead-gen-ca-modal__opt-form {
		padding: 0 10px 10px;
	}

	.lead-gen-ca-modal__form--right-arrow:after {
		margin-left: 10px;
		margin-top: 12px;
		border-left: 4px solid brown;
		border-bottom: 3px solid transparent;
		border-top: 3px solid transparent;
	}

	.lead-gen-ca-modal .lead-gen-ca-modal__cx-widget span.error {
		font-size: .34em;
		margin: 0 10px;
		display: block;
		line-height: 8px;
	}

	.lead-gen-ca-modal__end-note p {
		font-size: 10px;
	}

    .lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__body {
        width: auto;
        margin: 0 auto;
        text-align: left;
        padding: 0;
    }

    .lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda	{
        margin: 10px 0 10px 14px;
        font-size: 5.4em;
        line-height: .8;
    }

    .lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name.main_form_name_fr,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda.main_form_name_fr {
        margin-left: auto;
        margin-right: auto;
        font-size: 14.7vw;
        line-height: normal;
        width: auto;
    }

    .lead-gen-ca-modal__dialog__up .super {
        font-size: medium;
        vertical-align: top;
        top: 0;
    }

    .lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_sub {
        font-size: .9em;
        padding: 0;
        font-weight: 600;
        letter-spacing: 5px;
        margin: 10px 0;
        text-align: center;
    }

    .lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname {
        font-size: .76em;
        padding: 10px 0 0;
        font-weight: 100;
        margin: 0;
        line-height: 1;
    }

    .lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname_p {
        font-size: .5em;
        display: block;
        line-height: normal;
        margin: 0;
        padding: 0;
    }

    .lead-gen-ca-modal__dialog__up input.lead-gen-ca-modal__form__input {
        padding-left: 22px;
    }

    .lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__opt-form p {
        font-size: .38em;
        padding: 0 0 0 5px;
        display: inline;
        text-align: left;
        line-height: 1.1;
    }

    .lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__end-note p {
        font-size: .54em;
        text-align: left;
        padding: 0;
        line-height: 1.1;
    }

    .lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__thank-you h1 {
        color: #444a52;
        font-size: 1.8em;
        margin-bottom: 3%;
        font-family: "Avenir-Roman",sans-serif;
    }

}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px)
and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71)
{
   .lead-gen-ca-modal h2 {
    font-size: .42em;
    padding: 10px 0 0;
    margin-top: 0;
}
.lead-gen-ca-modal__form__submit-btn {
    font-size: .34em;
}
input.lead-gen-ca-modal__form__input {
    font-size: .33em;
}
.lead-gen-ca-modal__subblock .lead-gen-ca-modal__opt-form p {
    font-size: .35em;
    padding-left: 5px;
    line-height: 12px;
    padding-right: 0;
    letter-spacing: .09px;
}
.lead-gen-ca-modal__opt-form p a {
    font-size: 1em;
    letter-spacing: 1.1px;
}
.lead-gen-ca-modal__subblock p {
    font-size: .43em;
    padding: 0 15px;
}
.lead-gen-ca-modal h1 {
    font-size: 1.5em;
    height: 24px;
    margin: 30px 0 10px 0;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname {
    font-size: .7em;
    padding: 10px 0 0;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname_p {
    font-size: .48em;
}
.lead-gen-ca-modal .close {
   padding: 3px;
    font-size: .8em;
    margin: -23px 8px 10px;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda {
    margin: 10px 0 0 0px;
    font-size: 4.7em;
    line-height: .8;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name.main_form_name_fr,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda.main_form_name_fr {
    margin-left: auto;
    margin-right: auto;
    font-size: 14.7vw;
    line-height: normal;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_sub {
    font-size: .8em;
    padding: 0;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 5px 0;
    text-align:center;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__subblock {
	padding: 15px;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__form {
    margin: 5px;
    height: 30px;
}
.lead-gen-ca-modal__dialog__up .super {
    font-size: medium;
    vertical-align: top;
    top: 0;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__opt-form p {
    font-size: .33em;
    padding-left: 5px;
    line-height: 1.1;
    padding-right: 0;
    letter-spacing: .09px;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__end-note p {
    font-size: .49em;
    text-align: left;
    padding: 0;
    line-height: 1.1;
}
 .lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__thank-you h1 {
    color: #444a52;
    font-size: 1.8em;
    margin-bottom: 3%;
    font-family: "Avenir-Roman",sans-serif;
  }
}

@media only screen and (device-width : 414px) and (device-height : 736px) and (-webkit-device-pixel-ratio : 3) {
.lead-gen-ca-modal h2 {
    font-size: .58em;
    padding: 10px 0 0;
    margin-top: 0;
}
.lead-gen-ca-modal h1 {
    font-size: 22px;
    height: 24px;
    margin: 6px 0 6px 0;
}
.lead-gen-ca-modal__form__submit-btn {
    height: 30px;
    font-size: .48em !important;
    padding: 0;
}
input.lead-gen-ca-modal__form__input {
    font-size: .47em;
}
.lead-gen-ca-modal__subblock .lead-gen-ca-modal__opt-form p {
    font-size: .4em;
    padding-left: 7px;
    line-height: normal;
    letter-spacing: 1px;
}
.lead-gen-ca-modal__opt-form p a {
    font-size: 1em;
    letter-spacing: 1.2px;
}
.lead-gen-ca-modal__form--right-arrow:after {
    margin-left: 10px;
    margin-top: 12px;
    border-left: 3px solid brown;
    border-bottom: 3px solid transparent;
    border-top: 3px solid transparent;
}
.lead-gen-ca-modal__subblock p {
    font-size: .58em;
    padding: 0 15px;
}
.lead-gen-ca-modal__end-note p {
    font-size: .7em;
}
.lead-gen-ca-modal .close {
    color: #fefefe;
    border: 2px solid #fefefe;
    opacity: unset;
    padding: 5px;
    font-size: 1.1em;
    margin: -33px 1px 0 0;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda {
    margin: 0;
    font-size: 6.09em;
    line-height: .8;
    text-align: center;
}
.lead-gen-ca-modal__dialog__up .super {
    font-size: medium;
    vertical-align: top;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_sub {
    font-size: 1em;
    padding: 0;
    font-weight: 600;
    letter-spacing: 5.5px;
    margin: 10px 0;
    text-align: center;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname {
    font-size: .9em;
    padding: 5px 0 0;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_subname_p {
    font-size: .59em;
    letter-spacing: 0.3px;
}
.lead-gen-ca-modal__dialog__up input.lead-gen-ca-modal__form__input {
	font-size: .5em;
   	padding-left: 25px;
}
.lead-gen-ca-modal__subblock .lead-gen-ca-modal__opt-form p {
    font-size: .39em;
    padding-left: 7px;
    letter-spacing: 0.5px;
}
.lead-gen-ca-modal__form__submit-btn {
    font-size: .45em !important;
    padding: 0;
}
.lead-gen-ca-modal__subblock .lead-gen-ca-modal__opt-form p {
    font-size: .39em;
    padding-left: 7px;
    line-height: 1;
    letter-spacing: 0.5px;
}
.lead-gen-ca-modal__dialog__up .lead-gen-ca-modal__end-note p {
    font-size: .6em;
    text-align: left;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 0.1px;
}
}
@media only screen and (min-device-width :812px) and (max-device-width :916px) and (orientation:landscape) {

.lead-gen-ca-modal__dialog__up {
overflow: scroll;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda {
margin-top: 50%;
}
.lead-gen-ca-modal__dialog__up .close {
margin-top: -8%;
}
}
@media screen and (max-width:800px) and (orientation:landscape) {
.lead-gen-ca-modal__dialog__up {
overflow: scroll;
}
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name,
.lead-gen-ca-modal .lead-gen-ca-modal__dialog__backlink .main_form_name_mda {
margin-top: 50%;
}
.lead-gen-ca-modal__dialog__up .close {
margin-top: 43%;
}
}
#promoDrawer #lead-gen-mbox {
    background: #fff;
}
 #promoDrawer .lead-gen-ca-modal {
     height: 100%;
     background: #fff;
     float: left;
     width: 100%;
     position:static;
     padding: 8px 16px;
}
#promoDrawer .gpd-heading.main_form_sub h3 {
     font-size: 20px;
     font-family: 'Avenir-Black','Avenir',sans-serif;
     font-weight: 800;
     font-style: normal;
     line-height: 24px;
     color: #2e2e2e;
     text-align: left;
     margin: 0;
     text-transform: uppercase;
}
#promoDrawer .gpd-heading.main_form_sub p {
     font-size: 12px;
     font-family: 'Helvetica Neue LT W01_55 Roman',Helvetica,Arial,sans-serif;
     line-height: normal;
     font-style: normal;
     padding-top: 6px;
     padding-bottom: 8px;
     font-weight: 400;
}
 .gpd-formwrapper.lead-gen-ca-modal__form {
     display: block;
     height:auto;
	 margin:0;
}
 #promoDrawer .lead-gen-ca-modal__form__input.gpd-emailfield {
     padding: 6px 8px;
     height: 36px;
     width: 70%;
     border: 1px solid #bfbfbf;
     font-size: 14px;
     line-height: 21px;
     outline: none !important;
     margin: 0;
     font-style: normal;
     transition: none;
     color: #766B6B;
     font-family: 'Avenir-Roman', 'Avenir', sans-serif;
}
 .gpd-emailsection {
     display: flex;
	 margin-bottom:10px;
}
.gpd-formvalidation {
	line-height: 0;
    margin-bottom: 10px;
}
 #promoDrawer button.gpdbutton__signup {
     height: 36px;
     width: 30%;
     font-size: 13px;
     line-height: 20px;
     font-weight: 800;
     font-family: 'Avenir-Black','Avenir',sans-serif;
     padding: 0 20px;
     text-transform: none;
}
 .gpd-legalcontent {
     font-size: 10px;
     font-family: 'Avenir-Roman', 'Avenir', sans-serif;
     line-height: 14px;
     color: #2e2e2e;
     padding-left: 8px;
}
 .gpd-legalcontent a {
     font-family: 'Avenir-Roman', 'Avenir', sans-serif;
}
#promoDrawer .pc-carousel-wrapper .gpd-heading a {
    color: #000;
    border: 1px solid #9f9f9f;
    width: 14px;
    height: 14px;
    line-height: 19px;
    display: inline-block;
    text-align: center;
    border-radius: 2px;
    margin-left: 2px;
    font-weight: normal;
    text-decoration: none;
}
 .gpd-legalsection {
     display: flex;
     align-items: flex-start;
}
.gpd-legalcheckbox[type="checkbox"] {
     -webkit-appearance: none;
     background-color: #fff;
     border: 1px solid #000;
     padding: 8px;
     display: inline-block;
     position: relative;
}
 .gpd-legalcheckbox:checked:before {
     content: ' ';
     border-right: 2px solid #c41239;
     border-bottom: 2px solid #c41239;
     position: absolute;
     top: 2px;
     height: 10px;
     left: 5px;
     width: 6px;
     transform: rotate(45deg);
}
 #promoDrawer .pc-carousel-wrapper .pc-carousel-container .slick-slide>.lead-gen-thankyou {
     display: flex;
     align-items: center;
     justify-content: center;
}
 .gpd-thankyousection {
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
     align-items: center;
}
.gpd-thankyousection h1 {
    margin: 0;
    margin-bottom: 10px;
}
 #promoDrawer .lead-gen-ca-modal .error {
     font-size: 11px;
	 color:red;
}
 .gpd-thankyoubutton {
     padding: 10px 0;
     font-weight: 700;
     text-transform: uppercase;
     width: 156px;
     height: 36px;
     font-size: 12px;
     line-height: 19px;
     margin-top: 10px;
}
 @media (min-width:768px) and (max-width:1250px) {
     #promoDrawer button.gpdbutton__signup {
         font-size:12px;
         width:38%;
    }
     #promoDrawer .lead-gen-ca-modal__form__input.gpd-emailfield {
         width: 65%;
    }
}
 @media (max-width:767px) {
     #promoDrawer .lead-gen-ca-modal__form__input.gpd-emailfield {
         margin-right: 0;
         font-size: 12px;
    }
     #promoDrawer button.gpdbutton__signup {
         color: #fff;
         font-size: 12px;
         padding: 0;
         text-align: center;
    }
     #promoDrawer .gpd-heading.main_form_sub h3 {
         font-size: 16px;
         line-height: 16px;
		 height: auto;	
    }
     #promoDrawer .gpd-heading.main_form_sub p {
         font-size: 10px;
         font-weight: normal;
         line-height: 14px;
         padding-top:4px;
    }
     #promoDrawer .gpd-legalcontent {
         font-size: 8px;
    }
}

#sign_custom_circle_ca:hover {
    cursor: pointer;
}
#sign_custom_circle_ca {
  background:white;
  z-index:2147483647;
  border:solid 1px #c41239;
  transition:background .15s,ease-in-out .15s;
  display:none;
  border-bottom: 0;
}
.ca_signup {
  display: flex;
  justify-content:center;
  align-items: center;
  height: 36px;
  width: 145px;
  cursor: pointer;
}
#sign_custom_circle_ca.sign_show_ca {
  display: none;
  transform:rotate(270deg);
  animation:usi_circle_ani .7s cubic-bezier(.62,.15,.51,1.58) 1 forwards;
}
.signUpForCa.section {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(38.5%,-50%);
  z-index: 9999;
}
.signUpForCa.section.signup_container_fr {
  transform: translate(43.7%,94%);
}
.signUpForCa.section.signup_container_fr .ca_signup {
  width: 165px;
}
#sign_custom_circle_ca #signup-ca-click{
  height:36px;
  width:145px;
  position:fixed;
}
.sign_custom_dismiss_ca {
  height:12px;
  width:12px;
}
.signUpForCa.section .sign_custom_dismiss_ca {
  display: none;
}
.sign_custom_dismiss_ca:hover {
    box-shadow: none;
    background: none;
}
@keyframes usi_circle_ani {
    0% {
        bottom: -120px;
   }
    100% {
        bottom: 5px;
   }
}
#sign_mail_img_ca {
  width: 16px;
  margin-right:10px;
  transform: rotate(90deg);
}
.signUpForCa.section.signup_container_fr #sign_custom_circle_ca #signup-ca-click {
    width: 165px;
}
#sign_custom_circle_ca h4 {
  text-transform: capitalize;
  width: auto;
  text-align: center;
  color: #c41239;
  height: 24px;
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  line-height: normal;
}
@media(max-width:767px){
  #sign_custom_circle_ca h4 {
      display: none;
 }
  .ca_signup,#sign_custom_circle_ca #signup-ca-click{
      width: 38px;
      height: 24px;
 }
  .signUpForCa.section{
      transform: translate(23%,-50%);
      z-index:unset;
 }
  #sign_mail_img_ca{
      margin-right:0;
 }
  .signUpForCa.section.signup_container_fr .ca_signup{
      width:38px;
 }
  .signUpForCa.section.signup_container_fr{
      transform: translate(23%,-50%);
 }
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
@font-face {
  font-family: 'Avenir-Heavy';
  src: url('global/resources/Avenir-Heavy.ttf');
  font-display: swap;
}
@font-face {
  font-family: 'Avenir';
  src: url('global/resources/Avenir.ttc');
  font-display: swap;
}
html,
body {
  background-color: #eeeeee;
  color: #2e2e2e;
}
.hidden {
  visibility: hidden;
}
button.link-btn {
  font-family: 'Avenir-Roman', sans-serif;
}
a,
button.link-btn {
  color: #c41230;
  text-decoration: none;
}
a:hover,
button.link-btn:hover {
  color: #9a132b;
}
button.link-btn:hover,
button.link-btn:focus {
  background-color: transparent;
}
a.skip {
  left: -50vw;
}
button,
.button {
  font-family: 'Avenir-Black', sans-serif;
}
button[disabled],
.button[disabled],
button[disabled]:hover,
.button[disabled]:hover,
button[disabled]:active,
.button[disabled]:active {
  background-color: #c37e8d;
  cursor: not-allowed;
}
a.button-full,
button.button-full {
  min-width: auto;
}
.footer-productsignup iframe {
  border: none;
}
/*# sourceMappingURL=global.css.map */
@media (max-width: 1023px) {
  .livechat-active-modal {
    right: inherit;
    left: 0px;
    top: 1px;
  }
  .livechat-footer .form-buttons {
    margin-bottom: 2.1rem !important;
  }
  .livechat-content {
    padding: 1rem .225rem !important;
    margin-bottom: 0.5rem !important;
  }
}
button,
input,
optgroup,
select,
textarea {
  color: #2e2e2e;
}
a,
button.link-btn {
  color: #c41230;
}
a:hover,
button.link-btn:hover,
button#update-location:hover {
  color: #9a132b;
}
button#update-location {
  color: #c41230;
  font-family: "Avenir-Roman", sans-serif;
  font-weight: 400;
}
button,
.button {
  background: #c41239;
  color: #ffffff;
}
button:hover,
.button:hover {
  background: #9a132b;
  color: #ffffff;
}
.rte {
  color: #2e2e2e;
}
.rte a:hover {
  color: #c41230;
}
.button-white {
  color: #2e2e2e;
}
.button-white:hover {
  color: #9a132b;
}
.button-white,
.button-white:hover,
button.button-white[disabled],
.button.button-white[disabled],
button.button-white[disabled]:hover,
.button.button-white[disabled]:hover,
button.button-white[disabled]:active,
.button.button-white[disabled]:active {
  background: #ffffff;
}
.button-grey {
  background: #e2e2e5;
  color: #2e2e2e;
}
.button-grey:hover {
  background: #2e2e2e;
  color: #ffffff;
}
.footer-accordion-link {
  line-height: 0.934375rem;
}
@media (max-width: 47.9375rem) {
  .footer-cta-box .footer-social {
    padding: 1.25rem 1.25rem 0.3125rem 0.625rem;
  }
  .footer-cta-row {
    padding-bottom: 0.625rem;
  }
}

@font-face {
  font-family: 'kitchenaid-icons';
  src:  url('global/resources/kitchenaid-icons.eot?ekii7m');
  src:  url('global/resources/kitchenaid-icons.eot?ekii7m#iefix') format('embedded-opentype'),
    url('global/resources/kitchenaid-icons.ttf?ekii7m') format('truetype'),
    url('global/resources/kitchenaid-icons.woff?ekii7m') format('woff'),
    url('global/resources/kitchenaid-icons.svg?ekii7m#kitchenaid-icons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="icons-"], [class*=" icons-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'kitchenaid-icons', sans-serif !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icons-plus:before {
  content: "\e91c";
}
.icons-account:before {
  content: "\e900";
}
.icons-affirm:before {
  content: "\e901";
}
.icons-alert:before {
  content: "\e902";
}
.icons-arrow-down:before {
  content: "\e903";
}
.icons-arrow-left:before {
  content: "\e904";
}
.icons-arrow-right:before {
  content: "\e905";
}
.icons-arrow-up:before {
  content: "\e906";
}
.icons-cart:before {
  content: "\e907";
}
.icons-check-box:before {
  content: "\e908";
}
.icons-checkmark:before {
  content: "\e909";
}
.icons-close:before {
  content: "\e90a";
}
.icons-compare:before {
  content: "\e90b";
}
.icons-connectivity:before {
  content: "\e90c";
}
.icons-delivery:before {
  content: "\e90d";
}
.icons-desktop:before {
  content: "\e90e";
}
.icons-download:before {
  content: "\e90f";
}
.icons-dual-fuel:before {
  content: "\e910";
}
.icons-edit:before {
  content: "\e911";
}
.icons-electric:before {
  content: "\e912";
}
.icons-email:before {
  content: "\e913";
}
.icons-favorite:before {
  content: "\e914";
}
.icons-gas:before {
  content: "\e915";
}
.icons-gift:before {
  content: "\e916";
}
.icons-hamburger:before {
  content: "\e917";
}
.icons-info:before {
  content: "\e918";
}
.icons-live-chat:before {
  content: "\e919";
}
.icons-location:before {
  content: "\e91a";
}
.icons-phone:before {
  content: "\e91b";
}
.icons-print:before {
  content: "\e91d";
}
.icons-radio-deselected:before {
  content: "\e91e";
}
.icons-radio-selected:before {
  content: "\e91f";
}
.icons-refurbished:before {
  content: "\e920";
}
.icons-registered:before {
  content: "\e921";
}
.icons-registration:before {
  content: "\e922";
}
.icons-replay:before {
  content: "\e923";
}
.icons-return:before {
  content: "\e924";
}
.icons-save:before {
  content: "\e925";
}
.icons-savings:before {
  content: "\e926";
}
.icons-scroll:before {
  content: "\e927";
}
.icons-search:before {
  content: "\e928";
}
.icons-select-box:before {
  content: "\e929";
}
.icons-service:before {
  content: "\e92a";
}
.icons-share:before {
  content: "\e92b";
}
.icons-sign-in:before {
  content: "\e92c";
}
.icons-video-play:before {
  content: "\e92d";
}
.icons-warranty:before {
  content: "\e92e";
}
.icons-smalls-personalize:before {
  content: "\e92f";
}
.keep-order {
  margin: 0 auto;
  padding: 0 1rem;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.3125rem;
  text-align: center;
  font-family: "Avenir-Roman", sans-serif;
}
@media all and (min-width: 64rem) {
  .keep-order {
    width: 58.75rem;
    height: 29.5rem;
    padding: 0 8.25rem;
  }
  .keep-order__success-area {
    width: 26.125rem;
  }
}
.keep-order .bold-font {
  font-weight: 900;
  font-family: "Avenir-Black", "Avenir", sans-serif;
}
.keep-order .hidden {
  visibility: hidden;
}
.keep-order.success .keep-order__cta-area {
  display: none;
}
.keep-order.success .keep-order__success-area {
  display: block;
}
.keep-order.success .keep-order__contact-info {
  padding-top: 4.3125rem;
}
.keep-order__main-msg {
  padding-top: 3.0655rem;
}
.keep-order__confirm-block {
  padding-top: 1.5625rem;
}
.keep-order__confirm-btn {
  width: 18rem;
  height: 2.5rem;
  font-weight: 900;
  font-family: "Avenir-Black", "Avenir", sans-serif;
}
.keep-order__error-msg {
  font-size: .75rem;
  color: #c41230;
  display: block;
}
.keep-order__charge-msg {
  padding-top: 1.25rem;
  font-weight: 900;
  font-family: "Avenir-Black", "Avenir", sans-serif;
}
.keep-order__success-area {
  padding-top: 5.0625rem;
  margin: 0 auto;
  display: none;
}
.keep-order__success-area svg {
  width: 5.3125rem;
  height: 5.3125rem;
  color: #5c700e;
  margin: auto;
}
.keep-order__success-title {
  padding-top: 1.5rem;
  font-weight: 900;
  font-family: "Avenir-Black", "Avenir", sans-serif;
}
.keep-order__success-msg {
  padding-top: 1.5rem;
}
.keep-order__contact-info {
  padding-top: 2.75rem;
  padding-bottom: 3rem;
}
.keep-order__contact-info b {
  font-weight: 900;
  font-family: "Avenir-Black", "Avenir", sans-serif;
}

.interstitial-prd-carousel__product-tile__title--link,
.interstitial-prd-carousel__header,
.interstitial-prd-carousel__product-tile-price,
.interstitial-prd-carousel__product-tile__btn .button,
.interstitial-prd-carousel .prd-carousel__save-price {
  font-family: 'Avenir-Black', sans-serif;
}
.interstitial-prd-carousel__sub-header,
.interstitial-prd-carousel .prd-carousel__product-tile__prices--small {
  font-family: "Avenir-Roman", sans-serif;
}
.interstitial-prd-carousel__product-tile__title--link {
  color: #2e2e2e;
  text-decoration: none;
  line-height: 1.5;
}
.interstitial-prd-carousel__product-tile__btn .button {
  color: #2e2e2e;
  font-size: .75rem;
  text-transform: uppercase;
  border-color: #000;
  border-radius: 0;
}
.interstitial-prd-carousel__product-tile__btn .button:hover,
.interstitial-prd-carousel__product-tile__btn .button:focus {
  color: #2e2e2e;
}
.interstitial-prd-carousel__prev-btn,
.interstitial-prd-carousel__next-btn {
  border-color: #c41230;
}
.interstitial-prd-carousel .prd-carousel__save-price {
  color: #5c700e;
}

.interstitial-product-card__header-title,
.interstitial-product-card__product-title-text,
.interstitial-product-card__protection-plans-title,
.interstitial-product-card__protection-plan-select,
.interstitial-product-card__product-subscription-label,
.interstitial-product-card__delivery-date {
  font-family: 'Avenir-Black', sans-serif;
  font-weight: 900;
  color: #2e2e2e;
}
.interstitial-product-card__delivery,
.interstitial-product-card__protection-plans-learn-more {
  font-family: "Avenir-Roman", sans-serif;
}
.interstitial-product-card__product-specification-value,
.interstitial-product-card__product-specification {
  color: #000000;
  font-family: "Avenir", sans-serif;
}
.interstitial-product-card__product-specification-value {
  font-weight: 800;
}
.interstitial-product-card__delivery-date {
  color: #5c700e;
}
.interstitial-product-card__protection-plan-arrow::before {
  border: solid #c41230;
  border-width: 0 3px 3px 0;
}
.interstitial-product-card__protection-plans-learn-more a {
  color: #2e2e2e;
  text-decoration: underline;
}

.interstitial-product-subscriptions {
  font-family: "Avenir", sans-serif;
}
.interstitial-product-subscriptions__checkbox-container input[type="checkbox"]:checked + .check-mark {
  border: 0.0625rem solid #c41230;
  background-color: #c41230;
}
.interstitial-product-subscriptions__checkbox-container input[type="checkbox"]:checked + .check-mark:after {
  border: solid #ffffff;
  border-width: 0 .125rem .125rem 0;
}
.interstitial-product-subscriptions__label .percent-off {
  color: #5c700e;
}
.interstitial-product-subscriptions__select-icon:after {
  border-bottom: 0.1875rem solid #c41230;
  border-right: 0.1875rem solid #c41230;
}

.interstitial-installation-service .green {
  color: #5c700e;
}
.interstitial-installation-service__learn-more {
  text-decoration: underline;
}
.interstitial-installation-service__header {
  font-family: "Avenir", sans-serif;
}
.interstitial-installation-service__price {
  font-family: "Avenir", sans-serif;
}
.interstitial-installation-service__title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #2e2e2e;
  margin: 1rem 0 0.5rem 0;
  font-family: "Avenir", sans-serif;
}
.interstitial-installation-service__sub-title {
  font-size: 0.75rem;
  font-family: "Avenir-Roman", sans-serif;
  color: #2e2e2e;
  margin-bottom: 0.5rem;
}
@media all and (min-width: 48rem) {
  .interstitial-installation-service__title {
    font-size: 1rem;
  }
  .interstitial-installation-service-section {
    padding-bottom: 0;
  }
  .interstitial-installation-service__options {
    padding-bottom: 1rem;
  }
}

.interstitial-delivery .green {
  color: #5c700e;
}
.interstitial-delivery__policy {
  text-decoration: underline;
}
.interstitial-delivery__header {
  font-family: "Avenir", sans-serif;
}
.interstitial-delivery__title {
  font-family: "Avenir", sans-serif;
}
.interstitial-delivery__price {
  font-family: "Avenir", sans-serif;
}
.interstitial-delivery__accessory-price {
  font-family: "Avenir", sans-serif;
}
.interstitial-delivery .red {
  color: #c41230;
}
.interstitial-delivery__title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #2e2e2e;
  margin: 1rem 0 0.5rem 0;
  font-family: "Avenir", sans-serif;
}
.interstitial-delivery__sub-title {
  font-size: 0.75rem;
  font-family: "Avenir-Roman", sans-serif;
  color: #2e2e2e;
  margin-bottom: 0.5rem;
}
.interstitial-delivery__accessory {
  margin: 0.5rem 0 0 0;
}
.interstitial-delivery__accessories-info {
  padding-top: 1rem;
}
.interstitial-delivery__accessory-specifications {
  color: #2e2e2e;
  font-family: "Avenir-Roman", sans-serif;
}
.interstitial-delivery__accessories-info-container {
  color: #2e2e2e;
  font-family: "Avenir", sans-serif;
}
.interstitial-delivery__accessories-prev-btn,
.interstitial-delivery__accessories-next-btn {
  border: solid #c41230;
  border-width: 0 0.3125rem 0.3125rem 0;
}
.interstitial-delivery__accessories-prev-btn.slick-disabled,
.interstitial-delivery__accessories-next-btn.slick-disabled {
  border: solid #e2e2e5;
  border-width: 0 0.3125rem 0.3125rem 0;
}
.interstitial-delivery__accessories-info > .interstitial-delivery__accessories-prev-btn-mobile,
.interstitial-delivery__accessories-info > .interstitial-delivery__accessories-next-btn-mobile {
  border: solid #c41230;
  border-width: 0 0.3125rem 0.3125rem 0;
}
.interstitial-delivery__accessories-info > .interstitial-delivery__accessories-prev-btn-mobile.slick-disabled,
.interstitial-delivery__accessories-info > .interstitial-delivery__accessories-next-btn-mobile.slick-disabled {
  border: solid #e2e2e5;
  border-width: 0 0.3125rem 0.3125rem 0;
}
@media all and (min-width: 48rem) {
  .interstitial-delivery__title {
    font-size: 1rem;
  }
  .interstitial-delivery__accessories:before {
    margin-top: 0;
  }
  .interstitial-delivery__accessory {
    margin: 0.5rem 0 0 0;
  }
  .interstitial-delivery__accessories-container .slick-track {
    margin-left: 0.5rem;
  }
  .interstitial-delivery__accessories-info {
    padding-top: 0;
  }
  .interstitial-delivery__accessory-specifications {
    color: #2e2e2e;
  }
  .interstitial-delivery__installation-section {
    padding-bottom: 0;
  }
  .interstitial-delivery__options {
    padding-bottom: 1rem;
  }
}

.interstitial-cta-buttons__secondary.button {
  font-size: 1rem;
  font-weight: normal;
  font-family: "Avenir-Roman", sans-serif;
  text-decoration: none;
  color: #c41230;
  padding: 0;
  text-transform: capitalize;
}
.interstitial-cta-buttons__secondary.button:hover {
  color: #c41230;
}
.interstitial-cta-buttons__main {
  font-family: 'Avenir-Black', sans-serif;
  height: 2.5rem;
}
@media all and (min-width: 48rem) {
  .interstitial-cta-buttons__secondary.button {
    width: auto;
    height: 2.5rem;
  }
}
@media all and (max-width: 47.938rem) {
  .interstitial-cta-buttons__secondary.button {
    font-size: .75rem;
    text-transform: uppercase;
    font-family: 'Avenir-Black', sans-serif;
    border-radius: 0;
    border: 2px solid #000;
    color: #2e2e2e;
    height: 2.5rem;
  }
  .interstitial-cta-buttons__secondary.button:hover,
  .interstitial-cta-buttons__secondary.button:focus {
    color: #000;
  }
}

.registration-form__checkbox-container,
.registration-form__submit-btn {
  font-family: "Avenir-Roman", sans-serif;
}
.registration-form__header,
.registration-form .form-label {
  font-family: 'Avenir-Black', sans-serif;
}
.registration-form__social-sign-in-container .sign-in-buttons__divider {
  font-family: "Avenir-Roman", sans-serif;
}
.registration-form__checkbox-container input:checked ~ .registration-form__check-mark {
  background: #c41230;
}
.registration-form__item--professional-discount-label .form-input__subheader--tooltip .form-input__subheader {
  color: #2e2e2e;
  background: #eeeeee;
}
.registration-form__existing-account-sign-in .link-btn:hover {
  color: #9a132b;
}
.registration-form .form-submit-error-with-icon__text {
  line-height: 1.1875rem;
  color: #2e2e2e;
  font-family: "Avenir", sans-serif;
}
.registration-form .form-submit-error-with-icon__text a {
  color: #2e2e2e;
}

.content-spot__labels-title {
  font-weight: 800;
}
.content-spot__labels-title-content {
  color: #000000;
  font-family: 'Avenir-Black', sans-serif;
  font-size: 0.875rem;
  line-height: 0.908125rem;
}
.content-spot__labels-subtitle {
  color: #000000;
  margin-top: 1rem;
  font-family: 'Avenir-Black', sans-serif;
  font-size: 1.625rem;
  line-height: 1.68625rem;
}
.content-spot .cmp-teaser {
  margin-top: 2.25rem;
}
.content-spot .cmp-teaser__title {
  font-family: 'Avenir-Black', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.36625rem;
}
.content-spot .cmp-teaser__title-link {
  color: #2e2e2e;
}
.content-spot .cmp-teaser__description {
  color: #5e5e5e;
  font-style: normal;
  font-weight: 400;
  margin-top: 0.25rem;
}
.content-spot .cmp-teaser__description p {
  line-height: 0.85375rem;
  font-size: 0.625rem;
}
.content-spot .cmp-teaser__image {
  text-align: center;
}
.content-spot__teasers {
  text-align: center;
}
.content-spot__teasers .teaser {
  display: inline-block;
  vertical-align: top;
}
@media all and (min-width: 47.938rem) {
  .content-spot__teasers {
    margin-top: 2.125rem;
  }
  .content-spot__teasers .teaser:not(:first-child) {
    margin-left: 1.125rem;
  }
  .content-spot__labels-subtitle {
    font-size: 2.125rem;
    line-height: 2.205625rem;
  }
}

.forgot-password-form-v2 .forgot-password-form-v2-container__header-text {
  text-transform: uppercase;
}
.forgot-password-form-v2 .forgot-password-form-v2-container__inputs-container-fields {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 0.875rem;
}
.forgot-password-form-v2 .forgot-password-form-v2-container__inputs-container-fields .form-submit-error {
  font-size: 0.75rem;
  line-height: 1rem;
}
.forgot-password-form-v2 .forgot-password-form-v2-container__inputs-container-fields .form-label {
  margin-bottom: 0.5rem;
}
.forgot-password-form-v2 .forgot-password-form-v2-container__inputs-container-fields .form-buttons .form-button {
  background-color: #c41230;
  font-size: 1rem;
  line-height: 1rem;
  height: 2.5rem;
  text-transform: uppercase;
  font-family: "Avenir", sans-serif;
}
.forgot-password-form-v2 .forgot-password-form-v2-container__inputs-container-fields .form-buttons .button-cancel {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 900;
  text-decoration: underline;
  text-transform: capitalize;
  font-family: "Avenir", sans-serif;
}
.forgot-password-form-v2 .forgot-password-form-v2-container-success__header-container-text {
  text-transform: uppercase;
}
@media all and (min-width: 48rem) {
  .forgot-password-form-v2 .forgot-password-form-v2-container__inputs-container-fields .form-buttons .form-button {
    width: 8.875rem;
  }
}

.reset-password-form-v2 .reset-password-form-v2-container__header {
  margin: 1.25rem 0.875rem 0;
}
.reset-password-form-v2 .reset-password-form-v2-container__header-text {
  text-transform: uppercase;
}
.reset-password-form-v2 .reset-password-form-v2-container__inputs-container-fields .form-buttons .form-button {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 800;
}
.reset-password-form-v2 .reset-password-form-v2-container__inputs-container-fields .form-buttons .button-cancel {
  font-family: "Avenir", sans-serif;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 800;
  line-height: 1.1875rem;
  font-size: 1rem;
  text-decoration: underline;
  text-transform: none;
}
.reset-password-form-v2 .reset-password-form-v2-container .form-req {
  color: #c41230;
}
.reset-password-form-v2 .reset-password-form-v2-container-success__header-container-text {
  text-transform: uppercase;
}
@media (min-width: 64rem) {
  .reset-password-form-v2 .reset-password-form-v2-container__inputs-container-fields .form-buttons .form-button {
    width: 13.4375rem;
  }
}

header.checkout-header {
  background: #ffffff;
}
.checkout-header__help-info-container {
  border-bottom: 0.25rem solid #c41230;
}
.checkout-header .header-chat-link {
  font-family: 'Avenir-Black', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}
.checkout-header .header-chat-link:hover {
  color: #c41230;
}
.checkout-header .checkout-help-link {
  font-family: 'Avenir-Black', sans-serif;
  color: #2e2e2e;
  text-decoration: underline;
}
.checkout-header__guest-disclaimer {
  text-transform: uppercase;
}
.checkout-header__account-container {
  margin: .75rem 0 .75rem 0;
}
.header-logged-out .checkout-header__sign-in-icon {
  margin-top: 1.125rem;
}
.checkout-header .checkout-authenticated-disclaimer {
  text-transform: capitalize;
  font-family: "Avenir-Roman", sans-serif;
}
.checkout-header .header-logo-image {
  height: .875rem;
}
@media all and (min-width: 47.937rem) {
  .checkout-header__logo {
    padding-top: 0;
  }
  .checkout-header__help-info-container {
    padding: .75rem 4.5rem;
  }
  .checkout-header__account-container {
    margin: 0 0 1.125rem 0;
    padding: 1.125rem 8.4375rem 0 4.5rem;
  }
  .checkout-header__account .sign-in-modal-component #sign-in-modal .modal-box {
    margin-top: 3.35rem;
  }
}
.checkout-header .checkout-guest-disclaimer {
  text-transform: capitalize;
  font-family: "Avenir-Roman", sans-serif;
}

.checkout-need-help {
  font-family: 'Avenir-Black', sans-serif;
}
.checkout-need-help__header {
  text-transform: uppercase;
}
.checkout-need-help__phone a {
  color: #c41230;
}
.checkout-need-help__working-hours {
  font-family: "Avenir-Roman", sans-serif;
  border: 0;
  padding-left: 0;
  margin-left: .25rem;
}
.checkout-need-help .inner-info__title {
  margin-bottom: .125rem;
}

.checkout-sign-in__create,
.checkout-sign-in .header-user-name,
.checkout-sign-in .header-account-link-text {
  font-family: 'Avenir-Black', sans-serif;
}
.checkout-sign-in__create:hover,
.checkout-sign-in .header-user-name:hover,
.checkout-sign-in .header-account-link-text:hover {
  color: #c41230;
}
.checkout-sign-in__create {
  line-height: 1.1rem;
}
.checkout-sign-in .header-account-link-text {
  display: block;
  text-align: initial;
  color: #2e2e2e;
  font-weight: bold;
  margin-left: 0;
}
.checkout-sign-in .header-account-link-text:hover {
  color: #c41230;
}
.checkout-sign-in .header-account-icon {
  margin-top: 0;
}
.checkout-sign-in__login-mobile .header-account-link-text {
  font-family: 'Avenir-Black', sans-serif;
  margin-top: .1875rem;
}
.checkout-sign-in__variants-separator {
  font-family: "Avenir-Roman", sans-serif;
}
.checkout-sign-in .header-account-link {
  background: transparent;
}
.checkout-sign-in .header-account-link:hover {
  color: #c41230;
}
.checkout-sign-in__sign-in-icon {
  width: 1.3125rem;
  height: 1.3125rem;
}
.checkout-sign-in .checkout-sign-in__login-mobile .header-account-link-text {
  text-transform: uppercase;
}
.checkout-sign-in__overlay.header-menu-overlay {
  top: 10.6rem;
}
@media all and (min-width: 47.937rem) {
  .checkout-sign-in .header-account-link::after {
    margin: 1.1rem 0 0 .3125rem;
  }
  .checkout-sign-in .header-account-link:hover::after {
    border-top: 0.3125rem solid #c41230;
  }
  .checkout-sign-in__sign-in-icon {
    width: 1.4725rem;
    height: 1.4725rem;
  }
}

.platform-components-page-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  position: relative;
}
.platform-components-page-list .pc-page-list-clickable-card {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
  z-index: 1;
}
.platform-components-page-list .item_card {
  width: 100%;
  flex: 0 0 33.33%;
  padding: 0 10px 20px;
}
@media (max-width: 940px) {
  .platform-components-page-list .item_card {
    flex: 0 0 50%;
  }
}
@media (max-width: 660px) {
  .platform-components-page-list .item_card {
    flex: 0 0 100%;
  }
}
.platform-components-page-list .item_card .article-preview {
  height: 100%;
  overflow: hidden;
}
.platform-components-page-list .item_card .article-preview .article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.platform-components-page-list .item_card .article-preview .article-card .image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  flex: 0 0 230px;
  overflow: hidden;
}
.platform-components-page-list .item_card .article-preview .article-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.4s ease-in-out;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  padding: 26px 23px;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info {
  padding-bottom: 25px;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-tags {
  list-style: none;
  margin: 0;
  padding: 0 0 5px 0;
  display: flex;
  flex-wrap: wrap;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-tags li {
  line-height: 1;
  letter-spacing: 0.3px;
  border-width: 1px;
  border-style: solid;
  border-radius: 15px;
  padding: 5px;
  margin: 0 5px 5px 0;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-date {
  display: block;
  padding: 0px;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  height: initial;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button.button-tertiary-brand,
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button .button-tertiary-light,
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button .button-tertiary-dark {
  width: fit-content;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button:hover {
  cursor: pointer;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button:active {
  outline: none !important;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button:focus {
  outline: 1px solid #000;
}
.platform-components-page-list .item_card .cmp-list__item-link {
  outline: none;
  text-decoration: none;
}
.platform-components-page-list .item_card .cmp-list__item-link .cmp-list__item-title {
  display: block;
  padding: 10px 0;
}
.platform-components-page-list .item_card .cmp-list__item-link:hover .image-wrapper img,
.platform-components-page-list .item_card .cmp-list__item-link:focus .image-wrapper img {
  transform: scale(1.1);
}
.platform-components-page-list .item_card .cmp-list__item-social {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0 10px;
}
.platform-components-page-list .item_card .cmp-list__item-social > a.cmp-list__social-item {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  z-index: 2;
}
.platform-components-page-list .item_card .cmp-list__item-social > a.cmp-list__social-item:last-of-type {
  margin-right: 0;
}
.platform-components-page-list .item_card .cmp-list__item-social > a.cmp-list__social-item svg {
  height: 100%;
  width: 100%;
  fill: currentColor;
}
.platform-components-page-list__offset-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  grid-auto-rows: 100px;
  grid-gap: 10px;
}
.platform-components-page-list__offset-card .item_card {
  grid-row: span 5;
  display: inline-block;
  padding: 0 5px 10px;
}
.platform-components-page-list__offset-card .item_card .article-preview .article-card .content-wrapper {
  height: auto;
  padding: 26px 26px 0px 26px;
}
.platform-components-page-list__offset-card .item_card .article-preview .article-card .content-wrapper .content-info {
  display: flex;
  flex-direction: column-reverse;
}
.platform-components-page-list__offset-card .item_card .article-preview .article-card .image-wrapper {
  border-radius: 40px;
  flex: auto;
}
.platform-components-page-list__offset-card .item_card:nth-child(2n) {
  grid-row: span 4;
}
.platform-components-page-list__offset-card .item_card:nth-child(3n) {
  grid-row: span 6;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-page-list__offset-card {
    grid-auto-rows: 70px;
    grid-gap: 5px;
  }
  .platform-components-page-list__offset-card .item_card .article-preview .article-card .content-wrapper {
    height: fit-content;
    padding: 20px 26px 0px 26px;
  }
}
@media only screen and (max-width: 767px) {
  .platform-components-page-list__offset-card {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    position: relative;
  }
  .platform-components-page-list__offset-card .article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .platform-components-page-list__offset-card .article-card .image-wrapper {
    flex: 0 0 230px !important;
  }
}
.platform-components-page-list__list-view {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  gap: 0 10px;
}
.platform-components-page-list__list-view.no-image {
  padding: 10px;
  margin: 0;
}
.platform-components-page-list__list-view.no-image .item_card {
  padding-bottom: 0;
}
.platform-components-page-list__list-view.no-image .item_card .content-wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 15px;
  padding-bottom: 15px;
}
.platform-components-page-list__list-view.no-image .item_card .content-wrapper .content-info {
  padding-bottom: 15px;
}
.platform-components-page-list__list-view.with-image {
  margin: 0;
}
.platform-components-page-list__list-view.with-image .item_card {
  padding-bottom: 10px;
}
@media (min-width: 500px) {
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card {
    flex-direction: row;
    align-items: center;
  }
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card .content-wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card .content-wrapper .content-info {
    padding-bottom: 15px;
  }
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card.image-left .content-wrapper {
    order: 2;
  }
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card.image-right .content-wrapper {
    order: 1;
  }
}
@media (min-width: 500px) {
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card .image-wrapper {
    margin: 0;
    height: 100% !important;
  }
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card .image-wrapper.image-left {
    order: 1;
  }
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card .image-wrapper.image-right {
    order: 2;
  }
}
@media (min-width: 1024px) {
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card .image-wrapper {
    flex: 0 0 200px !important;
  }
}
@media (max-width: 1023px) and (min-width: 500px) {
  .platform-components-page-list__list-view .item_card:nth-child(n+1) .article-card .image-wrapper {
    flex: 0 0 150px !important;
  }
}
.platform-components-page-list__list-view .page-button {
  width: fit-content;
}
.platform-components-page-list__one-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  gap: 10px 20px;
  height: 100%;
}
.platform-components-page-list__one-card .item_card:nth-child(1) {
  height: 100%;
  min-height: 500px;
  padding-bottom: 10px;
}
@media (max-width: 600px) {
  .platform-components-page-list__one-card .item_card:nth-child(1) {
    height: 75vh;
    max-height: 600px;
  }
}
.platform-components-page-list__one-card .item_card:nth-child(1) .article-card {
  position: relative;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .image-wrapper {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper {
  position: relative;
  justify-content: flex-end !important;
  z-index: 2;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper .content-info {
  z-index: 4;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper .page-button {
  z-index: 5;
}
.platform-components-page-list__one-card .item_card:nth-child(n+2) {
  display: none;
}
.platform-components-page-list__one-card .page-button {
  width: fit-content;
}
.platform-components-page-list__three-card,
.platform-components-page-list__four-card {
  display: grid;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  padding: 10px;
}
.platform-components-page-list__three-card .item_card,
.platform-components-page-list__four-card .item_card {
  padding: 0;
}
.platform-components-page-list__three-card .page-button,
.platform-components-page-list__four-card .page-button {
  width: fit-content;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .article-card,
.platform-components-page-list__four-card .item_card:nth-child(1) .article-card {
  position: relative;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .image-wrapper,
.platform-components-page-list__four-card .item_card:nth-child(1) .image-wrapper {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .content-wrapper,
.platform-components-page-list__four-card .item_card:nth-child(1) .content-wrapper {
  position: relative;
  justify-content: flex-end !important;
  z-index: 2;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .content-wrapper .content-info,
.platform-components-page-list__four-card .item_card:nth-child(1) .content-wrapper .content-info {
  z-index: 4;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .content-wrapper .page-button,
.platform-components-page-list__four-card .item_card:nth-child(1) .content-wrapper .page-button {
  z-index: 5;
}
@media (max-width: 1023px) {
  .platform-components-page-list__three-card .item_card:nth-child(1),
  .platform-components-page-list__four-card .item_card:nth-child(1) {
    height: 75vh;
    max-height: 600px;
  }
}
.platform-components-page-list__three-card {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "MainFeature SecondaryTop" "MainFeature SecondaryBottom";
  gap: 10px 20px;
}
@media (max-width: 1023px) {
  .platform-components-page-list__three-card {
    grid-template-areas: "MainFeature MainFeature" "SecondaryTop SecondaryBottom";
  }
}
@media (max-width: 900px) {
  .platform-components-page-list__three-card {
    grid-template-columns: 1fr;
    grid-template-areas: "MainFeature" "MainFeature" "SecondaryTop" "SecondaryBottom";
  }
}
.platform-components-page-list__three-card .item_card:nth-child(1) {
  grid-area: MainFeature;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .article-card,
.platform-components-page-list__three-card .item_card:nth-child(3) .article-card {
  flex-direction: row;
  align-items: center;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .article-card .content-wrapper,
.platform-components-page-list__three-card .item_card:nth-child(3) .article-card .content-wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .article-card .content-wrapper .content-info,
.platform-components-page-list__three-card .item_card:nth-child(3) .article-card .content-wrapper .content-info {
  padding-bottom: 15px;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .image-wrapper,
.platform-components-page-list__three-card .item_card:nth-child(3) .image-wrapper {
  order: 2;
  margin: 0;
  height: 100% !important;
}
@media (min-width: 1024px) {
  .platform-components-page-list__three-card .item_card:nth-child(2) .image-wrapper,
  .platform-components-page-list__three-card .item_card:nth-child(3) .image-wrapper {
    flex: 0 0 200px !important;
  }
}
@media (max-width: 1023px) {
  .platform-components-page-list__three-card .item_card:nth-child(2) .image-wrapper,
  .platform-components-page-list__three-card .item_card:nth-child(3) .image-wrapper {
    flex: 0 0 150px !important;
  }
}
@media (max-width: 500px) {
  .platform-components-page-list__three-card .item_card:nth-child(2) .image-wrapper,
  .platform-components-page-list__three-card .item_card:nth-child(3) .image-wrapper {
    display: none;
  }
}
.platform-components-page-list__three-card .item_card:nth-child(2) {
  grid-area: SecondaryTop;
}
.platform-components-page-list__three-card .item_card:nth-child(3) {
  grid-area: SecondaryBottom;
}
.platform-components-page-list__three-card .item_card:nth-child(n+4) {
  display: none;
}
.platform-components-page-list__four-card {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "MainFeature MainFeature SecondaryTop" "MainFeature MainFeature SecondaryMiddle" "MainFeature MainFeature SecondaryBottom";
  gap: 0 20px;
}
@media (max-width: 1023px) and (min-width: 901px) {
  .platform-components-page-list__four-card {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .platform-components-page-list__four-card {
    grid-template-areas: "MainFeature MainFeature MainFeature" "SecondaryTop SecondaryMiddle SecondaryBottom";
  }
}
@media (max-width: 900px) {
  .platform-components-page-list__four-card {
    grid-template-columns: 1fr;
    grid-template-areas: "MainFeature" "MainFeature" "SecondaryTop" "SecondaryMiddle" "SecondaryBottom";
  }
}
.platform-components-page-list__four-card .item_card:nth-child(1) {
  grid-area: MainFeature;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .article-card,
.platform-components-page-list__four-card .item_card:nth-child(3) .article-card,
.platform-components-page-list__four-card .item_card:nth-child(4) .article-card {
  flex-direction: row;
  align-items: center;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .article-card .content-wrapper,
.platform-components-page-list__four-card .item_card:nth-child(3) .article-card .content-wrapper,
.platform-components-page-list__four-card .item_card:nth-child(4) .article-card .content-wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 15px;
  padding-bottom: 15px;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .article-card .content-wrapper .content-info,
.platform-components-page-list__four-card .item_card:nth-child(3) .article-card .content-wrapper .content-info,
.platform-components-page-list__four-card .item_card:nth-child(4) .article-card .content-wrapper .content-info {
  padding-bottom: 15px;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .image-wrapper,
.platform-components-page-list__four-card .item_card:nth-child(3) .image-wrapper,
.platform-components-page-list__four-card .item_card:nth-child(4) .image-wrapper {
  display: none;
}
.platform-components-page-list__four-card .item_card:nth-child(2) {
  grid-area: SecondaryTop;
}
.platform-components-page-list__four-card .item_card:nth-child(3) {
  grid-area: SecondaryMiddle;
}
.platform-components-page-list__four-card .item_card:nth-child(4) {
  grid-area: SecondaryBottom;
}
.platform-components-page-list__four-card .item_card:nth-child(n+5) {
  display: none;
}
@media (max-width: 1023px) and (min-width: 901px) {
  .platform-components-page-list__four-card .item_card:nth-child(3) {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.platform-components-page-list.slick-slider {
  margin: 0;
}
.platform-components-page-list .slick-dots {
  width: 100%;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .slick-track {
  margin-left: 0;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card {
  flex: unset;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview {
  background: transparent;
  border: 0;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link .article-card {
  width: 120px;
  display: block;
  margin: 0 auto;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link .article-card .image-wrapper {
  display: flex;
  justify-content: center;
  border-radius: 100%;
  width: 105px;
  height: 105px;
  margin: auto;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link .article-card .image-wrapper > img {
  position: unset;
  height: 105px;
  width: 105px;
  border-radius: 100%;
  transition: transform .2s ease;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link .article-card > .content-wrapper {
  padding: 0;
  text-align: center;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link .article-card > .content-wrapper .content-info {
  padding-bottom: 0;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link .article-card > .content-wrapper .content-info span {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  letter-spacing: 0;
  color: #2e2e2e;
  line-height: 1.2;
  text-align: center;
  text-transform: unset;
  padding: 5px 0 0;
  transition: .2s color ease;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link .article-card > .content-wrapper .page-button {
  display: none;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link:hover .article-card .image-wrapper > img {
  transition: transform 4s ease-out;
  transform: scale(1.25);
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link:hover .article-card > .content-wrapper {
  padding: 0;
  text-align: center;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link:hover .article-card > .content-wrapper .content-info {
  padding-bottom: 0;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .item_card .article-preview .cmp-list__item-link:hover .article-card > .content-wrapper .content-info span {
  color: #9b132b;
}
.platform-components-page-list.platform-components-page-list__circle-carousel-view .slick-list,
.platform-components-page-list.platform-components-page-list__circle-carousel-view .slick-dots {
  width: 100%;
}
.platform-components-page-list.platform-components-page-list__author-view .item_card .article-preview .article-card .image-wrapper {
  height: 245px;
  display: flex;
  justify-content: center;
  min-height: unset;
  width: 100%;
  margin-bottom: 15px;
}
.platform-components-page-list.platform-components-page-list__author-view .item_card .article-preview .article-card .image-wrapper img {
  position: relative;
  height: 100%;
  width: 245px;
  border-radius: 100%;
}
.platform-components-page-list.platform-components-page-list__author-view .item_card .article-preview .article-card .cmp-list__category {
  text-align: center;
  width: 100%;
  display: inline-block;
}
.platform-components-page-list.platform-components-page-list__author-view .item_card .article-preview .article-card .cmp-list__item-title {
  text-align: center;
  display: block;
}
.platform-components-page-list.platform-components-page-list__author-view .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description {
  text-align: center;
  display: inline-block;
  margin-top: 10px;
}
.platform-components-page-list {
  margin: 0 -10px;
  max-width: unset;
}
.platform-components-page-list .item_card .article-preview {
  background: #ffffff;
  border: 1px solid #e2e2e5;
  box-shadow: none;
  border-radius: 0;
}
.platform-components-page-list .item_card .article-preview.dpc-video-bg .image-wrapper {
  position: absolute;
}
.platform-components-page-list .item_card .article-preview.dpc-video-bg .content-wrapper {
  justify-content: flex-end;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
}
.platform-components-page-list .item_card .article-preview.dpc-video-bg .content-wrapper .cmp-list__item-date {
  color: #000000 !important;
}
@media (max-width: 1023px) {
  .platform-components-page-list .item_card .article-preview.dpc-video-bg .content-wrapper {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 68%, #ffffff 100%);
  }
}
.platform-components-page-list .item_card .article-preview.dpc-video-bg .content-info {
  padding-top: 230px;
}
.platform-components-page-list .item_card .article-preview .article-card video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover';
  z-index: 0;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-size: 1.1875rem;
  line-height: 100%;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.063rem;
  color: #000000;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title {
    font-size: 1.375rem;
  }
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  text-transform: none;
  color: #000000;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description {
    font-size: 1rem;
  }
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-date {
  font-family: unset;
  font-weight: unset;
  color: #5e5e5e;
  font-size: 0.75rem;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-date {
    font-size: 0.75rem;
  }
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-tags li {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #2e2e2e;
  border-color: #2e2e2e;
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__category {
  font-family: unset;
  font-weight: unset;
  color: #5e5e5e;
  font-size: 0.75rem;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__category {
    font-size: 0.75rem;
  }
}
.platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 150%;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 0;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card .article-preview .article-card .content-wrapper .page-button {
    font-size: 0.875rem;
  }
}
.platform-components-page-list .item_card .cmp-list__item-link:hover .cmp-list__item-title {
  color: #9b132b;
}
.platform-components-page-list__list-view .item_card:nth-child(n+1) .cmp-list__item-date {
  font-size: 0.875rem !important;
}
.platform-components-page-list__list-view .item_card.with-image .cmp-list__item-title {
  font-size: 0.875rem !important;
  line-height: 120% !important;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list__list-view .item_card.with-image .cmp-list__item-title {
    font-size: 0.875rem !important;
  }
}
.platform-components-page-list__list-view .item_card.with-image .page-button {
  position: relative;
  border-radius: 0 !important;
}
.platform-components-page-list__list-view .item_card.with-image .page-button:after {
  font-family: 'maytag-icons';
  content: '\e905';
  transition: transform 0.4s ease-in-out;
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.platform-components-page-list__list-view .item_card.with-image .page-button:hover:after,
.platform-components-page-list__list-view .item_card.with-image .page-button:active:after {
  transform: translateX(3px);
}
.platform-components-page-list__list-view .item_card.no-image {
  border-bottom: 1px solid #e2e2e5;
}
.platform-components-page-list__list-view .item_card.no-image:last-child {
  border-bottom: none;
}
.platform-components-page-list__list-view .item_card.no-image .article-preview {
  background: unset !important;
  box-shadow: unset !important;
  border-radius: unset !important;
  border: unset !important;
}
.platform-components-page-list__list-view .item_card.no-image .cmp-list__item-title {
  font-size: 0.875rem !important;
  line-height: 120% !important;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list__list-view .item_card.no-image .cmp-list__item-title {
    font-size: 0.875rem !important;
  }
}
.platform-components-page-list__list-view .item_card.no-image .page-button {
  position: relative;
  border-radius: 0 !important;
}
.platform-components-page-list__list-view .item_card.no-image .page-button:after {
  font-family: 'maytag-icons';
  content: '\e905';
  transition: transform 0.4s ease-in-out;
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.platform-components-page-list__list-view .item_card.no-image .page-button:hover:after,
.platform-components-page-list__list-view .item_card.no-image .page-button:active:after {
  transform: translateX(3px);
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-date {
  color: #000000 !important;
  font-size: 0.875rem !important;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-title {
  line-height: 120% !important;
}
.platform-components-page-list__one-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper .cmp-list__item-date {
  color: #000000 !important;
}
.platform-components-page-list__one-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper:after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
}
@media (max-width: 1023px) {
  .platform-components-page-list__one-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 68%, #ffffff 100%);
  }
}
.platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-title,
.platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-description {
  color: #ffffff !important;
}
.platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}
@media (max-width: 1023px) {
  .platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 68%, #000000 100%);
  }
}
.platform-components-page-list__three-card .item_card:nth-child(1) .content-wrapper:after,
.platform-components-page-list__four-card .item_card:nth-child(1) .content-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-date {
  color: #000000 !important;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-title {
  line-height: 120% !important;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(1) .cmp-list__item-date,
.platform-components-page-list__three-card .item_card:nth-child(2) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(2) .cmp-list__item-date,
.platform-components-page-list__three-card .item_card:nth-child(3) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(3) .cmp-list__item-date,
.platform-components-page-list__three-card .item_card:nth-child(4) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(4) .cmp-list__item-date {
  font-size: 0.875rem !important;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(1) .cmp-list__item-title,
.platform-components-page-list__three-card .item_card:nth-child(2) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(2) .cmp-list__item-title,
.platform-components-page-list__three-card .item_card:nth-child(3) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(3) .cmp-list__item-title,
.platform-components-page-list__three-card .item_card:nth-child(4) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(4) .cmp-list__item-title {
  line-height: 120% !important;
}
.platform-components-page-list__three-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__four-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper .cmp-list__item-date {
  color: #000000 !important;
}
.platform-components-page-list__three-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper:after,
.platform-components-page-list__four-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper:after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
}
@media (max-width: 1023px) {
  .platform-components-page-list__three-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper:after,
  .platform-components-page-list__four-card.platform-components-page-list__gradient-light .item_card:nth-child(1) .content-wrapper:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 68%, #ffffff 100%);
  }
}
.platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-title,
.platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-title,
.platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-description,
.platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-description {
  color: #ffffff !important;
}
.platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper:after,
.platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}
@media (max-width: 1023px) {
  .platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper:after,
  .platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 68%, #000000 100%);
  }
}
.platform-components-page-list__three-card .item_card:nth-child(2) .cmp-list__item-title,
.platform-components-page-list__three-card .item_card:nth-child(3) .cmp-list__item-title {
  font-size: 0.875rem !important;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list__three-card .item_card:nth-child(2) .cmp-list__item-title,
  .platform-components-page-list__three-card .item_card:nth-child(3) .cmp-list__item-title {
    font-size: 0.875rem !important;
  }
}
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button {
  position: relative;
  border-radius: 0 !important;
  color: #c41230 !important;
  background-color: transparent!important;
  padding: 15px 0 !important;
  border-width: 0 !important;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button:after,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button:after {
  font-family: 'maytag-icons';
  content: '\e905';
  transition: transform 0.4s ease-in-out;
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button:hover,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button:hover,
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button:active,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button:active {
  color: #9b132b !important;
  background-color: transparent!important;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button:hover:after,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button:hover:after,
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button:active:after,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button:active:after {
  transform: translateX(3px);
}
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button:hover,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button:hover {
  border-width: 0 !important;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .article-preview,
.platform-components-page-list__four-card .item_card:nth-child(3) .article-preview,
.platform-components-page-list__four-card .item_card:nth-child(4) .article-preview {
  background: unset !important;
  box-shadow: unset !important;
  border-radius: unset !important;
  border: unset !important;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(3) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(4) .cmp-list__item-title {
  font-size: 0.875rem !important;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list__four-card .item_card:nth-child(2) .cmp-list__item-title,
  .platform-components-page-list__four-card .item_card:nth-child(3) .cmp-list__item-title,
  .platform-components-page-list__four-card .item_card:nth-child(4) .cmp-list__item-title {
    font-size: 0.875rem !important;
  }
}
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button {
  position: relative;
  border-radius: 0 !important;
  color: #c41230 !important;
  background-color: transparent!important;
  padding: 15px 0 !important;
  border-width: 0 !important;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button:after,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button:after,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button:after {
  font-family: 'maytag-icons';
  content: '\e905';
  transition: transform 0.4s ease-in-out;
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button:hover,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button:hover,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button:hover,
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button:active,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button:active,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button:active {
  color: #9b132b !important;
  background-color: transparent!important;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button:hover:after,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button:hover:after,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button:hover:after,
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button:active:after,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button:active:after,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button:active:after {
  transform: translateX(3px);
}
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button:hover,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button:hover,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button:hover {
  border-width: 0 !important;
}
.platform-components-page-list__four-card .item_card:nth-child(2) {
  border-bottom: 1px solid #e2e2e5;
}
.platform-components-page-list__four-card .item_card:nth-child(3) {
  border-bottom: 1px solid #e2e2e5;
}
@media (max-width: 1023px) and (min-width: 901px) {
  .platform-components-page-list__four-card .item_card:nth-child(2) {
    border-bottom: none;
  }
  .platform-components-page-list__four-card .item_card:nth-child(3) {
    border-bottom: none;
    border-left: 1px solid #e2e2e5;
    border-right: 1px solid #e2e2e5;
  }
}
.platform-components-page-list__author-view .item_card .article-preview .article-card .cmp-list__category {
  font-size: 12px;
}
.platform-components-page-list__author-view .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description {
  font-size: 14px;
}
.platform-components-page-list__author-view .item_card .article-preview .article-card .content-wrapper {
  padding-top: 0px;
}
.platform-components-page-list__author-view .item_card .article-preview .article-card .image-wrapper {
  height: 100%;
  overflow: visible;
  margin-top: 20px;
}
.platform-components-page-list__author-view .item_card .article-preview .article-card .image-wrapper img {
  position: relative;
  height: 245px;
}
.platform-components-page-list__masthead-view,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container {
  margin: 0;
}
.platform-components-page-list__masthead-view .item_card,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card,
.platform-components-page-list__masthead-view .item_card.slick-slide,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide {
  padding: 0;
  flex: initial;
  width: 100%;
  height: 70vh!important;
  position: relative;
}
.platform-components-page-list__masthead-view .item_card .article-preview,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview {
  border: none;
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .platform-components-page-list__masthead-view .item_card .article-preview .article-card,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card,
  .platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card {
    justify-content: end;
  }
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .image-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .image-wrapper,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .image-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .image-wrapper {
  position: absolute;
  flex: 0 0 100%;
}
@media only screen and (max-width: 767px) {
  .platform-components-page-list__masthead-view .item_card .article-preview .article-card .image-wrapper,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .image-wrapper,
  .platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .image-wrapper,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .image-wrapper {
    flex: 0 0 80%;
    height: 80%;
    top: 0;
  }
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper {
  background: #ffffff;
  position: relative;
  width: 460px;
  height: 360px;
  padding: 0 70px;
  margin: 0 14vw;
  flex: initial;
  justify-content: center;
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper,
  .platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper {
    padding: 25px 45px;
    width: 95%;
    min-width: 0;
    min-height: 250px;
    margin: 0;
    height: auto;
  }
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title {
  font-size: 1.875rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
  .platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
  .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title {
    font-size: 1.5625rem;
  }
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-title,
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__category,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__category,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__category,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__category,
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper .content-info .cmp-list__item-description {
  transition: background-color 0.35s ease-in, color 0.35s ease-in, transform 0.35s ease-in, opacity 0.35s ease-in, letter-spacing 0.35s ease-in;
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper svg,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper svg,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper svg,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper svg {
  height: auto;
  overflow: visible;
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper svg path,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper svg path,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper svg path,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper svg path {
  transition: background-color 0.35s ease-in, color 0.35s ease-in, transform 0.35s ease-in, opacity 0.35s ease-in, letter-spacing 0.35s ease-in;
  fill: #c41230;
  transform-origin: left;
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper svg .line,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper svg .line,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper svg .line,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper svg .line {
  transform: scaleX(1);
}
.platform-components-page-list__masthead-view .item_card .article-preview .article-card .content-wrapper svg .head,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .article-preview .article-card .content-wrapper svg .head,
.platform-components-page-list__masthead-view .item_card.slick-slide .article-preview .article-card .content-wrapper svg .head,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .article-preview .article-card .content-wrapper svg .head {
  transform: translateX(1);
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link {
  pointer-events: none;
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link .content-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link .content-wrapper,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link .content-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link .content-wrapper {
  pointer-events: initial;
  overflow: hidden;
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link .content-wrapper .content-info,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link .content-wrapper .content-info,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link .content-wrapper .content-info,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link .content-wrapper .content-info,
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link .content-wrapper svg,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link .content-wrapper svg,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link .content-wrapper svg,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link .content-wrapper svg {
  z-index: 2;
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link .content-wrapper:before,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link .content-wrapper:before,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link .content-wrapper:before,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link .content-wrapper:before {
  z-index: 1;
  transform-origin: top left;
  transform: scale(0.8);
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, #2e2e2e 27%, #ffffff 57%);
  opacity: 0;
  transition: background-color 0.35s ease-in, color 0.35s ease-in, transform 0.35s ease-in, opacity 0.35s ease-in, letter-spacing 0.35s ease-in;
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .article-card .content-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .article-card .content-wrapper,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper {
  pointer-events: initial;
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-title,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-title,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-title,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-title,
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__category,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__category,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__category,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__category,
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-description,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-description,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-description,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper .content-info .cmp-list__item-description {
  opacity: .87;
  color: #ffffff;
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .article-card .content-wrapper:before,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .article-card .content-wrapper:before,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper:before,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .article-card .content-wrapper:before {
  -webkit-transform: scale(4);
  -ms-transform: scale(4);
  transform: scale(4);
  opacity: 1;
  transition: background-color 0.35s ease-in, color 0.35s ease-in, transform 0.35s ease-in, opacity 0.35s ease-in, letter-spacing 0.35s ease-in;
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .article-card svg .line,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .article-card svg .line,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .article-card svg .line,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .article-card svg .line {
  transform: scaleX(1.5);
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .article-card svg .head,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .article-card svg .head,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .article-card svg .head,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .article-card svg .head {
  transform: translateX(13px);
}
.platform-components-page-list__masthead-view .item_card .cmp-list__item-link:hover .image-wrapper img,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card .cmp-list__item-link:hover .image-wrapper img,
.platform-components-page-list__masthead-view .item_card.slick-slide .cmp-list__item-link:hover .image-wrapper img,
.pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card.slick-slide .cmp-list__item-link:hover .image-wrapper img {
  transform: scale(1);
}
@media only screen and (max-width: 767px) {
  .pc-carousel-wrapper[data-overlay-indicators-mobile="true"] .platform-components-page-list__masthead-carousel-view.pc-carousel-container[data-indicators-mobile="true"] .item_card.slick-slide .article-preview .article-card .content-wrapper {
    padding: 25px 45px 45px;
  }
}
.aem-AuthorLayer-Edit .platform-components-page-list__masthead-view .item_card,
.aem-AuthorLayer-Layouting .platform-components-page-list__masthead-view .item_card,
.aem-AuthorLayer-Developer .platform-components-page-list__masthead-view .item_card,
.aem-AuthorLayer-Timewarp .platform-components-page-list__masthead-view .item_card,
.aem-AuthorLayer-Preview .platform-components-page-list__masthead-view .item_card,
.aem-AuthorLayer-Edit .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card,
.aem-AuthorLayer-Layouting .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card,
.aem-AuthorLayer-Developer .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card,
.aem-AuthorLayer-Timewarp .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card,
.aem-AuthorLayer-Preview .pc-carousel-wrapper .platform-components-page-list__masthead-carousel-view.pc-carousel-container .item_card {
  min-height: 200px!important;
  max-height: 500px!important;
  overflow: hidden;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 {
  width: 100%;
  height: fit-content !important;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 {
    margin-block: 30px;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview {
  width: 100%;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .cmp-list__item-link {
  display: block;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card {
  display: grid;
  box-sizing: border-box;
  height: fit-content;
  margin: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card {
    margin: 0 0 0 7%;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-media-grid {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  min-height: 750px;
  height: 100vh;
  max-height: 1200px;
  grid-template-columns: 1fr 3fr 9fr 2fr;
  grid-template-rows: minmax(55px, 2fr) minmax(278px, 9fr) minmax(25px, 2fr) 3fr 9fr;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-media-grid {
    min-height: 800px;
    height: 100vh;
    max-height: 65vw;
    grid-template-columns: 1fr 3fr 6fr 6fr;
    grid-template-rows: 1fr 6fr 3fr;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-media-wrapper {
  width: 100%;
  height: 100%;
  overflow: clip;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-media-wrapper img,
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-media-wrapper video {
  position: relative;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-primary {
  grid-column: 2 / 5;
  grid-row: 2 / 4;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-primary {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-primary img,
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-primary video {
  object-position: top;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-primary img,
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-primary video {
    object-position: unset;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-secondary {
  grid-column: 1 / 4;
  grid-row: 1 / 5;
  max-height: 700px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-secondary {
    width: 550px;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-secondary {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-width: 350px;
    max-height: unset;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-texture {
  grid-column: 2 / 5;
  grid-row: 3 / 6;
  position: relative;
  left: 87px;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-texture {
    grid-column: 4 / 5;
    grid-row: 1 / 4;
    left: 0;
    z-index: 0;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-texture img {
  object-fit: contain;
  object-position: top right;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-texture img {
    object-position: right;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-content-grid {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  min-height: fit-content;
  height: 100%;
  max-height: 1200px;
  grid-template-columns: 1fr 13fr 1fr;
  grid-template-rows: minmax(325px, 11fr) minmax(max-content, 12fr);
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .dpc-content-grid {
    min-height: 800px;
    height: 100vh;
    max-height: 65vw;
    display: grid;
    grid-template-columns: 6fr 5fr;
    grid-template-rows: minmax(128px, 2fr) minmax(max-content, 9fr);
    margin: 0;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .content-wrapper {
  display: block;
  box-sizing: border-box;
  min-height: unset;
  height: fit-content;
  width: 100%;
  padding: 32px 25px;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .content-wrapper {
    width: 550px;
    padding: 32px 25px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .content-wrapper {
    width: 480px;
    padding: 62px 78px 62px 84px;
    margin: 0 100px 100px 0;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-self: left;
    align-self: start;
    z-index: 2;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .content-wrapper > * {
  position: relative;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .content-wrapper .content-info {
  width: 100%;
  padding: 0;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .content-wrapper .content-info > * {
  display: block;
  padding: 0;
}
.platform-components-page-list .item_card.dpc-masthead-collage-1 .article-preview .article-card .content-wrapper .content-info .cmp-list__category {
  width: fit-content;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card {
    margin: 0 7% 0 0;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-media-grid {
  grid-template-columns: 2fr 9fr 3fr 1fr;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-media-grid {
    grid-template-columns: 6fr 6fr 3fr 1fr;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-primary {
  grid-column: 1 / 4;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-primary {
    grid-column: 2 / 4;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-primary img {
    object-position: top left;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-secondary {
  grid-column: 2 / 5;
}
@media only screen and (min-width: 768px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-secondary {
    justify-self: right;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-secondary {
    grid-column: 3 / 5;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-texture {
  grid-column: 1 / 4;
  left: unset;
  right: 160px;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-texture {
    grid-column: 1 / 2;
    right: unset;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-texture img {
  object-position: top left;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-texture img {
    object-position: left;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .dpc-content-grid {
    grid-template-columns: 5fr 6fr;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-1:nth-child(even) .article-preview .article-card .content-wrapper {
    grid-column: 1 / 2;
    margin: 0 0 100px 100px;
    justify-self: right;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 {
  width: 100%;
  height: fit-content !important;
  padding: 0;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview {
  width: 100%;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .cmp-list__item-link {
  display: block;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card {
  display: grid;
  box-sizing: border-box;
  height: fit-content;
  margin: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card {
    margin-inline: 7%;
    margin-block: 30px;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-media-grid {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  min-height: 750px;
  height: 100vh;
  max-height: 1200px;
  grid-template-columns: 1fr 10fr 4fr;
  grid-template-rows: minmax(380px, 14fr) minmax(54px, 2fr) 10fr minmax(135px, 5fr);
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-media-grid {
    min-height: 800px;
    height: 100vh;
    max-height: 65vw;
    grid-template-columns: 5fr 7fr;
    grid-template-rows: repeat(12, 1fr);
    gap: 20px;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-media-wrapper {
  width: 100%;
  height: 100%;
  overflow: clip;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-media-wrapper img,
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-media-wrapper video {
  position: relative;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-primary {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-primary {
    grid-column: 2 / 3;
    grid-row: 1 / 11;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-secondary {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
  max-height: 225px;
  min-width: 300px;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-secondary {
    width: 550px;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-secondary {
    grid-column: 1 / 2;
    grid-row: 1 / 8;
    max-height: 100%;
    min-width: unset;
    z-index: 2;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-texture {
  grid-column: 2 / 4;
  grid-row: 3 / 5;
  position: relative;
  left: 0px;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-texture {
    grid-column: 1 / 2;
    grid-row: 5 / 13;
    left: 0px;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-texture img {
  object-fit: contain;
  object-position: bottom right;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-texture img {
    object-position: bottom;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-content-grid {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  min-height: fit-content;
  height: 100%;
  max-height: 1200px;
  grid-template-columns: 1fr 13fr 1fr;
  grid-template-rows: minmax(405px, 14fr) minmax(max-content, 10fr) minmax(135px, 5fr);
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .dpc-content-grid {
    min-height: 800px;
    height: 100vh;
    max-height: 65vw;
    grid-template-columns: 6fr 6fr;
    grid-template-rows: 9fr 3fr;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .content-wrapper {
  display: block;
  box-sizing: border-box;
  min-height: unset;
  height: fit-content;
  width: 100%;
  padding: 32px 25px;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .content-wrapper {
    width: 550px;
    padding: 32px 25px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .content-wrapper {
    width: 480px;
    padding: 62px 78px 62px 84px;
    margin: 100px 0 0 100px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: right;
    align-self: end;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .content-wrapper > * {
  position: relative;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .content-wrapper .content-info {
  width: 100%;
  padding: 0;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .content-wrapper .content-info > * {
  display: block;
  padding: 0;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2 .article-preview .article-card .content-wrapper .content-info .cmp-list__category {
  width: fit-content;
}
.platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-media-grid {
  grid-template-columns: 4fr 10fr 1fr;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-media-grid {
    grid-template-columns: 7fr 5fr;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-primary {
  grid-column: 1 / 4;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-primary {
    grid-column: 1 / 2;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-secondary {
  grid-column: 2 / 4;
}
@media only screen and (min-width: 768px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-secondary {
    justify-self: right;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-secondary {
    grid-column: 2 / 3;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-texture {
  grid-column: 1 / 3;
  position: relative;
  left: unset;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-texture {
    grid-column: 2 / 3;
    left: 135px;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-texture img {
  object-position: bottom left;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .dpc-texture img {
    object-position: bottom;
  }
}
.platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .content-wrapper {
  grid-column: 2 / 3;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-collage-2:nth-child(odd) .article-preview .article-card .content-wrapper {
    grid-column: 2 / 3;
    margin: 100px 100px 0 0;
    justify-self: left;
  }
}
.platform-components-page-list .item_card.dpc-masthead-feature-video {
  width: 100%;
  height: fit-content !important;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-feature-video {
    margin-block: 30px;
  }
}
.platform-components-page-list .item_card.dpc-masthead-feature-video.dpc-animate-full-width-on-scroll {
  height: 150vh !important;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video.dpc-animate-full-width-on-scroll .cmp-list__item-link .article-card .content-wrapper:before {
  display: none;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video.dpc-animate-full-width-on-scroll .cmp-list__item-link:hover .cmp-list__item-title,
.platform-components-page-list .item_card.dpc-masthead-feature-video.dpc-animate-full-width-on-scroll .cmp-list__item-link:hover .cmp-list__category,
.platform-components-page-list .item_card.dpc-masthead-feature-video.dpc-animate-full-width-on-scroll .cmp-list__item-link:hover .cmp-list__item-description {
  opacity: 1!important;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview {
  min-height: 750px;
  height: 100vh;
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview {
    min-height: 800px;
    height: 100vh;
  }
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 25px;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card > *,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper > * {
  grid-area: 1 / 1 / 2 / 2;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .dpc-video-overlay,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .dpc-video-overlay {
  height: 100%;
  background: radial-gradient(35.4% 35.4% at 50% 50%, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .content-wrapper,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .content-wrapper {
  min-height: unset;
  height: fit-content;
  width: 372px;
  padding: 32px 25px;
  margin-inline: auto;
  text-align: center;
  background: unset;
}
@media only screen and (max-width: 767px) {
  .platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .content-wrapper,
  .platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .content-wrapper {
    max-width: 372px;
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .content-wrapper,
  .platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .content-wrapper {
    width: 660px;
    padding: 62px 78px 62px 84px;
  }
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .content-wrapper svg,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .content-wrapper svg {
  margin-inline: auto;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .content-wrapper .content-info,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .content-wrapper .content-info {
  padding: 0;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .content-wrapper .content-info > *,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .content-wrapper .content-info > * {
  display: block;
  padding: 0;
}
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .article-card .content-wrapper .content-info .cmp-list__category,
.platform-components-page-list .item_card.dpc-masthead-feature-video .article-preview .dpc-media-wrapper .content-wrapper .content-info .cmp-list__category {
  width: fit-content;
  margin-inline: auto;
}
.platform-components-page-list__list-view .item_card:nth-child(n+1) .cmp-list__item-date {
  font-size: 0.625rem !important;
  text-transform: uppercase;
}
.platform-components-page-list__list-view .item_card.with-image .cmp-list__item-title {
  font-size: 0.875rem !important;
}
.platform-components-page-list__list-view .item_card.with-image .page-button:after {
  font-family: 'kitchenaid-icons', sans-serif;
  margin-bottom: unset;
}
.platform-components-page-list__list-view .item_card.no-image .cmp-list__item-title {
  font-size: 0.875rem !important;
}
.platform-components-page-list__list-view .item_card.no-image .page-button:after {
  font-family: 'kitchenaid-icons', sans-serif;
  margin-bottom: unset;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-date {
  font-size: 0.625rem !important;
  text-transform: uppercase;
}
.platform-components-page-list__one-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-title {
  line-height: 120% !important;
}
.platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-title,
.platform-components-page-list__one-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-description {
  color: #ffffff !important;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(1) .content-wrapper .cmp-list__item-date {
  text-transform: uppercase;
}
.platform-components-page-list__three-card .item_card:nth-child(1) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(1) .cmp-list__item-date,
.platform-components-page-list__three-card .item_card:nth-child(2) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(2) .cmp-list__item-date,
.platform-components-page-list__three-card .item_card:nth-child(3) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(3) .cmp-list__item-date,
.platform-components-page-list__three-card .item_card:nth-child(4) .cmp-list__item-date,
.platform-components-page-list__four-card .item_card:nth-child(4) .cmp-list__item-date {
  font-size: 0.625rem !important;
  text-transform: uppercase;
}
.platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-date,
.platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-title,
.platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-title,
.platform-components-page-list__three-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-description,
.platform-components-page-list__four-card.platform-components-page-list__gradient-dark .item_card:nth-child(1) .content-wrapper .cmp-list__item-description {
  color: #ffffff !important;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .cmp-list__item-title,
.platform-components-page-list__three-card .item_card:nth-child(3) .cmp-list__item-title {
  font-size: 0.875rem !important;
}
.platform-components-page-list__three-card .item_card:nth-child(2) .page-button:after,
.platform-components-page-list__three-card .item_card:nth-child(3) .page-button:after {
  font-family: 'kitchenaid-icons', sans-serif;
  margin-bottom: unset;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(3) .cmp-list__item-title,
.platform-components-page-list__four-card .item_card:nth-child(4) .cmp-list__item-title {
  font-size: 0.875rem !important;
}
.platform-components-page-list__four-card .item_card:nth-child(2) .page-button:after,
.platform-components-page-list__four-card .item_card:nth-child(3) .page-button:after,
.platform-components-page-list__four-card .item_card:nth-child(4) .page-button:after {
  font-family: 'kitchenaid-icons', sans-serif;
  margin-bottom: unset;
}

.comparison-chart__heading {
  text-align: center;
}

.comparison-chart__modals .modal-box .close-modal-btn svg {
  fill: #a00a1d;
}

.global-navigation {
  height: 0;
}
.global-navigation .sidebar-icon-toggle {
  transition: all 0.2s;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #edb110;
  -webkit-tap-highlight-color: transparent;
}
.global-navigation .sidebar-icon-toggle .sidebar-icon-toggle_icon {
  margin: 1rem 1rem 0 1rem;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle {
  background-color: #eeeeee;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .horizontal {
  transition: all 0.2s;
  box-sizing: border-box;
  opacity: 0;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .horizontal.mobile-menu-close-text {
  opacity: unset;
  font-family: "HelveticaNeue", sans-serif;
  font-size: 0.625rem;
  font-weight: bold;
  color: #000000;
  display: block;
  width: 100%;
  text-align: center;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .horizontal.mobile-menu-text {
  display: none;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .diagonal.part-1 {
  transition: all .2s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: .625rem;
  height: 0.25rem;
  border-radius: 0.25rem;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .diagonal.part-2 {
  transition: all .2s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -0.56rem;
  height: 0.25rem;
  border-radius: 0.25rem;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .global-menu {
  transform: translateX(0);
  border-top: solid 2px #edb110;
  overflow-y: auto;
}
.global-navigation .spinner-mobile {
  transition: all 0.2s;
  box-sizing: border-box;
  position: absolute;
  height: 0.125rem;
  width: 100%;
  border-radius: 20%;
  background-color: #000000;
}
.global-navigation .diagonal.part-1 {
  position: relative;
  transition: all 0.2s;
  box-sizing: border-box;
  float: left;
}
.global-navigation .diagonal.part-2 {
  transition: all 0.2s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 0.1875rem;
}
.global-navigation .horizontal {
  transition: all 0.2s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 0.1875rem;
}
.global-navigation .horizontal.mobile-menu-close-text {
  display: none;
}
.global-navigation .mobile-menu-text {
  font-family: "HelveticaNeue", sans-serif;
  font-size: 0.625rem;
  font-weight: bold;
  color: #000000;
  width: 100%;
  text-align: center;
}
.global-navigation .global-menu_container .primary-link.hidden {
  display: none;
  transition: 0.2s;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .global-navigation {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: inherit;
  }
  .global-navigation .sidebar-icon-toggle {
    display: none;
  }
  .global-navigation .global-navigation {
    margin: 0 8.4375rem 0 8.4375rem;
  }
  .global-navigation input[type="checkbox"]:not(:checked)#openGlobalMenuTrigger ~ .global-menu {
    display: flex;
  }
  .global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .global-menu {
    transform: none;
    border-top: none;
  }
}
@media all and (min-width: 85.375rem) {
  .global-navigation {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: inherit;
  }
  .global-navigation .sidebar-icon-toggle {
    display: none;
  }
  .global-navigation .global-navigation {
    margin: 0 8.4375rem 0 8.4375rem;
  }
  .global-navigation input[type="checkbox"]:not(:checked)#openGlobalMenuTrigger ~ .global-menu {
    display: flex;
  }
  .global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .global-menu {
    transform: none;
    border-top: none;
  }
}
@media all and (min-width: 85.375rem) {
  .author-mode .global-navigation {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: inherit;
  }
  .author-mode .global-navigation .sidebar-icon-toggle {
    display: none;
  }
  .author-mode .global-navigation .global-navigation {
    margin: 0 8.4375rem 0 8.4375rem;
  }
  .author-mode .global-navigation input[type="checkbox"]:not(:checked)#openGlobalMenuTrigger ~ .global-menu {
    display: flex;
  }
  .author-mode .global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .global-menu {
    transform: none;
    border-top: none;
  }
}
@media all and (max-width: 63.938rem) {
  .global-menu_container .primary-link.open {
    background-color: transparent !important;
    transition: none;
  }
}
/* Declare the same value for min- and max-width to avoid colliding with desktops */
@media only screen and (min-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .global-menu_container {
    display: block !important;
  }
  .global-menu_container .primary-link.open ~ .hidden-slider,
  .global-menu_container .primary-link.ipad-open ~ .hidden-slider {
    opacity: 0 !important;
  }
  .global-navigation .global-menu_container .primary-link.ipad-open.open {
    background-color: #edb110;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance:none) and (stroke-color:transparent) {
    .global-menu_container {
      display: block !important;
    }
    .global-navigation .global-menu_container .primary-link.open {
      background-color: #edb110;
      transition: .5s;
    }
    .global-menu_container .hidden-slider {
      display: none !important;
    }
    .global-menu_container .primary-link.open ~ .hidden-slider,
    .global-menu_container .primary-link.ipad-open ~ .hidden-slider {
      opacity: 0 !important;
    }
  }
}
@media not all and (min-resolution: 0.001dpcm) and only screen and (max-width: 48rem) {
  .global-navigation .global-menu_container .primary-link.open {
    background-color: transparent;
    transition: none;
  }
}
@supports (-webkit-hyphens:none) {
  .global-menu_container {
    display: block !important;
  }
  .global-navigation .global-menu_container .primary-link.open {
    background-color: #edb110;
    transition: .5s;
  }
  .global-menu_container .hidden-slider {
    display: none !important;
  }
  .global-menu_container .primary-link.open ~ .hidden-slider,
  .global-menu_container .primary-link.ipad-open ~ .hidden-slider {
    opacity: 0 !important;
  }
}
.keyboard-navigation .global-menu_container li:active,
.keyboard-navigation .global-menu_container li a:active {
  outline: unset !important;
}
.keyboard-navigation .global-menu_container .primary-link:focus {
  transition: none;
  outline: 0.125rem solid #000000;
  outline-offset: -0.25rem;
}
.global-menu {
  left: 0;
  width: 100%;
  transform: translateX(150%);
  transition: transform 500ms ease-in-out;
  background: #ffffff;
  height: 100vh;
  -webkit-tap-highlight-color: transparent;
}
.global-menu_container {
  list-style-type: none;
  margin: 0;
  align-items: center;
  color: #000000;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "HelveticaNeue", sans-serif;
  padding: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  background: #ffffff;
}
.global-menu_container .hidden-slider {
  display: none;
}
.global-menu_container li:active,
.global-menu_container li a:active {
  outline: none !important;
}
.global-menu_container .primary-link {
  display: inline-block;
  padding: .313rem 0;
  width: 100%;
  position: relative;
  transition: 0.5s;
}
.global-menu_container .primary-link > .global-menu_flyout {
  display: none;
}
.global-menu_container .primary-link:not(:first-child) {
  border-top: solid 1px #dedede;
}
.global-menu_container .primary-link .link-arrow-right {
  content: '';
  transition: 0.5s;
  border: solid #898989;
  border-width: 0 0.125rem 0.125rem 0;
  display: inline-block;
  padding: 0.1875rem;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}
.global-menu_container .primary-link .primary-link_control-panel {
  margin-left: 1rem;
  line-height: 3rem;
  min-height: 3rem;
}
.global-menu_container .primary-link.expanded-link .primary-link_href {
  transition: 0.5s;
  font-weight: bold;
  color: #edb110;
}
.global-menu_container .primary-link.expanded-link .link-arrow-right {
  border: solid #edb110;
  border-width: 0 0.125rem 0.125rem 0;
  transition: 0.5s;
  transform: rotate(-135deg);
}
.global-menu_container .primary-link.expanded-link .link-arrow-left {
  display: none;
}
.global-menu_container .primary-link.expanded-link .global-menu_flyout {
  display: block;
  background: #ffffff;
  width: 100%;
  transition: all 0.5s;
  border-top: solid 1px #dedede;
}
.global-menu_container .primary-link .primary-link_href {
  transition: 0.5s;
  font-family: "HelveticaNeue", sans-serif;
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
  text-transform: none;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
}
.global-menu_container .primary-link.selected {
  text-align: center;
  transition: 0.5s;
}
.global-menu_container .primary-link.selected .link-arrow-right {
  display: none;
}
.global-menu_container .primary-link.selected .link-arrow-left {
  content: '';
  transition: 0.5s;
  border: solid #000000;
  border-width: 0 0.125rem 0.125rem 0;
  display: inline-block;
  padding: 0.1875rem;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 1.5rem;
  left: 1rem;
}
.global-menu_container .primary-link.selected .primary-link_href {
  font-weight: bold;
}
.global-menu_container .primary-link.hidden {
  transition: 0.5s;
  display: none;
}
.global-menu .sub-menu-head span {
  font-weight: 600;
}
.global-menu .g-row .g-col-6 .single-high {
  margin-top: 0;
}
.global-menu .user_links img {
  margin: 0 auto;
}
.global-menu .user_links__utilities {
  font-size: 0.625rem !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  line-height: 1.375rem;
  text-align: center;
  color: #2e2e2e;
  border-bottom: 0 !important;
}
.global-menu .column_border-right {
  border-right: 0.0625rem solid #eee;
}
.global-menu .padding_left_column {
  padding-left: 1.875rem;
}
.global-menu .column_padding_bottom {
  padding-bottom: 1.5625rem;
}
.global-menu .contact_details {
  margin-bottom: 1.25rem;
}
.global-menu .live_chat {
  padding-bottom: 1.5625rem;
  padding-left: 1.9375rem;
}
.global-menu .main {
  margin: 0 auto;
  display: block;
  height: 100%;
}
.global-menu .mainInner {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.global-menu .mainInner div {
  display: table-cell;
  vertical-align: middle;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 0.078125rem;
}
.global-menu .main-menu {
  padding: 0;
}
.global-menu .main-menu li {
  padding-left: 2.3125rem;
  border-bottom: 0.0625rem solid #dadada;
  background-color: #eee;
}
.global-menu .always_visible {
  display: block;
}
.global-menu .padding_left_column {
  padding: 0 0.625rem;
}
.global-menu .g-row-mobile {
  background: #eee;
}
.global-menu .display-none-mobile {
  display: none;
}
.global-menu .user_links .header-suggestions-panel .header-suggestions-button {
  font-weight: 500;
  font-size: 0.6875rem !important;
  line-height: 1.5rem !important;
  display: flex;
  align-items: center;
  color: #c41230 !important;
  text-transform: capitalize !important;
}
.global-menu .overlay-menu {
  display: none !important;
}
.global-menu .mega-menu-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  background-origin: content-box;
  width: 1.4375rem;
  height: 1.4375rem;
  float: right;
}
.global-menu .column_border-right {
  padding-left: 0;
  padding-right: 0;
}
.global-menu .content-hidden-mobile {
  display: none;
}
.global-menu .header-logged-out {
  text-align: center;
}
.global-menu .main-menu-svg-fill {
  width: 1.0625rem;
  height: 1.0625rem;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .global-menu {
    display: flex;
    justify-content: space-between;
    height: inherit;
    transform: none;
    transition: none;
    padding-bottom: 0;
  }
  .global-menu .tool-set-section {
    margin: 0 8.4375rem 0 8.4375rem;
    height: 5rem;
  }
  .global-menu_container {
    padding: 0;
    display: flex;
    height: 2.625rem;
    position: initial;
    overflow: hidden;
  }
  .global-menu_container .hidden-slider {
    display: block;
    position: absolute;
    width: 9.375rem;
    height: 2.625rem;
    top: 5rem;
    left: 0;
    background: #edb110;
    z-index: 0;
    transition: 0.5s;
    opacity: 0;
  }
  .global-menu_container .primary-link {
    padding: 0.625rem 0;
    position: initial;
    z-index: 1;
  }
  .global-menu_container .primary-link .primary-link_control-panel {
    line-height: unset;
    min-height: unset;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout {
    display: block;
    position: absolute;
    background: #ffffff;
    z-index: 9999;
    width: 100%;
    left: 0;
    top: 7.5625rem;
    cursor: auto;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout .global-menu_flyout-border {
    width: 100%;
    border-bottom: solid 0.1875rem #edb110;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  }
  .global-menu_container .primary-link.open > .global-menu_flyout .g-container {
    margin-top: 0.1875rem;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout .sub-menu-block .aem-Grid:before,
  .global-menu_container .primary-link.open > .global-menu_flyout .sub-menu-block .aem-Grid:after {
    display: none;
  }
  .global-menu_container .primary-link .link-arrow-right {
    display: none;
  }
  .global-menu_container .primary-link .link-arrow-left {
    display: none;
  }
  .global-menu_container .primary-link:not(:first-child) {
    border-top: none;
  }
  .global-menu_container .primary-link:first-of-type:focus {
    border-left: 0.0625rem solid;
  }
  .global-menu_container .primary-link .primary-link_href {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.19;
    color: #000000;
    margin-left: 0.5rem;
  }
  .global-menu_container .primary-link .primary-link_href:focus {
    outline: 0.0625rem solid #000000;
  }
  .global-menu_container .primary-link .primary-link_href:hover {
    text-decoration: underline;
  }
  .global-menu_container .primary-link .primary-link_href:after {
    display: none;
  }
  .global-menu_container .primary-link.open ~ .hidden-slider {
    opacity: 1;
  }
  .global-menu_container .primary-link.expanded-link .primary-link_control-panel {
    padding-bottom: inherit;
  }
  .global-menu_container .primary-link.expanded-link .primary-link_href {
    transition: none;
    font-weight: bold;
    color: #000000;
  }
  .global-menu_container .primary-link.expanded-link .link-arrow-right {
    border: none;
    display: none;
  }
  .global-menu_container .primary-link.expanded-link .link-arrow-left {
    display: none;
  }
  .global-menu_container .primary-link.expanded-link .global-menu_flyout {
    transition: none;
    border-top: inherit;
  }
}
@media all and (min-width: 85.375rem) {
  .global-menu {
    display: flex;
    justify-content: space-between;
    height: inherit;
    transform: none;
    transition: none;
    padding-bottom: 0;
  }
  .global-menu .tool-set-section {
    margin: 0 8.4375rem 0 8.4375rem;
    height: 5rem;
  }
  .global-menu_container {
    padding: 0;
    display: flex;
    height: 2.625rem;
    position: initial;
    overflow: hidden;
  }
  .global-menu_container .hidden-slider {
    display: block;
    position: absolute;
    width: 9.375rem;
    height: 2.625rem;
    top: 5rem;
    left: 0;
    background: #edb110;
    z-index: 0;
    transition: 0.5s;
    opacity: 0;
  }
  .global-menu_container .primary-link {
    padding: 0.625rem 0;
    position: initial;
    z-index: 1;
  }
  .global-menu_container .primary-link .primary-link_control-panel {
    line-height: unset;
    min-height: unset;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout {
    display: block;
    position: absolute;
    background: #ffffff;
    z-index: 9999;
    width: 100%;
    left: 0;
    top: 7.5625rem;
    cursor: auto;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout .global-menu_flyout-border {
    width: 100%;
    border-bottom: solid 0.1875rem #edb110;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  }
  .global-menu_container .primary-link.open > .global-menu_flyout .g-container {
    margin-top: 0.1875rem;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout .sub-menu-block .aem-Grid:before,
  .global-menu_container .primary-link.open > .global-menu_flyout .sub-menu-block .aem-Grid:after {
    display: none;
  }
  .global-menu_container .primary-link .link-arrow-right {
    display: none;
  }
  .global-menu_container .primary-link .link-arrow-left {
    display: none;
  }
  .global-menu_container .primary-link:not(:first-child) {
    border-top: none;
  }
  .global-menu_container .primary-link:first-of-type:focus {
    border-left: 0.0625rem solid;
  }
  .global-menu_container .primary-link .primary-link_href {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.19;
    color: #000000;
    margin-left: 0.5rem;
  }
  .global-menu_container .primary-link .primary-link_href:focus {
    outline: 0.0625rem solid #000000;
  }
  .global-menu_container .primary-link .primary-link_href:hover {
    text-decoration: underline;
  }
  .global-menu_container .primary-link .primary-link_href:after {
    display: none;
  }
  .global-menu_container .primary-link.open ~ .hidden-slider {
    opacity: 1;
  }
  .global-menu_container .primary-link.expanded-link .primary-link_control-panel {
    padding-bottom: inherit;
  }
  .global-menu_container .primary-link.expanded-link .primary-link_href {
    transition: none;
    font-weight: bold;
    color: #000000;
  }
  .global-menu_container .primary-link.expanded-link .link-arrow-right {
    border: none;
    display: none;
  }
  .global-menu_container .primary-link.expanded-link .link-arrow-left {
    display: none;
  }
  .global-menu_container .primary-link.expanded-link .global-menu_flyout {
    transition: none;
    border-top: inherit;
  }
}
@media all and (min-width: 48rem) {
  .global-menu__search {
    display: none;
  }
}
@media all and (min-width: 85.375rem) {
  .author-mode .global-menu {
    display: flex;
    justify-content: space-between;
    height: inherit;
    transform: none;
    transition: none;
    padding-bottom: 0;
  }
  .author-mode .global-menu .tool-set-section {
    margin: 0 8.4375rem 0 8.4375rem;
    height: 5rem;
  }
  .author-mode .global-menu_container {
    padding: 0;
    display: flex;
    height: 2.625rem;
    position: initial;
    overflow: hidden;
  }
  .author-mode .global-menu_container .hidden-slider {
    display: block;
    position: absolute;
    width: 9.375rem;
    height: 2.625rem;
    top: 5rem;
    left: 0;
    background: #edb110;
    z-index: 0;
    transition: 0.5s;
    opacity: 0;
  }
  .author-mode .global-menu_container .primary-link {
    padding: 0.625rem 0;
    position: initial;
    z-index: 1;
  }
  .author-mode .global-menu_container .primary-link .primary-link_control-panel {
    line-height: unset;
    min-height: unset;
  }
  .author-mode .global-menu_container .primary-link.open > .global-menu_flyout {
    display: block;
    position: absolute;
    background: #ffffff;
    z-index: 9999;
    width: 100%;
    left: 0;
    top: 7.5625rem;
    cursor: auto;
  }
  .author-mode .global-menu_container .primary-link.open > .global-menu_flyout .global-menu_flyout-border {
    width: 100%;
    border-bottom: solid 0.1875rem #edb110;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  }
  .author-mode .global-menu_container .primary-link.open > .global-menu_flyout .g-container {
    margin-top: 0.1875rem;
  }
  .author-mode .global-menu_container .primary-link.open > .global-menu_flyout .sub-menu-block .aem-Grid:before,
  .author-mode .global-menu_container .primary-link.open > .global-menu_flyout .sub-menu-block .aem-Grid:after {
    display: none;
  }
  .author-mode .global-menu_container .primary-link .link-arrow-right {
    display: none;
  }
  .author-mode .global-menu_container .primary-link .link-arrow-left {
    display: none;
  }
  .author-mode .global-menu_container .primary-link:not(:first-child) {
    border-top: none;
  }
  .author-mode .global-menu_container .primary-link:first-of-type:focus {
    border-left: 0.0625rem solid;
  }
  .author-mode .global-menu_container .primary-link .primary-link_href {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.19;
    color: #000000;
    margin-left: 0.5rem;
  }
  .author-mode .global-menu_container .primary-link .primary-link_href:focus {
    outline: 0.0625rem solid #000000;
  }
  .author-mode .global-menu_container .primary-link .primary-link_href:hover {
    text-decoration: underline;
  }
  .author-mode .global-menu_container .primary-link .primary-link_href:after {
    display: none;
  }
  .author-mode .global-menu_container .primary-link.open ~ .hidden-slider {
    opacity: 1;
  }
  .author-mode .global-menu_container .primary-link.expanded-link .primary-link_control-panel {
    padding-bottom: inherit;
  }
  .author-mode .global-menu_container .primary-link.expanded-link .primary-link_href {
    transition: none;
    font-weight: bold;
    color: #000000;
  }
  .author-mode .global-menu_container .primary-link.expanded-link .link-arrow-right {
    border: none;
    display: none;
  }
  .author-mode .global-menu_container .primary-link.expanded-link .link-arrow-left {
    display: none;
  }
  .author-mode .global-menu_container .primary-link.expanded-link .global-menu_flyout {
    transition: none;
    border-top: inherit;
  }
}
.noscroll {
  overflow: hidden !important;
  position: relative;
  height: 100%;
  max-height: 100vh;
}
.header-less-overlay {
  top: 3.7rem;
  left: 0;
  width: 100%;
  height: calc(100% - 3.7rem);
  z-index: 10;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}

.sign-in-modal-component #sign-in-modal.modal {
  padding: 0 1rem;
}
.sign-in-modal-component #sign-in-modal .modal-box {
  margin-top: 1rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .modal-content {
  box-shadow: 0 0.25rem 0.5rem 0 rgba(39, 3, 9, 0.3);
  margin: 0;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form {
  padding: 1rem 1rem 1rem 1rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .login-title {
  font-size: 1rem;
  padding-bottom: 0.5rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form .form-label {
  line-height: 1.67;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form .form-button {
  height: 2.5rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form .form-show-password-label {
  top: 0.25rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__divider {
  font-size: 0.75rem;
  font-family: "HelveticaNeue", sans-serif;
  font-weight: bold;
  line-height: 1.67;
  margin-top: 0.75rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__login-social {
  height: inherit;
  margin-bottom: 0;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__login-social--facebook,
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__login-social--google {
  height: 2.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__login-social--facebook-text,
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__login-social--google-text {
  font-family: "HelveticaNeue", sans-serif;
  font-weight: bold;
  line-height: 1.67;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .sign-in-modal-component #sign-in-modal {
    max-width: 76.375rem;
    margin: 0 auto;
    padding-right: 0;
  }
  .sign-in-modal-component #sign-in-modal:focus {
    outline: none;
  }
  .sign-in-modal-component #sign-in-modal::-moz-focus-inner {
    border: 0;
  }
  .sign-in-modal-component #sign-in-modal.modal {
    position: absolute;
  }
  .sign-in-modal-component #sign-in-modal .modal-box {
    margin: 5rem 0 auto auto;
    width: 20rem;
    transform: translate(20px, 0px);
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__closer {
    display: none;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer {
    display: flex;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer .modal-close-icon {
    display: block;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .modal-content {
    box-shadow: 0 0.25rem 0.5rem 0 rgba(39, 3, 9, 0.3), 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.5);
    width: 20rem;
    margin: 0;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup {
    width: 20rem;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .login-title {
    font-size: 1.5rem;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form .form-label {
    line-height: 1.67;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed {
    position: fixed;
    right: 50%;
    top: calc(50% - 20rem);
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .sign-in-popup {
    width: 40rem;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content {
    right: -10%;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content .sign-in-popup {
    width: 25rem;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home {
    position: absolute;
    right: 50%;
    top: calc(50% - 8rem);
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box .sign-in-popup__closer {
    display: flex;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .sign-in-popup {
    width: 40rem;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content {
    right: -10%;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content .sign-in-popup {
    width: 25rem;
  }
  .sign-in-modal-component .sign-in-wrapper {
    height: 0;
  }
}
@media all and (min-width: 85.375rem) {
  .sign-in-modal-component #sign-in-modal {
    max-width: 76.375rem;
    margin: 0 auto;
    padding-right: 0;
  }
  .sign-in-modal-component #sign-in-modal:focus {
    outline: none;
  }
  .sign-in-modal-component #sign-in-modal::-moz-focus-inner {
    border: 0;
  }
  .sign-in-modal-component #sign-in-modal.modal {
    position: absolute;
  }
  .sign-in-modal-component #sign-in-modal .modal-box {
    margin: 5rem 0 auto auto;
    width: 20rem;
    transform: translate(20px, 0px);
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__closer {
    display: none;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer {
    display: flex;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer .modal-close-icon {
    display: block;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .modal-content {
    box-shadow: 0 0.25rem 0.5rem 0 rgba(39, 3, 9, 0.3), 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.5);
    width: 20rem;
    margin: 0;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup {
    width: 20rem;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .login-title {
    font-size: 1.5rem;
  }
  .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form .form-label {
    line-height: 1.67;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed {
    position: fixed;
    right: 50%;
    top: calc(50% - 20rem);
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .sign-in-popup {
    width: 40rem;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content {
    right: -10%;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content .sign-in-popup {
    width: 25rem;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home {
    position: absolute;
    right: 50%;
    top: calc(50% - 8rem);
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box .sign-in-popup__closer {
    display: flex;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .sign-in-popup {
    width: 40rem;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content {
    right: -10%;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content .sign-in-popup {
    width: 25rem;
  }
  .sign-in-modal-component .sign-in-wrapper {
    height: 0;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .sign-in-modal-component #sign-in-modal,
  .checkout-header .sign-in-modal-component #sign-in-modal {
    max-width: 76.375rem;
    margin: 0 auto;
    padding-right: 0;
  }
  .author-mode .sign-in-modal-component #sign-in-modal:focus,
  .checkout-header .sign-in-modal-component #sign-in-modal:focus {
    outline: none;
  }
  .author-mode .sign-in-modal-component #sign-in-modal::-moz-focus-inner,
  .checkout-header .sign-in-modal-component #sign-in-modal::-moz-focus-inner {
    border: 0;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal {
    position: absolute;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box {
    margin: 5rem 0 auto auto;
    width: 20rem;
    transform: translate(20px, 0px);
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__closer,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__closer {
    display: none;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer {
    display: flex;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer .modal-close-icon,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup.conditional-content .sign-in-popup__closer .modal-close-icon {
    display: block;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .modal-content,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .modal-content {
    box-shadow: 0 0.25rem 0.5rem 0 rgba(39, 3, 9, 0.3), 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.5);
    width: 20rem;
    margin: 0;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup {
    width: 20rem;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .login-title,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .login-title {
    font-size: 1.5rem;
  }
  .author-mode .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form .form-label,
  .checkout-header .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form .form-label {
    line-height: 1.67;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed {
    position: fixed;
    right: 50%;
    top: calc(50% - 20rem);
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed .sign-in-popup,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed .sign-in-popup {
    width: 40rem;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content {
    right: -10%;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content .sign-in-popup,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed .modal-box--empty-content .sign-in-popup {
    width: 25rem;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed-home,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed-home {
    position: absolute;
    right: 50%;
    top: calc(50% - 8rem);
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box .sign-in-popup__closer,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box .sign-in-popup__closer {
    display: flex;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .sign-in-popup,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .sign-in-popup {
    width: 40rem;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content {
    right: -10%;
  }
  .author-mode .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content .sign-in-popup,
  .checkout-header .sign-in-modal-component #sign-in-modal.modal-open.fixed-home .modal-box--empty-content .sign-in-popup {
    width: 25rem;
  }
  .author-mode .sign-in-modal-component .sign-in-wrapper,
  .checkout-header .sign-in-modal-component .sign-in-wrapper {
    height: 0;
  }
}

.sign-in-account {
  display: flex;
  font-family: "HelveticaNeue", sans-serif;
}
.sign-in-account:focus-within {
  outline: 1px solid #000000;
}
.sign-in-account__link {
  flex-direction: column;
}
.sign-in-account__second-row {
  display: none;
}
.sign-in-account__first-row {
  font-size: 0.625rem;
  font-family: "HelveticaNeue", sans-serif;
}
.sign-in-account__first-row .sign-in-account__text {
  display: none;
}
.sign-in-account.authorized .sign-in-account__first-row {
  display: none;
}
.sign-in-account.authorized .sign-in-account__link-log-in {
  display: none;
}
.sign-in-account.authorized .sign-in-account__link-log-in.link-btn {
  display: none;
}
.sign-in-account.authorized .sign-in-account__authorized {
  display: flex;
  align-items: center;
  min-width: 24px;
}
.sign-in-account.authorized .sign-in-account__authorized .sign-in-account__icon {
  display: flex;
  justify-content: center;
}
.sign-in-account.authorized .sign-in-account__authorized .sign-in-account__icon svg {
  color: #000000;
  width: 1.5rem;
  height: 1.5rem;
}
.sign-in-account.authorized .sign-in-account__authorized .sign-in-account__welcome-text {
  font-size: 0.75rem;
  line-height: 1.33;
  font-family: "HelveticaNeue", sans-serif;
  font-weight: normal;
}
.sign-in-account.authorized .sign-in-account__authorized .sign-in-account__nav-closer {
  display: block;
}
.sign-in-account.authorized .sign-in-account__authorized .sign-in-account__nav-closer .menu-close {
  background: white;
  position: absolute;
  top: 0.2rem;
  right: 0;
}
.sign-in-account.authorized .sign-in-account__authorized .sign-in-account__nav-closer .icon {
  width: 1rem;
  height: 1rem;
}
.sign-in-account__icon {
  display: flex;
  justify-content: center;
}
.sign-in-account__icon svg {
  color: #000000;
  width: 1.5rem;
  height: 1.5rem;
}
.sign-in-account__text-bold {
  font-weight: bold;
}
.sign-in-account__link {
  text-decoration: none;
}
.sign-in-account__link:hover {
  text-decoration: none;
  cursor: pointer;
}
.sign-in-account__link:focus {
  outline: 0.125rem solid #000000;
}
.sign-in-account__link::-moz-focus-inner {
  border: 0;
}
.sign-in-account__sign-in-form {
  display: none;
}
.sign-in-account__authorized {
  display: none;
}
.sign-in-account__nav {
  background: #ffffff;
  width: 100%;
  right: 0;
  display: none;
  top: 3.7rem;
}
.sign-in-account__nav.active {
  position: absolute;
  display: block;
}
.sign-in-account__nav-row {
  background: #ffffff;
  z-index: 10;
  display: flex;
  align-items: center;
  font-family: "HelveticaNeue", sans-serif;
  line-height: 1.19;
}
.sign-in-account__nav-row-item {
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  text-decoration: none;
  margin: 0.5rem 0 0.5rem 1.5rem;
}
.sign-in-account__nav-row-item.user-name {
  font-family: "HelveticaNeue", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.19;
  display: inline;
}
.sign-in-account__nav-row-item:hover {
  text-decoration: none;
}
.sign-in-account__nav-row-item.button {
  background: #ffffff;
  border: solid 0.125rem #000000;
  width: 100%;
  margin: 0 1rem;
}
.sign-in-account__nav-row-icon {
  margin-right: 1rem;
}
.sign-in-account__nav-row-icon img {
  max-height: 1.5rem;
}
.sign-in-account__nav-row:first-child {
  margin-top: 0.5rem;
}
.sign-in-account__nav-row:last-child {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.sign-in-account__nav-delimiter {
  border-top: solid 0.0625rem #979797;
  height: 0;
  width: 100%;
  display: block;
  margin: 0.5rem 0;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .sign-in-account.authorized:focus-within {
    outline: 1px solid #000000;
  }
  .sign-in-account.authorized .sign-in-account__first-row {
    display: inherit;
  }
  .sign-in-account.authorized .sign-in-account__authorized {
    cursor: pointer;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__icon.active svg {
    color: #000000;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__nav-closer {
    display: none;
  }
  .sign-in-account.authorized .sign-in-account__link.active {
    outline: none;
  }
  .sign-in-account__link {
    display: block;
    flex-direction: row;
    align-items: center;
  }
  .sign-in-account__link:focus {
    outline: none;
  }
  .sign-in-account__text-container {
    display: block;
    padding-left: 0.5rem;
  }
  .sign-in-account__second-row {
    display: inline;
    position: relative;
  }
  .sign-in-account__second-row:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 0.3rem solid transparent;
    border-right: 0.3rem solid transparent;
    border-top: 0.4rem solid #000000;
    top: 35%;
    margin-left: 0.25rem;
  }
  .sign-in-account__first-row {
    font-size: 0.75rem;
    line-height: 1.33;
  }
  .sign-in-account__first-row .sign-in-account__text-bold {
    font-weight: bold;
  }
  .sign-in-account__first-row .sign-in-account__text {
    display: inline;
    font-weight: normal;
  }
  .sign-in-account__nav {
    right: 0;
    top: 5rem;
    display: none;
    z-index: 10;
    max-width: 20rem;
    box-shadow: 0 0.375rem 0.5rem 0 rgba(0, 0, 0, 0.5);
  }
  .sign-in-account__nav-row-item.user-name {
    font-size: 1.25rem;
    line-height: 0.95;
  }
  .sign-in-account .sign-in-account__link.active {
    outline: 1px solid #000000;
  }
}
@media all and (min-width: 63.938rem) {
  .sign-in-account.authorized:focus-within {
    outline: 1px solid #000000;
  }
  .sign-in-account.authorized .sign-in-account__first-row {
    display: inherit;
  }
  .sign-in-account.authorized .sign-in-account__authorized {
    cursor: pointer;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__icon.active svg {
    color: #000000;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__nav-closer {
    display: none;
  }
  .sign-in-account.authorized .sign-in-account__link.active {
    outline: none;
  }
  .sign-in-account__link {
    display: block;
    flex-direction: row;
    align-items: center;
  }
  .sign-in-account__link:focus {
    outline: none;
  }
  .sign-in-account__text-container {
    display: block;
    padding-left: 0.5rem;
  }
  .sign-in-account__second-row {
    display: inline;
    position: relative;
  }
  .sign-in-account__second-row:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 0.3rem solid transparent;
    border-right: 0.3rem solid transparent;
    border-top: 0.4rem solid #000000;
    top: 35%;
    margin-left: 0.25rem;
  }
  .sign-in-account__first-row {
    font-size: 0.75rem;
    line-height: 1.33;
  }
  .sign-in-account__first-row .sign-in-account__text-bold {
    font-weight: bold;
  }
  .sign-in-account__first-row .sign-in-account__text {
    display: inline;
    font-weight: normal;
  }
  .sign-in-account__nav {
    right: 0;
    top: 5rem;
    display: none;
    z-index: 10;
    max-width: 20rem;
    box-shadow: 0 0.375rem 0.5rem 0 rgba(0, 0, 0, 0.5);
  }
  .sign-in-account__nav-row-item.user-name {
    font-size: 1.25rem;
    line-height: 0.95;
  }
  .sign-in-account .sign-in-account__link.active {
    outline: 1px solid #000000;
  }
}
.sign-in-account .sign-in-account__link.link-btn {
  display: flex;
  text-align: left;
}
.header-menu-overlay {
  top: 3.7rem;
  left: 0;
  width: 100%;
  height: calc(100% - 3.7rem);
  z-index: 10;
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s;
}
.header-menu-overlay.header-menu-overlay-fade {
  background-color: rgba(0, 0, 0, 0.4);
}
.my-account-nav-placeholder {
  display: none;
}
.tool-set-section_right-side.simplified .sign-in-account .sign-in-account__first-row,
.tool-set-section_right-side.simplified .sign-in-account .sign-in-account__second-row {
  display: none;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .header-menu-overlay {
    top: 7.5rem;
    height: calc(100% - 7.5rem);
  }
  .my-account-nav-placeholder {
    display: block;
    overflow: inherit;
    background: none;
    top: 0;
    z-index: 1000;
    position: absolute;
    width: 100%;
  }
}
@media all and (min-width: 85.375rem) {
  .header-menu-overlay {
    top: 7.5rem;
    height: calc(100% - 7.5rem);
  }
  .my-account-nav-placeholder {
    display: block;
    overflow: inherit;
    background: none;
    top: 0;
    z-index: 1000;
    position: absolute;
    width: 100%;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .header-menu-overlay {
    top: 7.5rem;
    height: calc(100% - 7.5rem);
  }
  .author-mode .my-account-nav-placeholder {
    display: block;
    overflow: inherit;
    background: none;
    top: 0;
    z-index: 1000;
    position: absolute;
    width: 100%;
  }
}
@media all and (min-width: 48rem) and (max-width: 64rem) {
  .sign-in-account {
    margin-top: auto;
    margin-bottom: auto;
    padding-right: 0;
  }
}
@media all and (max-width: 47.938rem) {
  .sign-in-account {
    padding-right: 1rem;
  }
}

.sign-in-modal-component #sign-in-modal.modal-open {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sign-in-modal-component #sign-in-modal .modal-box {
  margin: 0;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form {
  padding: 1.5rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .login-title {
  text-transform: uppercase;
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__divider {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #000000;
}
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__login-social--facebook-text,
.sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__login-social--google-text {
  font-family: "Avenir", sans-serif;
  line-height: 1rem;
  font-style: normal;
  font-weight: 900;
}
.sign-in-modal-component #sign-in-modal.sign-in-wrapper .sign-in-popup {
  margin: 0;
}
.sign-in-modal-component #sign-in-modal.sign-in-wrapper .sign-in-popup .sign-in-modal-form {
  height: fit-content;
}
.sign-in-modal-component #sign-in-modal.sign-in-wrapper .sign-in-popup__form .login .form-label:not(.form-show-password-label) {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2e2e2e;
  text-transform: none;
}
.sign-in-modal-component #sign-in-modal.sign-in-wrapper .sign-in-popup__form .login .login-forgot-password-link {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2e2e2e;
  text-decoration-line: underline;
}
.sign-in-modal-component #sign-in-modal.sign-in-wrapper .sign-in-popup__form .form-button {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}
.sign-in-modal-component #sign-in-modal.sign-in-wrapper .sign-in-popup__form .sign-in-popup__button {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}
@media all and (min-width: 64rem) and (orientation: landscape) {
  .sign-in-modal-component #sign-in-modal.modal-open {
    display: block;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed {
    position: fixed;
    right: 50%;
    top: calc(50% - 20rem);
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .sign-in-popup {
    width: 40rem;
  }
}
@media all and (min-width: 85.375rem) {
  .sign-in-modal-component #sign-in-modal.modal-open {
    display: block;
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed {
    position: fixed;
    right: 50%;
    top: calc(50% - 20rem);
  }
  .sign-in-modal-component #sign-in-modal.modal-open.fixed .sign-in-popup {
    width: 40rem;
  }
}

.sign-in-account {
  min-width: 2.5rem;
  padding-right: 0;
}
@media all and (max-width: 47.937rem) {
  .sign-in-account {
    margin-bottom: 0;
  }
}
.sign-in-account__nav {
  max-width: 25rem;
}
.sign-in-account.authorized .sign-in-account__authorized .sign-in-account__icon.active svg {
  color: #c41230;
}
.sign-in-account__nav-delimiter {
  border-top: solid 0.0625rem #e2e2e5;
}
.sign-in-account__nav {
  min-width: 20rem;
  width: fit-content;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__welcome-text {
    font-family: "Avenir", sans-serif;
    text-transform: none;
    line-height: 1rem;
    font-style: normal;
    font-weight: normal;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__link .sign-in-account__second-row .sign-in-account__text-bold {
    color: #2e2e2e;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__link.active .sign-in-account__second-row .sign-in-account__text-bold {
    color: #c41230;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__icon.active svg {
    color: #000000;
  }
}
@media all and (min-width: 85.375rem) {
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__welcome-text {
    font-family: "Avenir", sans-serif;
    text-transform: none;
    line-height: 1rem;
    font-style: normal;
    font-weight: normal;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__link .sign-in-account__second-row .sign-in-account__text-bold {
    color: #2e2e2e;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__link.active .sign-in-account__second-row .sign-in-account__text-bold {
    color: #c41230;
  }
  .sign-in-account.authorized .sign-in-account__authorized .sign-in-account__icon.active svg {
    color: #000000;
  }
}

header.header-v3 {
  border-bottom: solid 0.1875rem #edb110;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  z-index: 1050;
}
header.header-v3 .xf-content-height {
  margin: 0;
}
header.header-v3--search-fixed {
  margin-bottom: 3.5rem;
}
header.header-v3.header-v3--unset-position .main_header .tool-set-section {
  height: 5rem;
}
header.header-v3 .main_header {
  padding: 0;
  position: relative;
}
header.header-v3 .main_header .tool-set-section {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  background-color: #ffffff;
  height: 3.5rem;
  align-items: center;
  position: relative;
  padding: 0;
}
header.header-v3 .main_header .tool-set-section .logo {
  display: block;
  height: 3.5rem;
  padding: 0.875rem 0.5rem;
}
header.header-v3 .main_header .tool-set-section .logo img {
  max-height: 100%;
}
header.header-v3 .main_header .tool-set-section_right-side {
  width: inherit;
  display: flex;
  justify-content: flex-end;
  padding-right: 3.5rem;
  align-items: center;
}
header.header-v3 .main_header .tool-set-section_right-side.simplified .header-cart-v3 {
  padding-left: 0;
}
header.header-v3 .main_header {
  background: none;
}
header.header-v3 .main_header input[type="checkbox"] {
  transition: all 0.2s;
  box-sizing: border-box;
  display: none;
}
header.header-v3 .main_header .g-container {
  padding: 0;
  width: 100%;
}
header.header-v3 .main_header .g-row {
  margin: 0;
}
header.header-v3 .modal-overlay {
  width: 100%;
  height: 100%;
  padding: 1.125rem;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 99999;
}
header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
  background: rgba(46, 46, 46, 0.9);
}
header.header-v3 .sign-in-account:focus-visible {
  outline: 0.0625rem solid #000000;
  outline-offset: 0.3125rem;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  header.header-v3 .mega-menu-section {
    height: 2.625rem;
  }
  header.header-v3 .mega-menu-section:before {
    content: '';
    position: absolute;
    width: 100%;
    border: solid #d8d8d8;
    border-width: 0.0625rem 0 0 0;
    left: 0;
    z-index: 1;
  }
  header.header-v3 .main_header .tool-set-section {
    height: 5rem;
    display: flex;
    flex-direction: row;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo .logo {
    display: block;
    height: 3.5rem;
    padding: 0.1rem 0.5rem;
  }
  header.header-v3 .main_header .tool-set-section_right-side {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: inherit;
    padding-right: 0;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
    overflow: inherit;
    background: none;
    z-index: 5;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media all and (min-width: 85.375rem) {
  header.header-v3 .mega-menu-section {
    height: 2.625rem;
  }
  header.header-v3 .mega-menu-section:before {
    content: '';
    position: absolute;
    width: 100%;
    border: solid #d8d8d8;
    border-width: 0.0625rem 0 0 0;
    left: 0;
    z-index: 1;
  }
  header.header-v3 .main_header .tool-set-section {
    height: 5rem;
    display: flex;
    flex-direction: row;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo .logo {
    display: block;
    height: 3.5rem;
    padding: 0.1rem 0.5rem;
  }
  header.header-v3 .main_header .tool-set-section_right-side {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: inherit;
    padding-right: 0;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
    overflow: inherit;
    background: none;
    z-index: 5;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media all and (min-width: 85.375rem) {
  .author-mode header.header-v3 .mega-menu-section {
    height: 2.625rem;
  }
  .author-mode header.header-v3 .mega-menu-section:before {
    content: '';
    position: absolute;
    width: 100%;
    border: solid #d8d8d8;
    border-width: 0.0625rem 0 0 0;
    left: 0;
    z-index: 1;
  }
  .author-mode header.header-v3 .main_header .tool-set-section {
    height: 5rem;
    display: flex;
    flex-direction: row;
  }
  .author-mode header.header-v3 .main_header .tool-set-section .brand-logo .logo {
    display: block;
    height: 3.5rem;
    padding: 0.1rem 0.5rem;
  }
  .author-mode header.header-v3 .main_header .tool-set-section_right-side {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: inherit;
    padding-right: 0;
  }
  .author-mode header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
    overflow: inherit;
    background: none;
    z-index: 5;
  }
  .author-mode header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media all and (min-width: 64rem) {
  header.header-v3 {
    z-index: 21;
  }
}
.everydrop .modal.active {
  z-index: 4000;
}
html.modal-open .utility-nav__container,
html .ReactModal__Body--open .utility-nav__container {
  z-index: 1;
}
html.modal-open header.header-v3,
html .ReactModal__Body--open header.header-v3 {
  z-index: 2;
}

.utility-nav-wrapper-mobile {
  text-align: start;
  display: block;
}
.utility-nav-wrapper-mobile .utility-nav__container {
  display: block;
  position: relative;
}
.utility-nav__container {
  display: none;
  background-color: #e2e2e2;
  padding-left: 1rem;
  padding-bottom: 0.75rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1049;
  transform: translateX(150%);
  transition: transform 500ms ease-in-out;
}
.utility-nav__container .hide {
  display: none;
}
.utility-nav__container.visible {
  transform: translateX(0);
}
.utility-nav__container .header-chat-link {
  font-size: 0.75rem;
  font-weight: normal;
  color: #000000;
  text-decoration: none;
  height: 1rem;
  font-style: normal;
  line-height: 1.33;
  display: flex;
}
.utility-nav__container .header-chat-link:hover {
  color: #d99e02;
}
.utility-nav__container .header-chat-link-icon-with-text {
  display: flex;
}
.utility-nav__container .header-chat-link-icon {
  align-items: center;
  display: flex;
  margin-right: .5rem;
}
.utility-nav__link {
  font-size: 0.875rem;
  font-weight: normal;
  color: #000000;
  text-decoration: none;
  background: unset;
  font-family: "HelveticaNeue", sans-serif;
  text-transform: none;
  padding: 0;
  display: block;
  height: auto;
}
.utility-nav__link:hover {
  color: #d99e02;
  text-decoration: underline !important;
  background: transparent;
}
.utility-nav__link-icon {
  padding-right: 0.5rem;
  display: flex;
  font-size: 1rem;
  align-items: center;
}
.utility-nav__link-icon .icon {
  width: .75rem;
  height: .75rem;
}
.utility-nav__link-wrapper {
  padding-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.utility-nav__link-wrapper .utility-nav__link .location-data {
  font-weight: bold;
}
.utility-nav__link-wrapper .utility-nav__link:focus-visible {
  outline-width: .125rem;
}
.utility-nav__link-wrapper--location {
  position: relative;
  font-family: "HelveticaNeue", sans-serif;
}
.utility-nav__link-wrapper--location .location-nav-dropdown {
  top: 2.5rem;
  right: 0;
  padding: 1rem;
  position: absolute;
  background-color: white;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  width: 17.75rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .button {
  margin-bottom: 0;
  width: 100%;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .button:focus-visible {
  outline-width: .125rem;
  outline-offset: .125rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .location-headline-dropdown {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .location-text-block {
  font-size: 0.75rem;
  line-height: 1.33;
  margin-bottom: 0.5rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .location-text-label {
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location {
  margin-bottom: 1rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code {
  display: flex;
  border: 2px solid #000000;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code .zip-loader,
.utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code .zip-resolved-checkmark {
  position: inherit;
  align-self: center;
  margin-right: 0.5rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code.zip-code-required {
  border-color: #c80a33;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2 {
  border: 0;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2:focus-visible {
  outline: 0.125rem solid #000000;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .form-input {
  font-size: 0.75rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .close-modal-overlay {
  position: absolute;
  right: 1rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .close-modal-overlay svg {
  height: 0.813rem;
  width: 0.875rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .zip-code-error {
  color: #c41230;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .location-modal-button {
  font-size: 1rem;
  line-height: 1.188rem;
  margin-top: 0.5rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .zip-code-error-wrapper {
  padding-top: 0;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .zip-code-error-wrapper .suggestion-wrapper {
  border-radius: .25rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: .25rem 0;
  align-items: center;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .zip-code-error-wrapper .suggestion-wrapper .suggestion-message,
.utility-nav__link-wrapper--location .location-nav-dropdown .zip-code-error-wrapper .suggestion-wrapper .zip-code-error-message {
  color: #c41230;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-right: 0.5rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown .zip-code-error-wrapper .suggestion-wrapper svg {
  width: 1.375rem;
  margin-top: 0.188rem;
  align-self: flex-start;
  margin-right: 0.375rem;
}
.utility-nav__link-wrapper--location .location-nav-dropdown #update-location-btn:disabled {
  background: #f2f2f2;
}
.utility-nav__cross-site-navigation {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 7.5rem 7.5rem;
}
.utility-nav__cross-site-navigation-item {
  height: 2rem;
  display: inline-flex;
  width: fit-content;
  margin-bottom: .5rem;
  border-top: .125rem solid transparent;
  border-bottom: .125rem solid transparent;
}
.utility-nav__cross-site-navigation-item.active {
  border-bottom: 0.125rem solid #eeb111;
}
.utility-nav__cross-site-navigation-brands-label {
  font-family: 'HelveticaNeue', sans-serif;
  font-weight: 400;
  font-size: .75rem;
  line-height: 1rem;
  color: #000000;
  padding-bottom: 1.25rem;
}
.utility-nav__cross-site-navigation-link {
  cursor: pointer;
  margin: auto 0;
}
.utility-nav__cross-site-navigation-img {
  max-height: 2rem;
}
.utility-nav__cross-site-navigation-img:focus-visible {
  outline-width: .125rem;
}
.utility-nav .primary-link .ipad-open + .utility-nav-wrapper-mobile .utility-nav__switch-links-navigation {
  background-color: red;
}
.utility-nav__switch-links-navigation--mobile .utility-nav__switch-link-wrapper {
  transition: none;
  background-color: #ffffff;
  box-shadow: inset 0 -0.0625rem 0 #d2d2d2;
  position: relative;
  margin-left: -1rem;
}
.utility-nav__switch-links-navigation--mobile .utility-nav__switch-link {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #2e2e2e;
  padding: 1.1875rem 0 1.1875rem 1rem;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .utility-nav__switch-links-navigation--mobile .utility-nav__switch-link {
    padding: 1.5rem 0 1.5rem 1rem;
    align-items: center;
  }
  .utility-nav__switch-links-navigation--mobile .utility-nav__switch-link .utility-nav__switch-text {
    height: 1.875rem;
    align-content: center;
  }
}
.utility-nav__switch-links-navigation--mobile .utility-nav__switch-link-icon {
  margin-right: .5rem;
}
.utility-nav__switch-links-navigation--desktop {
  display: none;
}
.header-v3 .content-block-wrapper {
  background-color: #ffffff;
  padding: 1rem;
  position: relative;
  top: 3.5rem;
}
.header-v3 .content-block-wrapper .close-modal-overlay {
  display: none;
}
.header-v3 .content-block-wrapper .button {
  margin-bottom: 0;
  width: 100%;
}
.header-v3 .content-block-wrapper .button:focus-visible {
  outline-width: .125rem;
  outline-offset: .125rem;
}
.header-v3 .content-block-wrapper .location-headline-dropdown {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.header-v3 .content-block-wrapper .location-text-block {
  font-size: 0.75rem;
  line-height: 1.33;
  margin-bottom: 0.5rem;
}
.header-v3 .content-block-wrapper .location-text-label {
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.header-v3 .content-block-wrapper .form-block-location {
  margin-bottom: 1rem;
}
.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code {
  display: flex;
  border: 2px solid #000000;
}
.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code .zip-loader,
.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code .zip-resolved-checkmark {
  position: inherit;
  align-self: center;
  margin-right: 0.5rem;
}
.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code.zip-code-required {
  border-color: #c80a33;
}
.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2 {
  border: 0;
}
.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2:focus-visible {
  outline: 0.125rem solid #000000;
}
.header-v3 .content-block-wrapper .form-input {
  font-size: 0.75rem;
}
.header-v3 .content-block-wrapper .close-modal-overlay {
  position: absolute;
  right: 1rem;
}
.header-v3 .content-block-wrapper .close-modal-overlay svg {
  height: 0.813rem;
  width: 0.875rem;
}
.header-v3 .content-block-wrapper .zip-code-error {
  color: #c41230;
}
.header-v3 .content-block-wrapper .location-modal-button {
  font-size: 1rem;
  line-height: 1.188rem;
  margin-top: 0.5rem;
}
.header-v3 .content-block-wrapper .zip-code-error-wrapper {
  padding-top: 0;
}
.header-v3 .content-block-wrapper .zip-code-error-wrapper .suggestion-wrapper {
  border-radius: .25rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: .25rem 0;
  align-items: center;
}
.header-v3 .content-block-wrapper .zip-code-error-wrapper .suggestion-wrapper .suggestion-message,
.header-v3 .content-block-wrapper .zip-code-error-wrapper .suggestion-wrapper .zip-code-error-message {
  color: #c41230;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-right: 0.5rem;
}
.header-v3 .content-block-wrapper .zip-code-error-wrapper .suggestion-wrapper svg {
  width: 1.375rem;
  margin-top: 0.188rem;
  align-self: flex-start;
  margin-right: 0.375rem;
}
.header-v3 .content-block-wrapper #update-location-btn:disabled {
  background: #f2f2f2;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .utility-nav-wrapper-mobile {
    display: none;
  }
  .modal-box.user-location-modal-box {
    padding: 2.5rem;
  }
  .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .utilityNav {
    background-color: #e2e2e2;
    position: relative;
    z-index: 25;
  }
  .utility-nav__container {
    height: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    transform: translateX(0);
    position: relative;
    max-width: 74.5rem;
    margin: 0 auto;
  }
  .utility-nav__container .hide {
    display: none;
  }
  .utility-nav__container .header-chat-link {
    font-size: 0.75rem;
  }
  .utility-nav__container .header-chat-link:focus-visible {
    outline-width: .125rem;
  }
  .utility-nav__container .header-chat-link-icon {
    margin-right: .25rem;
  }
  .utility-nav__link {
    font-size: .75rem;
    line-height: 1.33;
  }
  .utility-nav__link-wrapper {
    padding-left: 1rem;
    padding-top: unset;
    justify-content: center;
  }
  .utility-nav__link-icon {
    padding-right: .25rem;
  }
  .utility-nav__cross-site-navigation {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 2.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    padding: 0 0 0 .563rem;
  }
  .utility-nav__cross-site-navigation-brands-label {
    padding-bottom: 0;
  }
  .utility-nav__cross-site-navigation-item {
    margin: 0 0 0 1.25rem;
  }
  .utility-nav__switch-links-navigation ~ .utility-nav__cross-site-navigation {
    display: none;
  }
  .utility-nav__switch-links-navigation {
    display: flex;
    margin-right: auto;
    height: 100%;
    align-items: center;
    padding-left: 1.5rem;
  }
  .utility-nav__switch-links-navigation--mobile {
    display: none;
  }
  .utility-nav__switch-links-navigation--desktop {
    display: flex;
    margin-right: auto;
    height: 100%;
    align-items: center;
  }
  .utility-nav__switch-link-wrapper {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    height: 100%;
    align-items: center;
    display: flex;
  }
  .utility-nav__switch-link-wrapper--primary {
    background-color: #ffffff;
    pointer-events: none;
    cursor: default;
  }
  .utility-nav__switch-link {
    font-family: "Nunito", sans-serif;
    display: flex;
    margin-right: auto;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .875rem;
    color: #000000;
  }
  .utility-nav__switch-link:hover {
    color: #000000;
  }
  .utility-nav__switch-link-icon {
    margin-left: .375rem;
  }
  [lang$=CA] .utility-nav__cross-site-navigation-item {
    margin: 0 0 0 1.5rem;
  }
}
@media (min-width: 64.01rem) and (max-width: 75rem) {
  .utility-nav__cross-site-navigation-item {
    max-width: 4.8127rem;
    margin: 0 0 0 0.25rem;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .utility-nav-wrapper-mobile {
    display: none;
  }
  .author-mode .modal-box.user-location-modal-box {
    padding: 2.5rem;
  }
  .author-mode .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .author-mode .utilityNav {
    background-color: #e2e2e2;
    position: relative;
    z-index: 25;
  }
  .author-mode .utility-nav__container {
    height: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    transform: translateX(0);
    position: relative;
    max-width: 74.5rem;
    margin: 0 auto;
  }
  .author-mode .utility-nav__container .hide {
    display: none;
  }
  .author-mode .utility-nav__container .header-chat-link {
    font-size: 0.75rem;
  }
  .author-mode .utility-nav__container .header-chat-link:focus-visible {
    outline-width: .125rem;
  }
  .author-mode .utility-nav__container .header-chat-link-icon {
    margin-right: .25rem;
  }
  .author-mode .utility-nav__link {
    font-size: .75rem;
    line-height: 1.33;
  }
  .author-mode .utility-nav__link-wrapper {
    padding-left: 1rem;
    padding-top: unset;
    justify-content: center;
  }
  .author-mode .utility-nav__link-icon {
    padding-right: .25rem;
  }
  .author-mode .utility-nav__cross-site-navigation {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 2.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    padding: 0 0 0 .563rem;
  }
  .author-mode .utility-nav__cross-site-navigation-brands-label {
    padding-bottom: 0;
  }
  .author-mode .utility-nav__cross-site-navigation-item {
    margin: 0 0 0 1.25rem;
  }
  .author-mode .utility-nav__switch-links-navigation ~ .author-mode .utility-nav__cross-site-navigation {
    display: none;
  }
  .author-mode .utility-nav__switch-links-navigation {
    display: flex;
    margin-right: auto;
    height: 100%;
    align-items: center;
    padding-left: 1.5rem;
  }
  .author-mode .utility-nav__switch-links-navigation--mobile {
    display: none;
  }
  .author-mode .utility-nav__switch-links-navigation--desktop {
    display: flex;
    margin-right: auto;
    height: 100%;
    align-items: center;
  }
  .author-mode .utility-nav__switch-link-wrapper {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    height: 100%;
    align-items: center;
    display: flex;
  }
  .author-mode .utility-nav__switch-link-wrapper--primary {
    background-color: #ffffff;
    pointer-events: none;
    cursor: default;
  }
  .author-mode .utility-nav__switch-link {
    font-family: "Nunito", sans-serif;
    display: flex;
    margin-right: auto;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .875rem;
    color: #000000;
  }
  .author-mode .utility-nav__switch-link:hover {
    color: #000000;
  }
  .author-mode .utility-nav__switch-link-icon {
    margin-left: .375rem;
  }
  .author-mode [lang$=CA] .utility-nav__cross-site-navigation-item {
    margin: 0 0 0 1.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .utility-nav-wrapper-mobile {
    display: none;
  }
  .modal-box.user-location-modal-box {
    padding: 2.5rem;
  }
  .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .utilityNav {
    background-color: #e2e2e2;
    position: relative;
    z-index: 25;
  }
  .utility-nav__container {
    height: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    transform: translateX(0);
    position: relative;
    max-width: 74.5rem;
    margin: 0 auto;
  }
  .utility-nav__container .hide {
    display: none;
  }
  .utility-nav__container .header-chat-link {
    font-size: 0.75rem;
  }
  .utility-nav__container .header-chat-link:focus-visible {
    outline-width: .125rem;
  }
  .utility-nav__container .header-chat-link-icon {
    margin-right: .25rem;
  }
  .utility-nav__link {
    font-size: .75rem;
    line-height: 1.33;
  }
  .utility-nav__link-wrapper {
    padding-left: 1rem;
    padding-top: unset;
    justify-content: center;
  }
  .utility-nav__link-icon {
    padding-right: .25rem;
  }
  .utility-nav__cross-site-navigation {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 2.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    padding: 0 0 0 .563rem;
  }
  .utility-nav__cross-site-navigation-brands-label {
    padding-bottom: 0;
  }
  .utility-nav__cross-site-navigation-item {
    margin: 0 0 0 1.25rem;
  }
  .utility-nav__switch-links-navigation ~ .utility-nav__cross-site-navigation {
    display: none;
  }
  .utility-nav__switch-links-navigation {
    display: flex;
    margin-right: auto;
    height: 100%;
    align-items: center;
    padding-left: 1.5rem;
  }
  .utility-nav__switch-links-navigation--mobile {
    display: none;
  }
  .utility-nav__switch-links-navigation--desktop {
    display: flex;
    margin-right: auto;
    height: 100%;
    align-items: center;
  }
  .utility-nav__switch-link-wrapper {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    height: 100%;
    align-items: center;
    display: flex;
  }
  .utility-nav__switch-link-wrapper--primary {
    background-color: #ffffff;
    pointer-events: none;
    cursor: default;
  }
  .utility-nav__switch-link {
    font-family: "Nunito", sans-serif;
    display: flex;
    margin-right: auto;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .875rem;
    color: #000000;
  }
  .utility-nav__switch-link:hover {
    color: #000000;
  }
  .utility-nav__switch-link-icon {
    margin-left: .375rem;
  }
  [lang$=CA] .utility-nav__cross-site-navigation-item {
    margin: 0 0 0 1.5rem;
  }
}
@media all and (max-width: 64.01rem) {
  .header-v3 .content-block-wrapper {
    max-width: 28.125rem;
    margin: auto;
  }
}
@media all and (min-width: 48rem) {
  .utility-nav__container .utility-nav__link-wrapper--mobile {
    display: none;
  }
}
[lang$=CA] .utility-nav__container .header-chat-link-icon {
  display: none;
}
@media all and (max-width: 64.01rem) and (orientation: landscape) {
  .header-v3 .content-block-wrapper {
    top: 0;
  }
}
.user-location-modal-box {
  background: #ffffff;
  padding: 1.25rem;
}
.user-location-modal-box .modal-dialog .modal-content .modal-header {
  display: none;
}
.user-location-modal-box .location-block {
  text-align: left;
}
.user-location-modal-box .location-block .button {
  margin-bottom: 0;
  width: 100%;
}
.user-location-modal-box .location-block .button:focus-visible {
  outline-width: .125rem;
  outline-offset: .125rem;
}
.user-location-modal-box .location-block .location-headline-dropdown {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.user-location-modal-box .location-block .location-text-block {
  font-size: 0.75rem;
  line-height: 1.33;
  margin-bottom: 0.5rem;
}
.user-location-modal-box .location-block .location-text-label {
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.user-location-modal-box .location-block .form-block-location {
  margin-bottom: 1rem;
}
.user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code {
  display: flex;
  border: 2px solid #000000;
}
.user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code .zip-loader,
.user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code .zip-resolved-checkmark {
  position: inherit;
  align-self: center;
  margin-right: 0.5rem;
}
.user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code.zip-code-required {
  border-color: #c80a33;
}
.user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2 {
  border: 0;
}
.user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2:focus-visible {
  outline: 0.125rem solid #000000;
}
.user-location-modal-box .location-block .form-input {
  font-size: 0.75rem;
}
.user-location-modal-box .location-block .close-modal-overlay {
  position: absolute;
  right: 1rem;
}
.user-location-modal-box .location-block .close-modal-overlay svg {
  height: 0.813rem;
  width: 0.875rem;
}
.user-location-modal-box .location-block .zip-code-error {
  color: #c41230;
}
.user-location-modal-box .location-block .location-modal-button {
  font-size: 1rem;
  line-height: 1.188rem;
  margin-top: 0.5rem;
}
.user-location-modal-box .location-block .zip-code-error-wrapper {
  padding-top: 0;
}
.user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper {
  border-radius: .25rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: .25rem 0;
  align-items: center;
}
.user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper .suggestion-message,
.user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper .zip-code-error-message {
  color: #c41230;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-right: 0.5rem;
}
.user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper svg {
  width: 1.375rem;
  margin-top: 0.188rem;
  align-self: flex-start;
  margin-right: 0.375rem;
}
.user-location-modal-box .location-block #update-location-btn:disabled {
  background: #f2f2f2;
}

.change-location-v5 {
  z-index: 1051;
}
.change-location-v5 .close-button-wrapper {
  top: -4.9rem;
  right: -4.9rem;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .change-location-v5 .utility-nav-wrapper-mobile {
    display: none;
  }
  .change-location-v5 .modal-box.user-location-modal-box {
    padding: 2.5rem 5rem !important;
    max-width: 42rem;
    margin-top: 8.5rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-body.user-location-modal-body {
    margin-top: -1rem;
  }
  .change-location-v5 .utilityNav {
    background-color: #e2e2e2;
    position: relative;
    z-index: 25;
  }
}
@media (min-width: 64.01rem) and (max-width: 75rem) {
  .change-location-v5 .utility-nav__cross-site-navigation-item {
    max-width: 4.8127rem;
    margin: 0 0 0 0.25rem;
  }
}
@media all and (min-width: 64.01rem) {
  .change-location-v5 .author-mode .utility-nav-wrapper-mobile {
    display: none;
  }
  .change-location-v5 .author-mode .modal-box.user-location-modal-box {
    padding: 2.5rem 5rem !important;
    max-width: 42rem;
    margin-top: 8.5rem;
  }
  .change-location-v5 .author-mode .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .change-location-v5 .author-mode .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-body.user-location-modal-body {
    margin-top: -1rem;
  }
  .change-location-v5 .author-mode .utilityNav {
    background-color: #e2e2e2;
    position: relative;
    z-index: 25;
  }
}
@media all and (min-width: 85.375rem) {
  .change-location-v5 .utility-nav-wrapper-mobile {
    display: none;
  }
  .change-location-v5 .modal-box.user-location-modal-box {
    padding: 2.5rem 5rem !important;
    max-width: 42rem;
    margin-top: 8.5rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-body.user-location-modal-body {
    margin-top: -1rem;
  }
  .change-location-v5 .utilityNav {
    background-color: #e2e2e2;
    position: relative;
    z-index: 25;
  }
}
@media all and (max-width: 64.01rem) {
  .change-location-v5 .header-v3 .content-block-wrapper {
    max-width: 28.125rem;
    margin: auto;
  }
}
@media all and (min-width: 48rem) {
  .change-location-v5 .utility-nav__container .utility-nav__link-wrapper--mobile {
    display: none;
  }
}
@media all and (max-width: 64.01rem) and (orientation: landscape) {
  .change-location-v5 .header-v3 .content-block-wrapper {
    top: 0;
  }
}
.change-location-v5 .user-location-modal-box {
  background: #ffffff;
  padding: 1.25rem;
}
.change-location-v5 .user-location-modal-box .modal-dialog .modal-content .modal-header {
  display: none;
}
.change-location-v5 .user-location-modal-box .location-block {
  text-align: left;
  padding: 0px;
}
.change-location-v5 .user-location-modal-box .location-block .button {
  margin-bottom: 0;
  width: 100%;
}
.change-location-v5 .user-location-modal-box .location-block .button:focus-visible {
  outline-width: .125rem;
  outline-offset: .125rem;
}
.change-location-v5 .user-location-modal-box .location-block .location-headline-dropdown {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 24px;
  text-transform: uppercase;
  font-family: 'Avenir65Medium';
  line-height: 120%;
  color: #000000;
}
.change-location-v5 .user-location-modal-box .location-block .location-text-block {
  font-size: 0.875rem !important;
  margin-bottom: 1.25rem !important;
  line-height: 120% !important;
  font-weight: 400;
  color: #000000;
  font-family: 'Avenir55Roman';
}
.change-location-v5 .user-location-modal-box .location-block .location-text-label {
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.change-location-v5 .user-location-modal-box .location-block .current-location-block {
  font-weight: 700;
  font-size: 14px;
  gap: 4px;
  display: flex;
  line-height: 120%;
  color: #000000;
}
.change-location-v5 .user-location-modal-box .location-block .location-value {
  color: #000000;
}
.change-location-v5 .user-location-modal-box .location-block .form-location {
  margin-top: 8px;
}
.change-location-v5 .user-location-modal-box .location-block .update-location-block {
  display: flex;
  justify-content: center;
}
.change-location-v5 .user-location-modal-box .location-block .update-location-block .button {
  width: auto;
  font-size: 16px;
  padding: 12px 20px;
}
.change-location-v5 .user-location-modal-box .location-block .form-block-location {
  margin-bottom: 2rem !important;
}
.change-location-v5 .user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code {
  display: flex;
  border: 1px solid #D5D5D5 !important;
}
.change-location-v5 .user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code .zip-loader,
.change-location-v5 .user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code .zip-resolved-checkmark {
  position: inherit;
  align-self: center;
  margin-right: 0.5rem;
}
.change-location-v5 .user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code.zip-code-required {
  border-color: #CF4632 !important;
}
.change-location-v5 .user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2:focus-visible {
  border: 0;
}
.change-location-v5 .user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code input.zip-code-required:focus,
.change-location-v5 .user-location-modal-box .location-block .form-block-location .form-location .form-location-zip-code input.zip-code-required:focus-visible {
  outline: none;
}
.change-location-v5 .user-location-modal-box .location-block .form-input {
  font-size: 0.875rem !important;
  padding: 0.5rem;
  line-height: 120%;
  font-weight: 400;
  color: #5B5B5B;
}
.change-location-v5 .user-location-modal-box .location-block .close-modal-overlay {
  position: absolute;
  right: 1rem;
}
.change-location-v5 .user-location-modal-box .location-block .close-modal-overlay svg {
  height: 0.813rem;
  width: 0.875rem;
}
.change-location-v5 .user-location-modal-box .location-block .zip-code-error {
  color: #c41230;
}
.change-location-v5 .user-location-modal-box .location-block .location-modal-button {
  font-size: 1rem;
  line-height: 1.188rem;
  margin-top: 0.5rem;
}
.change-location-v5 .user-location-modal-box .location-block .zip-code-error-wrapper {
  padding-top: 0;
}
.change-location-v5 .user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper {
  border-radius: .25rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: .25rem 0;
  align-items: center;
  gap: 6px;
}
.change-location-v5 .user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper .zip-validation-error {
  padding-top: 4px;
}
.change-location-v5 .user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper .suggestion-message,
.change-location-v5 .user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper .zip-code-error-message {
  font-size: 0.625rem;
  color: #CF4632;
  line-height: 120%;
  font-weight: 400;
}
.change-location-v5 .user-location-modal-box .location-block .zip-code-error-wrapper .suggestion-wrapper svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.188rem;
  align-self: flex-start;
  margin-right: 0;
}
.change-location-v5 .user-location-modal-box .location-block #update-location-btn:disabled {
  background: #f2f2f2;
}
@media (max-width: 767px) {
  .change-location-v5 .modal-box.user-location-modal-box {
    padding: 2rem 1rem;
    margin-top: 10rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box .location-block .location-headline-dropdown {
    font-size: 16px;
    margin-top: -1rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box .location-block .form-block-location {
    margin-bottom: 1.25rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .close-button-wrapper {
    top: -4.3rem;
    right: -0.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .change-location-v5 .modal-box.user-location-modal-box {
    padding: 2.5rem 5rem;
    margin-top: 10rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box .location-block .location-headline-dropdown {
    margin-top: -1rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box .location-block .form-block-location {
    margin-bottom: 1.25rem;
  }
  .change-location-v5 .modal-box.user-location-modal-box #update-location-btn {
    width: auto;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .modal-header {
    display: inline-block;
  }
  .change-location-v5 .modal-box.user-location-modal-box .modal-dialog .modal-content .close-button-wrapper {
    top: -4.3rem;
    right: -4.6rem;
  }
}
.modal-bg.modal-change-location {
  z-index: 1050;
}

.flyout-container {
  background-color: #ffffff;
  width: 100%;
}
.flyout-container .flyout-header {
  display: none;
}
.flyout-container .flyout-container__left-columns {
  display: flex;
  flex-direction: column;
}
.flyout-container .flyout-container__left-columns .flyout-left-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.flyout-container .flyout-container__left-columns .flyout-left-col.flyout-horizontal-line {
  border: none;
}
.flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column:not(:last-child) {
  border: none;
}
.flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  width: 100%;
}
.flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 {
  clear: both;
}
.flyout-container .flyout-container__left-columns .flyout-right-col {
  margin: 0 auto;
}
.flyout-container .platform-components-page-list .item_card {
  flex: 0 0 100%;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-container {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: row;
  }
  .flyout-container .flyout-header {
    display: block;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-top: 1rem;
    margin-bottom: .5rem;
    width: fit-content;
  }
  .flyout-container .flyout-header:empty {
    margin-bottom: 0;
    margin-top: 0;
  }
  .flyout-container .flyout-container__left-columns {
    display: flex;
    flex-direction: column;
    max-width: 65%;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col {
    flex-direction: row;
    width: fit-content;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col.flyout-horizontal-line {
    border-top: solid 0.0625rem #353535;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column {
    margin-top: 1rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    min-width: 13.5rem;
    width: auto;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column:not(:last-child) {
    border-right: solid 0.03125rem #d8d8d8;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-feature-cards__wrapper {
    width: 25rem;
  }
  .flyout-container .flyout-right-col {
    width: inherit;
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
  }
  .flyout-container .flyout-right-col.flyout-right-col--full-size {
    padding: 0;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-container {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: row;
  }
  .author-mode .flyout-container .flyout-header {
    display: block;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-top: 1rem;
    margin-bottom: .5rem;
    width: fit-content;
  }
  .author-mode .flyout-container .flyout-header:empty {
    margin-bottom: 0;
    margin-top: 0;
  }
  .author-mode .flyout-container .flyout-container__left-columns {
    display: flex;
    flex-direction: column;
    max-width: 65%;
  }
  .author-mode .flyout-container .flyout-container__left-columns .flyout-left-col {
    flex-direction: row;
    width: fit-content;
  }
  .author-mode .flyout-container .flyout-container__left-columns .flyout-left-col.flyout-horizontal-line {
    border-top: solid 0.0625rem #353535;
  }
  .author-mode .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column {
    margin-top: 1rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    min-width: 13.5rem;
    width: auto;
  }
  .author-mode .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column:not(:last-child) {
    border-right: solid 0.03125rem #d8d8d8;
  }
  .author-mode .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-feature-cards__wrapper {
    width: 25rem;
  }
  .author-mode .flyout-container .flyout-right-col {
    width: inherit;
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
  }
  .author-mode .flyout-container .flyout-right-col.flyout-right-col--full-size {
    padding: 0;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-container {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: row;
  }
  .flyout-container .flyout-header {
    display: block;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-top: 1rem;
    margin-bottom: .5rem;
    width: fit-content;
  }
  .flyout-container .flyout-header:empty {
    margin-bottom: 0;
    margin-top: 0;
  }
  .flyout-container .flyout-container__left-columns {
    display: flex;
    flex-direction: column;
    max-width: 65%;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col {
    flex-direction: row;
    width: fit-content;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col.flyout-horizontal-line {
    border-top: solid 0.0625rem #353535;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column {
    margin-top: 1rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    min-width: 13.5rem;
    width: auto;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column:not(:last-child) {
    border-right: solid 0.03125rem #d8d8d8;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-feature-cards__wrapper {
    width: 25rem;
  }
  .flyout-container .flyout-right-col {
    width: inherit;
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
  }
  .flyout-container .flyout-right-col.flyout-right-col--full-size {
    padding: 0;
  }
}

.flyout-links {
  margin-top: 0;
}
.flyout-links .flyout-links_container .flyout-links_header {
  border-bottom: solid 1px #dedede;
  padding: .313rem 0 .313rem 1rem;
}
.flyout-links .flyout-links_container .flyout-links_header.border-none {
  border-bottom: none;
}
.flyout-links .flyout-links_container .flyout-links_header-wrapper {
  margin: 0;
}
.flyout-links .flyout-links_container .flyout-links_header-wrapper,
.flyout-links .flyout-links_container .flyout-links_header a {
  font-family: "HelveticaNeue", sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-size: 1rem;
  font-style: normal;
  line-height: 3rem;
  letter-spacing: normal;
  color: #000000;
  text-decoration: none;
  min-height: 3rem;
}
.flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link {
  position: relative;
  width: 100%;
  display: inline-block;
  text-align: left;
}
.flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link--ref {
  display: block;
}
.flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link .sub-link-arrow-right,
.flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link .sub-link-arrow-up {
  content: '';
  transition: 0.5s;
  border: solid #898989;
  border-width: 0 0.05rem 0.05rem 0;
  display: block;
  padding: 0.25rem;
  margin-left: 0.1875rem;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  right: 1rem;
  top: 1.25rem;
  float: right;
}
.flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link .sub-link-arrow-up {
  display: none;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
}
.flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link.desktop {
  display: none;
}
.flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header-wrapper,
.flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header a {
  transition: 0.5s;
  color: #edb110;
}
.flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header .flyout-links_header-link .sub-link-arrow-right {
  display: none;
}
.flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header .flyout-links_header-link .sub-link-arrow-up {
  display: block;
}
.flyout-links .flyout-links_container.expanded-sub-link .sub-link-arrow-right {
  border: solid #edb110;
  border-width: 0 0.05rem 0.05rem 0;
  transition: 0.5s;
  transform: rotate(-135deg);
}
.flyout-links .flyout-links_container.expanded-sub-link ul {
  display: block;
}
.flyout-links .flyout-links_container ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.flyout-links .flyout-links_container ul li {
  font-weight: 500;
  padding: .5rem 0 .5rem 2rem;
  border-bottom: solid 1px #dedede;
  text-align: left;
}
.flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
  font-weight: 500;
  font-stretch: normal;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: normal;
  color: #000000;
  text-decoration: none;
  display: block;
  height: 3rem;
  line-height: 3rem;
}
.keyboard-navigation .flyout-links {
  padding-right: 0.5rem;
}
.keyboard-navigation .flyout-links .flyout-links_container:focus,
.keyboard-navigation .flyout-links .flyout-links_container a:focus {
  border: 1px dotted #000000;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-links .flyout-links_container {
    margin-bottom: 1rem;
  }
  .flyout-links .flyout-links_container .flyout-links_header {
    border-bottom: none;
    padding: 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header-wrapper,
  .flyout-links .flyout-links_container .flyout-links_header a {
    font-size: .875rem;
    line-height: 1.36;
    font-weight: bold;
    min-height: auto;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link .sub-link-arrow-right {
    position: static;
    display: inline-block;
    float: unset;
    margin-right: 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link.desktop {
    display: block;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link.mobile {
    display: none;
  }
  .flyout-links .flyout-links_container .flyout-links_header .hide {
    display: none;
  }
  .flyout-links .flyout-links_container ul {
    display: block;
    margin-top: 0.5rem;
  }
  .flyout-links .flyout-links_container ul li {
    font-weight: unset;
    padding: 0;
    border-bottom: none;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
    font-weight: normal;
    color: #353535;
    line-height: 1.625rem;
    height: auto;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a:hover {
    text-decoration: underline;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-links .flyout-links_container {
    margin-bottom: 1rem;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header {
    border-bottom: none;
    padding: 0;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header-wrapper,
  .author-mode .flyout-links .flyout-links_container .flyout-links_header a {
    font-size: .875rem;
    line-height: 1.36;
    font-weight: bold;
    min-height: auto;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link .sub-link-arrow-right {
    position: static;
    display: inline-block;
    float: unset;
    margin-right: 0;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link.desktop {
    display: block;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link.mobile {
    display: none;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header .hide {
    display: none;
  }
  .author-mode .flyout-links .flyout-links_container ul {
    display: block;
    margin-top: 0.5rem;
  }
  .author-mode .flyout-links .flyout-links_container ul li {
    font-weight: unset;
    padding: 0;
    border-bottom: none;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
    font-weight: normal;
    color: #353535;
    line-height: 1.625rem;
    height: auto;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a:hover {
    text-decoration: underline;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-links .flyout-links_container {
    margin-bottom: 1rem;
  }
  .flyout-links .flyout-links_container .flyout-links_header {
    border-bottom: none;
    padding: 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header-wrapper,
  .flyout-links .flyout-links_container .flyout-links_header a {
    font-size: .875rem;
    line-height: 1.36;
    font-weight: bold;
    min-height: auto;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link .sub-link-arrow-right {
    position: static;
    display: inline-block;
    float: unset;
    margin-right: 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link.desktop {
    display: block;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link.mobile {
    display: none;
  }
  .flyout-links .flyout-links_container .flyout-links_header .hide {
    display: none;
  }
  .flyout-links .flyout-links_container ul {
    display: block;
    margin-top: 0.5rem;
  }
  .flyout-links .flyout-links_container ul li {
    font-weight: unset;
    padding: 0;
    border-bottom: none;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
    font-weight: normal;
    color: #353535;
    line-height: 1.625rem;
    height: auto;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a:hover {
    text-decoration: underline;
  }
}

.flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header a {
  color: #c41230;
}
.flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header-link .sub-link-arrow-right {
  display: block !important;
  border: solid #c41230 !important;
  border-width: 0 .05rem .05rem 0 !important;
  transition: .5s;
  transform: rotate(-135deg);
}
.flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header-link .sub-link-arrow-up {
  display: none !important;
}
.flyout-links .flyout-links_container.expanded-sub-link ul {
  transition: .5s;
}
.flyout-links .flyout-links_container .flyout-links_header {
  padding: 1rem 0 1rem 2rem;
}
.flyout-links .flyout-links_container .flyout-links_header a {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.3125rem;
  text-transform: capitalize;
  color: #000000;
}
.flyout-links .flyout-links_container .flyout-links_header-wrapper {
  margin: auto 0;
}
.flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  text-transform: capitalize;
  color: #000000;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-links .flyout-links_container {
    text-align: left;
  }
  .flyout-links .flyout-links_container .flyout-links_list {
    padding-right: 0.2rem;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
    font-size: 0.875rem;
    line-height: 1.75rem;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a:hover {
    color: #c41230 !important;
    font-size: 0.875rem;
    text-decoration: none;
  }
  .flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header-wrapper,
  .flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header a {
    color: #c41230;
  }
  .flyout-links .flyout-links_container.expanded-sub-link .sub-link-arrow-right {
    border: solid #c41230;
  }
  .flyout-links .flyout-links_container .flyout-links_header {
    padding: 0 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header-wrapper,
  .flyout-links .flyout-links_container .flyout-links_header a {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.813rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: #c41230;
    margin-bottom: 1rem;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-links .flyout-links_container {
    text-align: left;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_list {
    padding-right: 0.2rem;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
    font-size: 0.875rem;
    line-height: 1.75rem;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a:hover {
    color: #c41230 !important;
    font-size: 0.875rem;
    text-decoration: none;
  }
  .author-mode .flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header-wrapper,
  .author-mode .flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header a {
    color: #c41230;
  }
  .author-mode .flyout-links .flyout-links_container.expanded-sub-link .sub-link-arrow-right {
    border: solid #c41230;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header {
    padding: 0 0;
  }
  .author-mode .flyout-links .flyout-links_container .flyout-links_header-wrapper,
  .author-mode .flyout-links .flyout-links_container .flyout-links_header a {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.813rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: #c41230;
    margin-bottom: 1rem;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-links .flyout-links_container {
    text-align: left;
  }
  .flyout-links .flyout-links_container .flyout-links_list {
    padding-right: 0.2rem;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
    font-size: 0.875rem;
    line-height: 1.75rem;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a:hover {
    color: #c41230 !important;
    font-size: 0.875rem;
    text-decoration: none;
  }
  .flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header-wrapper,
  .flyout-links .flyout-links_container.expanded-sub-link .flyout-links_header a {
    color: #c41230;
  }
  .flyout-links .flyout-links_container.expanded-sub-link .sub-link-arrow-right {
    border: solid #c41230;
  }
  .flyout-links .flyout-links_container .flyout-links_header {
    padding: 0 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header-wrapper,
  .flyout-links .flyout-links_container .flyout-links_header a {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.813rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: #c41230;
    margin-bottom: 1rem;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .flyout-links {
    margin-top: 0;
  }
  .flyout-links .flyout-links_container {
    margin-bottom: 0;
  }
  .flyout-links .flyout-links_container ul {
    display: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .flyout-links .flyout-links_container ul li {
    font-weight: 500;
    border-bottom: solid 0.0625rem #d2d2d2;
    font-size: 1rem;
    padding: 1rem 0 1rem 1.5rem;
  }
  .flyout-links .flyout-links_container.expanded-sub-link ul {
    transition: .5s;
    display: block;
  }
  .flyout-links .flyout-links_container .flyout-links_header {
    border-bottom: solid 0.0625rem #d2d2d2;
    padding: 1rem 0 1rem 1.5rem;
  }
  .flyout-links .flyout-links_container .flyout-links_header-wrapper,
  .flyout-links .flyout-links_container .flyout-links_header a {
    font-family: "Avenir", sans-serif;
    font-weight: normal;
    font-stretch: normal;
    font-size: 1rem;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    text-decoration: none;
    text-transform: capitalize;
    margin-bottom: 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link {
    position: relative;
    width: 100%;
    display: inline-block;
  }
  .flyout-links .flyout-links_container .flyout-links_header .flyout-links_header-link .sub-link-arrow-right {
    display: block;
    position: absolute;
    border: solid #5e5e5e;
    border-width: 0 0.05rem 0.05rem 0;
  }
  .flyout-links .flyout-links_container .flyout-links_header.flyout-links__last {
    border-bottom: solid 0.0625rem #d2d2d2;
  }
  .flyout-links .flyout-links_container .flyout-links_header.flyout-links__last:empty {
    border-bottom: none;
    margin: 0 0;
    padding: 0 0;
  }
  .flyout-links .flyout-links_container .flyout-links_list .flyout-links_list-item a {
    font-size: 1rem;
  }
}

.circuit-breaker-banner {
  min-height: 3.5rem;
  line-height: 1.15;
  border: none;
  background-color: #eeeeee;
}
.circuit-breaker-banner:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.circuit-breaker-banner.circuit-breaker-banner--fixed:hover {
  background-color: #eeeeee;
}
.circuit-breaker-banner__link,
.circuit-breaker-banner__message {
  font-family: "Avenir-Roman", sans-serif;
  font-size: 0.75rem;
}
.circuit-breaker-banner__message {
  color: #2e2e2e;
  font-weight: 700;
}
.circuit-breaker-banner__link {
  text-decoration: underline;
}
.circuit-breaker-banner--fixed {
  z-index: 180;
}

.flyout-feature-cards {
  display: none;
}
.flyout-feature-cards__play-button,
.flyout-feature-cards__pause-button {
  background-color: #797979;
  border: medium none;
  color: #ffffff;
  font-size: 1.125rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1.5rem);
  border-radius: 100%;
  z-index: 1;
  display: none;
}
.flyout-feature-cards__play-button.active {
  display: block;
}
.flyout-feature-cards__content {
  position: relative;
}
.flyout-feature-cards__content:hover .flyout-feature-cards__pause-button.active {
  display: block;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-feature-cards {
    display: flex;
    flex-direction: column;
  }
  .flyout-feature-cards__wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    max-width: 28.5rem;
    max-height: 11.25rem;
    overflow: hidden;
  }
  .flyout-feature-cards__wrapper:hover {
    text-decoration: none;
  }
  .flyout-feature-cards__wrapper:hover .flyout-feature-cards__asset,
  .flyout-feature-cards__wrapper:hover .cq-dd-image {
    transform: scale(1.04);
  }
  .flyout-feature-cards__wrapper:hover .flyout-feature-cards__right-column {
    transform-style: preserve-3d;
    transition: transform 300ms ease-in-out;
    transform: translateX(0.25rem) translateY(0) translateZ(0);
  }
  .flyout-feature-cards__content {
    width: 30%;
    max-width: 9.25rem;
    align-items: center;
  }
  .flyout-feature-cards__asset,
  .flyout-feature-cards .cq-dd-image {
    max-height: 11.25rem;
    width: 100%;
    height: auto;
    transition: all 600ms ease-in-out;
  }
  .flyout-feature-cards__link__text {
    text-decoration: underline;
    cursor: pointer;
    max-width: 95%;
  }
  .flyout-feature-cards__link__arrow {
    display: inline-block;
    margin-left: .3125rem;
    text-decoration: none;
    position: relative;
    top: .2rem;
  }
  .flyout-feature-cards__right-column {
    display: flex;
    flex-direction: column;
    width: 70%;
    max-width: 19.25rem;
    padding-bottom: 2.5rem;
  }
  .flyout-feature-cards.flyout-feature-cards--row {
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-feature-cards {
    display: flex;
    flex-direction: column;
  }
  .author-mode .flyout-feature-cards__wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    max-width: 28.5rem;
    max-height: 11.25rem;
    overflow: hidden;
  }
  .author-mode .flyout-feature-cards__wrapper:hover {
    text-decoration: none;
  }
  .author-mode .flyout-feature-cards__wrapper:hover .flyout-feature-cards__asset,
  .author-mode .flyout-feature-cards__wrapper:hover .cq-dd-image {
    transform: scale(1.04);
  }
  .author-mode .flyout-feature-cards__wrapper:hover .flyout-feature-cards__right-column {
    transform-style: preserve-3d;
    transition: transform 300ms ease-in-out;
    transform: translateX(0.25rem) translateY(0) translateZ(0);
  }
  .author-mode .flyout-feature-cards__content {
    width: 30%;
    max-width: 9.25rem;
    align-items: center;
  }
  .author-mode .flyout-feature-cards__asset,
  .author-mode .flyout-feature-cards .cq-dd-image {
    max-height: 11.25rem;
    width: 100%;
    height: auto;
    transition: all 600ms ease-in-out;
  }
  .author-mode .flyout-feature-cards__link__text {
    text-decoration: underline;
    cursor: pointer;
    max-width: 95%;
  }
  .author-mode .flyout-feature-cards__link__arrow {
    display: inline-block;
    margin-left: .3125rem;
    text-decoration: none;
    position: relative;
    top: .2rem;
  }
  .author-mode .flyout-feature-cards__right-column {
    display: flex;
    flex-direction: column;
    width: 70%;
    max-width: 19.25rem;
    padding-bottom: 2.5rem;
  }
  .author-mode .flyout-feature-cards.flyout-feature-cards--row {
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-feature-cards {
    display: flex;
    flex-direction: column;
  }
  .flyout-feature-cards__wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    max-width: 28.5rem;
    max-height: 11.25rem;
    overflow: hidden;
  }
  .flyout-feature-cards__wrapper:hover {
    text-decoration: none;
  }
  .flyout-feature-cards__wrapper:hover .flyout-feature-cards__asset,
  .flyout-feature-cards__wrapper:hover .cq-dd-image {
    transform: scale(1.04);
  }
  .flyout-feature-cards__wrapper:hover .flyout-feature-cards__right-column {
    transform-style: preserve-3d;
    transition: transform 300ms ease-in-out;
    transform: translateX(0.25rem) translateY(0) translateZ(0);
  }
  .flyout-feature-cards__content {
    width: 30%;
    max-width: 9.25rem;
    align-items: center;
  }
  .flyout-feature-cards__asset,
  .flyout-feature-cards .cq-dd-image {
    max-height: 11.25rem;
    width: 100%;
    height: auto;
    transition: all 600ms ease-in-out;
  }
  .flyout-feature-cards__link__text {
    text-decoration: underline;
    cursor: pointer;
    max-width: 95%;
  }
  .flyout-feature-cards__link__arrow {
    display: inline-block;
    margin-left: .3125rem;
    text-decoration: none;
    position: relative;
    top: .2rem;
  }
  .flyout-feature-cards__right-column {
    display: flex;
    flex-direction: column;
    width: 70%;
    max-width: 19.25rem;
    padding-bottom: 2.5rem;
  }
  .flyout-feature-cards.flyout-feature-cards--row {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media all and (orientation: landscape) {
  .flyout-feature-cards {
    padding: 1rem 0 1rem 0;
  }
  .flyout-feature-cards__wrapper {
    background: #f2f2f2;
    max-width: 18.25rem;
    height: 7.5625rem;
    width: 100%;
    margin-top: 1rem;
  }
  .flyout-feature-cards__wrapper :first-of-type {
    margin-top: 0;
  }
  .flyout-feature-cards__right-column {
    padding: 0 1rem;
    text-align: left;
    width: 60%;
    justify-content: center;
  }
  .flyout-feature-cards__content {
    width: 7.5625rem;
    height: 7.5625rem;
  }
  .flyout-feature-cards__label,
  .flyout-feature-cards__header {
    font-family: "Avenir", sans-serif;
    font-weight: normal;
    font-size: 0.5625rem;
    line-height: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    background: #f2f2f2;
    font-style: normal;
  }
  .flyout-feature-cards__link__text {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.8125rem;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
  }
  .flyout-feature-cards__link__arrow {
    display: none;
  }
  .flyout-feature-cards.flyout-feature-cards--row {
    flex-direction: row;
    justify-content: flex-end;
  }
  .flyout-feature-cards.flyout-feature-cards--row .flyout-feature-cards__wrapper {
    max-width: 18.25rem;
    margin-right: 1rem;
  }
  .flyout-feature-cards.flyout-feature-cards--row .flyout-feature-cards__wrapper:last-child {
    margin-right: 0;
  }
  .flyout-feature-cards__asset,
  .flyout-feature-cards .cq-dd-image {
    height: 100%;
    object-fit: cover;
  }
  .author-mode .flyout-feature-cards {
    padding: 1rem 0 1rem 0;
  }
  .author-mode .flyout-feature-cards__wrapper {
    background: #f2f2f2;
    max-width: 18.25rem;
    height: 7.5625rem;
    width: 100%;
    margin-top: 1rem;
  }
  .author-mode .flyout-feature-cards__wrapper :first-of-type {
    margin-top: 0;
  }
  .author-mode .flyout-feature-cards__right-column {
    padding: 0 1rem;
    text-align: left;
    width: 60%;
    justify-content: center;
  }
  .author-mode .flyout-feature-cards__content {
    width: 7.5625rem;
    height: 7.5625rem;
  }
  .author-mode .flyout-feature-cards__label,
  .author-mode .flyout-feature-cards__header {
    font-family: "Avenir", sans-serif;
    font-weight: normal;
    font-size: 0.5625rem;
    line-height: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    background: #f2f2f2;
    font-style: normal;
  }
  .author-mode .flyout-feature-cards__link__text {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.8125rem;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
  }
  .author-mode .flyout-feature-cards__link__arrow {
    display: none;
  }
  .author-mode .flyout-feature-cards.flyout-feature-cards--row {
    flex-direction: row;
    justify-content: flex-end;
  }
  .author-mode .flyout-feature-cards.flyout-feature-cards--row .flyout-feature-cards__wrapper {
    max-width: 18.25rem;
    margin-right: 1rem;
  }
  .author-mode .flyout-feature-cards.flyout-feature-cards--row .flyout-feature-cards__wrapper:last-child {
    margin-right: 0;
  }
  .author-mode .flyout-feature-cards__asset,
  .author-mode .flyout-feature-cards .cq-dd-image {
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 64rem) {
  .flyout-feature-cards {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
  }
  .flyout-feature-cards__wrapper {
    background: #f2f2f2;
    height: 7.5625rem;
    width: fit-content;
    min-width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
  }
  .flyout-feature-cards__wrapper:first-of-type {
    margin-top: 0;
  }
  .flyout-feature-cards__content {
    width: 7.5625rem;
    height: 7.5625rem;
    align-items: center;
  }
  .flyout-feature-cards__right-column {
    padding: 1rem 1.5rem 1rem 1.5rem;
    text-align: left;
    width: 60%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    max-width: 19.25rem;
    line-height: 1.3rem;
  }
  .flyout-feature-cards__label,
  .flyout-feature-cards__header {
    font-family: "Avenir", sans-serif;
    font-weight: normal;
    font-size: .5625rem;
    line-height: .875rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #000000;
    background: #f2f2f2;
    font-style: normal;
  }
  .flyout-feature-cards__link__text {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: .8125rem;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
  }
  .flyout-feature-cards__asset,
  .flyout-feature-cards .cq-dd-image {
    height: 100%;
    object-fit: cover;
  }
  .flyout-feature-cards.flyout-feature-cards--row {
    flex-direction: column;
  }
}

@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .feature-blog {
    display: block;
    margin-bottom: 1rem;
    height: 100%;
  }
  .feature-blog__header {
    line-height: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    font-size: .875rem;
    color: #000000;
  }
  .feature-blog__container {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: 21.125rem;
  }
  .feature-blog__container .feature-blog-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0.125rem 0.25rem rgba(47, 35, 3, 0.2);
    border-radius: .5rem;
    width: 100%;
    margin: 0 .5rem;
    overflow: hidden;
  }
  .feature-blog__container .feature-blog-item__content {
    display: flex;
    flex-direction: column;
    padding: .5rem;
    width: 100%;
    height: 100%;
  }
  .feature-blog__container .feature-blog-item:first-child {
    margin-left: 0;
  }
  .feature-blog__container .feature-blog-item:last-child {
    margin-right: 0;
  }
  .feature-blog__container .feature-blog-item__image {
    width: 100%;
    height: 9rem;
    max-height: 50%;
    position: relative;
    transition: all 600ms ease-in-out;
  }
  .feature-blog__container .feature-blog-item__image img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 600ms ease-in-out;
  }
  .feature-blog__container .feature-blog-item p {
    color: #000000;
  }
  .feature-blog__container .feature-blog-item__header {
    margin: 0;
  }
  .feature-blog__container .feature-blog-item__header p {
    font-weight: bold;
    line-height: 1.2rem;
    margin: 0;
  }
  .feature-blog__container .feature-blog-item__paragraph {
    flex-grow: 1;
    margin: .5rem 0;
  }
  .feature-blog__container .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
    margin: 0;
  }
  .feature-blog__container .feature-blog-item a {
    text-decoration: none;
  }
  .feature-blog__container .feature-blog-item__link {
    margin-top: auto;
    display: flex;
    width: 100%;
    height: 2.25rem;
    flex-direction: column;
    align-items: center;
    background: #eeb111;
    border-radius: 1.125rem;
  }
  .feature-blog__container .feature-blog-item__link .feature-blog-item__link-label {
    margin: auto;
    font-style: normal;
    font-weight: bold;
    font-size: .75rem;
    line-height: 1rem;
  }
  .feature-blog__container .feature-blog-item:hover {
    text-decoration: none;
  }
  .feature-blog__container .feature-blog-item:hover .feature-blog-item__image {
    transform: scale(1.04);
    object-fit: fill;
  }
  .feature-blog__container .feature-blog-item.blog-design {
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.25);
    border-radius: 0;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header {
    margin: .5rem 0;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header p {
    font-weight: bold;
    line-height: 1.125rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph {
    flex-grow: 1;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link {
    margin: auto 0 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: start;
    background: none;
    border-radius: unset;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__link-label {
    margin: auto 0;
    color: #353535;
    font-size: .75rem;
    line-height: 1.25rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__arrow {
    margin: auto 0.625rem;
    position: inherit;
  }
}
@media only screen and (max-width: 64.01rem) {
  .feature-blog {
    display: block;
    height: 100%;
  }
  .feature-blog__header {
    line-height: 1.2rem;
    font-weight: bold;
    text-align: left;
    font-size: 1rem;
    color: #000000;
    background-color: #f2f2f2;
    padding: 0.5rem 0 0.5rem 1rem;
  }
  .feature-blog__container {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: transparent;
    margin: 0 1rem;
    min-height: 21.125rem;
  }
  .feature-blog__container .feature-blog-item {
    display: flex;
    flex-direction: row;
    box-shadow: 0 0.125rem 0.25rem rgba(47, 35, 3, 0.2);
    border-radius: .5rem;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 1rem;
  }
  .feature-blog__container .feature-blog-item__content {
    flex-basis: 70%;
    margin: 1rem 1rem 0 1rem;
  }
  .feature-blog__container .feature-blog-item:first-child {
    margin-left: 0;
    margin-top: 1rem;
  }
  .feature-blog__container .feature-blog-item:last-child {
    margin-right: 0;
  }
  .feature-blog__container .feature-blog-item__image {
    flex-basis: 30%;
    position: relative;
    transition: all 600ms ease-in-out;
  }
  .feature-blog__container .feature-blog-item__image img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 600ms ease-in-out;
  }
  .feature-blog__container .feature-blog-item p {
    color: #000000;
  }
  .feature-blog__container .feature-blog-item__header {
    margin: 0;
  }
  .feature-blog__container .feature-blog-item__header p {
    font-weight: 700;
    line-height: 1rem;
    font-size: 0.875rem;
    text-align: left;
    margin: 0;
  }
  .feature-blog__container .feature-blog-item__paragraph {
    flex-grow: 1;
    margin: .5rem 0;
  }
  .feature-blog__container .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
    margin: 0.5rem 0 0;
    text-align: left;
  }
  .feature-blog__container .feature-blog-item a {
    text-decoration: none;
  }
  .feature-blog__container .feature-blog-item__link {
    margin-top: auto;
    display: flex;
    width: 100%;
    height: 2.25rem;
    flex-direction: column;
    align-items: center;
    background: #eeb111;
    border-radius: 1.125rem;
  }
  .feature-blog__container .feature-blog-item__link .feature-blog-item__link-label {
    margin: auto 0;
    font-style: normal;
    font-weight: bold;
    font-size: 0.625rem;
    line-height: 0.75rem;
  }
  .feature-blog__container .feature-blog-item:hover {
    text-decoration: none;
  }
  .feature-blog__container .feature-blog-item:hover .feature-blog-item__image {
    transform: scale(1.04);
    object-fit: fill;
  }
  .feature-blog__container .feature-blog-item.blog-design {
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.25);
    border-radius: 0;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header {
    margin: .5rem 0;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header p {
    font-weight: bold;
    line-height: 1.125rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph {
    flex-grow: 1;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link {
    display: flex;
    flex-direction: row;
    align-items: start;
    background: none;
    border-radius: unset;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__arrow {
    margin: auto 0.625rem;
    position: inherit;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .feature-blog {
    display: block;
    margin-bottom: 1rem;
    height: 100%;
  }
  .author-mode .feature-blog__header {
    line-height: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    font-size: .875rem;
    color: #000000;
  }
  .author-mode .feature-blog__container {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: 21.125rem;
  }
  .author-mode .feature-blog__container .feature-blog-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0.125rem 0.25rem rgba(47, 35, 3, 0.2);
    border-radius: .5rem;
    width: 100%;
    margin: 0 .5rem;
    overflow: hidden;
  }
  .author-mode .feature-blog__container .feature-blog-item__content {
    display: flex;
    flex-direction: column;
    padding: .5rem;
    width: 100%;
    height: 100%;
  }
  .author-mode .feature-blog__container .feature-blog-item:first-child {
    margin-left: 0;
  }
  .author-mode .feature-blog__container .feature-blog-item:last-child {
    margin-right: 0;
  }
  .author-mode .feature-blog__container .feature-blog-item__image {
    width: 100%;
    height: 9rem;
    max-height: 50%;
    position: relative;
    transition: all 600ms ease-in-out;
  }
  .author-mode .feature-blog__container .feature-blog-item__image img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 600ms ease-in-out;
  }
  .author-mode .feature-blog__container .feature-blog-item p {
    color: #000000;
  }
  .author-mode .feature-blog__container .feature-blog-item__header {
    margin: 0;
  }
  .author-mode .feature-blog__container .feature-blog-item__header p {
    font-weight: bold;
    line-height: 1.2rem;
    margin: 0;
  }
  .author-mode .feature-blog__container .feature-blog-item__paragraph {
    flex-grow: 1;
    margin: .5rem 0;
  }
  .author-mode .feature-blog__container .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
    margin: 0;
  }
  .author-mode .feature-blog__container .feature-blog-item a {
    text-decoration: none;
  }
  .author-mode .feature-blog__container .feature-blog-item__link {
    margin-top: auto;
    display: flex;
    width: 100%;
    height: 2.25rem;
    flex-direction: column;
    align-items: center;
    background: #eeb111;
    border-radius: 1.125rem;
  }
  .author-mode .feature-blog__container .feature-blog-item__link .feature-blog-item__link-label {
    margin: auto;
    font-style: normal;
    font-weight: bold;
    font-size: .75rem;
    line-height: 1rem;
  }
  .author-mode .feature-blog__container .feature-blog-item:hover {
    text-decoration: none;
  }
  .author-mode .feature-blog__container .feature-blog-item:hover .feature-blog-item__image {
    transform: scale(1.04);
    object-fit: fill;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design {
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.25);
    border-radius: 0;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header {
    margin: .5rem 0;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header p {
    font-weight: bold;
    line-height: 1.125rem;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph {
    flex-grow: 1;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link {
    margin: auto 0 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: start;
    background: none;
    border-radius: unset;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__link-label {
    margin: auto 0;
    color: #353535;
    font-size: .75rem;
    line-height: 1.25rem;
  }
  .author-mode .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__arrow {
    margin: auto 0.625rem;
    position: inherit;
  }
}
@media all and (min-width: 85.375rem) {
  .feature-blog {
    display: block;
    margin-bottom: 1rem;
    height: 100%;
  }
  .feature-blog__header {
    line-height: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    font-size: .875rem;
    color: #000000;
  }
  .feature-blog__container {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: 21.125rem;
  }
  .feature-blog__container .feature-blog-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0.125rem 0.25rem rgba(47, 35, 3, 0.2);
    border-radius: .5rem;
    width: 100%;
    margin: 0 .5rem;
    overflow: hidden;
  }
  .feature-blog__container .feature-blog-item__content {
    display: flex;
    flex-direction: column;
    padding: .5rem;
    width: 100%;
    height: 100%;
  }
  .feature-blog__container .feature-blog-item:first-child {
    margin-left: 0;
  }
  .feature-blog__container .feature-blog-item:last-child {
    margin-right: 0;
  }
  .feature-blog__container .feature-blog-item__image {
    width: 100%;
    height: 9rem;
    max-height: 50%;
    position: relative;
    transition: all 600ms ease-in-out;
  }
  .feature-blog__container .feature-blog-item__image img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 600ms ease-in-out;
  }
  .feature-blog__container .feature-blog-item p {
    color: #000000;
  }
  .feature-blog__container .feature-blog-item__header {
    margin: 0;
  }
  .feature-blog__container .feature-blog-item__header p {
    font-weight: bold;
    line-height: 1.2rem;
    margin: 0;
  }
  .feature-blog__container .feature-blog-item__paragraph {
    flex-grow: 1;
    margin: .5rem 0;
  }
  .feature-blog__container .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
    margin: 0;
  }
  .feature-blog__container .feature-blog-item a {
    text-decoration: none;
  }
  .feature-blog__container .feature-blog-item__link {
    margin-top: auto;
    display: flex;
    width: 100%;
    height: 2.25rem;
    flex-direction: column;
    align-items: center;
    background: #eeb111;
    border-radius: 1.125rem;
  }
  .feature-blog__container .feature-blog-item__link .feature-blog-item__link-label {
    margin: auto;
    font-style: normal;
    font-weight: bold;
    font-size: .75rem;
    line-height: 1rem;
  }
  .feature-blog__container .feature-blog-item:hover {
    text-decoration: none;
  }
  .feature-blog__container .feature-blog-item:hover .feature-blog-item__image {
    transform: scale(1.04);
    object-fit: fill;
  }
  .feature-blog__container .feature-blog-item.blog-design {
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.25);
    border-radius: 0;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header {
    margin: .5rem 0;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header p {
    font-weight: bold;
    line-height: 1.125rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph {
    flex-grow: 1;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph p {
    font-size: .75rem;
    line-height: 1rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link {
    margin: auto 0 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: start;
    background: none;
    border-radius: unset;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__link-label {
    margin: auto 0;
    color: #353535;
    font-size: .75rem;
    line-height: 1.25rem;
  }
  .feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__arrow {
    margin: auto 0.625rem;
    position: inherit;
  }
}

.feature-blog__header {
  margin-left: 0.5rem;
}
.feature-blog__header * {
  color: #766b6b;
  font-size: 0.8125rem;
  font-family: "Avenir", sans-serif;
  text-align: left;
}
.feature-blog__container {
  padding: 0 0.5rem;
}
.feature-blog__container .feature-blog-item__link {
  background-color: #c41230;
  border-radius: 0;
}
.feature-blog__container .feature-blog-item .feature-blog-item__link-label {
  color: #ffffff;
  font-family: "Avenir", sans-serif;
  margin: auto;
  font-style: normal;
  font-weight: bold;
  font-size: .75rem;
  line-height: 1rem;
}
.feature-blog__container .feature-blog-item__header *,
.feature-blog__container .feature-blog-item__paragraph * {
  font-family: "Avenir", sans-serif;
}
.feature-blog__container .feature-blog-item__header {
  text-align: left;
}
.feature-blog__container .feature-blog-item__header * {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.feature-blog__container .feature-blog-item .feature-blog-item__paragraph {
  text-align: left;
}
.feature-blog__container .feature-blog-item .feature-blog-item__paragraph * {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #000000;
}
.feature-blog__container .feature-blog-item.blog-design .feature-blog-item__paragraph p {
  font-size: 0.8125rem;
  font-family: "Avenir", sans-serif;
}
.feature-blog__container .feature-blog-item.blog-design .feature-blog-item__header p {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.8125rem;
  line-height: 0.8125rem;
}
.feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link {
  margin: auto 0 0.5rem 0;
  background-color: #ffffff;
  align-items: start;
  height: fit-content;
}
.feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__link-label {
  margin: auto 0 0 0;
  font-style: normal;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #c41230;
}
.feature-blog__container .feature-blog-item.blog-design .feature-blog-item__link .feature-blog-item__link-label:after {
  content: ' ';
  transition: .5s;
  display: inline-block;
  padding: .1875rem;
  transform: none;
  right: 1rem;
  margin-left: .5rem;
  background-color: #c41230;
  width: 0.75rem;
  height: 0.5rem;
  clip-path: polygon(57% 14%, 65% 0%, 100% 50%, 65% 100%, 57% 86%, 76% 60%, 0% 60%, 0% 40%, 76% 40%);
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .feature-blog {
    display: block;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .feature-blog {
    display: block;
  }
}
@media all and (min-width: 85.375rem) {
  .feature-blog {
    display: block;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .feature-blog {
    display: block;
    height: 100%;
    padding: 0 1rem;
  }
  .feature-blog__container {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 1rem;
  }
  .feature-blog__container .feature-blog-item {
    margin: 0 0 0.5rem 0;
    display: flex;
    flex-direction: row;
    box-shadow: 0 0.125rem 0.25rem rgb(47 35 3 / 20%);
    border-radius: .5rem;
    width: 100%;
    overflow: hidden;
  }
  .feature-blog__container .feature-blog-item.blog-design {
    margin-left: 0;
    border-radius: 0;
  }
  .feature-blog__container .feature-blog-item .feature-blog-item__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 600ms ease-in-out;
  }
  .feature-blog__container .feature-blog-item:first-child {
    margin-left: 0;
  }
  .feature-blog__container .feature-blog-item__link {
    margin-top: auto;
    display: flex;
    width: 100%;
    height: 2.25rem;
    flex-direction: column;
    align-items: center;
    background-color: #c41230;
    border-radius: 0;
  }
  .feature-blog-item__header {
    margin-bottom: 0.5rem;
  }
  .feature-blog-item__paragraph {
    margin-bottom: 0.5rem;
  }
  .feature-blog-item__content {
    display: flex;
    flex-direction: column;
    padding: .5rem;
    width: 100%;
    height: 100%;
  }
  .feature-blog__header {
    line-height: 1.2rem;
    font-weight: bold;
    margin: 1rem 1rem;
    font-size: .875rem;
    color: #000000;
  }
  .feature-blog__header * {
    color: #766b6b;
    font-size: .8125rem;
    font-family: "Avenir", sans-serif;
    text-align: left;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) and (orientation: landscape) {
  .feature-blog {
    padding: 0 0;
    margin-left: 1rem;
  }
  .feature-blog__container {
    padding-left: 0;
  }
  .feature-blog__container .feature-blog-item .feature-blog-item__image {
    width: calc(35vw - 2rem);
    height: calc(35vw - 2rem);
  }
  .feature-blog__header {
    margin: 1rem 0;
  }
}

.header-cart-v3 {
  position: relative;
  padding-left: 1.5rem;
}
.header-cart-v3 .header-cart-v3-trigger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0;
  background: transparent;
  color: #2e2e2e;
  width: 2.8125rem;
  height: 3.125rem;
}
.header-cart-v3 .header-cart-v3-trigger:focus-visible {
  outline-width: 0.125rem;
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-item-count {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #eeb111;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 100%;
  font-size: 0.4375rem;
  line-height: 1;
  overflow: hidden;
  -webkit-transform: translate(-10%, 25%);
  transform: translate(-10%, 25%);
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-item-count.zero-items {
  display: none;
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-item-count .header-cart-v3-item-count-value {
  margin: auto;
}
.header-cart-v3 .header-cart-v3-trigger:hover {
  background: transparent;
  color: #000000;
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-trigger-icon {
  margin: auto;
  /* com.whr.aem.core.htl.header.SvgIcon output */
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-trigger-icon .icon {
  width: 1.833rem;
  height: 1.604rem;
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-trigger-icon svg {
  width: 1.833rem;
  height: 1.604rem;
}
.header-cart-v3 .cart-mini-v3 {
  top: 4.063rem;
  padding: 0;
  border: 0;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  width: 19.875rem;
  position: absolute;
  right: 0;
  background-color: #ffffff;
  z-index: 21;
  display: none;
}
.header-cart-v3 .cart-mini-v3 .hidden,
.header-cart-v3 .cart-mini-v3 .cart-v3-i18dictionary {
  display: none;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container {
  padding: 0 1.5rem 0;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container.cart-mini-v3-checkout {
  padding: 0 1rem 0;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container.cart-mini-v3-section-container-full-border {
  border-bottom: 0.0625rem solid #b3b3b3;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section {
  border-bottom: 0;
  padding: 1rem 0;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-section-container-short-border {
  border-bottom: 0.0625rem solid #b3b3b3;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section .empty-cart-v3-icon {
  display: inline-block;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section .empty-cart-v3-icon .icon {
  width: 1.375rem;
  height: 1.2rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__title {
  padding: 0.5rem 0;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__title .cart-mini-v3__title-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-empty .empty-cart-v3-text {
  vertical-align: top;
  font-weight: 700;
  line-height: 1.2rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-signinn-link,
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-authorized-text {
  border-bottom: 0;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other.hidden {
  display: none;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other .cart-mini-v3__other--subtot {
  font-weight: normal;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other .cart-mini-v3__other--label,
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other .cart-mini-v3__other--subtot {
  line-height: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__count .cart-mini-v3__count-text {
  line-height: 1rem;
  font-size: 0.75rem;
  color: #000000;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__count .cart-mini-v3__count-text .cart-mini-v3__count-link {
  font-weight: 400;
  text-decoration: underline;
  line-height: 1rem;
  font-size: 0.75rem;
  cursor: pointer;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-img {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 20%;
  flex: 1 0 20%;
  width: 3.75rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-img img {
  max-height: 6.25rem;
  margin: auto;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 60%;
  flex: 1 0 60%;
  padding: 0 0.5rem;
  width: 10.625rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-info .cart-mini-v3__prod-title {
  height: auto;
  margin-bottom: 0.5rem;
  white-space: normal;
  font-size: 0.75rem;
  line-height: 1.2;
  overflow: hidden;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-info .cart-mini-v3__prod-title--link {
  text-decoration: none;
  line-height: 1rem;
  font-size: 0.75rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 3rem;
  outline-offset: -0.063rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-info .cart-mini-v3__prod-title--link:focus {
  outline: 0.063rem dashed #000000;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-info .cart-mini-v3__prod-mdl {
  margin-bottom: 0.3125rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-info .cart-mini-v3__prod-mdl,
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-info .cart-mini-v3__prod-qty {
  font-size: 0.75rem;
  line-height: 1rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-qty--sqr {
  height: 1rem;
  width: 1rem;
  border: 1px solid #2e2e2e;
  text-align: center;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-qty--green {
  color: #5c700f;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-price {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  white-space: normal;
  width: 57px;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__prod .cart-mini-v3__prod-price--text {
  text-align: right;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other--subtot {
  text-align: right;
  font-weight: bold;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section--last {
  margin-top: 0.563rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 1rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total.hidden {
  display: none;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--label,
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--amt,
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--label-bld,
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--amt-bld {
  font-size: 0.75rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--label {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--amt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: right;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--label-bld {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  font-weight: bold;
  line-height: 1rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--amt-bld {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-weight: bold;
  text-align: right;
  line-height: 1rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--promo {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  white-space: pre-wrap;
  flex: 1 1 100%;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__cta-btns {
  font-size: 0.625rem;
  padding: 1rem 0;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__cta-btns:nth-child(2) {
  margin-left: 0.625rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__cta-btns.cart-mini-empty {
  display: block;
  text-align: center;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__cta-btns .checkout-cart-mini-v3-btn {
  width: 17.875rem;
  height: 3rem;
  line-height: 1.188rem;
  font-size: 1rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__cta-btns .checkout-cart-mini-v3-btn:focus {
  outline: 1px solid #000;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__empty-state-msgbox {
  border: 0;
  background-color: #ffffff;
  padding: 0;
  color: #797979;
  white-space: normal;
  /*RTE*/
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__empty-state-msgbox p {
  font-size: 1rem;
  line-height: 1.188rem;
  display: contents;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__empty-state-msgbox p a {
  font-size: 1rem;
  line-height: 1.188rem;
  font-weight: 700;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__empty-state-msgbox .cart-mini-v3__empty-state-msgbox-text .cart-mini-v3__empty-state-msgbox-link {
  text-decoration: none;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__empty-state-msgbox .cart-mini-v3__empty-state-msgbox--big-text {
  margin-bottom: 1rem;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__empty-state-msgbox .signin-trigger-modal {
  cursor: pointer;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3_promo-area {
  position: absolute;
  right: 0;
  width: 100%;
  height: auto;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3_promo-area .cq-dd-image {
  width: 100%;
}
.header-cart-v3 .cart-mini-v3 .cart-mini-v3-lazyload {
  width: 25px;
  height: 25px;
  margin: 20px auto 0;
}
.header-cart-v3 .header-cart-v3-trigger-icon .icon {
  width: 2rem;
  height: 2rem;
}
.header-cart-v3 .header-cart-v3-item-count .header-cart-v3-item-count-value {
  color: #000000;
  font-weight: normal;
  font-size: 0.625rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cart-mini-v3 {
    min-width: 18.75rem;
  }
}
@media all and (min-width: 47.938rem) and (max-width: 64rem) {
  .header-cart-v3 .cart-mini-v3 {
    top: 4.05rem;
  }
}
@media all and (max-width: 47.938rem) {
  .header-cart-v3 {
    padding-right: 1rem;
    padding-left: 0;
  }
  .header-cart-v3 .cart-mini-v3 {
    width: 17.313rem;
    top: 3.5rem;
    right: -3.5rem;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container {
    padding: 0 1rem 0;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section {
    padding: 0.9rem 0;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-section-container-short-border {
    border-bottom: 0.1rem solid #979797;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__title {
    padding-top: 1rem;
    line-height: 1.75rem;
    font-weight: bold;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-empty .empty-cart-v3-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-empty .empty-cart-v3-text {
    font-size: 0.9rem;
    line-height: 1.188rem;
    vertical-align: super;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-signinn-link .cart-mini-v3__empty-state-msgbox {
    /*RTE*/
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-signinn-link .cart-mini-v3__empty-state-msgbox .cart-mini-v3__empty-state-msgbox-text .cart-mini-v3__empty-state-msgbox-link {
    text-decoration: underline;
    font-size: 0.9rem;
    line-height: 1.188rem;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-signinn-link .cart-mini-v3__empty-state-msgbox .cart-mini-v3__empty-state-msgbox-text .cart-mini-v3__empty-state-msgbox-link:focus-visible {
    outline-width: 0.125rem;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3-signinn-link .cart-mini-v3__empty-state-msgbox p {
    font-size: 0.9rem;
    line-height: 1.188rem;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other .cart-mini-v3__other--label,
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3-section.cart-mini-v3__other .cart-mini-v3__other--subtot {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--label-bld,
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container .cart-mini-v3__total--amt-bld {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container.cart-mini-v3-checkout .cart-mini-v3__cta-btns {
    margin-bottom: 1rem;
    margin-top: 0.375rem;
    padding: 0;
  }
  .header-cart-v3 .cart-mini-v3 .cart-mini-v3-section-container.cart-mini-v3-checkout .cart-mini-v3__cta-btns .checkout-cart-mini-v3-btn {
    margin-bottom: 0;
    width: 15.313rem;
  }
}
@media (min-width: 47.938rem) {
  .header-cart-v3-trigger {
    width: 1.625rem;
    height: 1.625rem;
  }
  .header-cart-v3-trigger .header-cart-v3-item-count {
    -webkit-transform: translate(25%, -25%);
    transform: translate(25%, -25%);
  }
  .header-cart-v3-trigger .header-cart-v3-trigger-icon .icon {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .header-cart-v3-trigger-icon {
    margin: 0;
  }
  .header-cart-v3-item-count-value {
    margin: 0;
  }
}
@media all and (min-width: 64.01rem) {
  .header-cart-v3 {
    z-index: 10;
  }
}

.header-search-form__wrapper.search-featured .header-search-trigger-icon {
  padding-right: 1rem;
}
.header-search-form__wrapper.search-featured .header-search-trigger-icon svg {
  width: 1rem;
  height: 1rem;
}
.header-search-form__wrapper.search-featured .header-suggestions-icon svg path {
  fill: #bfbfbf;
}
.header-search-form__wrapper.search-featured .header-search-open.header-search {
  width: 100%;
}
.header-search-form__wrapper.search-featured .header-search-input {
  font-size: 1rem;
  height: 2.5rem;
  padding-left: 1rem;
  background: #f4f4f4;
  color: #000000;
  outline: none;
  border: 0;
}
.header-search-form__wrapper.search-featured .header-search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-close-button-icon {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}
.header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-close-button-icon svg path {
  fill: #353535;
}
.header-search-form__wrapper.search-featured .header-suggestions-item {
  padding-left: 1.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header-search-form__wrapper.search-featured .header-suggestions-term {
  font-size: 1rem;
}
.header-search-form__wrapper.search-featured .header-suggestions__view-all {
  padding-right: .5rem;
  margin-left: auto;
  text-decoration: underline;
  font-size: .75rem;
}
.header-search-form__wrapper.search-featured .header-suggestions__view-all-link {
  color: #000000;
}
.header-search-form__wrapper.search-featured .header-suggestions-link {
  text-transform: none;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.header-search-form__wrapper.search-featured .header-suggestions-bottom {
  text-align: left;
  padding-left: 1.25rem;
  padding-top: 1rem;
}
.header-search-form__wrapper.search-featured .header-search-form {
  background: #f4f4f4;
  min-width: 15.625rem;
  border-radius: 1.25rem;
  font-family: "HelveticaNeue", sans-serif;
}
.header-search-form__wrapper.search-featured .header-search-form.active {
  border-bottom: 0;
  z-index: 2;
}
.header-search-form__wrapper.search-featured .header-search-form.active .header-search-form__search-items {
  border-bottom: 0;
}
.header-search-form__wrapper.search-featured .header-search-form.active .header-search-form__search-items::after {
  content: '';
  display: block;
  border: .03125rem solid #979797;
  opacity: 0.25;
  margin: 0 1rem;
}
.header-search-form__wrapper.search-featured .header-search-button-icon svg {
  height: 1rem;
  width: 1rem;
}
.header-search-form__wrapper.search-featured .header-search-button {
  top: .5rem;
  right: .9375rem;
  background: none;
  outline: none;
}
.header-search-form__wrapper.search-featured .header-search-button:focus-visible {
  outline: 0.125rem solid #000000;
}
.header-search-form__wrapper.search-featured .header-suggestions-combined.suggestions-disabled {
  display: none;
}
.header-search-form__wrapper.search-featured .header-suggestions-panel {
  margin-top: 0;
  min-width: initial;
  width: 15.625rem;
  border-radius: 0 0 1.25rem 1.25rem;
  background: #f4f4f4;
  color: #353535;
  padding-bottom: 1.375rem;
  border-top: 0;
}
.header-search-form__wrapper.search-featured .header-suggestions-button {
  border: 0;
  background: inherit;
  text-transform: capitalize;
  font-size: 1rem;
}
.header-search-form__wrapper.search-featured .header-search {
  transform: none;
  width: initial;
  height: initial;
}
.header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .header-suggestions-term {
  padding: 0.75rem 0 0.75rem 1rem;
}
.header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__link {
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border: 0.125rem solid #222222;
  margin: 0 1.5rem;
}
.header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__name {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__header {
  background-color: #f2f2f2;
}
@media all and (min-width: 48rem) {
  .header-search-form__wrapper.search-featured .header-search-input {
    border: 0.0625rem solid #b3b3b3;
    border-radius: 1.25rem;
    padding-right: 2.5rem;
  }
  .header-search-form__wrapper.search-featured .header-search-form {
    border: 0;
    z-index: 2;
  }
  .header-search-form__wrapper.search-featured .header-search-form__search-items {
    border: 0.0625rem solid #b3b3b3;
    border-radius: 1.25rem;
    transition: all 1s;
    width: 15.625rem;
  }
  .header-search-form__wrapper.search-featured .header-search-form__search-items .header-close-button-icon {
    visibility: hidden;
    position: absolute;
    right: 4rem;
    top: .75rem;
    z-index: 4;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    outline: none;
  }
  .header-search-form__wrapper.search-featured .header-search-form__search-items .header-close-button-icon:focus-visible {
    outline: 0.125rem solid #000000;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-search-form__search-items {
    border: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-search-form__search-items.active {
    width: 28.125rem;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-search-form__search-items.active .header-search-input {
    border: 0.125rem solid #353535;
    box-sizing: border-box;
    background: linear-gradient(90deg, #f2f2f2 89%, #eeb111 11%);
    padding-right: 5rem;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-suggestions-top {
    margin-bottom: 0.25rem;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-suggestions-panel__more-prominent .header-suggestions-panel__products {
    margin: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-suggestions-panel .header-suggestions-items .header-suggestions-item {
    padding: 0.25rem 0.5rem 0.25rem 1rem;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-suggestions-panel .header-suggestions-items .header-suggestions-item:hover {
    cursor: pointer;
    background-color: #d8d8d8;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-suggestions-panel .header-suggestions-items .header-suggestions-item.no-results {
    cursor: auto;
    background-color: transparent !important;
    text-decoration: none;
    font-style: italic;
  }
  .header-search-form__wrapper.search-featured .header-search-form .header-suggestions-panel__products {
    margin: 2rem 0 0 1rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-search-input {
    border-bottom: 0;
    padding-right: 5rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel__left {
    padding-bottom: 0.5rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel__left.header-suggestions-panel__more-prominent {
    padding-bottom: 1.5rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel.noproducts {
    width: 28rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel.noproducts .header-suggestions-panel__right {
    width: 100%;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel.noproducts .header-suggestions-panel__left {
    display: none;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-search-form__search-items {
    width: 28.125rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-search-input {
    border: 0.125rem solid #353535;
    box-sizing: border-box;
  }
  .header-search-form__wrapper.search-featured .header-search-button-icon svg {
    height: 1rem;
    width: 1rem;
  }
  .header-search-form__wrapper.search-featured .header-search-button {
    top: .4375rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component {
    display: flex;
  }
  .header-search-form__wrapper.search-featured .header-search-component::after {
    content: '';
    display: block;
    height: 2.5rem;
    width: .03125rem;
    background: #979797;
    margin: 0 1rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products {
    margin-right: 0;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__name {
    display: -webkit-box;
    max-width: 200px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__items {
    margin-left: 0.5rem;
    margin-right: 1rem;
    margin-bottom: 1.5rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__title {
    padding: 0.75rem 0 0.75rem 1rem;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.1875rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products {
    margin-right: 1rem;
    display: flex;
    flex-direction: column;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__items {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__item {
    display: flex;
    flex-direction: row;
    max-height: 4.5rem;
    height: 4.5rem;
    margin-top: 1.5rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__item:hover .suggestions-products__name {
    text-decoration: underline;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__item:focus {
    outline-offset: 0.4375rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__img {
    height: fit-content;
    max-height: 4.5rem;
    max-width: 6.375rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__img-container {
    flex-basis: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 6.375rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__info-container {
    flex-basis: 65%;
    display: flex;
    align-items: center;
    margin-left: 0.625rem;
  }
}
@media all and (max-width: 47.938rem) {
  .header-search-form__wrapper.search-featured .header-search-open {
    width: 100%;
    top: 3.5rem;
  }
  .header-search-form__wrapper.search-featured .header-search-open .header-search-form {
    width: 100%;
    border-radius: initial;
    border-bottom: none;
    background: rgba(0,0,0,0.5);
    transition: none;
    height: 100%;
  }
  .header-search-form__wrapper.search-featured .header-search-open .header-search-form__search-items {
    border: 0;
    height: 3.625rem;
  }
  .header-search-form__wrapper.search-featured .header-search-open .header-suggestions-panel {
    width: 100%;
    border: 0;
    background: #ffffff;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.5);
    padding-top: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-open .header-search-input {
    background: #ffffff;
    height: 1.75rem;
    margin-bottom: 0;
    padding-right: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-open .header-search-button {
    top: .6875rem;
    right: 1.125rem;
  }
  .header-search-form__wrapper.search-featured .header-close-button-icon {
    position: relative;
    right: .7rem;
    top: 1.3rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed:not(.active-search) .header-search-form {
    border-bottom: inset !important;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed.header-suggestions-open .header-search-form {
    height: 100%;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed {
    width: 100%;
    visibility: visible;
    height: initial;
    transform: none;
    top: 3.625rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-search-form,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-search-form,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-search-form {
    width: 100%;
    border-radius: initial;
    border-bottom: none;
    transform: translate3d(0, 0, 0);
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-search-form__search-items,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-search-form__search-items,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-search-form__search-items {
    border: 0;
    border-bottom: 0.125rem solid #000000;
    background: #ffffff;
    display: flex;
    flex-direction: row;
    justify-items: center;
    justify-content: space-between;
    width: auto;
    position: static;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-search-form__input,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-search-form__input,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-search-form__input {
    margin: auto 0 auto 0.25rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-search-form .header-search-input,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-search-form .header-search-input,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-search-form .header-search-input {
    height: inherit;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-suggestions-panel,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-suggestions-panel,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-suggestions-panel {
    width: 100%;
    border: 0;
    background: #ffffff;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.5);
    padding-top: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-suggestions-panel__right,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-suggestions-panel__right,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-suggestions-panel__right {
    display: block;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-search-input,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-search-input,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-search-input {
    background: #ffffff;
    height: 1.75rem;
    margin-bottom: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component .active-search .header-search-button,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-open .header-search-button,
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-search-button {
    top: .6875rem;
    right: 1.125rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-suggestions-open .header-search-form {
    position: fixed;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search {
    height: 3.5625rem;
    box-shadow: inset 0 -0.0625rem 0 #000000;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-form__input {
    margin: auto 0 auto 0.25rem;
    padding: 0;
    height: 3rem;
    width: calc(100% - 7rem);
    position: relative;
    display: flex;
    align-items: center;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-form__input .header-search-input {
    height: inherit;
    border: none;
    border-radius: unset;
    padding-left: 1rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-button {
    position: inherit;
    width: 3.5rem;
    height: 3.5rem;
    transition: none;
    background: #ffffff;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-fixed {
    border-radius: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-panel {
    border-radius: 0;
    padding-bottom: 0;
    height: 100%;
    overflow-y: scroll;
    position: static;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-bottom {
    display: none;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-fixed.active-search {
    transition: all 0.3s;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: none;
    visibility: visible;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-close,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-close {
    display: flex;
    font-weight: 500;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-form__clear,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-form__clear {
    display: block;
    visibility: hidden;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-form__clear--visible,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-form__clear--visible {
    visibility: visible;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-close {
    width: 3.5rem;
    height: 3.5rem;
    justify-content: center;
    align-items: center;
    display: none;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-form__clear {
    display: none;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-top {
    padding: 0.75rem 0 0.75rem 1rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-items {
    padding-left: 1rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-items .header-suggestions-item {
    padding: 0.9375rem 0 0.9375rem 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-items .header-suggestions-item:last-child {
    border-bottom: none;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-items .header-suggestions-item.no-results {
    text-decoration: none;
    font-style: italic;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-form__search-items .header-close-button-icon {
    display: none;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-suggestions-open .header-suggestions-panel {
    display: block !important;
  }
  .header-search-form__wrapper.search-featured .suggestions-products {
    display: flex;
    flex-direction: column;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.75rem 0.75rem 1rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__items {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 1.5625rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__item {
    display: flex;
    flex-direction: row;
    max-height: 5.5rem;
    height: 5.5rem;
    margin-top: 1rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__img {
    height: fit-content;
    max-height: 5.5rem;
    max-width: 5.5rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 5.5rem;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__info-container {
    display: flex;
    align-items: center;
    margin-left: 1rem;
  }
}
@media speech {
  .header-search-form__wrapper.search-featured .header-search-component .header-search-fixed .header-search.active-search .header-search-form__input .header-search-input:focus {
    outline: 0.125rem solid #000000;
  }
}
.header-search-form__wrapper.search-featured .header-search-close {
  display: none;
}
.header-search-form__wrapper.search-featured .header-search-form__clear {
  display: none;
}
@media (min-width: 48rem) and (max-width: 63.938rem) {
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-search-form .header-suggestions-panel {
    width: 39.2rem;
  }
}
@media all and (min-width: 48rem) and (max-width: 55rem) {
  .header-search-form__wrapper.search-featured.redesign-feature .header-search-form .header-search-form__search-items {
    width: 20rem;
  }
}
@media all and (min-width: 48rem) {
  .header-search-form__wrapper.search-featured.redesign-feature .header-search-form__search-items {
    width: 28.125rem;
  }
  .header-search-form__wrapper.search-featured.redesign-feature .header-search-form__search-items.active .header-search-button-icon:before {
    display: none;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel {
    border-radius: 0.5rem;
    top: 3rem;
    left: 0;
    width: 40.75rem;
    display: flex !important;
    flex-direction: row;
    flex-grow: 1;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel__left,
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel__right {
    width: 50%;
  }
}
.global-menu .global-menu__search {
  display: none;
}
.global-menu .header-search {
  visibility: visible;
  position: inherit;
  background: none;
  border-bottom: .0625rem solid #dedede;
}
.global-menu .header-search-form {
  display: inline;
  background: none;
  padding: 0;
  width: 100%;
}
.global-menu .header-search-form__search-items {
  margin: 1rem .75rem;
}
.global-menu .header-suggestions-open {
  position: absolute;
  background: #fbfbfb;
  top: 3.375rem;
  left: 0;
  right: 0;
}
.global-menu .header-suggestions-open .header-search-form {
  padding: 0;
  display: block;
  z-index: 11;
  border: 0;
}
.global-menu .header-suggestions-open .header-search-form__search-items {
  background: #fbfbfb;
  margin: 0 .75rem;
  position: relative;
  border: 0;
}
.global-menu .header-suggestions-open .header-search-form__search-items::after {
  display: none;
}
.global-menu .header-suggestions-open .header-suggestions-panel {
  background: #fbfbfb;
  width: 100%;
  padding-top: 0;
}
.global-menu .header-suggestions-open .header-search-input {
  border: 0.0625rem solid #b3b3b3;
  background: #fbfbfb;
  border-bottom: 0;
}
.global-menu .header-menu-overlay-fade {
  top: 0;
}
.global-menu .header-menu-overlay,
.global-menu .header-menu-overlay-fade {
  transition: none;
}
.global-menu .header-search-form__clear {
  display: none;
}
@media all and (max-width: 47.938rem) {
  .global-menu .header-search-form__wrapper.search-featured .header-search {
    margin-top: auto;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-search-open {
    top: .75rem;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-search-form {
    background: initial;
    padding: 1.25rem;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-search-form__search-items {
    border: 0.0625rem solid #b3b3b3;
    position: relative;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-search-input {
    border: none;
    box-shadow: none;
    background: #f2f2f2;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-search-input {
    height: 2.5rem;
    background: #f4f4f4;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-search-button {
    top: .5rem;
    right: .9375rem;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-suggestions-open .header-search-input {
    background: #fbfbfb;
  }
  .global-menu .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel {
    border-top: 0;
  }
}
@media all and (min-width: 48rem) {
  .global-menu .header-menu-overlay-fade {
    background-color: inherit;
  }
}
@media all and (max-width: 47.938rem) {
  .header-v3--unset-position {
    position: unset;
    visibility: hidden;
    height: 0;
  }
  .header-v3--unset-position .main_header {
    position: unset;
  }
  .header-v3--unset-position .main_header .tool-set-section {
    position: unset;
  }
  .header-v3--unset-position .main_header .tool-set-section .header-search-trigger {
    display: none;
  }
  .hide-scroll {
    overflow: hidden !important;
    height: 100% !important;
  }
}

.header-search-form__wrapper.search-v0 .header-search-trigger-icon {
  padding-right: 1rem;
}
.header-search-form__wrapper.search-v0 .header-search-trigger-icon svg {
  width: 1rem;
  height: 1rem;
}
.header-search-form__wrapper.search-v0 .header-search-trigger-icon.active svg path {
  fill: #edb110;
}
.header-search-form__wrapper.search-v0 .header-suggestions-icon svg path {
  fill: #bfbfbf;
}
.header-search-form__wrapper.search-v0 .header-search-open.header-search {
  width: 100%;
}
.header-search-form__wrapper.search-v0 .header-search-input {
  font-size: 1rem;
  height: 2.5rem;
  padding-left: 1rem;
  background: #f4f4f4;
  outline: none;
  border: 0;
}
.header-search-form__wrapper.search-v0 .header-search-input::placeholder {
  color: #353535;
  font-size: 1rem;
}
.header-search-form__wrapper.search-v0 .header-suggestions-item {
  padding-left: 1.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header-search-form__wrapper.search-v0 .header-suggestions-term {
  font-size: 1rem;
}
.header-search-form__wrapper.search-v0 .header-suggestions-link {
  text-transform: lowercase;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.header-search-form__wrapper.search-v0 .header-suggestions-bottom {
  text-align: left;
  padding-left: 1.25rem;
  padding-top: 1rem;
}
.header-search-form__wrapper.search-v0 .header-search-form {
  background: #f4f4f4;
  width: 15.625rem;
  border-radius: 1.25rem;
  font-family: "HelveticaNeue", sans-serif;
}
.header-search-form__wrapper.search-v0 .header-search-form.active {
  border-bottom: 0;
  border-radius: 1.25rem 1.25rem 0 0;
  z-index: 2;
}
.header-search-form__wrapper.search-v0 .header-search-form.active .header-search-form__search-items {
  border-radius: 1.25rem 1.25rem 0 0;
  border-bottom: 0;
}
.header-search-form__wrapper.search-v0 .header-search-form.active .header-search-form__search-items::after {
  content: '';
  display: block;
  border: .03125rem solid #979797;
  opacity: 0.25;
  margin: 0 1rem;
}
.header-search-form__wrapper.search-v0 .header-search-form__search-items {
  border: 0.0625rem solid #b3b3b3;
  border-radius: 1.25rem;
}
.header-search-form__wrapper.search-v0 .header-search-form__search-items.active .header-search-button-icon svg path {
  fill: #edb110;
}
.header-search-form__wrapper.search-v0 .header-search-button-icon svg {
  height: 1rem;
  width: 1rem;
}
.header-search-form__wrapper.search-v0 .header-search-button {
  top: .5rem;
  right: .9375rem;
}
.header-search-form__wrapper.search-v0 .header-suggestions-panel {
  margin-top: 0;
  min-width: initial;
  width: 15.625rem;
  border: 0.0625rem solid #b3b3b3;
  border-radius: 0 0 1.25rem 1.25rem;
  background: #f4f4f4;
  color: #353535;
  padding-bottom: 1.375rem;
  border-top: 0;
}
.header-search-form__wrapper.search-v0 .header-suggestions-button {
  border: 0;
  background: inherit;
  text-transform: capitalize;
  font-size: 1rem;
}
.header-search-form__wrapper.search-v0 .header-search {
  transform: none;
  width: initial;
  height: initial;
}
@media all and (min-width: 48rem) {
  .header-search-form__wrapper.search-v0 .header-search-input {
    border: 0.0625rem solid #b3b3b3;
    border-radius: 1.25rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-form__search-items {
    border: 0;
  }
  .header-search-form__wrapper.search-v0 .header-search-form {
    border: 0;
    z-index: 2;
  }
  .header-search-form__wrapper.search-v0 .header-suggestions-open .header-search-input {
    border-radius: 1.25rem 1.25rem 0 0;
    border-bottom: 0;
  }
  .header-search-form__wrapper.search-v0 .header-suggestions-open .header-suggestions-panel {
    padding-top: 0;
  }
  .header-search-form__wrapper.search-v0 .header-suggestions-open .header-suggestions-panel::before {
    content: '';
    display: block;
    border: 0.03125rem solid #979797;
    opacity: 0.25;
    margin: 0 1rem .71875rem 1rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-button-icon svg {
    height: 1rem;
    width: 1rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-button {
    top: .4375rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-component {
    display: flex;
  }
  .header-search-form__wrapper.search-v0 .header-search-component::after {
    content: '';
    display: block;
    height: 2.5rem;
    width: .03125rem;
    background: #979797;
    margin: 0 1rem;
  }
}
@media all and (max-width: 47.938rem) {
  .header-search-form__wrapper.search-v0 .header-search-open {
    width: 100%;
    top: 3.5rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-open .header-search-form {
    width: 100%;
    border-radius: initial;
    border-bottom: none;
    background: #ffffff;
  }
  .header-search-form__wrapper.search-v0 .header-search-open .header-search-form__search-items {
    border: 0;
  }
  .header-search-form__wrapper.search-v0 .header-search-open .header-suggestions-panel {
    width: 100%;
    border: 0;
    background: #ffffff;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.5);
    padding-top: 0;
  }
  .header-search-form__wrapper.search-v0 .header-search-open .header-suggestions-panel::before {
    content: '';
    display: block;
    border: 0.03125rem solid #979797;
    opacity: .25;
    margin: 0 1rem 1.0625rem 1rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-open .header-search-input {
    background: #ffffff;
    height: 1.75rem;
    margin-bottom: 0;
  }
  .header-search-form__wrapper.search-v0 .header-search-open .header-search-input::placeholder {
    color: #6a6a6a;
  }
  .header-search-form__wrapper.search-v0 .header-search-open .header-search-button {
    top: .6875rem;
    right: 1.125rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed {
    width: 100%;
    visibility: visible;
    height: initial;
    transform: none;
    top: 3.5rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-search-form {
    width: 100%;
    border-radius: initial;
    border-top: 0.125rem #ffffff solid;
    border-bottom: none;
    background: #ffffff;
    transform: translate3d(0, 0, 0);
    box-shadow: inset 0 -0.0625rem 0 #000000;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-search-form__search-items {
    border: 0;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-suggestions-panel {
    width: 100%;
    border: 0;
    background: #ffffff;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.5);
    padding-top: 0;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-suggestions-panel::before {
    content: '';
    display: block;
    border: 0.03125rem solid #979797;
    opacity: .25;
    margin: 0 1rem 1.0625rem 1rem;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-search-input {
    background: #ffffff;
    height: 1.75rem;
    margin-bottom: 0;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-search-input::placeholder {
    color: #6a6a6a;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-search-button {
    top: .6875rem;
    right: 1.125rem;
  }
}
.global-menu .header-search-form__wrapper.search-v0 .header-search {
  visibility: visible;
  position: inherit;
  background: none;
  border-bottom: .0625rem solid #dedede;
}
.global-menu .header-search-form__wrapper.search-v0 .header-search-form {
  display: inline;
  background: none;
  padding: 0;
  width: 100%;
}
.global-menu .header-search-form__wrapper.search-v0 .header-search-form__search-items {
  margin: 1rem .75rem;
}
.global-menu .header-search-form__wrapper.search-v0 .header-suggestions-open {
  position: absolute;
  background: #fbfbfb;
  top: 3.375rem;
  left: 0;
  right: 0;
}
.global-menu .header-search-form__wrapper.search-v0 .header-suggestions-open .header-search-form {
  padding: 0;
  display: block;
  z-index: 11;
  border: 0;
}
.global-menu .header-search-form__wrapper.search-v0 .header-suggestions-open .header-search-form__search-items {
  background: #fbfbfb;
  margin: 0 .75rem;
  position: relative;
  border: 0;
}
.global-menu .header-search-form__wrapper.search-v0 .header-suggestions-open .header-search-form__search-items::after {
  display: none;
}
.global-menu .header-search-form__wrapper.search-v0 .header-suggestions-open .header-suggestions-panel {
  background: #fbfbfb;
  width: 100%;
  padding-top: 0;
}
.global-menu .header-search-form__wrapper.search-v0 .header-suggestions-open .header-suggestions-panel::before {
  content: '';
  display: block;
  border: 0.03125rem solid #979797;
  opacity: .25;
  margin: 0 1rem 1.0625rem 1rem;
}
.global-menu .header-search-form__wrapper.search-v0 .header-suggestions-open .header-search-input {
  border: 0.0625rem solid #b3b3b3;
  border-radius: 1.25rem 1.25rem 0 0;
  background: #fbfbfb;
  border-bottom: 0;
}
.global-menu .header-search-form__wrapper.search-v0 .header-menu-overlay-fade {
  top: 0;
}
.global-menu .header-search-form__wrapper.search-v0 .header-menu-overlay,
.global-menu .header-search-form__wrapper.search-v0 .header-menu-overlay-fade {
  transition: none;
}
@media all and (max-width: 47.938rem) {
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-search {
    margin-top: auto;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-search-open {
    top: .75rem;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-search-form {
    background: initial;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-search-form__search-items {
    border: 0.0625rem solid #b3b3b3;
    position: relative;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-search-input {
    height: 2.5rem;
    background: #f4f4f4;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-search-button {
    top: .5rem;
    right: .9375rem;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-suggestions-panel {
    border: 0.0625rem solid #b3b3b3;
    box-shadow: none;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-suggestions-open .header-search-input {
    background: #fbfbfb;
  }
  .global-menu .header-search-form__wrapper.search-v0 .header-search-form__wrapper .old .header-suggestions-open .header-suggestions-panel {
    border-top: 0;
  }
}
@media all and (min-width: 48rem) {
  .global-menu .header-search-form__wrapper.search-v0 .header-menu-overlay-fade {
    background-color: inherit;
  }
}

.header-search-form__wrapper.search-featured .header-search-form__search-items .header-search-input::placeholder {
  color: #766b6b;
}
.header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-search-form__input .header-search-input {
  background: linear-gradient(90deg, #f2f2f2 89%, #c41230 11%);
}
.header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-search-button-icon svg path {
  fill: #ffffff !important;
}
.header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-close-button-icon {
  top: .8125rem;
}
.header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-close-button-icon svg {
  width: .875rem;
  height: .875rem;
}
.header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__link {
  border-color: #c41230;
  text-transform: uppercase;
}
.header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__link:hover {
  color: white;
  background-color: #9b132b;
}
@media all and (max-width: 47.937rem) {
  .header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__link {
    margin-bottom: 1.25rem;
  }
}
.header-search-form__wrapper.search-featured .header-suggestions-panel__more-prominent .suggestions-products__title {
  font-weight: 900;
}
@media all and (max-width: 47.937rem) {
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-form__input {
    margin: auto 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-form__input .header-search-form__clear {
    margin: auto 0.8125rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-form__search-items,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-form__search-items {
    border-bottom: 0.125rem solid #c41230;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-button-icon svg,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-button-icon svg {
    width: 1.375rem;
    height: 1.375rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-button-icon svg path,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-button-icon svg path {
    fill: #ffffff;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-button,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-button {
    background: #c41230;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-button-icon,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-button-icon {
    margin-right: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-close,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-close {
    width: fit-content;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search.header-search-open .header-search-close__text,
  .header-search-form__wrapper.search-featured .header-search-component .header-search.active-search .header-search-close__text {
    margin: auto 0.5rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-close {
    text-decoration: none;
    font-size: 0.75rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    line-height: 1rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-top {
    background-color: #f2f2f2;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-top .header-suggestions__view-all-link {
    font-family: "Avenir", sans-serif;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-items .header-suggestions-item {
    border-bottom: 0.0625rem solid #bfbfbf;
    padding: 1rem 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-search-button-icon {
    margin-right: 0.3125rem;
  }
  .header-search-form__wrapper.search-featured .header-search-component .header-search .header-suggestions-panel {
    padding: 0;
  }
  .header-search-form__wrapper.search-featured .header-search-input {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1rem;
    text-transform: none;
    margin-bottom: 0;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-term {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-content .header-suggestions-term {
    font-size: 0.75rem;
    padding: 0;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-link {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.3125rem;
    color: #000000;
    text-transform: none;
    text-decoration: none;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-highlight {
    font-family: "Avenir", sans-serif;
    font-weight: bold;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .header-search-form__search-items.active .header-search-form__input .header-search-input {
    background: #ffffff;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__header {
    background-color: #f2f2f2;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__title {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__header-link {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1rem;
    text-decoration-line: underline;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__item {
    text-decoration: none;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__name {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #2e2e2e;
  }
}
@media all and (min-width: 48rem) {
  .header-search-form__wrapper.search-featured .header-search-input {
    margin: auto 0;
  }
  .header-search-form__wrapper.search-featured .header-search-component::after {
    background: #bfbfbf;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel {
    background: #ffffff;
    box-shadow: 0 0.125rem 0.25rem 0.125rem rgba(47, 35, 3, 0.2);
    border-radius: 0;
    padding: 0;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-top {
    border-radius: 0;
    background: #f2f2f2;
    padding: 0;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-top .header-suggestions-term {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-top .header-suggestions__view-all-link {
    font-family: "Avenir", sans-serif;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-top .header-suggestions__view-all-link:hover {
    font-weight: 900;
    color: #9b132b;
    text-decoration: inherit;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel__left {
    border-right: 0.0625rem solid #bfbfbf;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel__products {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 0.75rem;
    line-height: 0.875rem;
    text-transform: uppercase;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-item {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.3125rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-item .header-suggestions-link {
    text-decoration: none;
    font-family: "Avenir", sans-serif;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-item:hover,
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-item.active-suggestion {
    background-color: #f2f2f2 !important;
    text-decoration: none;
    cursor: pointer;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-item:hover .header-suggestions-link,
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-item.active-suggestion .header-suggestions-link {
    color: #ba112e;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-item:hover {
    text-decoration: underline #c41230;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-highlight {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.3125rem;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-suggestions-panel .header-suggestions-bottom {
    display: none;
  }
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-search-input {
    background: linear-gradient(90deg, #f2f2f2 89%, #c41230 11%);
  }
  .header-search-form__wrapper.search-featured .suggestions-products__header {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.75);
  }
  .header-search-form__wrapper.search-featured .suggestions-products__header-link {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1rem;
    text-align: center;
    text-decoration-line: underline;
    text-transform: capitalize;
    color: #000000;
  }
  .header-search-form__wrapper.search-featured .suggestions-products__name {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: normal;
    display: flex;
    align-items: center;
    text-transform: none;
    color: #2e2e2e;
  }
}
@media (min-width: 47.937rem) and (max-width: 63.938rem) {
  .header-search-form__wrapper.search-featured .header-suggestions-open .header-search-form .header-suggestions-panel {
    width: 35.5rem;
  }
}

.header-search-form__wrapper.search-v0 .header-search-form__search-items.active .header-search-button-icon svg path {
  fill: #c41230 !important;
}
.header-search-form__wrapper.search-v0 .header-search-trigger-icon.active svg path {
  fill: #c41230 !important;
}
@media all and (max-width: 48rem) {
  .header-search-form__wrapper.search-v0 .header-search-open .header-search-form {
    border-top: 0.125rem #c41230 solid;
  }
  .header-search-form__wrapper.search-v0 .header-search-component .header-search-fixed .header-search-form {
    border-top: 0.125rem #c41230 solid;
  }
}
@media all and (min-width: 47.937rem) {
  div.header-search-form__wrapper.search-featured .header-search-form .header-search-form__search-items.active .header-search-input {
    background: linear-gradient(90deg, #f2f2f2 89%, #c41230 11%);
  }
}

.header-pencil-banner {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  min-height: 3.5rem;
  align-items: center;
}
.header-pencil-banner p {
  line-break: auto;
}
.header-pencil-banner__content {
  display: inline-flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.header-pencil-banner * {
  color: inherit;
}
.header-pencil-banner a:hover {
  color: inherit;
}
.header-pencil-banner__message {
  margin-right: 0.75rem;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .header-pencil-banner {
    height: 3.125rem;
    min-height: 3.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .header-pencil-banner {
    height: 3.125rem;
    min-height: 3.125rem;
  }
}

.flyout-one-card {
  display: none;
}
.flyout-one-card__play-button,
.flyout-one-card__pause-button {
  background-color: #797979;
  border: medium none;
  color: #ffffff;
  font-size: 1.125rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1.5rem);
  border-radius: 100%;
  z-index: 1;
  display: none;
}
.flyout-one-card__play-button.active {
  display: block;
}
.flyout-one-card:hover .flyout-one-card__pause-button.active {
  display: block;
}
.flyout-one-card__content {
  position: relative;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-one-card {
    position: relative;
    display: block;
  }
  .flyout-one-card__content {
    height: inherit;
  }
  .flyout-one-card__text {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 2rem;
    bottom: 15%;
    max-width: 45%;
  }
  .flyout-one-card__content {
    overflow: hidden;
  }
  .flyout-one-card__content:hover .flyout-one-card__asset,
  .flyout-one-card__content:hover .cq-dd-image {
    transform: scale(1.04);
  }
  .flyout-one-card__link-text {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
  .flyout-one-card__link-text:after {
    content: '';
    transition: 0.5s;
    display: inline-block;
    padding: 0.1875rem;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 1.25rem;
    right: 1rem;
    margin-left: 0.5rem;
  }
  .flyout-one-card__asset,
  .flyout-one-card .cq-dd-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 600ms ease-in-out;
    position: absolute;
  }
  .flyout-one-card__header {
    font-size: 1.625rem;
    line-height: 1.75rem;
  }
  .flyout-one-card__wrapper:focus-visible {
    outline: solid 0.0625rem #000000;
  }
  .flyout-one-card__wrapper:focus-visible .flyout-one-card__content {
    outline: solid 0.0625rem #000000;
    outline-offset: 0.125rem;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-one-card {
    position: relative;
    display: block;
  }
  .author-mode .flyout-one-card__content {
    height: inherit;
  }
  .author-mode .flyout-one-card__text {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 2rem;
    bottom: 15%;
    max-width: 45%;
  }
  .author-mode .flyout-one-card__content {
    overflow: hidden;
  }
  .author-mode .flyout-one-card__content:hover .flyout-one-card__asset,
  .author-mode .flyout-one-card__content:hover .cq-dd-image {
    transform: scale(1.04);
  }
  .author-mode .flyout-one-card__link-text {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
  .author-mode .flyout-one-card__link-text:after {
    content: '';
    transition: 0.5s;
    display: inline-block;
    padding: 0.1875rem;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 1.25rem;
    right: 1rem;
    margin-left: 0.5rem;
  }
  .author-mode .flyout-one-card__asset,
  .author-mode .flyout-one-card .cq-dd-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 600ms ease-in-out;
    position: absolute;
  }
  .author-mode .flyout-one-card__header {
    font-size: 1.625rem;
    line-height: 1.75rem;
  }
  .author-mode .flyout-one-card__wrapper:focus-visible {
    outline: solid 0.0625rem #000000;
  }
  .author-mode .flyout-one-card__wrapper:focus-visible .flyout-one-card__content {
    outline: solid 0.0625rem #000000;
    outline-offset: 0.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-one-card {
    position: relative;
    display: block;
  }
  .flyout-one-card__content {
    height: inherit;
  }
  .flyout-one-card__text {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 2rem;
    bottom: 15%;
    max-width: 45%;
  }
  .flyout-one-card__content {
    overflow: hidden;
  }
  .flyout-one-card__content:hover .flyout-one-card__asset,
  .flyout-one-card__content:hover .cq-dd-image {
    transform: scale(1.04);
  }
  .flyout-one-card__link-text {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
  .flyout-one-card__link-text:after {
    content: '';
    transition: 0.5s;
    display: inline-block;
    padding: 0.1875rem;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 1.25rem;
    right: 1rem;
    margin-left: 0.5rem;
  }
  .flyout-one-card__asset,
  .flyout-one-card .cq-dd-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 600ms ease-in-out;
    position: absolute;
  }
  .flyout-one-card__header {
    font-size: 1.625rem;
    line-height: 1.75rem;
  }
  .flyout-one-card__wrapper:focus-visible {
    outline: solid 0.0625rem #000000;
  }
  .flyout-one-card__wrapper:focus-visible .flyout-one-card__content {
    outline: solid 0.0625rem #000000;
    outline-offset: 0.125rem;
  }
}

header.header-v3 {
  border-bottom: solid 0.125rem #c41230;
  -webkit-tap-highlight-color: transparent;
}
header.header-v3 .main_header .tool-set-section .brand-logo .logo {
  padding-right: 0;
  display: flex;
  align-items: center;
  width: 11.875rem !important;
  margin-left: 0;
  height: auto;
}
header.header-v3 .main_header .tool-set-section .brand-logo img {
  max-height: 100%;
  width: auto;
}
header.header-v3 .main_header .tool-set-section_right-side.simplified .header-language-selector.active svg path {
  stroke: #c41230;
}
header.header-v3 .main_header .tool-set-section_right-side.simplified .header-language-selector__menu__item {
  color: #222222;
  font-weight: 800;
}
header.header-v3 .main_header .tool-set-section_right-side.simplified .header-language-selector__menu__item:hover,
header.header-v3 .main_header .tool-set-section_right-side.simplified .header-language-selector__menu__item.selected {
  color: #c41230;
}
header.header-v3 .main_header .tool-set-section_right-side.simplified .sign-in-account {
  min-width: unset;
}
header.header-v3 .main_header .tool-set-section_right-side.simplified .sign-in-account__icon svg {
  height: 1.5rem;
  width: 1.5rem;
}
header.header-v3 .main_header .tool-set-section_right-side.simplified .sign-in-account:hover svg,
header.header-v3 .main_header .tool-set-section_right-side.simplified .sign-in-account .sign-in-account__link.active svg,
header.header-v3 .main_header .tool-set-section_right-side.simplified .sign-in-account .sign-in-account__auth-menu-trigger.active svg {
  color: #c41230;
}
header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box .sign-in-popup__form .form-label.form-show-password-label {
  border-radius: 0;
}
header.header-v3 .location-value {
  color: #2e2e2e;
}
header.header-v3 .location-headline-dropdown {
  font-family: 'Avenir-Black', sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25rem;
}
header.header-v3 .content-block-wrapper {
  padding: 0;
}
header.header-v3 .content-block-wrapper .location-text-block {
  margin-bottom: 1rem;
}
header.header-v3 .content-block-wrapper .location-text-label {
  font-size: 0.75rem;
  font-weight: 900;
  font-family: 'Avenir-Black', sans-serif;
  line-height: 1rem;
}
header.header-v3 .content-block-wrapper .form-block-location .email-form {
  margin-top: 0;
}
header.header-v3 .content-block-wrapper .form-block-location .form-location {
  margin-top: 0;
}
header.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code {
  border: 0.0625rem solid #bfbfbf;
}
header.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code.zip-code-required {
  border: 0.0625rem solid #c41230;
}
header.header-v3 .content-block-wrapper .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2 {
  height: 2.25rem;
}
header.header-v3 .content-block-wrapper .form-input {
  font-size: 1rem;
  line-height: 1.3125rem;
  color: #2e2e2e;
  margin-bottom: 0;
}
header.header-v3 .location-block {
  padding: 1rem;
}
header.header-v3 .header-search-form {
  border-radius: 0;
}
header.header-v3 .header-search-form.active {
  border-radius: 0;
}
header.header-v3 .header-search-form.active .header-search-form__search-items {
  border-radius: 0;
}
header.header-v3 .header-search-form.active .header-search-button-icon {
  color: #c41230;
}
header.header-v3 .header-search-form__search-items {
  border-radius: 0;
}
header.header-v3 .header-suggestions-panel {
  border-radius: 0;
  padding: 0 .7rem;
}
header.header-v3 .header-suggestions-panel::before {
  border: 0.063rem solid #766b6b;
  opacity: 100%;
}
header.header-v3 .header-suggestions-panel .header-suggestions-button {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.813rem;
  line-height: 1.25rem;
  text-decoration-line: underline;
  text-transform: uppercase;
}
header.header-v3 .header-suggestions-panel .header-suggestions-link {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.313rem;
  color: #2e2e2e;
}
header.header-v3 .header-suggestions-panel .header-suggestions-bottom {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.813rem;
  line-height: 1.25rem;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #c41230;
  float: left;
  background: none;
  margin-left: 0.3rem;
}
header.header-v3 .header-search-input {
  border-radius: 0 !important;
  background: #f2f2f2;
  border: none;
  box-sizing: border-box;
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.313rem;
}
header.header-v3 .header-search-input::placeholder {
  color: #766b6b;
}
header.header-v3 .cart-mini-v3__title-text {
  text-transform: uppercase;
}
header.header-v3 .empty-cart-v3-text {
  text-transform: uppercase;
}
header.header-v3 .sign-in-account__text-container {
  font-family: "Avenir", sans-serif;
  color: #000000;
}
header.header-v3 .sign-in-account__text-container:hover .sign-in-account__text-bold {
  color: #c41230;
}
header.header-v3 .sign-in-account .login-user-signout {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.813rem;
  line-height: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  color: #2e2e2e;
}
header.header-v3 .sign-in-account__nav-row {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #000000;
}
header.header-v3 .sign-in-account__nav-row-item {
  font-size: 1rem;
  line-height: 1.313rem;
  color: #000000;
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
}
header.header-v3 .sign-in-account__text-bold {
  font-style: normal;
  font-weight: 900;
  color: #000000;
  font-family: 'Avenir-Black', sans-serif;
  font-size: 0.625rem;
  line-height: 0.5rem;
}
header.header-v3 .sign-in-account__second-row {
  font-style: normal;
  font-size: 0.813rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  font-weight: 900;
}
header.header-v3 .sign-in-account__second-row::after {
  border-left: 0.2rem solid transparent;
  border-right: 0.2rem solid transparent;
  border-top: 0.3rem solid #000000;
}
header.header-v3 .sign-in-account__welcome-text {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2e2e2e;
}
header.header-v3 .sign-in-account svg {
  width: 1.25rem;
  height: 1.25rem;
}
header.header-v3 .active .sign-in-account__text-container {
  color: #c41230 !important;
}
header.header-v3 .active .sign-in-account__text-container span {
  color: #c41230 !important;
}
header.header-v3 #update-location-btn {
  height: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 900;
  line-height: 1.75rem;
}
header.header-v3 .sign-in-account__nav-row-item.user-name {
  font-size: 1.25rem;
}
header.header-v3 .sign-in-account__first-row {
  font-family: "Avenir", sans-serif;
  font-size: 0.75rem;
}
header.header-v3 .sign-in-account__first-row .sign-in-account__text-bold {
  font-size: inherit;
}
header.header-v3 .sign-in-account__first-row {
  font-size: 0.625rem;
  line-height: 1rem;
}
header.header-v3 .sign-in-account__second-row {
  font-size: 0.8125rem;
}
header.header-v3 .sign-in-account__second-row .sign-in-account__text-bold {
  font-size: inherit;
}
header.header-v3 .header-search-form__wrapper .header-search-trigger-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
header.header-v3.header-v3--search-fixed {
  border-bottom: 0.125rem solid #c41230;
}
@media all and (min-width: 64.01rem) and (max-width: 85.375rem) {
  header.header-v3 {
    border-bottom: none;
  }
  header.header-v3.header-v3--search-fixed {
    border-bottom: none;
  }
  header.header-v3 .header-search-input {
    border: 0.063rem solid #b6b6b6;
  }
  header.header-v3 #sign-in-modal .modal-box {
    margin: 5rem 0 auto auto;
    transform: translate(20px, 0px);
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .login-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label {
    font-family: "Avenir", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
    color: #000000;
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label.form-show-password-label {
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label::placeholder {
    color: transparent;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-show-password-label {
    top: 0.25rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: #000000;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .login-forgot-password-link {
    font-family: "Avenir", sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    position: relative;
    top: -0.75rem;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__divider {
    text-transform: capitalize;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .sing-in-buttons-wrapper div[class^="sign-in-buttons__login-"] {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    line-height: 1.313rem;
    font-weight: 900;
    color: #2e2e2e;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__button {
    display: inline-block;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: .813rem;
    line-height: 1.25rem;
  }
  header.header-v3 .sub-menu-block {
    padding-top: 0;
    padding-bottom: 0;
  }
  header.header-v3 .sign-in-account__first-row {
    font-family: "Avenir", sans-serif;
    font-size: 0.75rem;
  }
  header.header-v3 .sign-in-account__first-row .sign-in-account__text-bold {
    font-size: inherit;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo .logo {
    padding: 0.1rem 0 0.1rem 1.5rem;
  }
  header.header-v3 .header-suggestions-bottom {
    float: none;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
    overflow: inherit;
    background: 0;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media all and (min-width: 85.375rem) {
  header.header-v3 {
    border-bottom: none;
  }
  header.header-v3.header-v3--search-fixed {
    border-bottom: none;
  }
  header.header-v3 .header-search-input {
    border: 0.063rem solid #b6b6b6;
  }
  header.header-v3 #sign-in-modal .modal-box {
    margin: 5rem 0 auto auto;
    transform: translate(20px, 0px);
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .login-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label {
    font-family: "Avenir", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
    color: #000000;
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label.form-show-password-label {
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label::placeholder {
    color: transparent;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-show-password-label {
    top: 0.25rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: #000000;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .login-forgot-password-link {
    font-family: "Avenir", sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    position: relative;
    top: -0.75rem;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__divider {
    text-transform: capitalize;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .sing-in-buttons-wrapper div[class^="sign-in-buttons__login-"] {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    line-height: 1.313rem;
    font-weight: 900;
    color: #2e2e2e;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__button {
    display: inline-block;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: .813rem;
    line-height: 1.25rem;
  }
  header.header-v3 .sub-menu-block {
    padding-top: 0;
    padding-bottom: 0;
  }
  header.header-v3 .sign-in-account__first-row {
    font-family: "Avenir", sans-serif;
    font-size: 0.75rem;
  }
  header.header-v3 .sign-in-account__first-row .sign-in-account__text-bold {
    font-size: inherit;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo .logo {
    padding: 0.1rem 0 0.1rem 1.5rem;
  }
  header.header-v3 .header-suggestions-bottom {
    float: none;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
    overflow: inherit;
    background: 0;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  header.header-v3.header-v3--search-fixed {
    border-bottom: none;
  }
  header.header-v3 .mega-menu-section {
    height: 0;
  }
  header.header-v3 .main_header .tool-set-section_right-side {
    padding-right: 4.5rem;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    margin: 4.5rem auto auto auto;
  }
  header.header-v3 .main_header .tool-set-section {
    height: 4.5rem;
  }
  header.header-v3 .header-cart-v3-trigger {
    margin: 0 0.6875rem;
  }
  header.header-v3 .sign-in-account__nav {
    top: 4.5rem;
    right: 4.5rem;
  }
}
@media all and (min-width: 64rem) and (orientation: landscape) {
  header.header-v3 {
    border-bottom: none;
  }
  header.header-v3.header-v3--search-fixed {
    border-bottom: none;
  }
  header.header-v3 .header-search-input {
    border: 0.063rem solid #b6b6b6;
  }
  header.header-v3 #sign-in-modal .modal-box {
    margin: 5rem 0 auto auto;
    transform: translate(20px, 0px);
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .login-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label {
    font-family: "Avenir", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
    color: #000000;
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label.form-show-password-label {
    text-transform: uppercase;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-label::placeholder {
    color: transparent;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .form-show-password-label {
    top: 0.25rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: #000000;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .login-forgot-password-link {
    font-family: "Avenir", sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    position: relative;
    top: -0.75rem;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .sign-in-buttons__divider {
    text-transform: capitalize;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__form .sing-in-buttons-wrapper div[class^="sign-in-buttons__login-"] {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    line-height: 1.313rem;
    font-weight: 900;
    color: #2e2e2e;
  }
  header.header-v3 #sign-in-modal .modal-box .sign-in-popup__button {
    display: inline-block;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: .813rem;
    line-height: 1.25rem;
  }
  header.header-v3 .sub-menu-block {
    padding-top: 0;
    padding-bottom: 0;
  }
  header.header-v3 .sign-in-account__first-row {
    font-family: "Avenir", sans-serif;
    font-size: 0.75rem;
  }
  header.header-v3 .sign-in-account__first-row .sign-in-account__text-bold {
    font-size: inherit;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo .logo {
    padding: 0.1rem 0 0.1rem 1.5rem;
  }
  header.header-v3 .header-suggestions-bottom {
    float: none;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
    overflow: inherit;
    background: 0;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .header-menu-overlay {
    top: 7rem;
  }
}
@media only screen and (max-width: 47.937rem) {
  header.header-v3 .main_header .tool-set-section .brand-logo {
    width: 45%;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo .logo {
    width: 10.875rem !important;
  }
  header.header-v3 .main_header .tool-set-section .brand-logo .logo img {
    width: 70%;
  }
  header.header-v3 .main_header .tool-set-section .tool-set-section_right-side {
    padding-right: 2.5rem;
  }
  .header-search-form__wrapper .search-featured .header-search-trigger-icon {
    padding: unset;
  }
}

@media all and (min-width: 64rem) and (orientation: portrait) {
  .sign-in-wrapper .modal-box--empty-content {
    width: 80%;
    top: inherit;
    left: inherit;
  }
  .sign-in-wrapper .sign-in-popup__form .login .sso-notice {
    padding-bottom: 5px;
  }
  #additional-sign-in-modal .modal-box {
    transform: inherit;
    margin: 4.5rem auto auto auto;
  }
  header.header-v3 .sign-in-modal-component #sign-in-modal.modal {
    background: rgba(46, 46, 46, 0.9);
  }
  header.header-v3 #sign-in-modal .modal-box {
    transform: inherit;
  }
}
@media only screen and (max-width: 1365px) and (orientation: landscape) {
  header.header-v3 .sign-in-modal-component #sign-in-modal .modal-box {
    right: 5%;
  }
}

.global-navigation .sidebar-icon-toggle {
  background-color: #c41230;
}
.global-navigation .spinner-mobile {
  background-color: #ffffff;
}
.global-navigation .mobile-menu-text {
  color: #ffffff;
}
.global-navigation .global-menu .header-search-form__wrapper .header-search-form__search-items {
  border: none;
}
@media (max-width: 767px) {
  .global-navigation .global-menu .global-menu__search {
    display: none;
  }
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .sidebar-icon-toggle_icon {
  margin: 0.75rem 1rem 0 1rem;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .global-menu {
  border-top: solid 0.125rem #c41230;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .diagonal.part-1,
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .diagonal.part-2 {
  color: #000000;
}
.global-navigation .global-menu_container {
  border-top: none;
  padding-top: 0.0625rem;
  padding-bottom: 0;
}
.global-navigation .global-menu_container .primary-link {
  padding: .313rem 0;
  transition: none;
  box-shadow: inset 0 -0.0625rem 0 #d2d2d2;
}
.global-navigation .global-menu_container .primary-link.selected {
  text-align: left;
}
.global-navigation .global-menu_container .primary-link.expanded-link {
  padding: .875rem 0;
}
.global-navigation .global-menu_container .primary-link.expanded-link .global-menu_flyout {
  padding-left: 0;
}
.global-navigation .global-menu_container .primary-link.expanded-link .primary-link_href {
  color: #c41230;
  font-weight: normal;
}
.global-navigation .global-menu_container .primary-link.expanded-link.selected .primary-link_href {
  color: #000000;
  font-weight: 900;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.global-navigation .global-menu_container .primary-link.expanded-link.selected .primary-link_control-panel {
  margin: auto;
}
.global-navigation .global-menu_container .primary-link.expanded-link .link-arrow-right {
  border: solid #c41230;
  border-width: 0 .125rem .125rem 0;
}
.global-navigation .global-menu_container .primary-link.expanded-link.selected .link-arrow-right {
  display: none;
}
.global-navigation .global-menu_container .primary-link.expanded-link.selected .flyout-links_header {
  padding: .313rem 0 .313rem 1rem;
}
.global-navigation .global-menu_container .primary-link.expanded-link .primary-link_control-panel {
  padding-bottom: 0.875rem;
  min-height: 1.25rem;
  line-height: 1.25rem;
}
.global-navigation .global-menu_container .primary-link.selected .link-arrow-left {
  left: 1.25rem;
  top: 1.25rem;
}
.global-navigation .global-menu_container .primary-link_href {
  width: fit-content;
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #2e2e2e;
  text-transform: capitalize;
}
.global-navigation .global-menu_container .primary-link_href:hover {
  color: #c41230 !important;
  text-decoration: none;
}
.global-navigation .global-menu_container .primary-link .primary-link_control-panel {
  text-align: center;
  width: fit-content;
}
.global-navigation .global-menu_container .primary-link:hover > .global-menu_flyout .global-menu_flyout-border,
.global-navigation .global-menu_container .primary-link.open > .global-menu_flyout .global-menu_flyout-border {
  border-bottom: none;
  box-shadow: none;
}
.global-navigation .global-menu_container .primary-link .link-arrow-right {
  top: 1.25rem;
}
.global-navigation .global-menu_container .primary-link .sub-menu-block {
  padding: 0 0;
}
.global-navigation .global-menu_container .primary-link:not(:first-child) {
  border-top: none;
}
.global-navigation .global-menu_container .hidden-slider {
  background: #c41230;
  height: 0.125rem;
  top: 7.2rem;
}
.global-navigation .mobile-menu-close-text {
  padding-top: .25rem;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .sidebar-icon-toggle_icon .spinner-mobile {
  background-color: #000000;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .horizontal.mobile-menu-close-text {
  font-size: 0.59375rem;
  padding-top: 8px;
  margin-top: 0;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .diagonal.part-1 {
  margin-top: 0.5rem;
  height: 0.125rem;
  margin-left: 0.25rem;
  width: 70%;
}
.global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .diagonal.part-2 {
  margin-top: -0.415rem;
  height: 0.125rem;
  margin-left: 0.25rem;
  width: 70%;
}
.global-navigation .mobile-menu-text {
  font-size: 0.59375rem;
}
.global-navigation .sub-menu-block {
  display: block;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .global-navigation .global-menu_container {
    overflow-y: initial;
    padding-top: 0;
    line-height: 1;
  }
  .global-navigation .global-menu_container .primary-link {
    display: inline-block;
    text-align: left;
    width: auto;
    text-align: -webkit-center;
    margin: 0;
    box-shadow: none;
    padding: 0.5rem 1.5rem;
  }
  .global-navigation .global-menu_container .primary-link .primary-link_control-panel {
    margin: 0;
  }
  .global-navigation .global-menu_container .primary-link_href {
    font-family: 'Avenir-Black', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.8125rem;
    line-height: 1.313rem;
    color: #000000;
    text-transform: uppercase;
    margin-left: 0;
  }
  .global-navigation .global-menu_container .primary-link:hover > .global-menu_flyout {
    box-shadow: 0 0.25rem 0.5rem rgba(47, 35, 3, 0.2), inset 0 0.375rem 0.25rem -0.25rem rgba(47, 35, 3, 0.25);
  }
  .global-navigation .global-menu_container .primary-link .sub-menu-block {
    padding-top: 0.125rem;
  }
  .global-navigation .global-menu_container .primary-link:first-of-type {
    left: -0.6rem;
  }
}
@media all and (min-width: 64.01rem) {
  .global-navigation .global-menu_container {
    overflow-y: initial;
    padding-top: 0;
    line-height: 1;
  }
  .global-navigation .global-menu_container .primary-link {
    display: inline-block;
    text-align: left;
    width: auto;
    text-align: -webkit-center;
    margin: 0;
    box-shadow: none;
    padding: 0.5rem 1.5rem;
  }
  .global-navigation .global-menu_container .primary-link .primary-link_control-panel {
    margin: 0;
  }
  .global-navigation .global-menu_container .primary-link_href {
    font-family: 'Avenir-Black', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 0.8125rem;
    line-height: 1.313rem;
    color: #000000;
    text-transform: uppercase;
    margin-left: 0;
  }
  .global-navigation .global-menu_container .primary-link:hover > .global-menu_flyout {
    box-shadow: 0 0.25rem 0.5rem rgba(47, 35, 3, 0.2), inset 0 0.375rem 0.25rem -0.25rem rgba(47, 35, 3, 0.25);
  }
  .global-navigation .global-menu_container .primary-link .sub-menu-block {
    padding-top: 0.125rem;
  }
  .global-navigation .global-menu_container .primary-link:first-of-type {
    left: -0.6rem;
  }
}
/* Declare the same value for min- and max-width to avoid colliding with desktops */
@media only screen and (min-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .global-navigation .global-menu_container .primary-link.ipad-open.open {
    border-bottom: 2px solid #c41230;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    background-color: transparent;
  }
  .global-menu_container .primary-link.ipad-open.open ~ .hidden-slider {
    opacity: 0 !important;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout .global-menu_flyout-border {
    border-bottom: solid 0.1875rem transparent;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance:none) and (stroke-color:transparent) {
    .global-menu_container {
      display: block !important;
    }
    .global-navigation .global-menu_container .primary-link {
      padding-top: 0.425rem;
      padding-bottom: 0.425rem;
      border-bottom: 2px solid #ffffff;
    }
    .global-navigation .global-menu_container .primary-link:hover {
      background: transparent;
      border-bottom: 2px solid #c41230;
    }
  }
}
@supports (-webkit-hyphens:none) {
  .global-menu_container {
    display: block !important;
  }
  .global-navigation .global-menu_container .primary-link {
    padding-top: 0.425rem;
    padding-bottom: 0.425rem;
    border-bottom: 2px solid #ffffff;
  }
  .global-navigation .global-menu_container .primary-link:hover {
    background: transparent;
    border-bottom: 2px solid #c41230;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .global-navigation {
    height: 0;
  }
  .global-navigation .sidebar-icon-toggle {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
  }
  .global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle {
    background-color: #eeeeee;
  }
  .global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .sidebar-icon-toggle .sidebar-icon-toggle_icon {
    margin: 1.2rem 1rem 0 1rem;
  }
  .global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .global-menu {
    border-top: solid 0.125rem #c41230;
    transform: translateX(50%);
  }
  .global-navigation .global-menu {
    transform: translateX(150%);
  }
  .global-navigation .global-menu_container {
    list-style-type: none;
    margin: 0;
    align-items: center;
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    padding: 0 0;
    height: calc(100vh - 3rem);
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    background: #ffffff;
    max-width: 50%;
  }
  .global-navigation .global-menu_container .primary-link {
    padding: 0.875rem 0;
    transition: none;
    display: block;
    text-align: left;
    width: auto;
    margin: 0;
    position: relative;
  }
  .global-navigation .global-menu_container .primary-link:not(:first-child) {
    border-top: none;
  }
  .global-navigation .global-menu_container .primary-link .primary-link_control-panel {
    margin-left: 1rem;
  }
  .global-navigation .global-menu_container .primary-link .link-arrow-right {
    display: block;
  }
  .global-navigation .global-menu_container .primary-link:first-of-type {
    left: inherit;
  }
  .global-navigation .global-menu_container .primary-link.expanded-link .link-arrow-left {
    display: block;
  }
  .global-navigation .global-menu_container .primary-link.expanded-link .global-menu_flyout {
    transition: none;
    display: block;
  }
  .global-navigation .global-menu_container .primary-link:hover > .global-menu_flyout {
    box-shadow: none;
    position: initial;
  }
  .global-navigation .global-menu_container .primary-link:hover ~ .hidden-slider {
    opacity: 0;
  }
  .global-navigation .global-menu_container .primary-link.open ~ .hidden-slider {
    opacity: 0;
  }
  .global-navigation .global-menu_container .primary-link_href {
    width: fit-content;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #000000;
    text-transform: capitalize;
    font-weight: normal;
  }
  .global-navigation .sidebar-icon-toggle .sidebar-icon-toggle_icon {
    margin: 1.36rem 1rem 0 1rem;
  }
  .global-navigation .flyout-right-col {
    display: block;
  }
  .global-menu_container {
    overflow-y: hidden;
  }
  .global-menu_container .primary-link:hover > .global-menu_flyout {
    display: none;
  }
  .global-menu_container .primary-link.expanded-link .primary-link_control-panel {
    padding-bottom: 1.125rem;
  }
  .global-menu_container .primary-link.expanded-link .global-menu_flyout {
    border-top: solid 0.0625rem #d2d2d2;
  }
  .global-menu_container .primary-link.open > .global-menu_flyout {
    display: none;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) and (orientation: landscape) {
  .global-navigation input[type="checkbox"]:checked#openGlobalMenuTrigger ~ .global-menu {
    transform: translateX(65%);
    overflow-y: visible;
  }
  .global-navigation .global-menu_container {
    max-width: 35%;
  }
}
.header-less-overlay {
  z-index: 20;
}
@media only screen and (max-width: 47.937rem) {
  .primary-link.ipad-open .link-arrow-left {
    width: 100%;
    left: 0;
    height: 40px;
    top: 10px;
    position: absolute;
  }
  .primary-link.ipad-open.selected.expanded-link .link-arrow-left {
    width: auto;
    height: auto;
  }
}

.utilityNav {
  background-color: #f2f2f2;
}
.utility-nav__container {
  background-color: #f2f2f2;
}
.utility-nav__container .header-chat-link:hover {
  color: #c41230;
}
.utility-nav__link {
  font-size: 0.75rem;
  line-height: 1rem;
}
.utility-nav__link:hover {
  color: #c41230;
}
.utility-nav__link-icon {
  padding-right: 0;
}
.utility-nav__link-icon svg {
  margin-right: 0.5rem;
}
.utility-nav__link-wrapper .utility-nav__link .location-data {
  font-style: normal;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1rem;
}
.utility-nav__cross-site-navigation-item.active {
  border-bottom: 0.125rem solid #c41239;
}
.utility-nav__cross-site-navigation-brands-label {
  font-family: "Avenir", sans-serif;
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .utility-nav__link-wrapper {
    font-family: 'HelveticaNeue', sans-serif;
    line-height: 1rem;
    font-style: normal;
    font-weight: normal;
  }
  .utility-nav__link-wrapper--location {
    font-family: "Avenir", sans-serif;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown {
    padding: 0;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-text-label {
    padding-top: 0.5rem;
    margin-bottom: 0;
    color: #000000;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-value {
    color: #000000;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-headline-dropdown {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-text-block {
    margin-bottom: 1rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-text-label {
    font-size: 0.75rem;
    font-weight: 900;
    font-family: 'Avenir-Black', sans-serif;
    line-height: 1rem;
    padding-top: 0;
    margin-bottom: 0.25rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location {
    margin-top: 0;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code {
    border: 0.0625rem solid #bfbfbf;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code.zip-code-required {
    border: 0.0625rem solid #c41230;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2 {
    height: 2.25rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-input {
    font-size: 1rem;
    line-height: 1.3125rem;
    color: #2e2e2e;
    margin-bottom: 0;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-block {
    padding: 1rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown #update-location-btn {
    height: 2.5rem;
    font-size: 0.8125rem;
    font-weight: 900;
    line-height: 1.75rem;
    white-space: nowrap;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown #update-location-btn:focus {
    outline: 0.0625rem solid #000000;
    outline-offset: 0.125rem;
  }
  .utility-nav__link-wrapper:hover .utility-nav__link-icon svg {
    fill: #c41230;
  }
  .utility-nav__link-wrapper:hover .utility-nav__link {
    color: #c41230;
  }
  .utility-nav__cross-site-navigation {
    max-width: 72.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .utility-nav__link-wrapper {
    font-family: 'HelveticaNeue', sans-serif;
    line-height: 1rem;
    font-style: normal;
    font-weight: normal;
  }
  .utility-nav__link-wrapper--location {
    font-family: "Avenir", sans-serif;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown {
    padding: 0;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-text-label {
    padding-top: 0.5rem;
    margin-bottom: 0;
    color: #000000;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-value {
    color: #000000;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-headline-dropdown {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-text-block {
    margin-bottom: 1rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-text-label {
    font-size: 0.75rem;
    font-weight: 900;
    font-family: 'Avenir-Black', sans-serif;
    line-height: 1rem;
    padding-top: 0;
    margin-bottom: 0.25rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location {
    margin-top: 0;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code {
    border: 0.0625rem solid #bfbfbf;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code.zip-code-required {
    border: 0.0625rem solid #c41230;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-block-location .form-location .form-location-zip-code .mm-zipcode-location-v2 {
    height: 2.25rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .form-input {
    font-size: 1rem;
    line-height: 1.3125rem;
    color: #2e2e2e;
    margin-bottom: 0;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown .location-block {
    padding: 1rem;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown #update-location-btn {
    height: 2.5rem;
    font-size: 0.8125rem;
    font-weight: 900;
    line-height: 1.75rem;
    white-space: nowrap;
  }
  .utility-nav__link-wrapper--location .location-nav-dropdown #update-location-btn:focus {
    outline: 0.0625rem solid #000000;
    outline-offset: 0.125rem;
  }
  .utility-nav__link-wrapper:hover .utility-nav__link-icon svg {
    fill: #c41230;
  }
  .utility-nav__link-wrapper:hover .utility-nav__link {
    color: #c41230;
  }
  .utility-nav__cross-site-navigation {
    max-width: 72.5rem;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) and (orientation: landscape) {
  .utility-nav__container {
    transform: translateX(0);
    display: none;
  }
  .utility-nav__container.visible {
    transform: translateX(0);
    max-width: 100vw;
  }
  .utility-nav__cross-site-navigation {
    position: relative;
    padding-top: 1rem;
    display: grid;
    grid-template-columns: 7.5rem 7.5rem;
    height: auto;
  }
}
/* Declare the same value for min- and max-width to avoid colliding with desktops */
@media only screen and (min-width: 1024px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .utility-nav-wrapper-mobile {
    display: block;
  }
  .utility-nav__link-wrapper {
    justify-content: flex-start;
    width: max-content !important;
    height: 2.5rem;
  }
  .utility-nav__container {
    height: auto;
  }
}

.flyout-one-card {
  background: #f2f2f2;
  text-align: left;
}
.flyout-one-card__link-text {
  margin-top: .5rem;
  font-family: "Avenir", sans-serif;
  font-style: normal;
  line-height: 1rem;
  color: #c41230;
  font-weight: 900;
  font-size: 0.75rem;
}
.flyout-one-card__link-text:after {
  content: ' ';
  transition: .5s;
  display: inline-block;
  padding: .1875rem;
  transform: none;
  right: 1rem;
  margin-left: .5rem;
  background-color: #c41230;
  width: 0.75rem;
  height: 0.5rem;
  vertical-align: middle;
  clip-path: polygon(57% 14%, 65% 0%, 100% 50%, 65% 100%, 57% 86%, 76% 60%, 0% 60%, 0% 40%, 76% 40%);
}
.flyout-one-card__header {
  font-family: "Avenir", sans-serif;
  padding-top: 1rem;
  font-style: normal;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #000000;
  text-transform: uppercase;
  max-width: 65%;
}
.flyout-one-card__content {
  position: relative;
  width: 26rem;
  height: 23.375rem;
}
.flyout-one-card__text {
  position: relative;
  left: auto;
  bottom: auto;
}
@media all and (min-width: 64.01rem) {
  .flyout-one-card {
    padding: 1rem 0 1rem 2.5rem;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-one-card {
    padding: 1rem 0 1rem 2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-one-card {
    padding: 1rem 0 1rem 2.5rem;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .flyout-one-card {
    padding: 0 0;
    background: #ffffff;
    display: block;
    position: relative;
  }
  .flyout-one-card__content {
    position: initial;
    width: calc(50vw - 2rem);
    height: calc(50vw - 2rem);
    margin: 0 auto;
  }
  .flyout-one-card__content * {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .flyout-one-card__asset,
  .flyout-one-card .flyout-one-card .cq-dd-image {
    position: initial;
  }
  .flyout-one-card__wrapper {
    padding: 1rem 1rem;
    display: block;
    width: 100%;
    height: 100%;
  }
  .flyout-one-card .flyout-one-card__text {
    max-width: 100%;
  }
  .flyout-one-card__text {
    display: flex;
    flex-direction: column;
    bottom: 15%;
    margin-left: 1rem;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) and (orientation: landscape) {
  .flyout-one-card__content {
    position: initial;
    width: calc(35vw - 2rem);
    height: calc(35vw - 2rem);
  }
}

@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-container .flyout-right-col {
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
  }
  .flyout-container .flyout-container__left-columns {
    margin-left: 1.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-container .flyout-right-col {
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
  }
  .flyout-container .flyout-container__left-columns {
    margin-left: 1.5rem;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .flyout-container {
    flex-direction: column;
  }
  .flyout-container .flyout-container__left-columns {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    flex-basis: 100%;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col {
    flex-direction: column;
    width: 100%;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: initial;
    min-width: initial;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column:not(:last-child) {
    border: none;
  }
  .flyout-container .flyout-container__left-columns .flyout-left-col.flyout-horizontal-line {
    border: none;
  }
  .flyout-container .flyout-header {
    display: none;
  }
  .flyout-container .flyout-right-col {
    display: block;
  }
  .flyout-container .flyout-right-col :empty {
    border-top: none;
  }
  .flyout-links {
    margin-top: 0;
  }
}
/* Declare the same value for min- and max-width to avoid colliding with desktops */
@media only screen and (min-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .flyout-container .flyout-container__left-columns {
    margin-left: 11px;
  }
}
/* Declare the same value for min- and max-width to avoid colliding with desktops */
@media only screen and (min-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .flyout-container .flyout-container__left-columns {
    margin-left: 20px;
  }
  .expanded-link .flyout-container {
    flex-direction: column;
  }
  .expanded-link .flyout-container .flyout-container__left-columns {
    margin-left: 0;
    max-width: 100%;
  }
  .expanded-link .flyout-container .flyout-container__left-columns .flyout-left-col {
    flex-direction: column;
    width: 100%;
  }
  .expanded-link .flyout-container .flyout-container__left-columns .flyout-left-col .flyout-column {
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
  }
  .global-navigation .global-menu_container .primary-link:first-of-type {
    margin-left: 14px;
  }
  .global-navigation .global-menu_container .primary-link:first-of-type[role="button"] {
    margin-left: 0;
  }
}

.header-cart-v3 .header-cart-v3-trigger:focus-visible {
  outline: 0.0125rem solid #000000;
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-item-count {
  background: #c41230;
}
.header-cart-v3 .header-cart-v3-trigger .header-cart-v3-item-count-value {
  color: #ffffff;
}
.header-cart-v3 .header-cart-v3-trigger:hover {
  color: #c41230;
}
.header-cart-v3 .header-cart-v3-trigger:hover svg path {
  fill: #c41230;
}
.header-cart-v3 .cart-mini-v3__count-link {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: .75rem;
  line-height: 1rem;
  text-decoration-line: underline;
  color: #2e2e2e;
}
.header-cart-v3 .cart-mini-v3-section-container-short-border,
.header-cart-v3 .cart-mini-v3-section-container-full-border {
  border-bottom: 0.0625rem solid #e2e2e5;
}
.header-cart-v3 .cart-mini-v3-section-container .empty-cart-v3-text {
  font-style: normal;
  font-weight: 900;
  font-size: .813rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #2e2e2e;
}
.header-cart-v3 .cart-mini-v3__prod-title--link {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: .75rem;
  line-height: 1rem;
  color: #000000;
}
.header-cart-v3 .cart-mini-v3__total--label-bld,
.header-cart-v3 .cart-mini-v3__total--amt-bld {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: .75rem;
  line-height: 1rem;
  color: #2e2e2e;
}
.header-cart-v3 .cart-mini-v3__cta-btns {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.813rem;
  line-height: 1.25rem;
}
.header-cart-v3 .cart-mini-v3__title-text {
  font-style: normal;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #000000;
}
.header-cart-v3 .cart-mini-v3__empty-state-msgbox-text {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.313rem;
  color: #2e2e2e;
}
.header-cart-v3 .cart-mini-v3__empty-state-msgbox-link {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.313rem;
  color: #2e2e2e;
  text-decoration: underline;
  text-transform: uppercase;
}

.comparison-product-wrapper .comparison-product__data-cell .button {
  color: #ffffff !important;
}

.header-pencil-banner__message {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.313rem;
}
.header-pencil-banner__message a {
  font-family: "Avenir", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 0.813rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #da3052;
  text-decoration: none;
}
@media all and (max-width: 64rem) and (orientation: landscape) {
  .header-pencil-banner {
    justify-content: left;
  }
  .header-pencil-banner__content {
    margin: 0 .5rem;
    justify-content: left;
  }
}

.header-pencil-banner-v4 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: unset;
  position: unset;
}
.header-pencil-banner-v4 * {
  color: inherit;
}
.header-pencil-banner-v4 p {
  line-break: auto;
  margin: 15px 0;
}
.header-pencil-banner-v4__content {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.header-pencil-banner-v4__content__enabledAccessibilityButton {
  margin-left: auto;
}
.header-pencil-banner-v4__theme-01 {
  background-color: #ffffff;
  color: #2e2e2e;
}
.header-pencil-banner-v4__theme-01__accessibility-button {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  line-height: 1.5;
  margin-right: 10px;
}
.header-pencil-banner-v4__theme-01__accessibility-button a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #000000;
  color: #c41230;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-01__accessibility-button a:hover,
.header-pencil-banner-v4__theme-01__accessibility-button a:focus {
  color: #9b132b;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-01__message {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-left: 10px;
}
.header-pencil-banner-v4__theme-01__message a {
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #000000;
  color: #c41230;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-01__message a:hover,
.header-pencil-banner-v4__theme-01__message a:focus {
  color: #9b132b;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-01__message sub,
.header-pencil-banner-v4__theme-01__message sup {
  font-size: 60%;
}
.header-pencil-banner-v4__theme-01__message sub a,
.header-pencil-banner-v4__theme-01__message sup a {
  text-decoration: none;
}
.header-pencil-banner-v4__theme-01__button {
  outline-color: #000000;
}
@media all and (max-width: 48rem) {
  .header-pencil-banner-v4__theme-01__accessibility-button-container {
    border-bottom: 1px solid #000000;
  }
}
.header-pencil-banner-v4__theme-02 {
  background-color: #f6f6f6;
  color: #2e2e2e;
}
.header-pencil-banner-v4__theme-02__accessibility-button {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  line-height: 1.5;
  margin-right: 10px;
}
.header-pencil-banner-v4__theme-02__accessibility-button a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #000000;
  color: #c41230;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-02__accessibility-button a:hover,
.header-pencil-banner-v4__theme-02__accessibility-button a:focus {
  color: #9b132b;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-02__message {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-left: 10px;
}
.header-pencil-banner-v4__theme-02__message a {
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #000000;
  color: #c41230;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-02__message a:hover,
.header-pencil-banner-v4__theme-02__message a:focus {
  color: #9b132b;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-02__message sub,
.header-pencil-banner-v4__theme-02__message sup {
  font-size: 60%;
}
.header-pencil-banner-v4__theme-02__message sub a,
.header-pencil-banner-v4__theme-02__message sup a {
  text-decoration: none;
}
.header-pencil-banner-v4__theme-02__button {
  outline-color: #000000;
}
@media all and (max-width: 48rem) {
  .header-pencil-banner-v4__theme-02__accessibility-button-container {
    border-bottom: 1px solid #000000;
  }
}
.header-pencil-banner-v4__theme-03 {
  background-color: #eeeeee;
  color: #2e2e2e;
}
.header-pencil-banner-v4__theme-03__accessibility-button {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  line-height: 1.5;
  margin-right: 10px;
}
.header-pencil-banner-v4__theme-03__accessibility-button a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #ffffff;
  color: #c41230;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-03__accessibility-button a:hover,
.header-pencil-banner-v4__theme-03__accessibility-button a:focus {
  color: #9b132b;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-03__message {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-left: 10px;
}
.header-pencil-banner-v4__theme-03__message a {
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #ffffff;
  color: #c41230;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-03__message a:hover,
.header-pencil-banner-v4__theme-03__message a:focus {
  color: #9b132b;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-03__message sub,
.header-pencil-banner-v4__theme-03__message sup {
  font-size: 60%;
}
.header-pencil-banner-v4__theme-03__message sub a,
.header-pencil-banner-v4__theme-03__message sup a {
  text-decoration: none;
}
.header-pencil-banner-v4__theme-03__button {
  outline-color: #ffffff;
}
@media all and (max-width: 48rem) {
  .header-pencil-banner-v4__theme-03__accessibility-button-container {
    border-bottom: 1px solid #ffffff;
  }
}
.header-pencil-banner-v4__theme-04 {
  background-color: #2e2e2e;
  color: #ffffff;
}
.header-pencil-banner-v4__theme-04__accessibility-button {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  line-height: 1.5;
  margin-right: 10px;
}
.header-pencil-banner-v4__theme-04__accessibility-button a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #ffffff;
  color: #aaaaaa;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-04__accessibility-button a:hover,
.header-pencil-banner-v4__theme-04__accessibility-button a:focus {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-04__message {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-left: 10px;
}
.header-pencil-banner-v4__theme-04__message a {
  font-weight: 400;
  letter-spacing: unset;
  outline-color: #ffffff;
  color: #aaaaaa;
  text-decoration: underline;
}
.header-pencil-banner-v4__theme-04__message a:hover,
.header-pencil-banner-v4__theme-04__message a:focus {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: unset;
}
.header-pencil-banner-v4__theme-04__message sub,
.header-pencil-banner-v4__theme-04__message sup {
  font-size: 60%;
}
.header-pencil-banner-v4__theme-04__message sub a,
.header-pencil-banner-v4__theme-04__message sup a {
  text-decoration: none;
}
.header-pencil-banner-v4__theme-04__button {
  outline-color: #ffffff;
}
@media all and (max-width: 48rem) {
  .header-pencil-banner-v4__theme-04__accessibility-button-container {
    border-bottom: 1px solid #ffffff;
  }
}
.header-pencil-banner-v4__button {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 150%;
  text-transform: uppercase;
  padding: 15px 0;
  text-decoration: none;
  height: auto !important;
  white-space: nowrap;
  margin: 0 10px;
}
.header-pencil-banner-v4__button:hover,
.header-pencil-banner-v4__button:active {
  text-decoration: none;
  outline: none;
  letter-spacing: 0;
}
.header-pencil-banner-v4__button:focus {
  text-decoration: none;
  outline-offset: -2px;
}
.header-pencil-banner-v4__button:hover,
.header-pencil-banner-v4__button:active,
.header-pencil-banner-v4__button:focus {
  padding: 15px 0;
}
.header-pencil-banner-v4__button.brand {
  color: #c41230;
  transition: color 200ms ease-out;
}
.header-pencil-banner-v4__button.brand:hover,
.header-pencil-banner-v4__button.brand:active,
.header-pencil-banner-v4__button.brand:focus {
  color: #9b132b;
}
.header-pencil-banner-v4__button.dark {
  color: #2e2e2e;
  transition: color 200ms ease-out;
}
.header-pencil-banner-v4__button.dark:hover,
.header-pencil-banner-v4__button.dark:active,
.header-pencil-banner-v4__button.dark:focus {
  color: #9b132b;
}
.header-pencil-banner-v4__button.light {
  color: #ffffff;
  transition: color 200ms ease-out;
}
.header-pencil-banner-v4__button.light:hover,
.header-pencil-banner-v4__button.light:active,
.header-pencil-banner-v4__button.light:focus {
  color: #aaaaaa;
}
.header-pencil-banner-v4__button.withicon {
  display: flex;
  align-items: center;
}
.header-pencil-banner-v4__button.withicon .button-icon {
  font-size: 1.5rem;
}
.header-pencil-banner-v4__button.withicon-left .button-text {
  order: 2;
}
.header-pencil-banner-v4__button.withicon-left .button-icon {
  order: 1;
  margin-right: 10px;
  line-height: 0;
  height: 0;
}
.header-pencil-banner-v4__button.withicon-right .button-icon {
  margin-left: 10px;
  line-height: 0;
  height: 0;
}
.header-pencil-banner-v4__accessibility-button {
  margin: 10px 20px;
  white-space: nowrap;
}
.header-pencil-banner-v4 .accessibility-button-container {
  margin-left: auto;
}
@media all and (max-width: 48rem) {
  .header-pencil-banner-v4 {
    flex-direction: column-reverse;
  }
  .header-pencil-banner-v4__message {
    font-size: 1rem;
  }
  .header-pencil-banner-v4__button {
    font-size: 0.875rem;
  }
  .header-pencil-banner-v4__button.withicon .button-icon {
    font-size: 1.5rem;
  }
  .header-pencil-banner-v4__content__enabledAccessibilityButton {
    margin-left: 0;
  }
  .header-pencil-banner-v4 .accessibility-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .header-pencil-banner-v4 .accessibility-button-container__enabledAccessibilityButton {
    border-bottom: none;
  }
  .header-pencil-banner-v4__accessibility-button {
    margin: 5px 0;
  }
  .header-pencil-banner-v4__accessibility-button a {
    font-size: 1rem;
  }
}
.header-pencil-banner-v4__hide-main-content {
  display: flex;
}

#sign_custom_circle {
    position: fixed;
    visibility: visible;
    cursor: pointer;
    padding: 0;
    margin: 0;
    right: -1px;
    height: 134px;
    width: 39px;
    background: #fff;
    z-index: 10;
    border: 1px solid #c41230;
    top: 65%;
    transition: all 0.5s ease 0s;
}

#sign_custom_circle.sign_show {
    display: none;
    top: 65%;
}

#sign_custom_circle .sign_custom_dismiss {
    position: absolute;
    top: 12px;
    right: 12px;
    height: 15px;
    width: 15px;
}

#sign_mail_img {
    position: absolute;
    max-width: 100%;
}

#sign_x_img {
    max-width: 100%;
    width: max-content;
}

#sign_custom_circle .sign_up_heading {
    transform: rotate(-90deg);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80px;
    margin: 0 auto;
    position: relative;
    right: 21px;
    top: 57px;
    text-transform: uppercase;
    font-size: 13.5px;
    font-weight: bold;
    line-height: 16px;
    font-family: 'Avenir-Black',sans-serif;
    color: #c41230;
    letter-spacing: 1px;
}

#sign_custom_circle .sign_up_mail {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 15px;
    width: 15px;
}

#sign_x_mail {
	position: relative;
    top: 7rem;
}

@media (max-width: 767px) {
    #sign_custom_circle {
        z-index: 101;
    }
}
@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-contact-us-card__header {
    display: block;
    font-weight: bold;
    font-size: .875rem;
    margin-bottom: .375rem;
  }
  .flyout-contact-us-card .flyout-header-chat {
    display: none;
  }
  .flyout-contact-us-card__body {
    padding: 2rem 0;
  }
  .flyout-contact-us-card__body__phone-container {
    margin: .5rem 0;
  }
  .flyout-contact-us-card__body__phone-container__label {
    font-size: 1rem;
  }
  .flyout-contact-us-card__body__phone-container__phone {
    margin-top: 1rem;
    display: block;
    font-size: 1.625rem;
    line-height: 1.75rem;
    font-weight: bold;
  }
  .flyout-contact-us-card__body__description,
  .flyout-contact-us-card__body__description p {
    padding-right: 2rem;
    font-size: .75rem;
  }
  .flyout-contact-us-card__body__description a,
  .flyout-contact-us-card__body__description p a {
    text-decoration: underline;
  }
  .flyout-contact-us-card__button-container {
    display: flex;
  }
  .flyout-contact-us-card__button-container__link {
    background: #eeb111;
    border-radius: 1.125rem;
    display: flex;
    flex-direction: row;
    width: 8.75rem;
    height: 2.25rem;
    justify-content: center;
    align-items: center;
    margin-right: .5rem;
    text-decoration: none;
    font-size: .75rem;
  }
  .flyout-contact-us-card__button-container__link__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .flyout-contact-us-card__button-container__link--email {
    background: #ffffff;
    border: 2px solid #000000;
  }
  .flyout-contact-us-card__button-container__link:hover {
    text-decoration: none;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-contact-us-card__header {
    display: block;
    font-weight: bold;
    font-size: .875rem;
    margin-bottom: .375rem;
  }
  .author-mode .flyout-contact-us-card .flyout-header-chat {
    display: none;
  }
  .author-mode .flyout-contact-us-card__body {
    padding: 2rem 0;
  }
  .author-mode .flyout-contact-us-card__body__phone-container {
    margin: .5rem 0;
  }
  .author-mode .flyout-contact-us-card__body__phone-container__label {
    font-size: 1rem;
  }
  .author-mode .flyout-contact-us-card__body__phone-container__phone {
    margin-top: 1rem;
    display: block;
    font-size: 1.625rem;
    line-height: 1.75rem;
    font-weight: bold;
  }
  .author-mode .flyout-contact-us-card__body__description,
  .author-mode .flyout-contact-us-card__body__description p {
    padding-right: 2rem;
    font-size: .75rem;
  }
  .author-mode .flyout-contact-us-card__body__description a,
  .author-mode .flyout-contact-us-card__body__description p a {
    text-decoration: underline;
  }
  .author-mode .flyout-contact-us-card__button-container {
    display: flex;
  }
  .author-mode .flyout-contact-us-card__button-container__link {
    background: #eeb111;
    border-radius: 1.125rem;
    display: flex;
    flex-direction: row;
    width: 8.75rem;
    height: 2.25rem;
    justify-content: center;
    align-items: center;
    margin-right: .5rem;
    text-decoration: none;
    font-size: .75rem;
  }
  .author-mode .flyout-contact-us-card__button-container__link__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .author-mode .flyout-contact-us-card__button-container__link--email {
    background: #ffffff;
    border: 2px solid #000000;
  }
  .author-mode .flyout-contact-us-card__button-container__link:hover {
    text-decoration: none;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-contact-us-card__header {
    display: block;
    font-weight: bold;
    font-size: .875rem;
    margin-bottom: .375rem;
  }
  .flyout-contact-us-card .flyout-header-chat {
    display: none;
  }
  .flyout-contact-us-card__body {
    padding: 2rem 0;
  }
  .flyout-contact-us-card__body__phone-container {
    margin: .5rem 0;
  }
  .flyout-contact-us-card__body__phone-container__label {
    font-size: 1rem;
  }
  .flyout-contact-us-card__body__phone-container__phone {
    margin-top: 1rem;
    display: block;
    font-size: 1.625rem;
    line-height: 1.75rem;
    font-weight: bold;
  }
  .flyout-contact-us-card__body__description,
  .flyout-contact-us-card__body__description p {
    padding-right: 2rem;
    font-size: .75rem;
  }
  .flyout-contact-us-card__body__description a,
  .flyout-contact-us-card__body__description p a {
    text-decoration: underline;
  }
  .flyout-contact-us-card__button-container {
    display: flex;
  }
  .flyout-contact-us-card__button-container__link {
    background: #eeb111;
    border-radius: 1.125rem;
    display: flex;
    flex-direction: row;
    width: 8.75rem;
    height: 2.25rem;
    justify-content: center;
    align-items: center;
    margin-right: .5rem;
    text-decoration: none;
    font-size: .75rem;
  }
  .flyout-contact-us-card__button-container__link__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .flyout-contact-us-card__button-container__link--email {
    background: #ffffff;
    border: 2px solid #000000;
  }
  .flyout-contact-us-card__button-container__link:hover {
    text-decoration: none;
  }
}
@media (min-width: 20rem) {
  .flyout-contact-us-card .flyout-header-chat {
    display: none;
  }
  .flyout-contact-us-card__body__description a,
  .flyout-contact-us-card__body__description p a {
    text-decoration: underline;
  }
}

@media all and (min-width: 64.01rem) and (orientation: landscape) {
  .flyout-contact-us-card__header {
    text-align: left;
    font-weight: 900;
    font-size: .813rem;
    font-style: normal;
    text-transform: uppercase;
    line-height: 1.25rem;
    font-family: "Avenir", sans-serif;
    margin-bottom: 0;
    color: #c41230;
  }
  .flyout-contact-us-card__body {
    text-align: left;
  }
  .flyout-contact-us-card__body__phone-container {
    margin: .437rem 0;
    font-style: normal;
    text-transform: uppercase;
    font-family: "Avenir", sans-serif;
  }
  .flyout-contact-us-card__body__phone-container__label {
    font-size: .813rem;
    line-height: 1.25rem;
    font-weight: 800;
    color: #2e2e2e;
    letter-spacing: .05rem;
  }
  .flyout-contact-us-card__body__phone-container__phone {
    margin-top: .375rem;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #c41230;
  }
  .flyout-contact-us-card__body__description,
  .flyout-contact-us-card__body__description p {
    margin-top: .313rem;
    font-size: .75rem;
    line-height: 1rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #000000;
  }
  .flyout-contact-us-card__body__description a,
  .flyout-contact-us-card__body__description p a {
    color: #000000;
  }
  .flyout-contact-us-card__button-container__link {
    background: #c41230;
    border-radius: 0;
    text-transform: uppercase;
    font-size: .75rem;
    font-family: "Avenir", sans-serif;
    font-weight: 900;
    line-height: 1rem;
  }
  .flyout-contact-us-card__button-container__link--chat {
    color: #ffffff;
  }
  .flyout-contact-us-card__button-container__link--chat:hover {
    color: #ffffff;
  }
  .flyout-contact-us-card__button-container__link--email {
    color: #000000;
    border: 0.125rem solid #353535;
    background: #ffffff;
  }
}
@media all and (min-width: 64.01rem) {
  .author-mode .flyout-contact-us-card__header {
    text-align: left;
    font-weight: 900;
    font-size: .813rem;
    font-style: normal;
    text-transform: uppercase;
    line-height: 1.25rem;
    font-family: "Avenir", sans-serif;
    margin-bottom: 0;
    color: #c41230;
  }
  .author-mode .flyout-contact-us-card__body {
    text-align: left;
  }
  .author-mode .flyout-contact-us-card__body__phone-container {
    margin: .437rem 0;
    font-style: normal;
    text-transform: uppercase;
    font-family: "Avenir", sans-serif;
  }
  .author-mode .flyout-contact-us-card__body__phone-container__label {
    font-size: .813rem;
    line-height: 1.25rem;
    font-weight: 800;
    color: #2e2e2e;
    letter-spacing: .05rem;
  }
  .author-mode .flyout-contact-us-card__body__phone-container__phone {
    margin-top: .375rem;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #c41230;
  }
  .author-mode .flyout-contact-us-card__body__description,
  .author-mode .flyout-contact-us-card__body__description p {
    margin-top: .313rem;
    font-size: .75rem;
    line-height: 1rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #000000;
  }
  .author-mode .flyout-contact-us-card__body__description a,
  .author-mode .flyout-contact-us-card__body__description p a {
    color: #000000;
  }
  .author-mode .flyout-contact-us-card__button-container__link {
    background: #c41230;
    border-radius: 0;
    text-transform: uppercase;
    font-size: .75rem;
    font-family: "Avenir", sans-serif;
    font-weight: 900;
    line-height: 1rem;
  }
  .author-mode .flyout-contact-us-card__button-container__link--chat {
    color: #ffffff;
  }
  .author-mode .flyout-contact-us-card__button-container__link--chat:hover {
    color: #ffffff;
  }
  .author-mode .flyout-contact-us-card__button-container__link--email {
    color: #000000;
    border: 0.125rem solid #353535;
    background: #ffffff;
  }
}
@media all and (min-width: 85.375rem) {
  .flyout-contact-us-card__header {
    text-align: left;
    font-weight: 900;
    font-size: .813rem;
    font-style: normal;
    text-transform: uppercase;
    line-height: 1.25rem;
    font-family: "Avenir", sans-serif;
    margin-bottom: 0;
    color: #c41230;
  }
  .flyout-contact-us-card__body {
    text-align: left;
  }
  .flyout-contact-us-card__body__phone-container {
    margin: .437rem 0;
    font-style: normal;
    text-transform: uppercase;
    font-family: "Avenir", sans-serif;
  }
  .flyout-contact-us-card__body__phone-container__label {
    font-size: .813rem;
    line-height: 1.25rem;
    font-weight: 800;
    color: #2e2e2e;
    letter-spacing: .05rem;
  }
  .flyout-contact-us-card__body__phone-container__phone {
    margin-top: .375rem;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #c41230;
  }
  .flyout-contact-us-card__body__description,
  .flyout-contact-us-card__body__description p {
    margin-top: .313rem;
    font-size: .75rem;
    line-height: 1rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #000000;
  }
  .flyout-contact-us-card__body__description a,
  .flyout-contact-us-card__body__description p a {
    color: #000000;
  }
  .flyout-contact-us-card__button-container__link {
    background: #c41230;
    border-radius: 0;
    text-transform: uppercase;
    font-size: .75rem;
    font-family: "Avenir", sans-serif;
    font-weight: 900;
    line-height: 1rem;
  }
  .flyout-contact-us-card__button-container__link--chat {
    color: #ffffff;
  }
  .flyout-contact-us-card__button-container__link--chat:hover {
    color: #ffffff;
  }
  .flyout-contact-us-card__button-container__link--email {
    color: #000000;
    border: 0.125rem solid #353535;
    background: #ffffff;
  }
}
@media all and (max-width: 64rem) {
  .flyout-contact-us-card__header {
    text-align: left;
    font-weight: 900;
    font-size: .813rem;
    font-style: normal;
    text-transform: uppercase;
    line-height: 1.25rem;
    font-family: "Avenir", sans-serif;
    margin-bottom: 0;
    color: #c41230;
  }
  .flyout-contact-us-card__body {
    text-align: left;
  }
  .flyout-contact-us-card__body__phone-container {
    margin: .437rem 0;
    font-style: normal;
    text-transform: uppercase;
    font-family: "Avenir", sans-serif;
  }
  .flyout-contact-us-card__body__phone-container__label {
    font-size: .813rem;
    line-height: 1.25rem;
    font-weight: 800;
    color: #2e2e2e;
    letter-spacing: .05rem;
  }
  .flyout-contact-us-card__body__phone-container__phone {
    margin-top: .375rem;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #c41230;
  }
  .flyout-contact-us-card__body__description,
  .flyout-contact-us-card__body__description p {
    margin-top: .313rem;
    font-size: .75rem;
    line-height: 1rem;
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #000000;
  }
  .flyout-contact-us-card__body__description a,
  .flyout-contact-us-card__body__description p a {
    color: #000000;
  }
  .flyout-contact-us-card__button-container__link {
    background: #c41230;
    border-radius: 0;
    text-transform: uppercase;
    font-size: .75rem;
    font-family: "Avenir", sans-serif;
    font-weight: 900;
    line-height: 1rem;
  }
  .flyout-contact-us-card__button-container__link--chat {
    color: #ffffff;
  }
  .flyout-contact-us-card__button-container__link--chat:hover {
    color: #ffffff;
  }
  .flyout-contact-us-card__button-container__link--email {
    color: #000000;
    border: 0.125rem solid #353535;
    background: #ffffff;
  }
  .flyout-contact-us-card {
    padding: 1rem 0;
    border-top: solid 1px #dedede;
  }
  .flyout-contact-us-card .flyout-header-chat {
    display: none;
  }
  .flyout-contact-us-card__header {
    padding-left: 1rem;
  }
  .flyout-contact-us-card__body {
    padding: 0 16px 16px;
  }
  .flyout-contact-us-card__body__phone-container__phone {
    display: block;
  }
  .flyout-contact-us-card__body__description p {
    width: 153px;
  }
  .flyout-contact-us-card__button-container {
    display: flex;
    padding: 16px 0;
    border-top: 1px solid #D2D2D2;
    border-bottom: 1px solid #D2D2D2;
  }
  .flyout-contact-us-card__button-container__link {
    display: flex;
    background: #c41230;
    margin-right: 0.5rem;
    justify-content: center;
    align-items: center;
  }
  .flyout-contact-us-card__button-container__link--chat {
    width: 8.75rem;
    height: 2.25rem;
    margin-left: 1rem;
  }
  .flyout-contact-us-card__button-container__link--email {
    background: #ffffff;
    width: 8.75rem;
    height: 2.25rem;
  }
}

.header-language-selector {
  width: 2.8125rem;
}
.header-language-selector button.header-language-selector__button.link-btn {
  height: 100%;
  width: 100%;
}
.header-language-selector__menu {
  display: none;
  position: absolute;
  top: 3.5625rem;
  width: 6.375rem;
  background-color: #ffffff;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.header-language-selector__menu__item {
  display: block;
  margin: 0.5rem;
  font-size: 0.75rem;
  line-height: 0.875rem;
  text-decoration: none;
}
.header-language-selector__menu__item:hover {
  text-decoration: none;
}
.header-language-selector .header-language-selector__icon svg {
  margin: auto;
  padding-top: 0.1875rem;
  height: 1.625rem;
  width: 1.375rem;
}
.header-language-selector.active .header-language-selector__menu {
  display: block;
}
@media all and (max-width: 48rem) {
  .header-language-selector {
    display: none;
  }
}
@media all and (min-width: 64.01rem) {
  .header-language-selector {
    margin-right: 0.5rem;
  }
  .header-language-selector__menu {
    top: 5.0625rem;
  }
}

.productCarousel:not(.cq-Editable-dom):not(:has(.prd-carousel--wrap)):has(.prd-carousel) {
    display: none;
}

.productCarousel .slick-dots li.slick-active button:before,
.productCarousel .slick-dots li button:before {
    content: unset;
}

.prd-carousel .single-line {
    color: inherit;
    font-family: inherit;
}

.prd-carousel .red-price {
    color: #A00A1D;
    font-weight: bold;
}

.prd-carousel .prd-carousel-top-price {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.prd-carousel .prd-carousel-top-price-label {
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 400;
}

.prd-carousel .prd-carousel__saving {
    font-weight: bold;
}

.prd-carousel .prd-carousel__product-tile__title  {
    width: inherit;
}

.prd-carousel .member-price-cta__text:hover {
    text-decoration: underline;
}

.prd-carousel .hidden {
    visibility: hidden;
}
/*similar products star rating */
.similar__products__recommendation .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}
.Other__products__recommendation .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}
.RecentlyViewed__products__recommendation .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}

.clp_top_rated_products_recommendation .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
} 
.PurchasedDetails__products__recommendation .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}
.ir__products__recommendation .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}
.mspCooking .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}
.mspRefrigerator .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}
.prd-carousel {
    font-family: "Avenir", sans-serif;
}
.clp_topselling_products_recommendation .bv_reviews_inner::before {
    color: rgb(196, 18, 57);
}

.platform-components-product-card {
  height: 100%;
  padding: 20px 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: none;
  margin: 0;
}
.platform-components-product-card .pc-icon-plus {
  margin-right: 5px;
  font-weight: normal;
}
.platform-components-product-card__title {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 120%;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.063rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__title {
    font-size: 1rem;
  }
}
.platform-components-product-card__title .product-link {
  text-decoration: none;
}
.platform-components-product-card .ribbon {
  position: absolute;
  top: 0;
  padding: 5px 30px;
  margin-left: -21px;
  font-weight: 600;
  font-size: 21px;
}
.platform-components-product-card .ribbon-holder {
  margin-bottom: 30px;
}
.platform-components-product-card .compare-container {
  display: flex;
  justify-content: right;
}
.platform-components-product-card .compare-container .add-to-compare {
  cursor: pointer;
}
.platform-components-product-card__swatches {
  display: flex;
  padding: 1rem 0;
}
.platform-components-product-card__swatches .color-select {
  position: relative;
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 0 0 0 #000000;
  margin-right: 8px;
  outline: none;
  transition: all 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .tool-tip {
  position: absolute;
  bottom: 39px;
  left: 0;
  font-size: 12px;
  line-height: 1.3;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  background: #000000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: initial;
  width: -webkit-max-content;
  width: max-content;
  display: flex;
  min-width: 50px;
  max-width: 150px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: opacity 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .tool-tip:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000000;
  position: absolute;
  left: 9px;
  right: 0;
  bottom: -6px;
  transition: opacity 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .color-padding {
  width: 24px;
  height: 24px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  box-shadow: 0 0 0 1px #fff;
}
.platform-components-product-card__swatches .color-select .color-padding span {
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  position: absolute;
  left: -2px;
  top: -2px;
}
.platform-components-product-card__swatches .color-select[data-color="White"] .color-padding {
  box-shadow: 0 0 0 1px #666;
}
.platform-components-product-card__swatches .color-select[data-color="Metallic Slate"] .color-padding {
  box-shadow: 0 0 0 1px #444;
}
.platform-components-product-card__swatches .color-select[data-color="Black"] .color-padding,
.platform-components-product-card__swatches .color-select[data-color="Heritage Black"] .color-padding {
  box-shadow: 0 0 0 1px #000;
}
.platform-components-product-card__swatches .color-select[data-stock="outOfStock"] span {
  opacity: .2;
}
.platform-components-product-card__swatches .color-select[data-stock="outOfStock"] .color-padding:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  left: 50%;
  background-color: red;
  transform: rotate(45deg) translateX(-50%);
}
.platform-components-product-card__swatches .color-select.active {
  box-shadow: 0 0 0 2px #c41230;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] {
  box-shadow: none;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] span {
  opacity: .2;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] .color-padding:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  left: 50%;
  background-color: red;
  transform: rotate(45deg) translateX(-50%);
}
.platform-components-product-card__swatches .color-select:hover .tool-tip {
  opacity: 1;
  visibility: visible;
}
.platform-components-product-card__swatches .color-select:focus {
  outline: 1px solid #000000 !important;
}
.platform-components-product-card__model-info-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.platform-components-product-card__sku {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.platform-components-product-card__sku.pc-padding-left {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__sku {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__rating .reviews-link {
  text-decoration: none;
  font-size: 13px!important;
}
.platform-components-product-card__rating .stars-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  padding-right: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
.platform-components-product-card__rating .stars-wrapper .product-stars {
  display: inline-block;
  position: relative;
  font-family: 'BVCustom', 'times new roman' !important;
  font-size: 13px!important;
  margin-bottom: 4px;
}
.platform-components-product-card__rating .stars-wrapper .product-stars .stars-active {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.platform-components-product-card__rating .stars-wrapper .model-rating,
.platform-components-product-card__rating .stars-wrapper .model-reviews {
  padding: 0 0 0 5px;
  font-size: 10px!important;
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif !important;
  text-transform: uppercase!important;
  font-weight: normal!important;
  font-style: normal!important;
  text-decoration: none!important;
  line-height: 19.5px!important;
}
.platform-components-product-card__rating .stars-wrapper .model-reviews {
  padding-left: 5px;
}
.platform-components-product-card__description {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-product-card__disclaimer {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 3px;
  padding: 7px 4px;
  margin-bottom: 0px;
  margin-left: 1px;
  font-size: 10px;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  top: -0.5em;
  font-size: 0.75rem;
  font-weight: 700;
  transition: 200ms ease-in-out;
  border: 0.78px solid #000;
  color: #000;
}
.platform-components-product-card__disclaimer[data-tooltip]:before {
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -50px;
  margin-right: 5px;
  padding: 5px;
  width: 100px;
  border-radius: 3px;
  background-color: #fff;
  color: #000;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 0.75rem;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  line-height: 1.2;
  box-shadow: 0px 2px 4px #888888;
  transition: 200ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.platform-components-product-card__disclaimer[data-tooltip]:after {
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  opacity: 0;
}
.platform-components-product-card__disclaimer:hover {
  cursor: pointer;
  color: #fff;
  background: #000;
}
.platform-components-product-card__disclaimer:hover[data-tooltip]:before,
.platform-components-product-card__disclaimer:hover[data-tooltip]:after {
  visibility: visible;
  opacity: 1;
}
.platform-components-product-card__features {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__features {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-product-card__features ul.dynamic-features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.platform-components-product-card__features ul.dynamic-features li {
  margin-bottom: 0.5rem;
}
.platform-components-product-card__meta-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.platform-components-product-card__price {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__price-sale {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price-sale {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__stock {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__stock {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__delivery {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__delivery {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__delivery [class^="icons-"],
.platform-components-product-card__delivery [class*=" icons-"] {
  font-size: 1rem;
}
.platform-components-product-card__button-container {
  margin-top: 1.5rem;
}
.platform-components-product-card__button {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 150%;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 15px 30px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  text-decoration: none;
  height: auto !important;
}
.platform-components-product-card__button:hover,
.platform-components-product-card__button:active,
.platform-components-product-card__button:focus {
  text-decoration: none;
  padding: 15px 30px;
  outline: none !important;
}
.platform-components-product-card__button.button--loader-pc {
  text-align: center;
}
.platform-components-product-card__button.button--loader-pc:after {
  content: '';
  display: block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border: .25em solid;
  border-color: currentColor currentColor currentColor transparent;
  border-radius: 50%;
  -webkit-animation: 1s linear infinite loaderRotate;
  animation: 1s linear infinite loaderRotate;
}
.platform-components-product-card__button.button--loader-pc > .button__text {
  opacity: 0;
}
.platform-components-product-card__button--primary {
  background-color: #c41230;
  color: #ffffff;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.platform-components-product-card__button--primary:hover,
.platform-components-product-card__button--primary:active,
.platform-components-product-card__button--primary:focus {
  background-color: #9b132b;
  color: #ffffff;
}
.platform-components-product-card__button--primary:focus {
  background-color: #9b132b;
  color: #ffffff;
}
@media (min-width: 768px) {
  .platform-components-product-card__button {
    font-size: 1rem;
  }
}
.platform-components-product-card__flex-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (min-width: 1024px) {
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container .platform-components-product-card__image-container {
    flex: 0 0 30%;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    display: block;
    height: auto;
    width: 100%;
    max-width: 250px;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button {
    margin-right: calc(10px);
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button--wtb {
    padding: 15px 30px;
    margin-right: 0;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__meta-container {
    justify-content: flex-start;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__meta-container .platform-components-product-card__price-container {
    margin-right: 2rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__content-container {
    flex-grow: 2;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container .where-to-buy-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container .add-to-package-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__title {
    order: 1;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__model-info-container {
    order: 2;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__description {
    order: 3;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__features {
    order: 4;
    margin-bottom: 0;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__swatches {
    order: 5;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__meta-container {
    order: 6;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-left {
    text-align: left;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center {
    text-align: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
  .platform-components-product-card__desktop-image-right .platform-components-product-card__image-container {
    order: 2;
    padding: 20px 10px 20px 40px;
  }
  .platform-components-product-card__desktop-image-right .platform-components-product-card__content-container {
    order: 1;
    padding: 20px 0 20px 10px;
  }
  .platform-components-product-card__desktop-image-left .platform-components-product-card__image-container {
    order: 1;
    padding: 20px 40px 20px 10px;
  }
  .platform-components-product-card__desktop-image-left .platform-components-product-card__content-container {
    order: 2;
    padding: 20px 10px 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container .platform-components-product-card__image-container {
    flex: 0 0 40%;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    display: block;
    height: auto;
    width: 100%;
    max-width: 250px;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button {
    margin-right: calc(10px);
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button--wtb {
    padding: 15px 30px;
    margin-right: 0;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__meta-container {
    justify-content: flex-start;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__meta-container .platform-components-product-card__price-container {
    margin-right: 2rem;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__content-container {
    flex-grow: 2;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button-container .where-to-buy-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__title {
    order: 1;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__model-info-container {
    order: 2;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__description {
    order: 3;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__features {
    order: 4;
    margin-bottom: 0;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__swatches {
    order: 5;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__meta-container {
    order: 6;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-left {
    text-align: left;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center {
    text-align: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
  .platform-components-product-card__tablet-image-right .platform-components-product-card__image-container {
    order: 2;
    padding: 20px 10px 20px 40px;
  }
  .platform-components-product-card__tablet-image-right .platform-components-product-card__content-container {
    order: 1;
    padding: 20px 0 20px 10px;
  }
  .platform-components-product-card__tablet-image-left .platform-components-product-card__image-container {
    order: 1;
    padding: 20px 40px 20px 10px;
  }
  .platform-components-product-card__tablet-image-left .platform-components-product-card__content-container {
    order: 2;
    padding: 20px 10px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__mobile-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-left {
    text-align: left;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center {
    text-align: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
}
.platform-components-product-card .platform-components-product-card__content-container {
  width: 100%;
}
.platform-components-product-card .pc-card-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.platform-components-product-card .pc-card-hidden {
  display: none;
}
.platform-components-product-card .where-to-buy-continer {
  margin-top: 10px;
}
.pc__disclaimer-modal-content {
  position: fixed;
  margin: auto;
  background-color: #fefefe;
  max-width: 1170px;
  width: 100%;
  height: auto;
  min-height: 75px;
  box-shadow: 0.25px 0.25px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
  border-radius: 10px;
  bottom: 15px;
  left: 50%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  transition: 200ms ease-in-out;
  animation: slideIn 0.4s forwards;
  animation-delay: 0.125s;
}
.pc__disclaimer-modal-content .disclaimer-modal-header {
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.pc__disclaimer-modal-content .icons-close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  position: absolute;
}
.pc__disclaimer-modal-content .icons-close:hover {
  cursor: pointer;
}
.pc-cart-modal__content {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
  background-color: #fefefe;
  max-width: 1170px;
  height: auto;
  min-height: 75px;
  box-shadow: 0.25px 0.25px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transition: 200ms ease-in-out;
  animation: slideIn 0.4s forwards;
  animation-delay: 0.125s;
  z-index: 10001;
}
.pc-cart-modal__content.pc-success-state {
  border-color: #27ae60;
}
.pc-cart-modal__content.pc-alert-state {
  border-color: #a81414;
}
.pc-cart-modal__content .pc-cart-modal__icon {
  margin-right: 1rem;
  font-size: 1.375rem;
}
.pc-cart-modal__content .pc-cart-modal__icon .pc-success {
  color: #27ae60;
}
.pc-cart-modal__content .pc-cart-modal__icon .pc-alert {
  color: #a81414;
}
.pc-cart-modal__content .pc-cart-modal__content-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 30px 20px 20px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  line-height: 1.2;
  color: #000;
  width: 100%;
  margin: auto;
  overflow: hidden;
  font-size: 0.75rem;
}
.pc-cart-modal__content .pc-cart-modal__content-header p,
.pc-cart-modal__content .pc-cart-modal__content-header h6 {
  margin: 0;
}
.pc-cart-modal__content .icons-close {
  color: #000;
  float: right;
  font-size: 20px;
  font-weight: 700;
  top: 5px;
  right: 5px;
  position: absolute;
}
.pc-cart-modal__content .icons-close:hover {
  cursor: pointer;
}
@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 15px;
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loaderRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.platform-components-product-card {
  border-width: 1px;
}
.platform-components-product-card__title {
  font-size: 1.125rem;
}
.platform-components-product-card .ribbon {
  background-color: #2e2e2e;
  color: #ffffff;
  border-radius: none 0px 20px 0px;
}
.platform-components-product-card__swatches .color-select .tool-tip {
  border-radius: 0;
  z-index: 100;
}
.platform-components-product-card__swatches .color-select[data-stock="outOfStock"] .color-padding:after {
  background-color: #a81414;
}
.platform-components-product-card__model-info-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.platform-components-product-card__sku {
  font-size: 0.75rem;
}
.platform-components-product-card__rating .stars-wrapper .model-rating,
.platform-components-product-card__rating .stars-wrapper .model-reviews {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif !important;
}
.platform-components-product-card__description {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__description {
    font-size: 1rem;
  }
}
.platform-components-product-card__features {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__features {
    font-size: 1rem;
  }
}
.platform-components-product-card__price {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price {
    font-size: 1rem;
  }
}
.platform-components-product-card__price-sale {
  font-size: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price-sale {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__stock {
  font-size: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__stock {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__delivery {
  font-size: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__delivery {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__button {
  font-size: 0.875rem;
  transition: 200ms ease-in-out;
}
.platform-components-product-card__button--wtb {
  padding: 15px 0;
}
.platform-components-product-card__button--wtb:hover,
.platform-components-product-card__button--wtb:active,
.platform-components-product-card__button--wtb:focus {
  padding: 15px 0;
}
@media (min-width: 768px) {
  .platform-components-product-card__button {
    font-size: 0.875rem;
  }
}
.platform-components-product-card[data-item-is-small-appliance="true"] .platform-components-product-card__rating {
  display: none;
}
.platform-components-product-card[data-item-is-small-appliance="true"] .platform-components-product-card__sku {
  padding-left: unset;
}
.platform-components-product-card[data-item-is-small-appliance="true"] .platform-components-product-card__delivery {
  visibility: hidden;
}
.platform-components-product-card[data-item-is-small-appliance="true"] .platform-components-product-card__stock {
  display: none;
}
.platform-components-product-card[data-item-is-small-appliance="true"] .platform-components-product-card__swatches .color-select[data-stock="outOfStock"] .color-padding:after,
.platform-components-product-card[data-item-is-small-appliance="true"] .platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] .color-padding:after {
  background-color: unset;
}
.platform-components-product-card[data-item-is-small-appliance="true"] .platform-components-product-card__stock-container {
  display: none;
}
.platform-components-product-card[data-item-is-small-appliance="true"] .where-to-buy-continer {
  display: none;
}
.platform-components-product-card[data-item-is-small-appliance="true"] .add-to-package-container {
  display: none;
}

.platform-components-product-card {
  height: 100%;
  padding: 20px 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: none;
  margin: 0;
}
.platform-components-product-card .pc-icon-plus {
  margin-right: 5px;
  font-weight: normal;
}
.platform-components-product-card__title {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 120%;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.063rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__title {
    font-size: 1rem;
  }
}
.platform-components-product-card__title .product-link {
  text-decoration: none;
}
.platform-components-product-card .ribbon {
  position: absolute;
  top: 0;
  padding: 5px 30px;
  margin-left: -21px;
  font-weight: 600;
  font-size: 21px;
}
.platform-components-product-card .ribbon-holder {
  margin-bottom: 30px;
}
.platform-components-product-card .compare-container {
  display: flex;
  justify-content: right;
}
.platform-components-product-card .compare-container .add-to-compare {
  cursor: pointer;
}
.platform-components-product-card__swatches {
  display: flex;
  padding: 1rem 0;
}
.platform-components-product-card__swatches .color-select {
  position: relative;
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 0 0 0 #000000;
  margin-right: 8px;
  outline: none;
  transition: all 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .tool-tip {
  position: absolute;
  bottom: 39px;
  left: 0;
  font-size: 12px;
  line-height: 1.3;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  background: #000000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: initial;
  width: -webkit-max-content;
  width: max-content;
  display: flex;
  min-width: 50px;
  max-width: 150px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: opacity 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .tool-tip:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000000;
  position: absolute;
  left: 9px;
  right: 0;
  bottom: -6px;
  transition: opacity 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .color-padding {
  width: 24px;
  height: 24px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  box-shadow: 0 0 0 1px #fff;
}
.platform-components-product-card__swatches .color-select .color-padding span {
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  position: absolute;
  left: -2px;
  top: -2px;
}
.platform-components-product-card__swatches .color-select[data-color="White"] .color-padding {
  box-shadow: 0 0 0 1px #666;
}
.platform-components-product-card__swatches .color-select[data-color="Metallic Slate"] .color-padding {
  box-shadow: 0 0 0 1px #444;
}
.platform-components-product-card__swatches .color-select[data-color="Black"] .color-padding,
.platform-components-product-card__swatches .color-select[data-color="Heritage Black"] .color-padding {
  box-shadow: 0 0 0 1px #000;
}
.platform-components-product-card__swatches .color-select[data-stock="outOfStock"] span {
  opacity: .2;
}
.platform-components-product-card__swatches .color-select[data-stock="outOfStock"] .color-padding:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  left: 50%;
  background-color: red;
  transform: rotate(45deg) translateX(-50%);
}
.platform-components-product-card__swatches .color-select.active {
  box-shadow: 0 0 0 2px #c41230;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] {
  box-shadow: none;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] span {
  opacity: .2;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] .color-padding:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  left: 50%;
  background-color: red;
  transform: rotate(45deg) translateX(-50%);
}
.platform-components-product-card__swatches .color-select:hover .tool-tip {
  opacity: 1;
  visibility: visible;
}
.platform-components-product-card__swatches .color-select:focus {
  outline: 1px solid #000000 !important;
}
.platform-components-product-card__model-info-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.platform-components-product-card__sku {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.platform-components-product-card__sku.pc-padding-left {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__sku {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__rating .reviews-link {
  text-decoration: none;
  font-size: 13px!important;
}
.platform-components-product-card__rating .stars-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  padding-right: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
.platform-components-product-card__rating .stars-wrapper .product-stars {
  display: inline-block;
  position: relative;
  font-family: 'BVCustom', 'times new roman' !important;
  font-size: 13px!important;
  margin-bottom: 4px;
}
.platform-components-product-card__rating .stars-wrapper .product-stars .stars-active {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.platform-components-product-card__rating .stars-wrapper .model-rating,
.platform-components-product-card__rating .stars-wrapper .model-reviews {
  padding: 0 0 0 5px;
  font-size: 10px!important;
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif !important;
  text-transform: uppercase!important;
  font-weight: normal!important;
  font-style: normal!important;
  text-decoration: none!important;
  line-height: 19.5px!important;
}
.platform-components-product-card__rating .stars-wrapper .model-reviews {
  padding-left: 5px;
}
.platform-components-product-card__description {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-product-card__disclaimer {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 3px;
  padding: 7px 4px;
  margin-bottom: 0px;
  margin-left: 1px;
  font-size: 10px;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  top: -0.5em;
  font-size: 0.75rem;
  font-weight: 700;
  transition: 200ms ease-in-out;
  border: 0.78px solid #000;
  color: #000;
}
.platform-components-product-card__disclaimer[data-tooltip]:before {
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -50px;
  margin-right: 5px;
  padding: 5px;
  width: 100px;
  border-radius: 3px;
  background-color: #fff;
  color: #000;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 0.75rem;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  line-height: 1.2;
  box-shadow: 0px 2px 4px #888888;
  transition: 200ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.platform-components-product-card__disclaimer[data-tooltip]:after {
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  opacity: 0;
}
.platform-components-product-card__disclaimer:hover {
  cursor: pointer;
  color: #fff;
  background: #000;
}
.platform-components-product-card__disclaimer:hover[data-tooltip]:before,
.platform-components-product-card__disclaimer:hover[data-tooltip]:after {
  visibility: visible;
  opacity: 1;
}
.platform-components-product-card__features {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__features {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-product-card__features ul.dynamic-features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.platform-components-product-card__features ul.dynamic-features li {
  margin-bottom: 0.5rem;
}
.platform-components-product-card__meta-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.platform-components-product-card__price {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__price-sale {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price-sale {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__stock {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__stock {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__delivery {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__delivery {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__delivery [class^="icons-"],
.platform-components-product-card__delivery [class*=" icons-"] {
  font-size: 1rem;
}
.platform-components-product-card__button-container {
  margin-top: 1.5rem;
}
.platform-components-product-card__button {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 150%;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 15px 30px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  text-decoration: none;
  height: auto !important;
}
.platform-components-product-card__button:hover,
.platform-components-product-card__button:active,
.platform-components-product-card__button:focus {
  text-decoration: none;
  padding: 15px 30px;
  outline: none !important;
}
.platform-components-product-card__button.button--loader-pc {
  text-align: center;
}
.platform-components-product-card__button.button--loader-pc:after {
  content: '';
  display: block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border: .25em solid;
  border-color: currentColor currentColor currentColor transparent;
  border-radius: 50%;
  -webkit-animation: 1s linear infinite loaderRotate;
  animation: 1s linear infinite loaderRotate;
}
.platform-components-product-card__button.button--loader-pc > .button__text {
  opacity: 0;
}
.platform-components-product-card__button--primary {
  background-color: #c41230;
  color: #ffffff;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.platform-components-product-card__button--primary:hover,
.platform-components-product-card__button--primary:active,
.platform-components-product-card__button--primary:focus {
  background-color: #9b132b;
  color: #ffffff;
}
.platform-components-product-card__button--primary:focus {
  background-color: #9b132b;
  color: #ffffff;
}
@media (min-width: 768px) {
  .platform-components-product-card__button {
    font-size: 1rem;
  }
}
.platform-components-product-card__flex-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (min-width: 1024px) {
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container .platform-components-product-card__image-container {
    flex: 0 0 30%;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    display: block;
    height: auto;
    width: 100%;
    max-width: 250px;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button {
    margin-right: calc(10px);
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button--wtb {
    padding: 15px 30px;
    margin-right: 0;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__meta-container {
    justify-content: flex-start;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__meta-container .platform-components-product-card__price-container {
    margin-right: 2rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__content-container {
    flex-grow: 2;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container .where-to-buy-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container .add-to-package-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__title {
    order: 1;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__model-info-container {
    order: 2;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__description {
    order: 3;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__features {
    order: 4;
    margin-bottom: 0;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__swatches {
    order: 5;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__meta-container {
    order: 6;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-left {
    text-align: left;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center {
    text-align: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
  .platform-components-product-card__desktop-image-right .platform-components-product-card__image-container {
    order: 2;
    padding: 20px 10px 20px 40px;
  }
  .platform-components-product-card__desktop-image-right .platform-components-product-card__content-container {
    order: 1;
    padding: 20px 0 20px 10px;
  }
  .platform-components-product-card__desktop-image-left .platform-components-product-card__image-container {
    order: 1;
    padding: 20px 40px 20px 10px;
  }
  .platform-components-product-card__desktop-image-left .platform-components-product-card__content-container {
    order: 2;
    padding: 20px 10px 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container .platform-components-product-card__image-container {
    flex: 0 0 40%;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    display: block;
    height: auto;
    width: 100%;
    max-width: 250px;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button {
    margin-right: calc(10px);
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button--wtb {
    padding: 15px 30px;
    margin-right: 0;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__meta-container {
    justify-content: flex-start;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__meta-container .platform-components-product-card__price-container {
    margin-right: 2rem;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__content-container {
    flex-grow: 2;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button-container .where-to-buy-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__title {
    order: 1;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__model-info-container {
    order: 2;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__description {
    order: 3;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__features {
    order: 4;
    margin-bottom: 0;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__swatches {
    order: 5;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__meta-container {
    order: 6;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-left {
    text-align: left;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center {
    text-align: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
  .platform-components-product-card__tablet-image-right .platform-components-product-card__image-container {
    order: 2;
    padding: 20px 10px 20px 40px;
  }
  .platform-components-product-card__tablet-image-right .platform-components-product-card__content-container {
    order: 1;
    padding: 20px 0 20px 10px;
  }
  .platform-components-product-card__tablet-image-left .platform-components-product-card__image-container {
    order: 1;
    padding: 20px 40px 20px 10px;
  }
  .platform-components-product-card__tablet-image-left .platform-components-product-card__content-container {
    order: 2;
    padding: 20px 10px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__mobile-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-left {
    text-align: left;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center {
    text-align: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
}
.platform-components-product-card .platform-components-product-card__content-container {
  width: 100%;
}
.platform-components-product-card .pc-card-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.platform-components-product-card .pc-card-hidden {
  display: none;
}
.platform-components-product-card .where-to-buy-continer {
  margin-top: 10px;
}
.pc__disclaimer-modal-content {
  position: fixed;
  margin: auto;
  background-color: #fefefe;
  max-width: 1170px;
  width: 100%;
  height: auto;
  min-height: 75px;
  box-shadow: 0.25px 0.25px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
  border-radius: 10px;
  bottom: 15px;
  left: 50%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  transition: 200ms ease-in-out;
  animation: slideIn 0.4s forwards;
  animation-delay: 0.125s;
}
.pc__disclaimer-modal-content .disclaimer-modal-header {
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.pc__disclaimer-modal-content .icons-close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  position: absolute;
}
.pc__disclaimer-modal-content .icons-close:hover {
  cursor: pointer;
}
.pc-cart-modal__content {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
  background-color: #fefefe;
  max-width: 1170px;
  height: auto;
  min-height: 75px;
  box-shadow: 0.25px 0.25px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transition: 200ms ease-in-out;
  animation: slideIn 0.4s forwards;
  animation-delay: 0.125s;
  z-index: 10001;
}
.pc-cart-modal__content.pc-success-state {
  border-color: #27ae60;
}
.pc-cart-modal__content.pc-alert-state {
  border-color: #a81414;
}
.pc-cart-modal__content .pc-cart-modal__icon {
  margin-right: 1rem;
  font-size: 1.375rem;
}
.pc-cart-modal__content .pc-cart-modal__icon .pc-success {
  color: #27ae60;
}
.pc-cart-modal__content .pc-cart-modal__icon .pc-alert {
  color: #a81414;
}
.pc-cart-modal__content .pc-cart-modal__content-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 30px 20px 20px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  line-height: 1.2;
  color: #000;
  width: 100%;
  margin: auto;
  overflow: hidden;
  font-size: 0.75rem;
}
.pc-cart-modal__content .pc-cart-modal__content-header p,
.pc-cart-modal__content .pc-cart-modal__content-header h6 {
  margin: 0;
}
.pc-cart-modal__content .icons-close {
  color: #000;
  float: right;
  font-size: 20px;
  font-weight: 700;
  top: 5px;
  right: 5px;
  position: absolute;
}
.pc-cart-modal__content .icons-close:hover {
  cursor: pointer;
}
@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 15px;
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loaderRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.platform-components-product-card {
  height: 100%;
  border-width: 1px;
  border-style: solid;
  margin: 0;
}
.platform-components-product-card .platform-components-product-card__details-container {
  user-select: text;
}
.platform-components-product-card .pc-carousel-additional-button,
.platform-components-product-card .add-to-package-cta {
  cursor: pointer;
}
.platform-components-product-card .pc-flyout-hide-sku-num {
  display: none !important;
}
.platform-components-product-card .pc-file-reference {
  display: none !important;
}
.platform-components-product-card__title {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__title {
    font-size: 1rem;
  }
}
.platform-components-product-card__title .product-link {
  text-decoration: none;
}
.platform-components-product-card__swatches {
  display: flex;
  padding: 1rem 0;
}
.platform-components-product-card__swatches .color-select {
  position: relative;
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 0 0 0 #000000;
  margin-right: 8px;
  outline: none;
  transition: all 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .tool-tip {
  position: absolute;
  bottom: 39px;
  left: 0;
  font-size: 12px;
  line-height: 1.3;
  background: #000000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: initial;
  width: -webkit-max-content;
  width: max-content;
  display: flex;
  min-width: 50px;
  max-width: 150px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: opacity 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .tool-tip:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000000;
  position: absolute;
  left: 9px;
  right: 0;
  bottom: -6px;
  transition: opacity 0.25s ease-in-out;
}
.platform-components-product-card__swatches .color-select .color-padding {
  width: 24px;
  height: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px #fff;
}
.platform-components-product-card__swatches .color-select .color-padding span {
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  position: absolute;
  left: -2px;
  top: -2px;
}
.platform-components-product-card__swatches .color-select[data-color="White"] .color-padding {
  box-shadow: 0 0 0 1px #666;
}
.platform-components-product-card__swatches .color-select[data-color="Metallic Slate"] .color-padding {
  box-shadow: 0 0 0 1px #444;
}
.platform-components-product-card__swatches .color-select[data-color="Black"] .color-padding,
.platform-components-product-card__swatches .color-select[data-color="Heritage Black"] .color-padding {
  box-shadow: 0 0 0 1px #000;
}
.platform-components-product-card__swatches .color-select[data-stock="outOfStock"] span {
  opacity: .2;
}
.platform-components-product-card__swatches .color-select[data-stock="outOfStock"] .color-padding:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  left: 50%;
  background-color: red;
  transform: rotate(45deg) translateX(-50%);
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] {
  box-shadow: none;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] span {
  opacity: .2;
}
.platform-components-product-card__swatches .color-select.active[data-stock="outOfStock"] .color-padding:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  left: 50%;
  background-color: red;
  transform: rotate(45deg) translateX(-50%);
}
.platform-components-product-card__swatches .color-select:hover .tool-tip {
  opacity: 1;
  visibility: visible;
}
.platform-components-product-card__model-info-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.platform-components-product-card__sku {
  line-height: 1;
  font-size: 0.75rem;
  flex: 1;
}
.platform-components-product-card__sku.pc-padding-left {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__sku {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__rating .reviews-link {
  text-decoration: none;
  font-size: 13px!important;
}
.platform-components-product-card__rating .stars-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  padding-right: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
.platform-components-product-card__rating .stars-wrapper .product-stars {
  display: inline-block;
  position: relative;
  font-family: 'BVCustom', 'times new roman' !important;
  font-size: 13px!important;
  margin-bottom: 4px;
  overflow: hidden;
}
.platform-components-product-card__rating .stars-wrapper .product-stars .stars-active {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.platform-components-product-card__rating .stars-wrapper .model-rating,
.platform-components-product-card__rating .stars-wrapper .model-reviews {
  padding: 0 0 0 5px;
  font-size: 10px!important;
  text-transform: uppercase!important;
  font-weight: normal!important;
  font-style: normal!important;
  text-decoration: none!important;
  line-height: 19.5px!important;
}
.platform-components-product-card__rating .stars-wrapper .model-reviews {
  padding-left: 5px;
}
.platform-components-product-card__description {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__description {
    font-size: 1rem;
  }
}
.platform-components-product-card__disclaimer {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 3px;
  padding: 7px 4px;
  margin-bottom: 0px;
  margin-left: 1px;
  font-size: 10px;
  top: -0.5em;
  font-size: 0.75rem;
  font-weight: 700;
  border: 0.78px solid #000;
  color: #000;
}
.platform-components-product-card__disclaimer[data-tooltip]:before {
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -50px;
  margin-right: 5px;
  padding: 5px;
  width: 100px;
  border-radius: 3px;
  background-color: #fff;
  color: #000;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.2;
  box-shadow: 0px 2px 4px #888888;
  visibility: hidden;
  opacity: 0;
}
.platform-components-product-card__disclaimer[data-tooltip]:after {
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  opacity: 0;
}
.platform-components-product-card__disclaimer:hover {
  cursor: pointer;
  color: #fff;
  background: #000;
}
.platform-components-product-card__disclaimer:hover[data-tooltip]:before,
.platform-components-product-card__disclaimer:hover[data-tooltip]:after {
  visibility: visible;
  opacity: 1;
}
.platform-components-product-card__features {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__features {
    font-size: 1rem;
  }
}
.platform-components-product-card__features ul.dynamic-features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.platform-components-product-card__features ul.dynamic-features li {
  margin-bottom: 0.5rem;
}
.platform-components-product-card__meta-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.platform-components-product-card__price {
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__price-sale {
  line-height: 1.25;
  font-size: 0.75rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__price-sale {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__stock {
  line-height: 1.25;
  font-size: 0.75rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__stock {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__delivery {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__delivery {
    font-size: 0.75rem;
  }
}
.platform-components-product-card__delivery [class^="icons-"],
.platform-components-product-card__delivery [class*=" icons-"] {
  font-size: 1rem;
}
.platform-components-product-card__button-container {
  margin-top: 1.5rem;
}
.platform-components-product-card__button {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  text-decoration: none;
  height: auto !important;
}
.platform-components-product-card__button:hover,
.platform-components-product-card__button:active,
.platform-components-product-card__button:focus {
  text-decoration: none;
  outline: none !important;
}
.platform-components-product-card__button.button--loader-pc {
  text-align: center;
}
.platform-components-product-card__button.button--loader-pc:after {
  content: '';
  display: block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border: .25em solid;
  border-color: currentColor currentColor currentColor transparent;
  border-radius: 50%;
  -webkit-animation: 1s linear infinite loaderRotate;
  animation: 1s linear infinite loaderRotate;
}
.platform-components-product-card__button.button--loader-pc > .button__text {
  opacity: 0;
}
@media (min-width: 768px) {
  .platform-components-product-card__button {
    font-size: 1rem;
  }
}
.platform-components-product-card__flex-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (min-width: 1024px) {
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container .platform-components-product-card__image-container {
    flex: 0 0 30%;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__flex-container .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    display: block;
    height: auto;
    width: 100%;
    max-width: 250px;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button--wtb {
    margin-right: 0;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__meta-container {
    justify-content: flex-start;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__meta-container .platform-components-product-card__price-container {
    margin-right: 2rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__content-container {
    flex-grow: 2;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__button-container .where-to-buy-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__title {
    order: 1;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__model-info-container {
    order: 2;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__description {
    order: 3;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__features {
    order: 4;
    margin-bottom: 0;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__swatches {
    order: 5;
  }
  .platform-components-product-card__desktop-row .platform-components-product-card__details-container .platform-components-product-card__meta-container {
    order: 6;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__desktop-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-left {
    text-align: left;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center {
    text-align: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__desktop-column.platform-components-product-card__desktop-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
  .platform-components-product-card__desktop-image-right .platform-components-product-card__image-container {
    order: 2;
    padding: 20px 10px 20px 40px;
  }
  .platform-components-product-card__desktop-image-right .platform-components-product-card__content-container {
    order: 1;
    padding: 20px 0 20px 10px;
  }
  .platform-components-product-card__desktop-image-left .platform-components-product-card__image-container {
    order: 1;
    padding: 20px 40px 20px 10px;
  }
  .platform-components-product-card__desktop-image-left .platform-components-product-card__content-container {
    order: 2;
    padding: 20px 10px 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container .platform-components-product-card__image-container {
    flex: 0 0 40%;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__flex-container .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    display: block;
    height: auto;
    width: 100%;
    max-width: 250px;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button--wtb {
    margin-right: 0;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__meta-container {
    justify-content: flex-start;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__meta-container .platform-components-product-card__price-container {
    margin-right: 2rem;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__content-container {
    flex-grow: 2;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__button-container .where-to-buy-continer {
    margin-left: 0.5rem;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__title {
    order: 1;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__model-info-container {
    order: 2;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__description {
    order: 3;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__features {
    order: 4;
    margin-bottom: 0;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__swatches {
    order: 5;
  }
  .platform-components-product-card__tablet-row .platform-components-product-card__details-container .platform-components-product-card__meta-container {
    order: 6;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__tablet-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-left {
    text-align: left;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center {
    text-align: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__tablet-column.platform-components-product-card__tablet-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
  .platform-components-product-card__tablet-image-right .platform-components-product-card__image-container {
    order: 2;
    padding: 20px 10px 20px 40px;
  }
  .platform-components-product-card__tablet-image-right .platform-components-product-card__content-container {
    order: 1;
    padding: 20px 0 20px 10px;
  }
  .platform-components-product-card__tablet-image-left .platform-components-product-card__image-container {
    order: 1;
    padding: 20px 40px 20px 10px;
  }
  .platform-components-product-card__tablet-image-left .platform-components-product-card__content-container {
    order: 2;
    padding: 20px 10px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .platform-components-product-card__mobile-column .platform-components-product-card__flex-container {
    flex-direction: column;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__image-container {
    flex-grow: 1;
    max-height: 230px;
    padding-bottom: 20px !important;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__image-container .platform-components-product-card__product-image {
    margin: 0 auto;
    max-height: 230px;
    max-width: 100%;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__content-container {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__meta-container {
    justify-content: space-between;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__button-container .where-to-buy-continer {
    margin-top: 0.5rem;
  }
  .platform-components-product-card__mobile-column .platform-components-product-card__button {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-left {
    text-align: left;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center {
    text-align: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__price-container {
    text-align: left;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__price-sale,
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__stock {
    text-align: right;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container {
    width: 100%;
    justify-content: space-between;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale {
    justify-content: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__price-container {
    text-align: center;
  }
  .platform-components-product-card__mobile-column.platform-components-product-card__mobile-text-center .platform-components-product-card__meta-container.no-stock.no-sale .platform-components-product-card__delivery {
    justify-content: center;
  }
}
.platform-components-product-card .pc-card-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.platform-components-product-card .pc-card-hidden {
  display: none;
}
.pc__disclaimer-modal-content {
  position: fixed;
  margin: auto;
  background-color: #fefefe;
  max-width: 1170px;
  width: 100%;
  height: auto;
  min-height: 75px;
  box-shadow: 0.25px 0.25px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
  border-radius: 10px;
  bottom: 15px;
  left: 50%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  animation: slideIn 0.4s forwards;
  animation-delay: 0.125s;
}
.pc__disclaimer-modal-content .disclaimer-modal-header {
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.pc__disclaimer-modal-content .icons-close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  position: absolute;
}
.pc__disclaimer-modal-content .icons-close:hover {
  cursor: pointer;
}
.pc-cart-modal__content {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 10001;
  margin: auto;
  background-color: #fefefe;
  max-width: 1170px;
  height: auto;
  min-height: 75px;
  box-shadow: 0.25px 0.25px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  animation: slideIn 0.4s forwards;
  animation-delay: 0.125s;
}
.pc-cart-modal__content .pc-cart-modal__content-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 30px 20px 20px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  line-height: 1.2;
  color: #000;
  width: 100%;
  margin: auto;
  overflow: hidden;
  font-size: 0.75rem;
}
.pc-cart-modal__content .pc-cart-modal__content-header p,
.pc-cart-modal__content .pc-cart-modal__content-header h6 {
  margin: 0;
}
.pc-cart-modal__content .icons-close {
  color: #000;
  float: right;
  font-size: 20px;
  font-weight: 700;
  top: 5px;
  right: 5px;
  position: absolute;
}
.pc-cart-modal__content .icons-close:hover {
  cursor: pointer;
}
@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 15px;
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loaderRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card {
  background-color: #ffffff;
  border-color: #e2e2e5;
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__title a,
.pc-carousel-wrapper.theme-01 .platform-components-product-card__rating a {
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__disclaimer {
  border: 0.78px solid #2e2e2e;
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__disclaimer:hover {
  color: #fff;
  background: #000;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__rating .stars-wrapper .product-stars {
  color: #5e5e5e !important;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__rating .stars-wrapper .product-stars .stars-active {
  color: #c41230 !important;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__swatches .color-select .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__swatches .color-select[data-color="White"] .color-padding {
  box-shadow: 0 0 0 1px #666;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__swatches .color-select[data-color="Metallic Slate"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__swatches .color-select[data-color="Black"] .color-padding,
.pc-carousel-wrapper.theme-01 .platform-components-product-card__swatches .color-select[data-color="Heritage Black"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__swatches .color-select.active {
  box-shadow: 0 0 0 2px #c41230;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__delivery {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__price .sale-price {
  color: #a81414;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__price-sale .savings-price {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__stock {
  color: #a81414;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card {
  background-color: #f6f6f6;
  border-color: #e2e2e5;
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__title a,
.pc-carousel-wrapper.theme-02 .platform-components-product-card__rating a {
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__disclaimer {
  border: 0.78px solid #2e2e2e;
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__disclaimer:hover {
  color: #fff;
  background: #000;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__rating .stars-wrapper .product-stars {
  color: #5e5e5e !important;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__rating .stars-wrapper .product-stars .stars-active {
  color: #c41230 !important;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__swatches .color-select .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__swatches .color-select[data-color="White"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__swatches .color-select[data-color="Metallic Slate"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__swatches .color-select[data-color="Black"] .color-padding,
.pc-carousel-wrapper.theme-02 .platform-components-product-card__swatches .color-select[data-color="Heritage Black"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__swatches .color-select.active {
  box-shadow: 0 0 0 2px #c41230;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__delivery {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__price .sale-price {
  color: #a81414;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__price-sale .savings-price {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-02 .platform-components-product-card__stock {
  color: #a81414;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card {
  background-color: #eeeeee;
  border-color: #d8d8db;
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__title a,
.pc-carousel-wrapper.theme-03 .platform-components-product-card__rating a {
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__disclaimer {
  border: 0.78px solid #2e2e2e;
  color: #2e2e2e;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__disclaimer:hover {
  color: #000;
  background: #fff;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__rating .stars-wrapper {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__rating .stars-wrapper .product-stars {
  color: #5e5e5e !important;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__rating .stars-wrapper .product-stars .stars-active {
  color: #c41230 !important;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__swatches .color-select .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__swatches .color-select[data-color="White"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__swatches .color-select[data-color="Metallic Slate"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__swatches .color-select[data-color="Black"] .color-padding,
.pc-carousel-wrapper.theme-03 .platform-components-product-card__swatches .color-select[data-color="Heritage Black"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__swatches .color-select.active {
  box-shadow: 0 0 0 2px #c41230;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__delivery {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__price .sale-price {
  color: #a81414;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__price-sale .savings-price {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-03 .platform-components-product-card__stock {
  color: #a81414;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card {
  background-color: #2e2e2e;
  border-color: #d8d8db;
  color: #ffffff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__title a,
.pc-carousel-wrapper.theme-04 .platform-components-product-card__rating a {
  color: #ffffff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__disclaimer {
  border: 0.78px solid #ffffff;
  color: #ffffff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__disclaimer:hover {
  color: #000;
  background: #fff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__rating .stars-wrapper .product-stars {
  color: #5e5e5e !important;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__rating .stars-wrapper .product-stars .stars-active {
  color: #c41230 !important;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__swatches .color-select .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__swatches .color-select[data-color="White"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__swatches .color-select[data-color="Metallic Slate"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__swatches .color-select[data-color="Black"] .color-padding,
.pc-carousel-wrapper.theme-04 .platform-components-product-card__swatches .color-select[data-color="Heritage Black"] .color-padding {
  box-shadow: 0 0 0 1px #ffffff;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__swatches .color-select.active {
  box-shadow: 0 0 0 2px #c41230;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__delivery {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__price .sale-price {
  color: #a81414;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__price-sale .savings-price {
  color: #27ae60;
}
.pc-carousel-wrapper.theme-04 .platform-components-product-card__stock {
  color: #a81414;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__delivery {
  color: #014424;
}
.pc-carousel-wrapper.theme-01 .platform-components-product-card__price-sale .savings-price {
  color: #014424;
}

.pdp-v2-section {
  margin-bottom: 1.5rem;
}
.pdp-v2-section__title {
  margin-bottom: 1rem;
  padding: 0;
  border-bottom: solid 0.063rem rgba(0, 0, 0, 0.2);
}
.pdp-v2-section__title.section-v1 {
  max-width: 74.375rem;
  margin: 0 auto;
  padding: 0 5% 1.25rem;
}
.pdp-v2-section__subtitle {
  padding: 1rem 1rem 0.75rem;
  line-height: 1.31;
}
.pdp-v2-section__divider {
  border-top: solid 0.063rem rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}
.pdp-v2-section__divider.hidden {
  opacity: 0;
}
.section-v2 .expand-button {
  min-height: 4rem;
  border-bottom: solid 0.063rem rgba(0, 0, 0, 0.2);
}
.section-v2 .expand-button:hover .pdp-v2-section__title {
  text-decoration: underline;
}
.section-v2.no-accordion .expand-button:hover {
  background-color: inherit;
}
.section-v2 .pdp-v2-section {
  margin-bottom: 5rem;
}
.section-v2 .pdp-v2-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 74.375rem;
  margin: 0 auto;
  padding: 0 5%;
}
.section-v2 .pdp-v2-section__header--right-column {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.section-v2 .pdp-v2-section__specs {
  display: none;
  font-size: .75rem;
  line-height: .875rem;
  font-weight: 700;
  color: black;
  margin: 1rem 2.5rem 1rem 0;
}
.section-v2 .pdp-v2-section__specs:empty {
  margin: 0;
}
.section-v2 .pdp-v2-section__spec-body .spec-img-warning {
  width: 15px;
  max-height: .625rem;
  display: inline;
}
.section-v2 .pdp-v2-section__spec-body b {
  display: inline;
  font-weight: 700;
}
.section-v2 .pdp-v2-section__spec-body a {
  display: inline;
  text-decoration: underline;
  font-weight: normal;
  color: black;
}
.section-v2 .pdp-v2-section__title {
  margin-bottom: 0;
  border-bottom: none;
}
.section-v2 .pdp-v2-section__divider {
  margin-bottom: 1.25rem;
}
.section-v2 .pdp-v2-section__icon {
  margin-top: .25rem;
  margin-right: .5rem;
  max-height: 1.25rem;
}
.section-v2 .pdp-v2-section__icon svg {
  min-width: 1.25rem;
  min-height: 1.25rem;
}
.section-v2 .pdp-v2-section__icon--plus {
  display: none;
}
.section-v2 .pdp-v2-section__icon--minus {
  display: block;
}
.section-v2.collapsed .expand-button {
  border-bottom: none;
}
.section-v2.collapsed .pdp-v2-section {
  margin-bottom: 0;
}
.section-v2.collapsed .pdp-v2-section__body {
  display: none;
}
.section-v2.collapsed .pdp-v2-section__header {
  margin-bottom: 0;
}
.section-v2.collapsed .pdp-v2-section__specs {
  display: flex;
}
.section-v2.collapsed .pdp-v2-section__specs.desktop {
  display: none;
}
.section-v2.collapsed .pdp-v2-section__icon--plus {
  display: block;
}
.section-v2.collapsed .pdp-v2-section__icon--minus {
  display: none;
}
@media all and (min-width: 48rem) {
  .section-v2 .pdp-v2-section {
    padding-top: 1rem;
  }
  .section-v2.collapsed .pdp-v2-section {
    padding-top: 0;
  }
}
@media all and (min-width: 64rem) {
  .pdp-v2-section__title {
    padding: 0;
    margin: 0;
    border: none;
  }
  .pdp-v2-section__title.section-v1 {
    padding: 1.25rem 0.625rem;
    min-height: 5.5rem;
  }
  .pdp-v2-section__title.section-v1.updated-section-v1-layout {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .pdp-v2-section.updated-section-v1-layout {
    padding-top: 0;
    margin-bottom: 5rem;
  }
  .pdp-v2-section.updated-section-v1-layout .prd-carousel--wrap {
    margin-bottom: 0;
    margin-top: 0;
  }
}
@media (min-width: 48rem) {
  .pdp-v2-section {
    margin-bottom: 6.5rem;
  }
  .pdp-v2-section__subtitle {
    padding: 1.5rem 0 0;
  }
  .pdp-v2-section__divider {
    margin-bottom: 6.5rem;
  }
  .section-v2 .expand-button {
    border-bottom: none;
    min-height: 12rem;
  }
  .section-v2 .expand-button .pdp-v2-section__header {
    align-items: center;
    padding: 0 .625rem;
  }
  .section-v2 .expand-button .pdp-v2-section__header--right-column {
    padding: 0;
    flex-direction: row;
  }
  .section-v2 .expand-button .pdp-v2-section__divider {
    margin-bottom: 4rem;
  }
  .section-v2 .expand-button .pdp-v2-section__spec-img {
    padding-right: .5rem;
    align-self: center;
  }
  .section-v2 .expand-button .pdp-v2-section__spec-img img {
    max-height: 1.825rem;
    height: auto;
  }
  .section-v2 .expand-button .pdp-v2-section__spec-body b {
    display: block;
  }
  .section-v2 .expand-button .pdp-v2-section__specs {
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 700;
    margin: 0;
  }
  .section-v2 .expand-button .pdp-v2-section__icon {
    margin: 0;
    align-self: center;
    max-height: 3rem;
  }
  .section-v2 .expand-button .pdp-v2-section__icon svg {
    height: 3rem;
    width: 3rem;
  }
  .section-v2.collapsed .expand-button {
    min-height: 7rem;
  }
  .section-v2.collapsed .pdp-v2-section__divider {
    margin-bottom: 2rem;
  }
  .section-v2.collapsed .pdp-v2-section__specs.desktop {
    display: flex;
  }
  .section-v2.collapsed .pdp-v2-section__specs.mobile {
    display: none;
  }
  .section-v2.collapsed .pdp-v2-section__header {
    margin-bottom: 2rem;
  }
  .section-v2.collapsed .pdp-v2-section__header--right-column {
    margin-bottom: 0;
  }
}

.oos_container_ca .oos_tab_div {
    width: 120px !important;
    left: -110px !important;
}

@media (max-width: 767px){
  .oos_container_ca .oos_tab_div {
    width: 97px !important;
    left: -95px !important;
  }
}
@media screen and (max-width:767px) and (orientation:landscape){
	#oos_display {
		height: 85%;
		width: 75%;
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
	}
	.oos_products {
		overflow: auto !important;
   	 	margin: 5% 0px 0px;
    	height: 230px !important;
    	position: sticky !important;
	}
	.oos_disclaimer {
		bottom: 1%;
		top: unset !important;
		left: unset !important;
	}
	.oos_disclaimer p {
    	text-align: center !important;
	}
	.oos_product {
		height: 45% !important;
    	width: 100%;
		text-align: left !important;
	}
	.oos_prod_image_link {
		margin: 0 !important;
		padding: 0 3%!important;
		width: 25% !important;
	}
	.oos_product_info {
		width: 75% !important;
		font-size: 80% !important;
	}
	.oos_link {
		font-size: 80% !important; 
	}
	#oos_content .text3 {
		top: 9% !important;
		left: 0 !important;
		font-size: 85% !important;
	}
	hr {
		top: 4% !important;
	}
	.oos_tab_close {
		bottom: -89% !important;
	}
	#oos_content .text3 p {
    	text-align: center;
	}
}
@import url("https://fonts.googleapis.com/css?family=Avenir-Heavy");

.otm_body {
	font-family: "Nunito", sans-serif;
	color: rgba(0, 0, 0, 0.7);
}

.otm_modal {
	font-family:'Avenir-Heavy',sans-serif;
	color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: 0.4s;
}

.otm_modal_container {
	display: flex;
	max-width: 851px;
	max-height: 424px;
	width: 100%;
	border-radius: 0;
	overflow: visible;
	position: absolute;
	opacity: 0;
	pointer-events: none;
	transition-duration: 0.3s;
	background: #fff;
	transform: translateY(100px) scale(0.4);
}

.otm_modal_title {
    margin-bottom: 10px;
	font-size: 1.1875em;
    font-weight: 400;
	color: #000000;
	text-align: center;
	line-height: 1.1;
}

.otm_modal_desc {
	margin: 0 0 10px;
	text-align: center;
	font-size: 0.67em;
    font-weight: 700;
	color: #000000;
	display: block;
}

.otm_modal_right {
	padding: 32px 30px 20px;
	background: #fff;
	flex: 1.5;
	transition-duration: 0.5s;
	transform: translateY(80px);
	opacity: 0;
}

.otm_modal_left {
	flex: 3;
	transition: 0.3s;
	overflow: hidden;
}

.otm_modal_left img {
	width: 100%;
	height: 100%;
	transform: scale(2);
	-o-object-fit: cover;
	object-fit: revert;
	transition-duration: 1.2s;
}

.otm_modal.is-open {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	background: rgba(51, 51, 51, 0.85);
	z-index: 2000010001;
}

.otm_modal.is-open .otm_modal_container {
	opacity: 1;
	transition-duration: 0.6s;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.otm_modal.is-open .otm_modal_left img {
	transform: scale(1);
	padding: 5px;
}

.otm_modal.is-open .otm_modal_right {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}

.otm_modal_buttons {
	display: block;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.otm_modal_buttons a {
	color: rgba(51, 51, 51, 0.6);
	font-size: 14px;
}

.otm_input_button {
	padding: 10px 35px;
	outline: none;
	border: 0;
	color: #fff;
	border-radius: 0;
	background: #C41239;
	font-family: "Nunito", sans-serif;
	transition: 0.3s;
	cursor: pointer;
	font-size: 0.7em;
	font-weight: bold;
}

.otm_input_button:hover {
	background: #55311c;
}

.otm_input_block {
	display: flex;
	padding: 7px 0;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	transition: 0.3s;
	height: 20.3333%;
	justify-content: center;
	align-items: center;
}

.otm_limit {
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
	text-overflow: ellipsis;
	width: 162px;
}

.otm_input_block input {
	outline: 0;
	border: 0;
	padding: 4px 0 0;
	font-size: 14px;
	font-family: "Nunito", sans-serif;
}

.otm_input_block input::-moz-placeholder {
	color: #ccc;
	opacity: 1;
}

.otm_input_block input:-ms-input-placeholder {
	color: #ccc;
	opacity: 1;
}

.otm_input_block input::placeholder {
	color: #ccc;
	opacity: 1;
}

.otm_input_block:focus-within {
	border-color: #8c7569;
}

.otm_input_block:focus-within .input-label {
	color: rgba(140, 117, 105, 0.8);
}

.otm_close {
	position: fixed;
	top: -1.5em;
	right: -3em;
	transition: all 200ms;
	font-size: .75em;
	font-weight: bold;
	text-decoration: none;
}

.otm_close:hover {
	opacity: 1;
}

.otm_close:before, .otm_close:after {
	position: absolute;
	left: 21px;
	content: ' ';
	height: 12px;
	width: 2px;
	background-color: #fff;
	font-weight: normal;
	top: 18px;
}

.otm_close:before {
	transform: rotate(45deg);
}

.otm_close:after {
	transform: rotate(-45deg);
}

.oos_prod_image_link {
	text-align: center;
	display: flex;
	width: 27%;
	height: 100%;
	vertical-align: middle;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0 20px 0 10px;
}

.oos_prod_image {
	max-width: 80%;
	max-height: 100%;
}

.otm_product_info {
	display: inline-block;
	width: 70%;
	vertical-align: middle;
	line-height: normal;
}

.otm_name {
	height: auto;
	font-weight: bold;
	overflow: hidden;
	font-size: 0.88em;
	color: #2E2E2E;
	padding-top: 5px;
}

.otm_price {
	padding: 0.5em 0;
	color: #2E2E2E;
	font-weight: bold;
	font-size: 0.88em;
}

.otm_thumbnail {
	position: relative;
	display: block;
	height: 100%;
}

.otm_img_block {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate( -50%, -50% );
	text-align: center;
	color: white;
	font-weight: bold;
	height: 100%;
}

.otm_img_section {
	position: relative;
	top: 25%;
	display: inline-block;
	justify-content: space-between;
	align-items: center;
	width: 65%;
}

.otm_img_title {
	font-size: 0.7em;
	margin-bottom: 5px;
}

.otm_img_subtitle {
	font-size: 1.5em;
	color: #fff;
	margin: 0;
	font-weight: normal;
}

.otm_img_para {
	font-size: 0.8225em;
	font-weight: normal;
	margin: 10px 10px 5px;
}

.otm_img_span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	font-size: .5em;
	font-weight: normal;
	text-align: center;
	line-height: normal;	
}

.otm_close_span {
	position: relative;
	left: 10px;
}

.otm-target-modal__error {	
	font-size: .8em;
	color: red;
	font-weight: bold;
	text-decoration: none;
	display: none;
}

@media (max-width:1024px) {
	.otm_modal_left img {
		object-fit: cover;
		height: 478px;
	}

	.otm_modal_container {
		max-width: 668px;
		max-height: 498px;
	}

	.otm_limit {
		width: auto;
	}

	.otm_close:before, .otm_close:after {
		position: absolute;
		left: 17px;
		top: 17px;
	}

    .otm_img_para {
        font-size: 1em;
		margin: 5px 0;
		line-height: normal;
    }

    .otm_input_button {
		padding: 0 20px;
		height: 3rem;
	}

    .otm_img_span {
        font-size: .695em;
    }
				
	.otm_img_section {
       width: 75%;
	}
}

@media (max-width: 767px) {
	.otm_modal_container {
		display: block;
		max-width: 364px;
		max-height: 561px;
		width: 90%;
	}

	.otm_modal.is-open .modal-right img {
		transform: scale(1);
		padding: 10px;
	}

	.otm_input_block:nth-of-type(3) {
		display: none;
	}

	.otm_img_section {
		position: relative;
		top: 6%;
		width: 85%;
	}

	.otm_img_span {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: 1;
		padding: 1.5em 1em;
		font-size: 0.53em;
		font-weight: normal;
		text-align: center;		
		text-decoration: none;
		letter-spacing: 0.04em;
		line-height: 1.1em;
	}

	.otm_img_title {
		font-size: 0.75em;
		margin-bottom: 10px;
	}

	.otm_img_subtitle {
		font-size: 1.1875em;
		padding: 0 1em;
		line-height: 1.2;
		margin:0;
	}

	.otm_img_para {
		font-size: .875em;
		font-weight: normal;
		margin: 0 0 5px;
		line-height: 1;
	}

	.otm_modal_title {
		font-weight: 800;
		line-height: 19px;
		font-size: 1.1875em;
		letter-spacing: 0.95px;
		margin-bottom: 5px;
	}

	.otm_modal_right {
		padding: 15px 30px 20px;
	}

	.otm_modal_desc {
		margin: 0 0 15px 0;
		text-align: center;
		font-size: 0.75em;
		line-height: 12px;
		font-weight: 700;
	}

	.oos_prod_image {
		max-width: 50px;
		max-height: 70px;
	}

	.otm_limit {
		width: auto;
	}

	.otm_close {
		position: fixed;
		top: -1.5em;
		right: -2em;
		transition: all 200ms;
		font-size: 0.7em;
		font-weight: bold;
		text-decoration: none;
	}

	.otm_input_button {
		padding: 10px 30px;
		height: 2.5rem;
	}

	.otm_close:before, .otm_close:after {
		position: absolute;
		left: 24px;
		content: ' ';
		height: 12px;
		width: 2px;
		top: 13px;
	}

	.otm_modal_left img {
    	object-fit: cover;
		width: 100%;
		height: 279px;
	}
			
    .otm_modal_desc_mob {
        margin: 5px 0 15px;
        text-align: center;
        font-size: 0.67em;
        font-weight: 700;
        color: #000000;
        display:block;
    }
    .otm_modal_buttons {
		margin-top: 0; 
	}
	
}

@media screen and (device-aspect-ratio:  40/71) {
	.otm_modal_container {
		width: 100%;
	}

	.otm_close {
		position: fixed;
		top: -0.7em;
		right: 0em;
	}

	.otm_img_subtitle {
		font-size: 1.1175em;
		padding: 0 1em;
	}
}
@media only screen and (max-width: 1000px) and (orientation: landscape) {
    .otm_modal.is-open {
    	overflow-y: auto;
	}
	.otm_modal_container {
        display: flex;
        width: 100%;
        border-radius: 0;
        background: #fff;
        position: absolute;
        left: auto;
        top: 10%;
    } 
    .otm_modal_desc_mob {
        margin: 5px 0 15px;
        text-align: center;
        font-size: .67em; 
        font-weight: 700;
        color: #000;
        display: block;
    }
    .otm_modal_left img {
		object-fit: cover;
		height: 478px;
	}

	.otm_modal_container {
		max-width: 550px;
		max-height: 498px;
	}

	.otm_limit {
		width: auto;
	}

	.otm_close:before, .otm_close:after {
        position: absolute;
        left: 20px;
        top: 9px;
        height: 12px;
    }

    .otm_img_para {
        font-size: 1em;
		margin: 10px 0;
    }

    .otm_input_button {
        padding: 0 25px;
        height: 2rem;
    }

    .otm_img_span {
        font-size: .695em;
    }
			
	.otm_img_subtitle {
		margin-top: 15px;
	}
	
	.otm_img_section {
       width: 100%;
	   top: 25%;
	}

	.otm_modal_title {
        font-weight: 800;
        line-height: 19px;
        font-size: 1em;
        letter-spacing: .95px;
        margin-bottom: 5px;
    }
	.otm_close_span {
        position: relative;
        left: 10px;
        font-size: .85em;
    }
	.otm_close {
        position: fixed;
        right: -2em;
	}
	.otm_input_block:nth-of-type(3) {
		display: none;
	}
}

.author-env.geo-ip-redirect-modal {
  display: block;
  position: unset;
}
.author-env .modal-box {
  opacity: 1;
}
.geo-ip-redirect-modal-trigger {
  display: none;
}
.geo-ip-redirect-modal {
  padding-left: 5%;
  padding-right: 5%;
  z-index: 100000001;
  background: rgba(46, 46, 46, 0.9);
}
.geo-ip-redirect-modal .modal-box {
  margin-top: 4rem;
  padding: 1rem;
}
.geo-ip-redirect-modal .modal-box .modal-header .modal-logo-image {
  margin-left: auto;
  margin-right: auto;
}
.geo-ip-redirect-modal .modal-box .modal-header .close-button-wrapper {
  top: -1rem;
  right: -2%;
}
.geo-ip-redirect-modal .modal-box .modal-header .close-button-wrapper .modal-close-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
.geo-ip-redirect-modal .modal-box .modal-body {
  margin-top: 1.273rem;
}
.geo-ip-redirect-modal__message-block .message-title {
  text-align: center;
}
.geo-ip-redirect-modal__message-block .message-description {
  margin-top: 1.25rem;
  text-align: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.geo-ip-redirect-modal__cta-block {
  margin-top: 1.25rem;
}
.geo-ip-redirect-modal__cta-block .button {
  width: 100%;
  background: inherit;
  font-family: inherit;
  color: inherit;
}
.geo-ip-redirect-modal__cta-block .button .modal-flag-icon {
  margin-right: 0.56rem;
}
.geo-ip-redirect-modal__cta-block .button .modal-flag-icon svg {
  height: unset;
}
.geo-ip-redirect-modal__cta-block .redirect-button {
  margin-top: 1rem;
}
@media (min-width: 64rem) {
  .geo-ip-redirect-modal .modal-box {
    margin-top: 7.5rem;
    width: 31.5rem;
    padding: 1.5rem;
  }
  .geo-ip-redirect-modal .modal-box .modal-header .close-button-wrapper {
    top: -1.5rem;
  }
  .geo-ip-redirect-modal__cta-block {
    margin-top: 1.5rem;
  }
  .geo-ip-redirect-modal__cta-block .button {
    width: 49%;
    padding: 0;
  }
  .geo-ip-redirect-modal__cta-block .redirect-button {
    margin-top: 0;
    margin-left: 1rem;
    width: 47%;
  }
  .geo-ip-redirect-modal__cta-block .skip-message-button {
    width: 48%;
  }
}

.geo-ip-redirect-modal {
  color: #000000;
  font-family: "Avenir", sans-serif;
}
.geo-ip-redirect-modal .modal-header .modal-logo-image {
  width: 7.4rem;
  height: .75rem;
}
.geo-ip-redirect-modal .modal-header .modal-close-icon {
  color: #000000;
}
.geo-ip-redirect-modal__message-block .message-title {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.5rem;
}
.geo-ip-redirect-modal__message-block .message-description {
  font-weight: 400;
  line-height: 1.313rem;
}
.geo-ip-redirect-modal__cta-block .button {
  border: 0.125rem solid #353535;
  font-weight: 900;
  font-size: 0.813rem;
}
@media (min-width: 64rem) {
  .geo-ip-redirect-modal .modal-header .modal-logo-image {
    width: 10.084rem;
    height: 1rem;
  }
}

html.pc-no-scroll,
body.pc-no-scroll {
  overflow: hidden;
  position: relative;
}
.platform-components-modal__overlay {
  position: fixed;
  z-index: 2000000002;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 200ms ease-in-out;
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.platform-components-modal__overlay.active {
  display: flex !important;
}
.platform-components-modal__close.with-text .icons-close {
  font-size: 1.5rem;
}
.platform-components-modal__close.icon-only {
  line-height: 1;
}
.platform-components-modal__close-primary.icon-only {
  padding: 10px !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 45px;
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__close-primary.icon-only {
    width: 35px !important;
    height: 35px !important;
    font-size: 35px;
  }
}
.platform-components-modal__close-secondary.icon-only {
  padding: 10px !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 45px;
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__close-secondary.icon-only {
    width: 35px !important;
    height: 35px !important;
    font-size: 35px;
  }
}
.platform-components-modal__close-tertiary.icon-only {
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 45px;
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__close-tertiary.icon-only {
    width: 35px !important;
    height: 35px !important;
    font-size: 35px;
  }
}
.platform-components-modal__container {
  position: relative;
  margin: auto;
}
.platform-components-modal__container-fullscreen:after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .platform-components-modal__container-large {
    width: 85vw;
  }
}
@media (min-width: 768px) {
  .platform-components-modal__container-large {
    width: 90vw;
  }
}
@media (max-width: 767px) {
  .platform-components-modal__container-medium {
    width: 85vw;
  }
}
@media (min-width: 768px) {
  .platform-components-modal__container-medium {
    width: 70vw;
  }
}
@media (max-width: 767px) {
  .platform-components-modal__container-small {
    width: 85vw;
  }
}
@media (min-width: 768px) {
  .platform-components-modal__container-small {
    width: 435px;
  }
}
.platform-components-modal__container > .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.platform-components-modal__container-fullscreen > .container {
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .platform-components-modal__container-fullscreen > .container {
    width: auto;
    max-width: 85vw;
  }
}
@media (min-width: 768px) {
  .platform-components-modal__container-fullscreen > .container {
    width: auto;
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .platform-components-modal__container-fullscreen > .container {
    width: auto;
    max-width: 970px;
  }
}
@media (min-width: 1440px) {
  .platform-components-modal__container-fullscreen > .container {
    width: auto;
    max-width: 1200px;
  }
}
.platform-components-modal__pb .platform-components-modal__container.fixedCenter {
  max-width: 1400px;
}
.platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  width: fit-content;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close.with-text {
    height: 35px !important;
  }
}
.platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-primary {
  transform: translate(18%, -50%);
}
.platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-secondary.with-text {
  transform: translate(0%, -120%);
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-secondary.with-text {
    transform: translate(0%, -120%);
  }
}
.platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-secondary.icon-only {
  transform: translate(0%, -120%);
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-secondary.icon-only {
    transform: translate(0%, -120%);
  }
}
.platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-tertiary.with-text {
  transform: translate(0%, -100%);
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-tertiary.with-text {
    transform: translate(0%, -100%);
  }
}
.platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-tertiary.icon-only {
  transform: translate(40px, -10px);
}
@media only screen and (max-width: 767px) {
  .platform-components-modal__pb .platform-components-modal__container.fixedCenter .platform-components-modal__close-tertiary.icon-only {
    transform: translate(30px, -5px);
  }
}
.platform-components-modal__pb .platform-components-modal__container.pinnedTop .platform-components-modal__close-primary {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .platform-components-modal__pb .platform-components-modal__container.pinnedTop .platform-components-modal__close {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 100;
  }
}
@media (min-width: 768px) {
  .platform-components-modal__pb .platform-components-modal__container.pinnedTop .platform-components-modal__close {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: fit-content;
    z-index: 100;
  }
}
.platform-components-modal__pb .platform-components-modal__container-fullscreen {
  height: 100%;
}
.platform-components-modal__pb .platform-components-modal__container-fullscreen.pinnedTop,
.platform-components-modal__pb .platform-components-modal__container-fullscreen.fixedCenter {
  position: unset;
  margin-top: 0;
  margin-bottom: 0;
}
.platform-components-modal__pb .platform-components-modal__container-fullscreen.pinnedTop .platform-components-modal__close-primary,
.platform-components-modal__pb .platform-components-modal__container-fullscreen.fixedCenter .platform-components-modal__close-primary {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .platform-components-modal__pb .platform-components-modal__container-fullscreen.pinnedTop .platform-components-modal__close,
  .platform-components-modal__pb .platform-components-modal__container-fullscreen.fixedCenter .platform-components-modal__close {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .platform-components-modal__pb .platform-components-modal__container-fullscreen.pinnedTop .platform-components-modal__close,
  .platform-components-modal__pb .platform-components-modal__container-fullscreen.fixedCenter .platform-components-modal__close {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
  }
}
.platform-components-modal__pb .platform-components-modal__container-fullscreen.fixedCenter .container {
  top: 50%;
  transform: translateY(-50%);
}
.platform-components-modal__editor {
  position: relative;
}
.platform-components-modal__editor:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
  height: 100%;
  top: 0;
}
.platform-components-modal__editor .platform-components-modal__container-fullscreen:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0;
  z-index: 0;
}
.platform-components-modal__editor .platform-components-modal__container-large {
  left: 50% !important;
  right: 50% !important;
  margin-left: -45vw !important;
  margin-right: -45vw !important;
}
.platform-components-modal__editor .platform-components-modal__container-medium {
  left: 50% !important;
  right: 50% !important;
  margin-left: -35vw !important;
  margin-right: -35vw !important;
}
.platform-components-modal .video {
  float: none;
}
.platform-components-modal__overlay {
  background-color: rgba(238, 238, 238, 0.9);
}
.platform-components-modal__close {
  /* resets */
  background-color: unset;
  border: unset;
  /* common style */
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 150%;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 15px 30px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: auto !important;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.platform-components-modal__close:hover,
.platform-components-modal__close:active,
.platform-components-modal__close:focus {
  /* resets */
  background-color: unset;
  border: unset;
  text-decoration: none;
  padding: 15px 30px;
  outline: none !important;
}
.platform-components-modal__close.icon-only .icons-close {
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.platform-components-modal__close-primary {
  background-color: #c41230;
  color: #ffffff;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.platform-components-modal__close-primary:hover,
.platform-components-modal__close-primary:active,
.platform-components-modal__close-primary:focus {
  background-color: #9b132b;
  color: #ffffff;
}
.platform-components-modal__close-secondary {
  background-color: transparent;
  color: #ffffff;
  box-shadow: inset 0 0 0 2px #ffffff;
  transition: background-color 200ms ease-out, color 200ms ease-out, box-shadow 200ms ease-out;
}
.platform-components-modal__close-secondary:hover,
.platform-components-modal__close-secondary:active,
.platform-components-modal__close-secondary:focus {
  background-color: #9b132b;
  color: #ffffff;
  box-shadow: inset 0 0 0 2px #9b132b;
}
.platform-components-modal__close-tertiary {
  padding: 15px 0;
  color: #ffffff;
  transition: color 200ms ease-out;
}
.platform-components-modal__close-tertiary:hover,
.platform-components-modal__close-tertiary:active,
.platform-components-modal__close-tertiary:focus {
  color: #aaaaaa;
}
.platform-components-modal a:focus {
  outline: 1px solid #2e2e2e !important;
}
.platform-components-modal__editor:before {
  background-color: rgba(0, 0, 0, 0.8);
}
.platform-components-modal__overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.platform-components-rich-text.platform-components-rich-text--theme-01 {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 p,
.platform-components-rich-text.platform-components-rich-text--theme-01 h1,
.platform-components-rich-text.platform-components-rich-text--theme-01 h2,
.platform-components-rich-text.platform-components-rich-text--theme-01 h3,
.platform-components-rich-text.platform-components-rich-text--theme-01 h4,
.platform-components-rich-text.platform-components-rich-text--theme-01 h5,
.platform-components-rich-text.platform-components-rich-text--theme-01 h6,
.platform-components-rich-text.platform-components-rich-text--theme-01 b,
.platform-components-rich-text.platform-components-rich-text--theme-01 em {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-box-link {
  color: #2e2e2e;
  text-shadow: 0 0 0 #ffffff, 1px 0 0 #ffffff, -1px 0 0 #ffffff, 0 1px 0 #ffffff, 1px 1px 0 #ffffff, -1px 1px 0 #ffffff, 0 1.25px 0 #ffffff, 1.25px 1.25px 0 #ffffff, -1.25px 1.25px 0 #ffffff, 0 1.5px 0 #ffffff, 1.5px 1.5px 0 #ffffff, -1.5px 1.5px 0 #ffffff, 0 -1px 0 #ffffff, -1px -1px 0 #ffffff, 1px -1px 0 #ffffff;
  background-image: linear-gradient(#c41230, #c41230);
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-box-link:hover {
  color: #ffffff;
  box-shadow: -4px 0 #2e2e2e, 4px 0 #2e2e2e;
  background-image: linear-gradient(#2e2e2e, #2e2e2e);
}
.platform-components-rich-text.platform-components-rich-text--theme-01 a {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 a:hover {
  color: #9b132b;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color {
  color: #5e5e5e;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color p,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color b,
.platform-components-rich-text.platform-components-rich-text--theme-01 .secondary-color em {
  color: #5e5e5e;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote p,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote h1,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote h2,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote h3,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote h4,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote h5,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote h6,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote b,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote em {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote:before,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-quote:after {
  background: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color p,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color b,
.platform-components-rich-text.platform-components-rich-text--theme-01 .pc-highlight-color em {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 table th {
  background: #5e5e5e;
  border-color: #5e5e5e;
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 table th b,
.platform-components-rich-text.platform-components-rich-text--theme-01 table th em {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-01 table td {
  background: #ffffff;
  border-color: #d8d8db;
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 p,
.platform-components-rich-text.platform-components-rich-text--theme-02 h1,
.platform-components-rich-text.platform-components-rich-text--theme-02 h2,
.platform-components-rich-text.platform-components-rich-text--theme-02 h3,
.platform-components-rich-text.platform-components-rich-text--theme-02 h4,
.platform-components-rich-text.platform-components-rich-text--theme-02 h5,
.platform-components-rich-text.platform-components-rich-text--theme-02 h6,
.platform-components-rich-text.platform-components-rich-text--theme-02 b,
.platform-components-rich-text.platform-components-rich-text--theme-02 em {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-box-link {
  color: #2e2e2e;
  text-shadow: 0 0 0 #f6f6f6, 1px 0 0 #f6f6f6, -1px 0 0 #f6f6f6, 0 1px 0 #f6f6f6, 1px 1px 0 #f6f6f6, -1px 1px 0 #f6f6f6, 0 1.25px 0 #f6f6f6, 1.25px 1.25px 0 #f6f6f6, -1.25px 1.25px 0 #f6f6f6, 0 1.5px 0 #f6f6f6, 1.5px 1.5px 0 #f6f6f6, -1.5px 1.5px 0 #f6f6f6, 0 -1px 0 #f6f6f6, -1px -1px 0 #f6f6f6, 1px -1px 0 #f6f6f6;
  background-image: linear-gradient(#c41230, #c41230);
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-box-link:hover {
  color: #f6f6f6;
  box-shadow: -4px 0 #2e2e2e, 4px 0 #2e2e2e;
  background-image: linear-gradient(#2e2e2e, #2e2e2e);
}
.platform-components-rich-text.platform-components-rich-text--theme-02 a {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 a:hover {
  color: #9b132b;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color {
  color: #5e5e5e;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color p,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color b,
.platform-components-rich-text.platform-components-rich-text--theme-02 .secondary-color em {
  color: #5e5e5e;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote p,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote h1,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote h2,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote h3,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote h4,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote h5,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote h6,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote b,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote em {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote:before,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-quote:after {
  background: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color p,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color b,
.platform-components-rich-text.platform-components-rich-text--theme-02 .pc-highlight-color em {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 table th {
  background: #2e2e2e;
  border-color: #2e2e2e;
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-02 table td {
  background: #f6f6f6;
  border-color: #d8d8db;
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 p,
.platform-components-rich-text.platform-components-rich-text--theme-03 h1,
.platform-components-rich-text.platform-components-rich-text--theme-03 h2,
.platform-components-rich-text.platform-components-rich-text--theme-03 h3,
.platform-components-rich-text.platform-components-rich-text--theme-03 h4,
.platform-components-rich-text.platform-components-rich-text--theme-03 h5,
.platform-components-rich-text.platform-components-rich-text--theme-03 h6,
.platform-components-rich-text.platform-components-rich-text--theme-03 b,
.platform-components-rich-text.platform-components-rich-text--theme-03 em {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-box-link {
  color: #2e2e2e;
  text-shadow: 0 0 0 #eeeeee, 1px 0 0 #eeeeee, -1px 0 0 #eeeeee, 0 1px 0 #eeeeee, 1px 1px 0 #eeeeee, -1px 1px 0 #eeeeee, 0 1.25px 0 #eeeeee, 1.25px 1.25px 0 #eeeeee, -1.25px 1.25px 0 #eeeeee, 0 1.5px 0 #eeeeee, 1.5px 1.5px 0 #eeeeee, -1.5px 1.5px 0 #eeeeee, 0 -1px 0 #eeeeee, -1px -1px 0 #eeeeee, 1px -1px 0 #eeeeee;
  background-image: linear-gradient(#c41230, #c41230);
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-box-link:hover {
  color: #eeeeee;
  box-shadow: -4px 0 #2e2e2e, 4px 0 #2e2e2e;
  background-image: linear-gradient(#2e2e2e, #2e2e2e);
}
.platform-components-rich-text.platform-components-rich-text--theme-03 a {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 a:hover {
  color: #9b132b;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color {
  color: #5e5e5e;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color p,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color b,
.platform-components-rich-text.platform-components-rich-text--theme-03 .secondary-color em {
  color: #5e5e5e;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote p,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote h1,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote h2,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote h3,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote h4,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote h5,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote h6,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote b,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote em {
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote:before,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-quote:after {
  background: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color p,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color b,
.platform-components-rich-text.platform-components-rich-text--theme-03 .pc-highlight-color em {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 table th {
  background: #9b132b;
  border-color: #9b132b;
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-03 table td {
  background: #eeeeee;
  border-color: #5e5e5e;
  color: #2e2e2e;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 p,
.platform-components-rich-text.platform-components-rich-text--theme-04 h1,
.platform-components-rich-text.platform-components-rich-text--theme-04 h2,
.platform-components-rich-text.platform-components-rich-text--theme-04 h3,
.platform-components-rich-text.platform-components-rich-text--theme-04 h4,
.platform-components-rich-text.platform-components-rich-text--theme-04 h5,
.platform-components-rich-text.platform-components-rich-text--theme-04 h6,
.platform-components-rich-text.platform-components-rich-text--theme-04 b,
.platform-components-rich-text.platform-components-rich-text--theme-04 em {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-box-link {
  color: #ffffff;
  text-shadow: 0 0 0 #2e2e2e, 1px 0 0 #2e2e2e, -1px 0 0 #2e2e2e, 0 1px 0 #2e2e2e, 1px 1px 0 #2e2e2e, -1px 1px 0 #2e2e2e, 0 1.25px 0 #2e2e2e, 1.25px 1.25px 0 #2e2e2e, -1.25px 1.25px 0 #2e2e2e, 0 1.5px 0 #2e2e2e, 1.5px 1.5px 0 #2e2e2e, -1.5px 1.5px 0 #2e2e2e, 0 -1px 0 #2e2e2e, -1px -1px 0 #2e2e2e, 1px -1px 0 #2e2e2e;
  background-image: linear-gradient(#aaaaaa, #aaaaaa);
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-box-link:hover {
  color: #2e2e2e;
  box-shadow: -4px 0 #ffffff, 4px 0 #ffffff;
  background-image: linear-gradient(#ffffff, #ffffff);
}
.platform-components-rich-text.platform-components-rich-text--theme-04 a {
  color: #aaaaaa;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 a:hover {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color p,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color b,
.platform-components-rich-text.platform-components-rich-text--theme-04 .secondary-color em {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote p,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote h1,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote h2,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote h3,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote h4,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote h5,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote h6,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote b,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote em {
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote:before,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-quote:after {
  background: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color p,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color h1,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color h2,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color h3,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color h4,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color h5,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color h6,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color b,
.platform-components-rich-text.platform-components-rich-text--theme-04 .pc-highlight-color em {
  color: #c41230;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 table th {
  background: #9b132b;
  border-color: #9b132b;
  color: #ffffff;
}
.platform-components-rich-text.platform-components-rich-text--theme-04 table td {
  background: #2e2e2e;
  border-color: #000000;
  color: #ffffff;
}
@font-face {
  font-family: 'Roboto';
  src: url('../../digital-platform/clientlibs/global/resources/Roboto-Regular.ttf');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../../digital-platform/clientlibs/global/resources/OpenSans-Regular.ttf');
  font-display: swap;
}
.platform-components-rich-text {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-size: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text {
    font-size: 16px;
  }
}
.platform-components-rich-text h1,
.platform-components-rich-text h2,
.platform-components-rich-text h3,
.platform-components-rich-text h4,
.platform-components-rich-text h5,
.platform-components-rich-text h6 {
  margin-top: 0;
}
.platform-components-rich-text h1 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 2.375rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text h1 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text h2 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text h2 {
    font-size: 1.5625rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text h3 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.063rem;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text h3 {
    font-size: 1.1875rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text h4 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.063rem;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text h4 {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text h5 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.063rem;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text h5 {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text h6 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.063rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text h6 {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text p,
.platform-components-rich-text ul,
.platform-components-rich-text ol,
.platform-components-rich-text li,
.platform-components-rich-text blockquote,
.platform-components-rich-text table,
.platform-components-rich-text td,
.platform-components-rich-text th {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text p,
  .platform-components-rich-text ul,
  .platform-components-rich-text ol,
  .platform-components-rich-text li,
  .platform-components-rich-text blockquote,
  .platform-components-rich-text table,
  .platform-components-rich-text td,
  .platform-components-rich-text th {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text b,
.platform-components-rich-text strong,
.platform-components-rich-text th {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
}
.platform-components-rich-text .overline-1 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .overline-1 {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}
.platform-components-rich-text .overline-2 {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.625rem;
  margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .overline-2 {
    font-size: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.platform-components-rich-text .subtitle-1 {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .subtitle-1 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text .body-1 {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .body-1 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text .body-2 {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 150%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .body-2 {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text .caption {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .caption {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text .disclaimer {
  font-family: 'Avenir-Roman', 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 160%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.625rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .disclaimer {
    font-size: 0.625rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text .pc-quote {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .pc-quote {
    font-size: 1.5625rem;
    margin-bottom: 1.25rem;
  }
}
.platform-components-rich-text .pc-highlight-color {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-rich-text .pc-highlight-color {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}
.platform-components-rich-text > *:last-child {
  margin-bottom: 0;
}
.platform-components-rich-text .pc-quote::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  max-width: 300px;
  margin: auto;
  margin-bottom: 35px;
}
.platform-components-rich-text .pc-quote::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  max-width: 300px;
  margin: auto;
  margin-top: 35px;
}
.platform-components-rich-text .pc-box-link {
  text-decoration: none;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 2.5px;
  -webkit-transition: background-image 1s ease-in;
  transition: background-image 1s ease-in;
  overflow: visible;
}
.platform-components-rich-text .pc-box-link:hover {
  text-shadow: none;
  background-position: 0 90%;
  background-size: 100% 2em;
  transition: color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.1s ease-in 0.1s;
}
.platform-components-rich-text .pc-box-link a {
  color: inherit !important;
  text-decoration: unset;
}
.platform-components-rich-text .pc-box-link a:hover {
  color: inherit;
}
.platform-components-rich-text .pc-dropped-capital {
  display: inline-block;
}
.platform-components-rich-text .pc-dropped-capital:first-letter {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  text-decoration: none;
  line-height: .6em;
  float: left;
  margin-right: 18px;
  color: #c41230;
}
.platform-components-rich-text table {
  min-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-color: transparent;
  margin-top: 20px;
  margin-bottom: 20px;
}
.platform-components-rich-text table th {
  padding: 15px;
  border: 1px solid;
  text-align: left;
}
.platform-components-rich-text table td {
  padding: 15px;
  overflow: hidden;
  border: 1px solid;
}
.platform-components-rich-text .platform-components-rich-text__table-wrapper {
  overflow-x: auto;
}

.platform-components-container {
  position: relative;
}
.platform-components-container.container {
  padding-left: initial;
  padding-right: initial;
  width: initial;
}
.platform-components-container__color-overlay,
.platform-components-container__gradient-overlay,
.platform-components-container .platform-components-container__image-container--background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.platform-components-container .full-width.fw-boxed {
  position: relative;
  overflow: visible;
}
.platform-components-container .full-width.fw-boxed > .container-inner:before,
.platform-components-container .full-width.fw-boxed > .container-inner > .platform-components-container__color-overlay,
.platform-components-container .full-width.fw-boxed > .container-inner > .platform-components-container__gradient-overlay,
.platform-components-container .full-width.fw-boxed > .container-inner > .platform-components-container__image-container--background {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
  height: 100%;
  top: 0;
}
.platform-components-container .full-width.fw-full-width {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
}
.platform-components-container .contained-width.cw-content,
.platform-components-container .contained-width.cw-contained-width {
  position: relative;
  margin: 0 auto;
  max-width: 73.125rem;
}
.platform-components-container .contained-width.cw-content {
  overflow: visible;
}
.platform-components-container .contained-width.cw-content > .container-inner:before,
.platform-components-container .contained-width.cw-content > .container-inner > .platform-components-container__color-overlay,
.platform-components-container .contained-width.cw-content > .container-inner > .platform-components-container__gradient-overlay,
.platform-components-container .contained-width.cw-content > .container-inner > .platform-components-container__image-container--background {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
  height: 100%;
  top: 0;
}
.platform-components-container .container-inner {
  position: relative;
}
.platform-components-container .container-inner__content {
  position: relative;
  height: 100%;
  z-index: 4;
}
.platform-components-container ~ .platform-components-container .container-inner__content {
  z-index: 3;
}
.platform-components-container .cmp-container,
.platform-components-container .container-inner {
  height: 100%;
}
.platform-components-container .cmp-container.absolute {
  z-index: 11;
  margin: auto;
  height: auto;
  width: fit-content;
}
.platform-components-container .cmp-container.transparent > .container-inner {
  background: transparent;
}
.platform-components-container__image-container--background img,
.platform-components-container__image-container--background video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover';
  z-index: 0;
}
@media (min-width: 768px) {
  .platform-components-container__video-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .platform-components-container__video.hide-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .platform-components-container__image-mobile {
    display: none;
  }
}
.platform-components-container .theme-01 {
  --overlay-color-1: #ffffff;
}
.platform-components-container .theme-01 .platform-components-container__color-overlay {
  background-color: #ffffff;
}
.platform-components-container .theme-02 {
  --overlay-color-1: #f6f6f6;
}
.platform-components-container .theme-02 .platform-components-container__color-overlay {
  background-color: #f6f6f6;
}
.platform-components-container .theme-03 {
  --overlay-color-1: #eeeeee;
}
.platform-components-container .theme-03 .platform-components-container__color-overlay {
  background-color: #eeeeee;
}
.platform-components-container .theme-04 {
  --overlay-color-1: #2e2e2e;
}
.platform-components-container .theme-04 .platform-components-container__color-overlay {
  background-color: #2e2e2e;
}
.platform-components-container__center-alignment--lg.platform-components-container__bottom-alignment--lg {
  --overlay-direction: to top;
}
.platform-components-container__center-alignment--lg.platform-components-container__top-alignment--lg {
  --overlay-direction: to bottom;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__center-alignment--lg.platform-components-container__bottom-alignment--md {
    --overlay-direction: to top;
  }
  .platform-components-container__center-alignment--lg.platform-components-container__top-alignment--md {
    --overlay-direction: to bottom;
  }
}
@media (max-width: 767px) {
  .platform-components-container__center-alignment--lg.platform-components-container__bottom-alignment--sm {
    --overlay-direction: to top;
  }
  .platform-components-container__center-alignment--lg.platform-components-container__top-alignment--sm {
    --overlay-direction: to bottom;
  }
}
.platform-components-container__left-alignment--lg.platform-components-container__bottom-alignment--lg {
  --overlay-direction: to top right;
}
.platform-components-container__left-alignment--lg.platform-components-container__middle-alignment--lg {
  --overlay-direction: to right;
}
.platform-components-container__left-alignment--lg.platform-components-container__top-alignment--lg {
  --overlay-direction: to bottom right;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__left-alignment--lg.platform-components-container__bottom-alignment--md {
    --overlay-direction: to top right;
  }
  .platform-components-container__left-alignment--lg.platform-components-container__middle-alignment--md {
    --overlay-direction: to right;
  }
  .platform-components-container__left-alignment--lg.platform-components-container__top-alignment--md {
    --overlay-direction: to bottom right;
  }
}
@media (max-width: 767px) {
  .platform-components-container__left-alignment--lg.platform-components-container__bottom-alignment--sm {
    --overlay-direction: to top right;
  }
  .platform-components-container__left-alignment--lg.platform-components-container__middle-alignment--sm {
    --overlay-direction: to right;
  }
  .platform-components-container__left-alignment--lg.platform-components-container__top-alignment--sm {
    --overlay-direction: to bottom right;
  }
}
.platform-components-container__right-alignment--lg.platform-components-container__bottom-alignment--lg {
  --overlay-direction: to top left;
}
.platform-components-container__right-alignment--lg.platform-components-container__middle-alignment--lg {
  --overlay-direction: to left;
}
.platform-components-container__right-alignment--lg.platform-components-container__top-alignment--lg {
  --overlay-direction: to bottom left;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__right-alignment--lg.platform-components-container__bottom-alignment--md {
    --overlay-direction: to top left;
  }
  .platform-components-container__right-alignment--lg.platform-components-container__middle-alignment--md {
    --overlay-direction: to left;
  }
  .platform-components-container__right-alignment--lg.platform-components-container__top-alignment--md {
    --overlay-direction: to bottom left;
  }
}
@media (max-width: 767px) {
  .platform-components-container__right-alignment--lg.platform-components-container__bottom-alignment--sm {
    --overlay-direction: to top left;
  }
  .platform-components-container__right-alignment--lg.platform-components-container__middle-alignment--sm {
    --overlay-direction: to left;
  }
  .platform-components-container__right-alignment--lg.platform-components-container__top-alignment--sm {
    --overlay-direction: to bottom left;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__center-alignment--md.platform-components-container__bottom-alignment--lg {
    --overlay-direction: to top;
  }
  .platform-components-container__center-alignment--md.platform-components-container__top-alignment--lg {
    --overlay-direction: to bottom;
  }
  .platform-components-container__center-alignment--md.platform-components-container__bottom-alignment--md {
    --overlay-direction: to top;
  }
  .platform-components-container__center-alignment--md.platform-components-container__top-alignment--md {
    --overlay-direction: to bottom;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__left-alignment--md.platform-components-container__bottom-alignment--lg {
    --overlay-direction: to top right;
  }
  .platform-components-container__left-alignment--md.platform-components-container__top-alignment--lg {
    --overlay-direction: to bottom right;
  }
  .platform-components-container__left-alignment--md.platform-components-container__middle-alignment--lg {
    --overlay-direction: to right;
  }
  .platform-components-container__left-alignment--md.platform-components-container__bottom-alignment--md {
    --overlay-direction: to top right;
  }
  .platform-components-container__left-alignment--md.platform-components-container__middle-alignment--md {
    --overlay-direction: to right;
  }
  .platform-components-container__left-alignment--md.platform-components-container__top-alignment--md {
    --overlay-direction: to bottom right;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__right-alignment--md.platform-components-container__bottom-alignment--lg {
    --overlay-direction: to top left;
  }
  .platform-components-container__right-alignment--md.platform-components-container__top-alignment--lg {
    --overlay-direction: to bottom left;
  }
  .platform-components-container__right-alignment--md.platform-components-container__middle-alignment--lg {
    --overlay-direction: to left;
  }
  .platform-components-container__right-alignment--md.platform-components-container__bottom-alignment--md {
    --overlay-direction: to top left;
  }
  .platform-components-container__right-alignment--md.platform-components-container__middle-alignment--md {
    --overlay-direction: to left;
  }
  .platform-components-container__right-alignment--md.platform-components-container__top-alignment--md {
    --overlay-direction: to bottom left;
  }
}
@media (max-width: 767px) {
  .platform-components-container__center-alignment--sm.platform-components-container__bottom-alignment--lg {
    --overlay-direction: to top;
  }
  .platform-components-container__center-alignment--sm.platform-components-container__top-alignment--lg {
    --overlay-direction: to bottom;
  }
  .platform-components-container__center-alignment--sm.platform-components-container__bottom-alignment--sm {
    --overlay-direction: to top;
  }
  .platform-components-container__center-alignment--sm.platform-components-container__top-alignment--sm {
    --overlay-direction: to bottom;
  }
}
@media (max-width: 767px) {
  .platform-components-container__left-alignment--sm.platform-components-container__bottom-alignment--lg {
    --overlay-direction: to top right;
  }
  .platform-components-container__left-alignment--sm.platform-components-container__top-alignment--lg {
    --overlay-direction: to bottom right;
  }
  .platform-components-container__left-alignment--sm.platform-components-container__middle-alignment--lg {
    --overlay-direction: to right;
  }
  .platform-components-container__left-alignment--sm.platform-components-container__bottom-alignment--sm {
    --overlay-direction: to top right;
  }
  .platform-components-container__left-alignment--sm.platform-components-container__middle-alignment--sm {
    --overlay-direction: to right;
  }
  .platform-components-container__left-alignment--sm.platform-components-container__top-alignment--sm {
    --overlay-direction: to bottom right;
  }
}
@media (max-width: 767px) {
  .platform-components-container__right-alignment--sm.platform-components-container__bottom-alignment--lg {
    --overlay-direction: to top left;
  }
  .platform-components-container__right-alignment--sm.platform-components-container__middle-alignment--lg {
    --overlay-direction: to left;
  }
  .platform-components-container__right-alignment--sm.platform-components-container__top-alignment--lg {
    --overlay-direction: to bottom left;
  }
  .platform-components-container__right-alignment--sm.platform-components-container__bottom-alignment--sm {
    --overlay-direction: to top left;
  }
  .platform-components-container__right-alignment--sm.platform-components-container__middle-alignment--sm {
    --overlay-direction: to left;
  }
  .platform-components-container__right-alignment--sm.platform-components-container__top-alignment--sm {
    --overlay-direction: to bottom left;
  }
}
.platform-components-container__color-overlay {
  z-index: 1;
}
.platform-components-container__color-overlay-opacity-10--lg {
  opacity: .1;
}
.platform-components-container__color-overlay-opacity-25--lg {
  opacity: .25;
}
.platform-components-container__color-overlay-opacity-50--lg {
  opacity: .50;
}
.platform-components-container__color-overlay-opacity-75--lg {
  opacity: .75;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__color-overlay-opacity-10--md {
    opacity: .1;
  }
  .platform-components-container__color-overlay-opacity-25--md {
    opacity: .25;
  }
  .platform-components-container__color-overlay-opacity-50--md {
    opacity: .50;
  }
  .platform-components-container__color-overlay-opacity-75--md {
    opacity: .75;
  }
}
@media (max-width: 767px) {
  .platform-components-container__color-overlay-opacity-10--sm {
    opacity: .1;
  }
  .platform-components-container__color-overlay-opacity-25--sm {
    opacity: .25;
  }
  .platform-components-container__color-overlay-opacity-50--sm {
    opacity: .50;
  }
  .platform-components-container__color-overlay-opacity-75--sm {
    opacity: .75;
  }
}
.platform-components-container__gradient-overlay {
  z-index: 2;
  background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop), transparent var(--overlay-color-width));
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__gradient-overlay {
    background: linear-gradient(var(--overlay-direction--tablet), var(--overlay-color-1) var(--overlay-color-1-stop), transparent var(--overlay-color-width));
  }
}
@media (max-width: 767px) {
  .platform-components-container__gradient-overlay {
    background: linear-gradient(var(--overlay-direction--mobile), var(--overlay-color-1) var(--overlay-color-1-stop), transparent var(--overlay-color-width));
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container__gradient-overlay--md {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop--tablet), transparent var(--overlay-color-width--tablet));
  }
  .platform-components-container__gradient-overlay--md.radial-gradient-none--md {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop--tablet), transparent var(--overlay-color-width--tablet));
  }
}
@media (max-width: 767px) {
  .platform-components-container__gradient-overlay--sm {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop--mobile), transparent var(--overlay-color-width--mobile));
  }
  .platform-components-container__gradient-overlay--sm.radial-gradient-none--sm {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop--mobile), transparent var(--overlay-color-width--mobile));
  }
}
.platform-components-container .radial-gradient--lg {
  background: radial-gradient(50% 50% at center, var(--overlay-color-1) var(--overlay-color-1-stop), transparent var(--overlay-color-width));
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container .radial-gradient--md {
    background: radial-gradient(50% 50% at center, var(--overlay-color-1) var(--overlay-color-1-stop--tablet), transparent var(--overlay-color-width--tablet));
  }
}
@media (max-width: 767px) {
  .platform-components-container .radial-gradient--sm {
    background: radial-gradient(50% 50% at center, var(--overlay-color-1) var(--overlay-color-1-stop--mobile), transparent var(--overlay-color-width--mobile));
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .platform-components-container .radial-gradient-none--md {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop), transparent var(--overlay-color-width));
  }
  .platform-components-container .radial-gradient-none--md.platform-components-container__gradient-overlay--md {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop--tablet), transparent var(--overlay-color-width--tablet));
  }
}
@media (max-width: 767px) {
  .platform-components-container .radial-gradient-none--sm {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop), transparent var(--overlay-color-width));
  }
  .platform-components-container .radial-gradient-none--sm.platform-components-container__gradient-overlay--sm {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color-1) var(--overlay-color-1-stop--mobile), transparent var(--overlay-color-width--mobile));
  }
}
.aem-Grid.match-heights {
  height: 100%;
}
.match-heights[data-match-height] > * {
  height: var(--match-height);
}
@media only screen and (min-width: 768px) {
  .match-heights[data-match-height-tablet] > * {
    height: var(--match-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .match-heights[data-match-height-desktop] > * {
    height: var(--match-height-desktop);
  }
}
.platform-components-container .cmp-container[data-height] {
  height: var(--height);
}
@media only screen and (min-width: 768px) {
  .platform-components-container .cmp-container[data-height-tablet] {
    height: var(--height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .platform-components-container .cmp-container[data-height-desktop] {
    height: var(--height-desktop);
  }
}
.platform-components-container .bw-brand {
  border-width: 1px;
}
.platform-components-container .theme-01 > .container-inner {
  border-color: #e2e2e5;
  background-color: #ffffff;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .theme-02 > .container-inner {
  border-color: #e2e2e5;
  background-color: #f6f6f6;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .theme-03 > .container-inner {
  border-color: #d8d8db;
  background-color: #eeeeee;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .theme-04 > .container-inner {
  border-color: #000000;
  background-color: #2e2e2e;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .full-width.fw-boxed.theme-01 > .container-inner:before {
  border-color: #e2e2e5;
  background-color: #ffffff;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .full-width.fw-boxed.theme-02 > .container-inner:before {
  border-color: #e2e2e5;
  background-color: #f6f6f6;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .full-width.fw-boxed.theme-03 > .container-inner:before {
  border-color: #d8d8db;
  background-color: #eeeeee;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .full-width.fw-boxed.theme-04 > .container-inner:before {
  border-color: #000000;
  background-color: #2e2e2e;
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.platform-components-container .theme-01 {
  --overlay-color-1: #ffffff;
}
.platform-components-container .theme-01 .platform-components-container__color-overlay {
  background-color: #ffffff;
}
.platform-components-container .theme-02 {
  --overlay-color-1: #f6f6f6;
}
.platform-components-container .theme-02 .platform-components-container__color-overlay {
  background-color: #f6f6f6;
}
.platform-components-container .theme-03 {
  --overlay-color-1: #eeeeee;
}
.platform-components-container .theme-03 .platform-components-container__color-overlay {
  background-color: #eeeeee;
}
.platform-components-container .theme-04 {
  --overlay-color-1: #2e2e2e;
}
.platform-components-container .theme-04 .platform-components-container__color-overlay {
  background-color: #2e2e2e;
}
.aem-AuthorLayer-Edit .platform-components-container .cmp-container[data-height],
.aem-AuthorLayer-Layouting .platform-components-container .cmp-container[data-height],
.aem-AuthorLayer-Developer .platform-components-container .cmp-container[data-height],
.aem-AuthorLayer-Timewarp .platform-components-container .cmp-container[data-height],
.aem-AuthorLayer-Preview .platform-components-container .cmp-container[data-height] {
  max-height: 800px;
}

.modal-video-movie-wrap .s7videoviewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoviewer__controlbar--hide.s7videoviewer .s7controlbar {
    display: none;
}

.s7videoviewer .s7socialshare {
    display: none;
}
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.platform-components-video__js-modal-video {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.platform-components-video__js-modal-video img {
  width: 100%;
}
.modal-video-component {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000000;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.platform-components-video__modal-close {
  opacity: 0;
}
.platform-components-video__modal-close .platform-components-video__modal-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}
.platform-components-video__modal-body {
  max-width: 1080px;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.platform-components-video__modal-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .platform-components-video__modal-inner {
    padding: 40px;
  }
}
.platform-components-video__modal-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.platform-components-video__modal-movie-wrap .platform-components-video__modal-play-btn {
  outline: none !important;
  position: absolute;
  font-family: 'whirlpool-icons';
  content: '\e92d';
  font-size: 5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  height: 5rem;
  width: 5rem;
  color: #c41230;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.platform-components-video__modal-movie-wrap .platform-components-video__modal-play-btn:hover {
  color: #9b132b;
}
.platform-components-video__modal-movie-wrap .platform-components-video__modal-play-btn.video-playing {
  display: none;
}
.platform-components-video__modal-movie-wrap .platform-components-video__modal-play-btn .icons-video-play {
  pointer-events: none;
}
.platform-components-video__modal-movie-wrap iframe,
.platform-components-video__modal-movie-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.platform-components-video__modal-close-btn {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: none;
  background-color: transparent;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
@media only screen and (max-width: 767px) {
  .platform-components-video__modal-close-btn {
    width: 40px;
    height: 40px;
    right: -40px;
  }
}
.platform-components-video__modal-close-btn .icons-close {
  font-size: 50px;
  color: #d8d8db;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
@media only screen and (max-width: 767px) {
  .platform-components-video__modal-close-btn .icons-close {
    font-size: 40px;
  }
}
.platform-components-video__modal-close-btn:hover {
  background-color: transparent;
}
.platform-components-video__modal-close-btn:hover .icons-close {
  color: #f6f6f6;
}
.platform-components-video__modal-movie-wrap .platform-components-video__modal-play-btn {
  font-family: 'kitchenaid-icons', sans-serif;
}

.platform-components-video__container {
  width: 100%;
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.platform-components-video__container iframe {
  width: inherit;
}
.platform-components-video__container video {
  width: 100%;
  height: inherit;
  background-color: #000000;
}
.platform-components-video__container video::-webkit-media-controls-overlay-play-button {
  opacity: 0;
}
.platform-components-video__container:hover .platform-components-video__play-btn.video-playing + video::-webkit-media-controls-overlay-play-button {
  opacity: 1;
}
.platform-components-video__button {
  font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 150%;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 15px 30px;
  border-radius: 0;
  display: block;
  text-decoration: none;
  height: auto !important;
  margin-left: calc(10px);
  margin-right: calc(10px);
  margin-bottom: 20px;
}
.platform-components-video__button:hover,
.platform-components-video__button:active,
.platform-components-video__button:focus {
  text-decoration: none;
  padding: 15px 30px;
}
.platform-components-video__button--primary {
  background-color: #c41230;
  color: #ffffff;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.platform-components-video__button--primary:hover,
.platform-components-video__button--primary:active,
.platform-components-video__button--primary:focus {
  background-color: #9b132b;
  color: #ffffff;
}
.platform-components-video__button--secondary {
  background-color: transparent;
  color: #c41230;
  box-shadow: inset 0 0 0 2px #c41230;
  transition: background-color 200ms ease-out, color 200ms ease-out, box-shadow 200ms ease-out;
}
.platform-components-video__button--secondary:hover,
.platform-components-video__button--secondary:active,
.platform-components-video__button--secondary:focus {
  background-color: #9b132b;
  color: #ffffff;
  box-shadow: inset 0 0 0 2px #9b132b;
}
.platform-components-video__button--tertiary {
  background-color: unset;
  padding: 15px 0;
  color: #c41230;
  transition: color 200ms ease-out;
}
.platform-components-video__button--tertiary:hover,
.platform-components-video__button--tertiary:active,
.platform-components-video__button--tertiary:focus {
  color: #9b132b;
}
.platform-components-video__button--tertiary:hover,
.platform-components-video__button--tertiary:active,
.platform-components-video__button--tertiary:focus {
  background-color: unset;
  padding: 15px 0;
}
.platform-components-video__button.withicon {
  display: flex;
  align-items: center;
}
.platform-components-video__button.withicon-position--left .button-text {
  order: 2;
}
.platform-components-video__button.withicon-position--left .button-icon {
  order: 1;
  margin-right: 10px;
}
.platform-components-video__button.withicon-position--right .button-text {
  order: 1;
}
.platform-components-video__button.withicon-position--right .button-icon {
  order: 2;
  margin-left: 10px;
}
.platform-components-video__button.withicon-position--top,
.platform-components-video__button.withicon-position--bottom {
  flex-direction: column;
}
.platform-components-video__button.withicon-position--bottom .button-text {
  order: 1;
}
.platform-components-video__button.withicon-position--bottom .button-icon {
  order: 2;
}
.platform-components-video__button .button-icon {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .platform-components-video__button .button-icon {
    font-size: 1.5rem;
  }
}
.platform-components-video__play-btn {
  outline: none !important;
  position: absolute;
  font-size: 5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none !important;
  height: 5rem;
  width: 5rem;
}
.platform-components-video__play-btn .icons-video-play {
  pointer-events: none;
  color: #c41230;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.platform-components-video__play-btn:hover .icons-video-play {
  color: #9b132b;
}
.platform-components-video__play-btn.video-playing {
  display: none;
}
.platform-components-video__youtube-container {
  background-color: #000000;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.platform-components-video__youtube-container .js-youtube-video-v2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.platform-components-video__js-modal-video img {
  width: 100%;
  height: inherit;
}
.platform-components-video__js-modal-customSize img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover';
  z-index: 0;
}
.platform-components-video__js-youtube-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.platform-components-video__image-play-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  font-size: 5rem;
  cursor: pointer;
  color: #c41230;
  transition: background-color 200ms ease-out, color 200ms ease-out;
  background: none !important;
  outline: none !important;
  border: none !important;
}
.platform-components-video__image-play-icon:hover {
  color: #9b132b;
  background: none !important;
  outline: none !important;
  border: none !important;
}
.platform-components-container .video.baseComponent {
  width: 100%;
  height: 100%;
  position: relative;
}
.platform-components-container .video.baseComponent .platform-components-video {
  height: 100%;
}
.platform-components-container .video.baseComponent .platform-components-video .platform-components-video__container {
  height: 100%;
}
.platform-components-container .video.baseComponent .platform-components-video .platform-components-video__container video {
  object-fit: cover;
}
.video.baseComponent.aem-GridColumn,
.platform-components-container .video.baseComponent {
  margin: 0;
}

.promo-drawer {
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
}
.promo-drawer__drawer {
  background: #E2E2E5;
  bottom: 0%;
  display: block;
  left: 50%;
  max-width: 100%;
  position: absolute;
  transform: translate3d(-50%, 100%, 0);
  transition: all 1s ease-in-out;
  width: 100%;
  z-index: 10000;
}
.promo-drawer__drawer[data-drawer-status=open] {
  transform: translate3d(-50%, 0, 0);
}
.promo-drawer__drawer[data-drawer-status=open] .promo-drawer__header-arrow svg {
  transform: rotateX(180deg);
}
.promo-drawer__overlay {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: fixed;
  top: 0;
  width: 100%;
}
.promo-drawer__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #C41230;
  border: 2px solid #fff;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -100%);
  cursor: pointer;
  height: 48px;
  width: auto;
  padding:0;
  font-family: 'Avenir',sans-serif;
}
.promo-drawer__header:focus-visible,
#promoDrawer .pc-carousel-wrapper .platform-components-content-card__body-copy a:focus-visible,
#promoDrawer .platform-components-content-card__button--primary.brand:focus-visible,
#promoDrawer .pc-carousel-wrapper .gpd-heading a:focus-visible,
#promoDrawer button.gpdbutton__signup:focus-visible,
.gpd-legalcheckbox[type="checkbox"]:focus-visible,
.gpd-legalcontent a:focus-visible,
#promoDrawer .pc-carousel-wrapper .arrows-track .slick-arrow:focus-visible,
.gpd-thankyoubutton:focus-visible {
 outline: 0.125rem solid #000;
}
.cmp-experiencefragment--global-drawer .modalContainer .platform-components-rich-text--theme-01 a:focus-visible,
#promoDrawer .lead-gen-ca-modal__form__input.gpd-emailfield:focus-visible,
#promoDrawer .platform-components-modal__close:focus-visible {
    outline: 0.125rem solid #000 !important;
}
@keyframes gpdHide {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gpdHide {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@-moz-keyframes gpdHide {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gpdShow {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes gpdShow {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@-moz-keyframes gpdShow {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

.promo-drawer__content {
  visibility: hidden;
}

.promo-drawer__drawer[data-drawer-status=open] .promo-drawer__content {
  animation: gpdShow 1s ease forwards;
  -webkit-animation: gpdShow 1s ease forwards;
  -moz-animation: gpdShow 1s ease forwards;
}

.promo-drawer__drawer[data-drawer-status=closed] .promo-drawer__content {
  animation: gpdHide 4s ease forwards;
  -webkit-animation: gpdHide 4s ease forwards;
  -moz-animation: gpdHide 4s ease forwards;
}  
.promo-drawer__header-icon {
  padding-left: 16px;
  padding-right: 8px;
  display: flex;
}
#promoDrawer .promo-drawer__header-icon svg {
  fill: #fff;
  transition: all 1s ease;
  height:24px;
}
#promoDrawer .platform-components-content-card__content {
    justify-content:flex-start;
    padding: 0;
}
#promoDrawer .platform-components-content-card__preheader {
    margin: 0;
    background: #C41230;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 16px;
	margin-bottom: 16px;
}
#promoDrawer .platform-components-content-card__main-header.header-one {
	margin: 0;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #C42033;
    padding: 16px;
    font-family: 'Avenir-Black','Avenir',sans-serif;
    text-align:left;
	padding-top: 0;
} 
#promoDrawer .platform-components-content-card__body-copy p {
	font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    margin: 0;
    color: #000;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom:16px;
    text-align:left;
}
#promoDrawer .platform-components-content-card__body-copy {
	margin: 0;
    float: left;
    width: 100%;
    margin-bottom: 1.6rem;
}
#promoDrawer .platform-components-content-card__subtitle {
    font-size: 16px;
    font-weight: 900;
    line-height: 30px;
    text-align: left;
    padding-left: 16px;
    color: #2E2E2E;
    font-style: normal;
	margin:0;
	font-family:'Avenir-Black',Avenir,sans-serif;
}
#promoDrawer .platform-components-content-card__button-container {
    margin-bottom: 40px;
    justify-content: flex-start;
    padding-left:16px;
    margin-top:0;
}
#promoDrawer .platform-components-content-card__button--primary.brand {
    position: fixed;
    bottom: 16px;
    width: 156px;
    height: 36px !important;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
#promoDrawer .pc-carousel-wrapper .pc-carousel-container .slick-slide>div {
	display:block;
}
#promoDrawer .platform-components-content-card__width-lg--auto {
	width:100%;
}
#promoDrawer .pc-carousel-wrapper .pc-carousel-container .slick-track {
	justify-content: center;
    margin-top:16px;
    margin-bottom:16px;
}
#promoDrawer .pc-carousel-wrapper .pc-carousel-container .slick-dots {
	margin:15px 0;
} 
#promoDrawer .pc-carousel-wrapper .arrows-track .slick-arrow.slick-prev {
    left:0;
}
#promoDrawer .pc-carousel-wrapper .arrows-track .slick-arrow.slick-next {
	right:0;
}
#promoDrawer .pc-carousel-wrapper .arrows-track {
	height:100%;
}
#promoDrawer .pc-carousel-wrapper .arrows-track .slick-arrow {
	background: #c41230;
    border-radius: 0;
    height: 120px;
    width: 24px;
    padding: 0;
}
.promo-drawer__heading {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family:inherit;
}
.promo-drawer__header-text p {
  color: #fff;
  font-size: 10px;
  line-height: 12px;
  margin: 0;
}
.promo-drawer__header-arrow svg {
  fill: #fff;
}
.promo-drawer__header-arrow {
  padding-left: 30px;
  padding-right: 18px;
}
.promo-drawer_card {
  background: #fff;
  margin-right: 16px;
  width: 33.3%;
  position: relative;
}
.promo-drawer_cardswrapper {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}
.promo-drawer_header {
  margin: 0;
  background: #C41230;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
}
.promo-drawer__title {
  margin: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C42033;
}
.promo-drawer__description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  margin: 0;
  color: #000;
  padding-top: 16px; 
}
.promo-drawer__contentsection {
  padding: 16px;
  margin-bottom: 50px;
}
.promo-drawer__cta {
  width: 156px;
  height: 36px;
  background: #C41230;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin-top: 38px;
  position: absolute;
  bottom: 10px; 
}
#promoDrawer .pc-carousel-wrapper .arrows-track .slick-arrow .icons-arrow-left,
#promoDrawer .pc-carousel-wrapper .arrows-track .slick-arrow .icons-arrow-right{
	font-size:30px;
    font-weight:bold;
}
#promoDrawer .pc-carousel-wrapper .platform-components-content-card__body-copy a {
    color: #000;
    border: 1px solid #9F9F9F;
    min-width: 14px;
    height: 14px;
    line-height: 19px;
    display: inline-block;
    text-align: center;
    border-radius: 2px;
    margin-left:2px;
    font-weight:normal;
    text-decoration:none;
	padding: 0 2px;
}
.promo-drawer__content .modalContainer .rte > div {
    padding: 16px;
    margin-bottom:16px;
}
.promo-drawer__content .modalContainer .rte div > :first-child {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #2e2e2e;
    margin-bottom: 5px;
	margin-top:0;
    text-align: left;
    padding: 0;
    text-transform: uppercase;
	font-family: "Avenir-Roman",sans-serif;
}

.promo-drawer__content .modalContainer .rte div > :first-child b {
	font-weight: normal;
    font-family: "Avenir-roman",Avenir,sans-serif;
}
.promo-drawer__content .modalContainer .rte > div h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
	color: #2E2E2E;
    margin-bottom:2px;
    text-align: left;
    padding: 0;
    font-family:inherit;
}
.promo-drawer__content .modalContainer .rte > div p {
 	font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #2E2E2E;
    margin:0;
}
#promoDrawer .button-primary-brand.platform-components-modal__close.platform-components-modal__close-primary.icon-only {
    background: none;
    color: #000;
    top: 20px;
    right: 10px;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
}
#promoDrawer .platform-components-modal__close.icon-only .icons-close {
    font-weight: bold;
    font-size: 26px;
}
.cmp-experiencefragment--global-drawer .platform-components-modal__overlay {
    background: none;
    position:static;
    padding:0;
	display:none;
    width: 98%;
    margin: 0 auto;
}
.cmp-experiencefragment--global-drawer .modalContainer {
    width: 100%;
}
.cmp-experiencefragment--global-drawer .platform-components-modal__overlay.active {
	display:block;
}
.cmp-experiencefragment--global-drawer .platform-components-modal__pb .platform-components-modal__container.fixedCenter {
    width: 100%;
    margin: unset;
    max-width: 100%;
	background:transparent;
}
.cmp-experiencefragment--global-drawer .platform-components-modal__pb .platform-components-modal__container.fixedCenter .cmp-container .container-inner .platform-components-rich-text {
    background: #fff;
    margin-bottom: 20px;
}
.cmp-experiencefragment--global-drawer .platform-components-modal__pb .platform-components-modal__container.fixedCenter .cmp-container {
    padding-left: 50px;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container.slick-slider,
[class*="pages-account"] .promo-drawer .pc-carousel-wrapper .pc-carousel-container.slick-slider {
    position: static;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container .gpdnextArrowBtn,
[class*="pages-account"] .pc-carousel-wrapper .pc-carousel-container .gpdnextArrowBtn {
    z-index: 1000;
    right: 0px;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container .gpdprevArrowBtn,
[class*="pages-account"] .pc-carousel-wrapper .pc-carousel-container .gpdprevArrowBtn {
    z-index: 1;
    left: 0;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container .gpdprevArrowBtn:before,
[class*="pages-account"] .pc-carousel-wrapper .pc-carousel-container .gpdprevArrowBtn:before {
	position:relative;
	right:4px;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container .gpdnextArrowBtn:before,
[class*="pages-account"] .pc-carousel-wrapper .pc-carousel-container .gpdnextArrowBtn:before {
	position:relative;
	right:0;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container .slick-arrow,
[class*="pages-account"] .pc-carousel-wrapper .pc-carousel-container .slick-arrow {
    background: #c41230;
    border-radius: 0;
    height: 120px;
    width: 24px;
	font-size: 30px;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    line-height: 120px;
    color: #2e2e2e;
    font-weight: bold;
    cursor: pointer;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container .slick-arrow.slick-disabled,
[class*="pages-account"] .pc-carousel-wrapper .pc-carousel-container .slick-arrow.slick-disabled {
    opacity: 50%;
}
@media (min-width: 1024px) {
    #promoDrawer .pc-carousel-wrapper {
		padding:0 56px;
     }
}
@media (max-width:767px) {
#promoDrawer .pc-carousel-wrapper {
		padding:0 40px;
}
.promo-drawer__header-icon {
	padding-left: 8px;
    padding-right: 8px;
}
.promo-drawer__header {
	width: max-content;
}
.promo-drawer__heading {
	font-size:14px;
    line-height:20px
}
.promo-drawer__header-arrow {
	padding-left:17px;
    padding-right:17px;
}
#promoDrawer .platform-components-content-card__main-header.header-one {
	font-size:20px;
    line-height:24px;
}
#promoDrawer .platform-components-content-card__body-copy p {
	font-size:12px;
    line-height:21px;
}
#promoDrawer .pc-carousel-wrapper button.slick-prev.slick-arrow.slick-disabled,
#promoDrawer .pc-carousel-wrapper button.slick-next.slick-arrow.slick-disabled{
	display:none !important;
}
.spa-include-fragment-checkout-footer .pc-carousel-wrapper .pc-carousel-container .slick-arrow.slick-disabled,
[class*="pages-account"] .pc-carousel-wrapper .pc-carousel-container .slick-arrow.slick-disabled {
	display:none !important;
}
.cmp-experiencefragment--global-drawer .platform-components-modal__overlay {
	width:90%;
}
.cmp-experiencefragment--global-drawer .platform-components-modal__pb .platform-components-modal__container.fixedCenter .cmp-container {
	padding-left:0;
}
#promoDrawer .platform-components-content-card__subtitle {
	font-size: 12px;
    line-height: 24px;
}
}
.align-right {
  text-align: right;
}

.contact-info-container {
  display: -ms-grid;
  display: grid;
  padding-top: 1rem;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  justify-content: end;
}

.contact-info-container .inner-info.inner-info--livechat {
  -ms-grid-row: 2;
  grid-row: 2 / 2;
  -ms-grid-column: 1;
  grid-column: 1 / 1;
  padding-top: 0.5em;
}

.contact-info-container .inner-info.inner-info--majors {
  -ms-grid-column: 2;
}

.inner-info.inner-info--majors-heading {
  padding-right: 5rem;
  font-size: .8125rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: flex;
}

.contact-info-container .inner-info.inner-info--smalls {
  -ms-grid-column: 3;
}

.contact-info-container > * {
  padding: 0 0.625rem;
}

.contact-info-container .contact-info-header {
  padding-right: 5rem;
  font-size: 0.8125rem;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-info-container .inner-info {
  padding-top: 0.125rem;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
  max-width: 17em;
  font-size: 0.625rem;
}

.contact-info-container .inner-info a:first-child {
  font-weight: bold;
}

.contact-info-container .inner-info p {
  line-height: 1.4em;
}

.modal-body .inner-info__title,
.contact-info-container .inner-info__title {
  padding-top: 0.5em;
  font-family: 'Avenir-Black', sans-serif;
}

@media (max-width: 30rem) {
  header.header-with-fixed-banner {
    padding-top: 5.2rem;
  }
}

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

.breadcrumbs {
  list-style-type: none;
  margin: 0;
  padding: 1rem 0 1.5rem;
}

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

.header-user-location {
  display: flex;
  align-items: center;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
.button {
  font-family: "Avenir-Heavy", Avenir, sans-serif;
}

.main_header {
    padding: 0px;
    position: relative;
  }
  
  .free_shipping_offer {
    font-weight: 700;
  }
  
  .main_header .header-logo-link, .main_header .logo {
    display: block;
    width: 18.5rem;
    padding: 15px 10px;
    margin-left: -15px;
  }

  @media only screen and (max-width: 767px){
    .main_header .logo__link {
      max-width: 9.5rem;
    }
  
    .main_header .header-logo-image, .main_header .logo img {
      width: 70%;
    }
  }

  /* Navigation Styles */
  
  header.dark nav {
    background-color: rgba(255, 255, 255, 0.5);
  }
  header.light nav {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  ul.main-nav {
    list-style-type: none;
    padding: 0px;
    font-size: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
  }
  
  ul.main-nav > li {
    display: inline-block;
    padding: 0;
  }
  
  ul.main-nav.nav_menu > li > a {
    padding: 15px;
    display: block;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    color: #666666;
    transition: color ease-out 0.1s, border-color ease-out 0.1s;
  }
  
  
  @media only screen and (max-width: 767px) {
    ul.main-nav > li > a:focus {
      outline: none;
    }
  }
  
  /* nav items desktop */
  @media only screen and (min-width: 992px) {
    .main_header .header-logged-out {
      height: 45px;
    }
  
    .mobile-navigation,
    .mobile-togglebar {
      display: none;
    }
  
    ul.main-nav > li > a {
      position: relative;
    }
  
    ul.main-nav > li > .mega-menu::after {
      content: "";
      height: 3px;
      position: absolute;
      left: 0px;
      right: 0;
      bottom: 15px;
      margin: 0px auto;
      transition: width ease-in 0.2s;
      background-color: #b52b36;
      width: 0px;
    }
  
    ul.main-nav > li:hover > .mega-menu {
      color: #b52b36;
    }
  
    ul.main-nav > li:hover > .mega-menu::after {
      width: 100%;
    }
  
    ul.main-nav > li > .mega-menu.active {
      color: #b52b36;
    }
    ul.main-nav > li > .mega-menu.active::after {
      width: 100%;
    }
  }

  @media only screen and (min-width: 1170px) { 
    ul.main-nav > li > .mega-menu::after {
      bottom: 20px
    }
  }

  ul.main-nav > li ul.sub-menu-lists {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
  }
  
  ul.main-nav > li ul.sub-menu-lists > li > a {
    color: #000000;
    line-height: 1.6875rem !important;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    text-transform: none;
    font-family: "Avenir-Roman", sans-serif;
  }
  
  ul.main-nav > li ul.sub-menu-lists > li > a:hover {
    color: #c41230;
    cursor: pointer;
  }
  
  .ic {
    position: fixed;
    cursor: pointer;
    display: inline-block;
    right: 25px;
    width: 32px;
    height: 24px;
    text-align: center;
    top: 0px;
    outline: none;
  }
  
  .ic.close {
    opacity: 0;
    font-size: 0px;
    font-weight: 300;
    color: #fff;
    top: 8px;
    height: 40px;
    display: block;
    outline: none;
  }
  
  /* Menu Icons for Devices*/
  .ic.menu {
    top: 100px;
    z-index: 20;
  }
  
  .ic.menu .line {
    height: 4px;
    width: 100%;
    display: block;
    margin-bottom: 6px;
  }
  .ic.menu .line-last-child {
    margin-bottom: 0px;
  }
  
  .sub-menu-head {
    display: block;
    margin: 11px 0px 0px;
    font-size: 14px;
    line-height: 27px;
    text-transform: uppercase;
    color: #a7373a;
    font-weight: 400;
    font-family: Avenir-Heavy, Avenir, sans-serif;
  }
  
  .sub-menu-head span {
    font-weight: 600;
  }
  
  .banners-area {
    margin-top: 20px;
    padding-top: 15px;
  }
  
  .ic.menu {
    display: none;
  }
  
  .sub-menu-block {
    padding: 40px 11px;
  }
  
  @media only screen and (max-width: 991px) {
    .sub-menu-block {
      display: none;
    }
  
    .main_header {
      background: none;
      border-bottom: 0px;
    }
  }
  
  .top-level-link .sub-menu-block {
    border-top: 1px solid #eee;
  }
  
  @media only screen and (min-width: 992px) {
    /* Sub Menu */
    ul.main-nav > li > div.sub-menu-block {
      background-color: #ffffff;
      position: absolute;
      margin-top: 0px;
      width: 100%;
      color: #333;
      left: 0;
      right: 0.5px;
      box-sizing: border-box;
      z-index: 9999;
      font-size: 16px;
      visibility: hidden;
      opacity: 0;
      transition: all .4s ease-in;
    }
  
    ul.main-nav > li:hover > div.sub-menu-block {
      visibility: visible;
      opacity: 1;
      transition: all .2s ease-out;
      /* CF: saving in case removing this causes issues */
      /* -webkit-transform: rotateX(0deg);
      -moz-transform: rotateX(0deg);
      -ms-transform: rotateX(0deg);
      transform: rotateX(0deg); */
    }
  
    ul.main-nav > li > div.sub-menu-block > * {
      -webkit-transition-property: opacity;
      -moz-transition-property: opacity;
      -o-transition-property: opacity;
      transition-property: opacity;
      -webkit-transition-duration: 0.4s;
      -moz-transition-duration: 0.4s;
      -o-transition-duration: 0.4s;
      transition-duration: 0.4s;
      opacity: 0;
    }
  
    ul.main-nav > li:hover > div.sub-menu-block > * {
      opacity: 1;
    }

    .overlay-menu {
      position: absolute;
      top: 82px;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 10;
      height: 100px;
      background: rgba(46, 46, 46, 0.9);
      transition: all .4s ease-in;
      opacity: 0;
      visibility: hidden;
    }

    ul.main-nav > li:hover ~ .overlay-menu {
      opacity: 1;
      visibility: visible;
      transition: al .2s ease-out;
    }

    .header-search-mobile-btn{
      display: none;
    }
  
    .header-logged-out img {
      margin-top: 4px;
    }

    /* Fix for WF-72517 Main menu isn't keyboard operable  Start */
    ul.main-nav > li a:focus + div.sub-menu-block, 
    ul.main-nav > li.menu-open div.sub-menu-block {
      visibility:visible;
      opacity:1;
      transition:all .2s ease-out
    }
    ul.main-nav>li>div.sub-menu-block>*{
      opacity:1
    }
    ul.main-nav>li:focus ~ .overlay-menu{
      opacity:1;
      visibility:visible;
      transition:al .2s ease-out
    }
    .sub-menu-head a:link:focus{
      color:#c41230
    }
    /* Fix for WF-72517 Main menu isn't keyboard operable  End */
  }
  
  
  .banners-area {
    border-top: 1px solid #ccc;
  }
  
  /* kitchen aid */
  .navbar-meganav-header-wrapper {
    height: 205px;
    padding-left: 11px;
  }
  
  .navbar-meganav-links-wrapper {
    overflow: visible;
    background-color: transparent;
    font-family: "Avenir-Black", sans-serif;
    color: #b52b36;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .navbar-ad-link-block.single-high {
    height: 116px;
    width: 100%;
    margin: 0px;
  }
  
  .g-row .g-col-6 .single-high {
    margin-top: 0;
  }
  
  @media only screen and (max-width: 1170px) {
    .navbar-ad-link-block.single-high {
      height: 113px;
    }
  }
  
  .navbar-ad-link-block {
    position: relative;
    display: block;
    overflow: hidden;
    height: 140px;
    margin-top: 20px;
    margin-left: 32px;
    border: 1px none #cecece;
    background-color: #eee;
    text-decoration: none;
  }
  .navbar-ad-image-wrapper {
    overflow: hidden;
    min-width: 121px;
    height: 116px;
    float: left;
  }

  @media only screen and (min-width: 992px) and (max-width: 1150px){
    .navbar-ad-image-wrapper {
      min-width: 80px;
      width: 80px;
    }
  }
  
  .navbar-ad-image-wrapper img {
    min-width: 121px;
    width: 121px;
  }
  
  .navbar-ad-image {
    background-position: center top;
    background-size: 100%;
    background-repeat: no-repeat, no-repeat;
  }
  
  .navbar-ad-text-wrapper {
    transform-style: preserve-3d;
    transition: transform 500ms ease-in-out;
    transform: translateX(0px) translateY(0px) translateZ(0px);
  }
  
  .navbar-ad-link-block.single-high:hover .navbar-ad-text-wrapper {
    transform-style: preserve-3d;
    transition: transform 300ms ease-in-out;
    transform: translateX(4px) translateY(0px) translateZ(0px);
  }
  
  .navbar-ad-text-wrapper {
    position: relative;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 56%;
    height: 100%;
    padding-top: auto;
    padding-right: 10px;
    padding-left: 10px;
    float: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    background-color: transparent;
  }
  
  .navbar-ad-pre-header {
    margin-bottom: 6px;
    font-size: 9px;
    line-height: 11px;
    text-transform: uppercase;
    color: #2e2e2e;
    font-family: "Avenir-Roman", sans-serif;
    width: 100%;
  }
  
  .navbar-ad-headline {
    margin-bottom: 6px;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #2e2e2e;
  }
  
  .navbar-ad-body {
    margin-top: auto;
    color: #2c2c2c;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0px;
    text-transform: none;
  }
  
  .topnav .search-container {
    height: 33px;
  }
  
  .main-menu-search .header-search-input {
    width: 100%;
    height: 33px;
    border: 1px solid #cccccc;
    font-size: 10px;
    transition: border-color ease-in 0.2s;
  }
  
  .main-menu-search .header-search-input:focus {
    color: #2c2c2c;
    border-color: #b52b36;
  }
  
  .main-menu-search .header-search-input::placeholder {
    color: #cccccc;
  }
  
  .search-popover {
    position: relative;
    width: 100%;
  }
  
  .topnav input[type="text"] {
    padding: 0px 30px 0px 10px;
    background: transparent;
    border: none;
    outline: none;
    height: 31px;
    width: 84%;
    font-size: 10px;
    line-height: 14px;
    color: #d1d1d1;
  }
  
  .topnav input[type="text"]::placeholder {
    color: #d1d1d1;
  }
  
  .main-menu-search .header-search-button {
    float: right;
    padding: 0px;
    background: transparent;
    font-size: 17px;
    border: none;
    cursor: pointer;
    height: 30px;
    width: 30px;
    -webkit-tap-highlight-color: transparent;
    margin-top: 1px;
  }
  
  @media screen and (max-width: 600px) {
    .main-menu-search .header-search-form {
      float: none;
    }
  
    .topnav a,
    .main-menu-search .header-search-button {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
    .topnav input[type="text"] {
      border: 1px solid #ccc;
    }
  }
  
  .user_links img {
    margin: 0px auto;
  }
  
  .user_links__utilities {
    font-size: 10px !important;
    text-transform: uppercase !important;
    padding: 0px !important;
    line-height: 22px;
    text-align: center;
    color: #2e2e2e;
    border-bottom: 0px !important;
  }
  
  @media only screen and (min-width: 991px) {
    .navigation_kitchen {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      width: 100%;
    }
  }
  
  .sub-menu-feature {
    font-size: 14px;
    margin-top: 10px;
    line-height: 27px;
    text-transform: uppercase;
    color: #797979;
    font-weight: 900;
    margin-bottom: 8px;
    font-family: Avenir-Heavy, Avenir, sans-serif;
  }
  
  .column_border-right {
    border-right: 1px solid #eee;
  }
  
  .padding_left_column {
    padding-left: 30px;
  }
  
  .column_padding_bottom {
    padding-bottom: 25px;
  }
  
  .our_mission_padding {
    padding: 20px 33px 0px 23px;
  }
  
  .feature_padding_bottom {
    padding-bottom: 25px;
  }
  
  .hours_operation {
    padding-top: 28px;
    padding-left: 30px;
  }
  
  .contact_details {
    margin-bottom: 20px;
  }
  
  .live_chat {
    padding-bottom: 25px;
    padding-left: 31px;
  }
  
  .our_mission_text {
    font-style: italic;
  }
  
  .notification-badge {
    background: #b52b36;
    color: #ffffff;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 17px;
    top: 12px;
    border-radius: 50%;
    z-index: 999;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-search-mobile-device .header-search-button {
      top: 0px !important;
    }
  
    .main-menu-search .header-suggestions-panel {
      left: inherit !important;
    }
  
    .main_header .header-mobile .logo {
      padding: 11px 10px 0px 25px;
    }
  
    .main-menu-search .header-suggestions-panel input[type="text"] {
      top: 11px;
      width: 96vw !important;
      transform: translate(4%, 1%);
      background-size: 2%;
    }
  
    .notification-badge {
      right: 46px !important;
      top: 8px !important;
    }
  
    .hours_operation {
      padding-top: 0px;
    }
  
    .nav_menu {
      justify-content: center;
    }
  
    .nav_search {
      position: absolute;
      right: 55px;
      z-index: 99;
      top: 0px;
    }
  
    .user_links img {
      width: 20px;
      margin-right: 15px;
    }
  
    .user_links .header-search-button img {
      margin-right: 4px;
    }
  }
  
  /* mobile hamburger */
  @media only screen and (min-width: 992px) {
    #sidebarMenu {
      display: flex;
      justify-content: space-between;
    }
  }
  
  @media only screen and (max-width: 600px) {
    .nav_search {
      top: -4px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .hours_operation {
      padding-top: 0px;
    }
  
    .main-menu-search .header-search-form .header-search-input {
      position: absolute;
      top: 66px;
      z-index: 99;
      border: 1px solid #a0a0a0;
      background-image: url(../../../content/dam/kitchenaid/search.svg);
      background-color: white;
      background-repeat: no-repeat;
      background-position: center right 10px;
      color: #2e2e2e;
      font-size: 12px;
      background-size: 6%;
      box-shadow: 2px 0px 0px 17px #f4f7f6;
      border-radius: 0px;
      display: none;
    }
  
    .header-suggestions-button .arrow-view-cart {
      display: none;
    }
  
    .header-suggestions-bottom {
      height: 3rem;
      white-space: nowrap;
      transition: color ease-in 0.2s, background-color ease-in 0.2s,
        border-color ease-in 0.2s;
      background: #e2e2e5;
      color: #2e2e2e !important;
      width: 174px;
      padding: 0px !important;
      margin: 0px auto;
      margin-bottom: 10px;
      margin-top: 15px;
    }
  
    .main-menu-search .header-suggestions-bottom {
      padding-top: 0;
    }
  
    .user_links .header-suggestions-panel .header-suggestions-button {
      display: block !important;
    }
  
    .main-menu-search .header-suggestions-top {
      padding: 10px 0px;
      border-bottom: 0px !important;
    }
  
    .main-menu-search .header-suggestions-panel {
      border: 0px;
      border-bottom: 1px solid #b3b3b3;
    }
  
    .main-menu-search .header-suggestions-panel {
      padding-left: 0px;
      padding-right: 0px;
    }
  
    .main-menu-search .header-suggestions-panel input[type="text"] {
      border: 1px solid #a0a0a0;
      border-radius: 3px;
      position: relative;
      z-index: 9;
      background-image: url(../../../content/dam/kitchenaid/search.svg);
      background-color: white;
      background-repeat: no-repeat;
      background-position: center right 10px;
      color: #2e2e2e;
      font-size: 12px;
    }
  
    .main-menu-search .header-suggestions-panel input[type="text"]::placeholder {
      color: #2e2e2e;
    }
  
    .main-menu-search .header-search-button {
      padding: 0px;
    }
  
    .user_links {
      width: auto !important;
    }
  
    .user_links__utilities {
      display: none !important;
    }
  
    .main-menu-search .header-search-form {
      float: inherit;
      border: none;
      width: auto;
    }
  
    .location-navigate {
      display: none !important;
    }
  
    .our_mission_padding {
      padding: 0px;
    }
  
    .header-mobile {
      display: block;
      width: 100%;
      max-width: 100%;
      box-shadow: none;
      background-color: #ffffff;
      height: 48px !important;
      align-items: center;
      position: relative;
      padding: 0px;
    }
  
    .brand-logo {
      max-width: 40%;
    }
  
    .cart_image {
      width: 25px !important;
    }
  
    .main {
      margin: 0 auto;
      display: block;
      height: 100%;
    }
    .mainInner {
      display: table;
      height: 100%;
      width: 100%;
      text-align: center;
    }
    .mainInner div {
      display: table-cell;
      vertical-align: middle;
      font-size: 3em;
      font-weight: bold;
      letter-spacing: 1.25px;
    }
    #sidebarMenu {
      height: 0px;
      left: 0;
      width: 100%;
      transform: translateX(150%);
      transition: transform 500ms ease-in-out;
      background: #ffffff;
    }
    #sidebarMenu.heightAuto {
      height: auto;
      min-height: 100vh;
      border-top: 1px solid #eee;
    }
    .sidebarMenuInner {
      margin: 0;
      padding: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .sidebarMenuInner li {
      text-transform: uppercase;
      font-weight: bold;
      padding: 20px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      background: #ffffff;
      position: relative;
      font-size: 15px;
      color: #2e2e2e;
      letter-spacing: 0.5px;
      -webkit-tap-highlight-color: transparent;
    }
  
    .sidebarMenuInner li a {
      color: #2e2e2e;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
    }
  
    .sidebarMenuInner .sub-menu-item {
      border-bottom: 1px solid #dadada;
      background-color: #fff;
      margin: 0;
      padding: 16px 0 16px 35px !important;
      font-size: 14px;
    }
  
    .drop-icon-inner {
      margin-top: 9px !important;
      margin-right: 16px;
    }
  
    input[type="checkbox"]:checked ~ #sidebarMenu {
      transform: translateX(0);
    }
  
    .main_header input[type="checkbox"] {
      transition: all 0.2s;
      box-sizing: border-box;
      display: none;
    }
    .sidebarIconToggle {
      transition: all 0.2s;
      cursor: pointer;
      position: absolute;
      z-index: 99;
      top: 0px;
      right: 0px;
      width: 48px;
      height: 48px;
      padding: 16px 10px 0 11px;
      background-color: #A7373A;
      -webkit-tap-highlight-color: transparent;
    }
    .spinner-mobile {
      transition: all 0.2s;
      box-sizing: border-box;
      position: absolute;
      height: 3px;
      width: 100%;
      background-color: #fff;
    }
    .horizontal {
      transition: all 0.2s;
      box-sizing: border-box;
      position: relative;
      float: left;
      margin-top: 3px;
    }
    .diagonal.part-1 {
      position: relative;
      transition: all 0.2s;
      box-sizing: border-box;
      float: left;
    }
    .diagonal.part-2 {
      transition: all 0.2s;
      box-sizing: border-box;
      position: relative;
      float: left;
      margin-top: 3px;
    }
    input[type="checkbox"]:checked ~ .sidebarIconToggle > .horizontal {
      transition: all 0.2s;
      box-sizing: border-box;
      opacity: 0;
    }
    input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
      transition: all 0.2s;
      box-sizing: border-box;
      transform: rotate(135deg);
      margin-top: 8px;
    }
    input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
      transition: all 0.2s;
      box-sizing: border-box;
      transform: rotate(-135deg);
      margin-top: -9px;
    }
  
    #menu1 .main-menu {
      display: none;
    }
  
    #tm1:checked + .main-menu {
      display: block;
    }
  
    /* 2 Menu */
  
    #menu2 .main-menu {
      display: none;
    }
  
    #tm2:checked + .main-menu {
      display: block;
    }
  
    /* 3 Menu */
  
    #menu3 .main-menu {
      display: none;
    }
  
    #tm3:checked + .main-menu {
      display: block;
    }
  
    /* 3 Menu */
  
    #menu4 .main-menu {
      display: none;
    }
  
    #tm4:checked + .main-menu {
      display: block;
    }
  
    .main-menu {
      padding: 0px;
    }
  
    .main-menu li {
      padding-left: 37px;
      border-bottom: 1px solid #dadada;
      background-color: #eee;
    }
  
    .sidebarMenuInner label {
      display: block;
    }
  
    .drop-icon {
      color: #b52b36;
      font-size: 25px;
      float: right;
      margin-top: 2px;
    }
  
    .mobile-ad-feature {
      height: 90px;
      margin: 20px 10px;
      background-color: #fff;
    }
  
    .sale-feature-card .mobile-ad-feature {
      margin-top: 0px !important;
    }
  
    .m-ad-text-wrapper-feature {
      width: 80%;
      height: 100%;
      padding: 15px;
      float: left;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  
    .arrow-feature {
      width: 20%;
      height: 100%;
      float: right;
    }
  
    .arrow-feature img {
      width: 12px;
      position: relative;
      left: 20px;
      top: 35px;
    }
	
	.m-ad-image-wrapper-feature {
      display: none;
      width: 45%;
      height: 100%;
      float: right;
      background-position: 0px 50%;
      background-size: cover;
      background-repeat: no-repeat;
    }
	
    .ad-mobile-pre-header-feature {
      margin-bottom: 4px;
      color: #2e2e2e;
      font-size: 12px;
      line-height: 12px;
      letter-spacing: 0px;
      text-transform: uppercase;
    }
  
    .ad-mobile-headline-feature {
      display: block;
      font-family: "Avenir-Black", sans-serif;
      color: #c41230;
      font-size: 16px;
      line-height: 16px;
      font-weight: 900;
      letter-spacing: 0px;
      text-transform: uppercase;
    }
  
    .drop-icon {
      width: 15px;
    }
  }
  
  @media only screen and (min-width: 320px) and (max-width: 375px) {
    .main-menu-search .header-search-input {
      right: -127px !important;
      min-width: 93vw !important;
      background-size: 6% !important;
      top: 67px !important;
    }
  }
  
  @media only screen and (min-width: 376px) and (max-width: 414px) {
    .main-menu-search .header-search-input {
      right: -126px !important;
      min-width: 95vw !important;
      background-size: 6% !important;
      top: 67px !important;
    }
  }
  
  @media only screen and (min-width: 415px) and (max-width: 480px) {
    .main-menu-search .header-search-input {
      right: -126px !important;
      min-width: 95vw !important;
      background-size: 6% !important;
      top: 67px !important;
    }
  }
  
  @media only screen and (min-width: 481px) and (max-width: 530px) {
    .main-menu-search .header-search-input {
      min-width: 95vw !important;
      background-size: 5% !important;
      right: -127px !important;
      top: 67px !important;  
    }
  }
  
  @media only screen and (min-width: 531px) and (max-width: 600px) {
    .main-menu-search .header-search-input {
      min-width: 95vw !important;
      background-size: 4% !important;
      right: -121px !important;
      top: 67px !important;
    }
  }
  
  @media only screen and (min-width: 601px) and (max-width: 670px) {
    .main-menu-search .header-search-input {
      min-width: 96vw !important;
      background-size: 3% !important;
      right: -119px !important;
      top: 67px !important;
    }
  }
  
  @media only screen and (min-width: 671px) and (max-width: 767px) {
    .main-menu-search .header-search-input {
      min-width: 97vw !important;
      background-size: 3% !important;
      right: -122px !important;
      top: 67px !important;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 900px) {
    .main-menu-search .header-search-input {
      min-width: 97vw !important;
      background-size: 3% !important;
      right: -122px !important;
      top: 50px !important;
    }
  }

  .main-menu-search .header-suggestions-panel {
    right: -12px;
    bottom: 0px;
    width: 282px;
    box-shadow: none;
    padding: 15px !important;
  }
  
  @media only screen and (min-width: 901px) and (max-width: 991px) {
    .main-menu-search .header-search-input {
      min-width: 97vw !important;
      background-size: 2% !important;
      right: -118px !important;
      top: 50px !important; 
    }
  }
  
  @media only screen and (max-width: 991px) {
    .search-input-popover {
      display: none;
    }
  
    .modal-overlay {
      width: 100%;
      height: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.8);
      position: fixed;
      top: 0;
      right: 0;
      left: 0px;
      bottom: 0px;
      display: none;
      z-index: 99999;
    }
  
    .mega-menu-rtc-mobile {
      min-height: 90px;
      margin: 20px 20px 0px;
      background-color: #fff;
      padding: 5px 15px 15px;
    }
  
    .main-menu-search.header-search .header-suggestions-panel {
      position: absolute;
      width: 100vw;
      right: -128px;
      top: 110px !important;
      left: inherit;
      padding: 0px 15px 15px !important;
      height: max-content;
    }
  
    .main-menu-search.header-search
      .header-suggestions-panel
      .header-suggestions-item
      a {
      display: block !important;
      text-align: left;
    }
  
    .live_chat {
      padding-left: 10px;
      padding-bottom: 0px;
    }
  
    .sale-box .mobile-ad-feature {
      margin-left: 0px;
      margin-right: 0px;
    }
  
    .mega-menu-rtc-mobile h2 {
      margin-top: 3px !important;
    }
  
    ul.main-nav > li {
      width: 100%;
    }
  
    ul.main-nav > li.popover-items {
      padding: 0.9rem 0.5rem;
    }
  
    .sub-menu-lists {
      display: none;
    }
  
    .always_visible {
      display: block;
    }
  
    .sub-menu-block .g-col-2,
    .sub-menu-block .g-col-3,
    .sub-menu-block .g-col-4,
    .sub-menu-block .g-col-5,
    .sub-menu-block .g-col-6,
    .sub-menu-block .g-col-8 {
      flex-basis: 100%;
      max-width: 100%;
    }
  
    .padding_left_column {
      padding: 0px 10px;
    }
  
    .sub-menu-head {
      color: #000000;
      border-bottom: 1px solid #dadada;
      background-color: #eee;
      margin: 0px;
      padding: 15px 13px 15px 25px;
    } 
  
    .sub-menu-block {
      padding: 0px;
    }
  
    .featured-card-desktop {
      display: none;
    }
  
    .g-row-mobile {
      background: #eee;
    }
  
    .display-none-mobile {
      display: none;
    }
  
    ul.main-nav > li.popover-items {
      padding: 0px;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .overlay-menu, 
    .popover__dropdown {
      top: 65px;
    }

    .sub-menu-head a:link {
      color: #a7373a;
    }
  
    .sub-menu-head a:link:hover {
      color: #c41230;
    }
    
    .main_header .header-mobile .logo {
      padding: 0px;
    }
  
    .nav_search > li {
      min-width: 75px;
      text-align: center;
    }
  
    .search-nav-dropdown .search-input {
      display: none;
    }
  
    .signin-link {
      width: 40px;
    }
  
    .display-none-desktop {
      display: none !important;
    }
  
    .openSidebarMenu {
      display: none !important;
    }
  
    .drop-icon {
      display: none !important;
    }
  
    .mobile-ad-feature {
      display: none;
    }
  
    .mobile-li-heading {
      display: none;
    }
  
    ul.main-nav > li.popover-items {
      position: relative;
      margin-top: 0px;
      height: 65px;
      padding-top: 16px;
    }
  
    ul.main-nav > li.popover-items .icon {
      width: 17px;
    }
  
    ul.main-nav > li.popover-items .button {
      width: 100%;  
    }

    ul.main-nav > li.popover-items .button:focus {
      outline: 1px solid #000
    }

    ul.main-nav > li.popover-items .button:focus {
      outline: 1px solid #000
    }
  
    .search-container button img {
      width: 17px;
    }
  }

  @media only screen and (min-width: 1025px) {
    .overlay-menu, 
    .popover__dropdown, 
    ul.main-nav > li > div.sub-menu-block {
      top: 82px;
    }
  }
  
  .sign-in-dropdown {
    width: 345px;
    box-shadow: none;
  }
  
  .sign-in-block {
    height: 100%;
    padding: 30px;
    background-color: #eee;
  }
  
  .signin-headline-dropdown {
    text-transform: uppercase;
    font-family: "Avenir-Black", sans-serif;
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
  }
  
  .signin-form {
    margin: 0 0 15px;
  }
  
  #email-form {
    margin-top: 16px;
  }
  
  .signin-account-field {
    color: #2c2c2c;
    font-size: 14px;
  }
  
  .main_header .form-input,
  .sign-in-block-modal .form-input {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
  }

  .form-show-password-label {
    color: #000000;
  }

  .forgot-link {
    float: right;
    color: #2c2c2c;
    font-size: 12px;
    text-align: right;
    text-decoration: none;
    cursor: pointer;
    line-height: 27px;
  }
  
  /* Sign in Modal */
  input.signin-cart-button {
    -webkit-appearance: button;
  }
  
  .signin-cart-button {
    text-transform: uppercase;
    width: 100%;
    margin-top: 14px;
    padding: 13px 28px;
    font-family: "Avenir-Black", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
  }
  .signin-cart-button :focus{
    outline: 1px solid #000;
  }
  .popover__dropdown {
    position: absolute;
    border: 1px solid #cecece;
    background-color: #eee;
  }
  
  @media only screen and (max-width: 991px) {
    .header-search-mobile-btn{
      display: block;
    }

    .main-menu-search
      .header-suggestions-panel
      .header-suggestions-bottom
      .arrow-feature {
      display: none;
    }
  
    .nav_search {
      height: 48px;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between;
      width: 115px;
      padding-right: 5px !important;
    }
  
    .nav_search .popover__dropdown {
      right: -36px;
      top: 48px;
      width: 320px;
    }
  }

  #location-modal .modal-header {
    width: 100%;
  }
  
  .location-headline-dropdown {
    font-family: "Avenir-Black", sans-serif;
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
  }
  
  .location-nav-dropdown {
    right: -95px;
    width: 245px;
    box-shadow: none;
  }
  
  .location-value {
    color: #b52b36;
  }
  
  .location-text-block p {
    margin-top: 6px;
    color: #2c2c2c;
    font-size: 12px;
    line-height: 16px;
  }
  
  .form-block-location {
    margin-bottom: 12px;
  }
  
  .form-location {
    margin-top: 16px;
  }
  
  .location-block {
    padding: 15px;
  }
  
  .cart-dropdown-nav {
    right: -211px;
    display: block;
    width: 345px;
    box-shadow: none;
  }
  
  .cart-main-block {
    margin-bottom: 5px;
    padding: 22px 25px 9px;
    background-color: #eee;
  }
  
  .cart-headline-dropdown {
    font-family: "Avenir-Black", sans-serif;
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 600;
  }
  
  .cart-content-block {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid #cecece;
    background-color: transparent;
  }
  
  .cart-view-arrow img {
    position: relative;
    top: 0px;
    margin-left: 5px;
    float: right;
    width: 8px;
  }
  
  .user_links .cart-entire-link {
    position: static;
    display: flex;
    float: right;
    color: #c41230 !important;
    font-size: 12px !important;
    text-decoration: none;
    cursor: pointer;
    text-transform: capitalize !important;
    align-items: center;
  }
  
  .cart-item-pagination {
    display: inline-block;
    color: #2c2c2c;
    font-size: 12px;
  }
  
  .cart-item-block {
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    height: 100px;
    display: flex;
    align-items: center;
  }
  
  .select-product-image {
    width: 70px;
    height: 70px;
    float: left;
    border: 1px none #cecece;
    background-color: #fff;
    background-image: url(https://kitchenaid-h.assetsadobe.com/is/image/content/dam/global/kitchenaid/countertop-appliance/kitchen-tools/images/hero-KC2PS10CP.tif);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .item-description {
    width: 206px;
    float: right;
    padding-left: 20px;
  }
  
  .select-product-name {
    margin-bottom: 3px;
    font-family: "Avenir-Black", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 15px;
    cursor: pointer;
  }
  
  .item-code {
    color: #2c2c2c;
    font-size: 12px;
    line-height: 17px;
  }
  
  .cart-price-item {
    display: inline-block;
    margin-top: 3px;
    float: right;
    font-family: "Avenir-Black", sans-serif;
    color: #2c2c2c;
    font-size: 12px;
    line-height: 13px;
    font-weight: 600;
  }
  
  .cart-qty-item {
    display: inline-block;
    margin-top: 3px;
    float: left;
    font-family: "Avenir-Black", sans-serif;
    color: #2c2c2c;
    font-size: 12px;
    line-height: 13px;
    font-weight: 600;
  }
  
  .item-block-inner {
    padding: 15px 25px 38px;
    border-bottom: 1px none #cecece;
    background-color: #eee;
  }
  
  .all-items-cart {
    display: inline-block;
    color: #2c2c2c;
    font-size: 12px;
  }
  
  .total-price-items {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 6px;
    border-top: 1px solid #cecece;
  }
  
  .cart-total-item {
    display: inline-block;
    font-family: "Avenir-Black", sans-serif;
    color: #2c2c2c;
    font-size: 12px;
    font-weight: 600;
  }
  
  .book-total {
    font-weight: 400;
  }
  
  .main-menu-search .header-suggestions-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #cecece;
  }
  
  .main-menu-search .header-suggestions-icon {
    -ms-flex-preferred-size: 1.875rem;
    flex-basis: 1.875rem;
    min-width: 1.875rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #c41230;
  }
  
  .main-menu-search .header-suggestions-term {
    font-size: 0.75rem;
  }
  
  .main-menu-search .header-suggestions-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .main-menu-search .header-suggestions-term-value {
    font-weight: 700;
  }
  
  .main-menu-search .header-suggestions-item {
    font-size: 0.75rem;
  }
  
  .main-menu-search .header-suggestions-item a {
    font-size: 13px;
    color: #2e2e2e;
    text-decoration: none;
  }
  
  .main-menu-search .header-suggestions-item {
    padding-top: 0.5rem;
    line-height: 13px;
    text-align: left;
  }
  
  .main-menu-search .header-suggestions-bottom {
    padding-top: 0.75rem;
    text-align: center;
  }
  
  .main-menu-search .header-suggestions-bottom .button {
    height: 3rem;
    line-height: 1;
    white-space: nowrap;
    transition: color ease-in 0.2s, background-color ease-in 0.2s,
      border-color ease-in 0.2s;
  }
  
  .view_results {
    width: 13px;
    margin-left: 5px;
    transform: rotate(-90deg);
  }
  
  .sign-in-dropdown,
  .location-nav-dropdown,
  .cart-dropdown-nav,
  .main-menu-search .header-suggestions-panel {
    display: none;
  }
  
  .main-menu-search.header-search {
    overflow: initial;
  }
  
  .main-menu-search.header-search .header-suggestions-panel {
    padding: 0;
  }
  
  .main-menu-search.header-search .header-suggestions-panel {
    top: 58px;
    height: fit-content;
    overflow-y: auto;
    min-height: 114px;
  }
  
  .user_links .header-suggestions-panel .header-suggestions-button {
    font-weight: 500;
    font-size: 11px !important;
    line-height: 24px !important;
    display: flex;
    align-items: center;
    color: #c41230 !important;
    text-transform: capitalize !important;
  }

  .noscroll {
    overflow: hidden !important;
    position: relative;
    height: 100%;
    max-height: 100vh;
  }
  
  @media only screen and (max-width: 991px) {
    .overlay-search {
      position: absolute;
      background: #000000;
      width: 100vw;
      height: 100vh;
      top: 49px;
      opacity: 0.8;
      display: none;
    }
  
    .overlay-menu {
      display: none !important;
    }
  
    .main-menu-mb-location {
      display: block;
    }
  
    .sidebarMenuInner {
      display: block !important;
      overflow-y: auto;
      height: calc(100vh - 147px);
      width: 100%;
    }
  
    .mega-menu-bg {
      background-image: url(../../../content/dam/kitchenaid/down.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 50%;
      background-origin: content-box;
      width: 23px;
      height: 23px;
      float: right;
    }
  
    .img-rotate {
      transform: rotate(180deg);
    }
  
    .arrow-feature,
    .cart-view-arrow {
      background-image: url(../../../content/dam/kitchenaid/down.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 20%;
      transform: rotate(-90deg);
    }
  
    .column_border-right {
      padding-left: 0px;
      padding-right: 0px;
    }
  
    .main_header .g-container {
      padding: 0px;
      width: 100%;
    }
  
    .main_header .g-row {
      margin: 0px;
    }
  
    .content-hidden-mobile {
      display: none;
    }
  
    .user_links.header-search-mobile-device {
      position: static;
      top: 0;
      right: 0;
      overflow: unset;
      visibility: visible;
    }
  
    .header-search-mobile-device .header-search-button {
      position: inherit !important;
      outline: none;
    }
  
    .header-search-mobile-device .header-search-form {
      background: transparent !important;
      border-bottom: 0px !important;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1170px) {
    .main_header .header-mobile .logo {
      min-width: 160px !important;
      width: 160px !important;
      padding-left: 13px;
    }
  
    ul.main-nav.nav_menu > li > a {
      font-size: calc(12px + 0.15vw);
      line-height: 52px;
    }
  
    .nav_menu .mega-menu {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  
  @media only screen and (min-width: 1171px) {
    ul.main-nav.nav_menu > li > a {
      padding: 0;
      font-size: 16px;
      line-height: 82px;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .main-menu-search .header-suggestions-panel {
      margin-top: 0px;
    }
  
    .header-mobile {
      display: flex;
      align-items: center;
    }
  
    .main-menu-search .header-suggestions-panel {
      overflow-y: auto;
    }
    /*Added Css for desktop view only for search/signin/cart section*/
    ul.main-nav.nav_search.mobile-only {
      display: none !important;
    }
    ul.main-nav.nav_search.desktop-show {
      display:block      
    }
  }
  
  @media only screen and (max-width: 520px) {
    .main-menu-search .header-suggestions-panel input[type="text"] {
      background-size: 5% !important;
    }
  }
  
  @media only screen and (min-width: 521px) and (max-width: 767px) {
    .main-menu-search .header-suggestions-panel input[type="text"] {
      background-size: 3% !important;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .main_header .header-mobile .logo {
      padding: 17px 10px 15px 25px;
    }
  
    .main-menu-search .header-suggestions-panel input[type="text"] {
      top: 20px !important;
      width: 95vw !important;
      transform: translate(2.5%, 1%);
    }
  
    .notification-badge {
      right: 53px !important;
      top: 8px !important;
    }
  
    .nav_search {
      position: absolute;
      z-index: 99;
      top: 0px;
    }
  }
  
  ul.main-nav li:focus,
  ul.main-nav li a:focus {
    outline: 1px dotted #000;
  }
  
  ul.main-nav li:active,
  ul.main-nav li a:active {
    outline: none !important;
  }
  
  .main_header .header-mobile .logo {
    outline: none ;
  }
  
  .header-logged-out {
    text-align: center;
  }
  
  .arrow-view-cart {
    background-image: url(../../../content/dam/kitchenaid/down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    transform: rotate(-90deg);
    width: 38px;
    height: 10px;
  }
  
  .location-navigate:hover a,
  .header-logged-out:hover a {
    color: #b52b36 !important;
  }
  
  .header-logged-out:hover img path {
    background-color: #b52b36;
    fill: #b52b36;
  }
  
  .mega-menu-rtc-mobile h2 {
    font-size: 19px !important;
    font-weight: 900 !important;
    line-height: 36px !important;
    font-family: Avenir-Heavy, Avenir, sans-serif;
  }
  
  @media only screen and (min-width: 992px) {
    .sub-menu-flex {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .sub-menu-flex li {
      width: 50%;
    }
  }
  
  .main-menu-svg-fill {
    width: 17px;
    height: 17px;
    margin: 0px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }
  
  .main-menu-svg-fill svg {
    width: 17px;
    height: 17px;
  }
  
  .main-menu-search .header-search-button .header-search-button-icon svg {
    width: 17px;
    height: 17px;
  }
  
  .signin-menu:hover .main-menu-svg-fill svg path,
  .location-menu:hover svg path,
  .cart-menu:hover svg path {
    fill: #b52b37;
    -webkit-tap-highlight-color: transparent;
  }
  
  .cart-menu:hover .cart-toggle {
    color: #b52b37 !important;
  }
  
  @media only screen and (min-width: 992px) {
    .overlay-search {
      display: none;
    }
  
    .close-modal-overlay {
      display: none;
    }
  
    .main-menu-search .header-suggestions-term {
      text-align: left;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      color: #2e2e2e;
    }
  
    .sale-box .navbar-ad-text-wrapper,
    .products_feature .navbar-ad-text-wrapper {
      width: 50%;
    }
  
    .mega-menu-rtc-mobile h2 {
      margin-top: 6px !important;
    }
  
    .inspiration_block .sub-menu-feature {
      margin-bottom: 0px;
    }
  
    .products_feature .navbar-ad-link-block.single-high {
      margin-bottom: 20px;
    }
  
    .support_feature_card
      .featured-card-desktop
      .navbar-ad-link-block.single-high {
      margin-top: 45px;
    }
  
    .header_collapse {
      padding: 0px 11px;
    }
  
    .main-menu-mb-location {
      display: none !important;
    }
  
    .main-menu-search
      .header-suggestions-panel
      .header-suggestions-bottom
      .arrow-feature {
      background-image: url(../../../content/dam/kitchenaid/down.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 20%;
      transform: rotate(-90deg);
      width: 45px;
      height: 45px;
    }
  }
  
  .signin-menu .header-account-nav {
    min-width: 166px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1170px) {
    ul.main-nav {
      padding-left: 15px;
    }
  
    .live_chat {
      padding-left: 20px;
    }
  
    .navbar-ad-headline {
      font-size: 12px;
    }
  }
  
  @media only screen and (min-width: 1171px) and (max-width: 1279px) {
    ul.main-nav.nav_menu > li {
      padding: 0px 25px 0px 0px;
    }
  }
  
  @media only screen and (min-width: 1280px) {
    ul.main-nav.nav_menu > li {
      padding: 0px 35px 0px 0px;
    }
  }
  
  @media only screen and (min-width: 1171px) {
    .main_header .header-mobile .logo {
      min-width: 200px !important;
      width: 200px !important;
      padding-left: 13px;
    }
  
    .main_header .header-mobile .logo {
      width: 240px !important;
    }
  
    ul.main-nav.nav_menu {
      padding-left: 66px;
    }
  }
  
  .sub-menu-lists {
    padding: 0px;
    list-style-type: none;
  }
  
  .navbar-ad-link-block {
    background-color: #eee;
  }
  
  .sub-menu-lists > li > a {
    color: #2e2e2e;
  }
  
  .sign-in-block .signin-form .form-error-items {
    text-align: left;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 10px;
  }
  
  .navbar-ad-image-wrapper img {
    transition: all 600ms ease-in-out;
    transform: scale(1);
  }
  
  .navbar-ad-link-block.single-high:hover .navbar-ad-image-wrapper img {
    transform: scale(1.04);
  }
  
  .user_links .create-account-page-link {
    display: block !important;
  }
  
  button.create-an-account {
    width: 100%;
  }
  
  .zip-code-error__icon {
    height: 12px;
    width: 12px;
    line-height: 14px;
  }
  
  .main-menu-search .header-search-form-v2 {
    width: 100%;
    height: 33px;
  }
  
  .main-menu-search .header-search-form .header-search-input {
    height: 33px;
    padding: 0px 25px 0px 10px;
    outline: none !important;
    line-height: 19px;
    margin-bottom: 1px;
  }
  
  .main-menu-search .header-suggestions-link {
    color: #000 !important;
    font-size: 10px !important;
    font-family: "Avenir-Roman", sans-serif;
  }
  
  .main-menu-search .header-suggestions-link:hover {
    cursor: pointer;
    color: #c41230 !important;
  }
  
  @media only screen and (max-width: 991px) {
  
    .main-menu-search .header-search-button .header-search-button-icon svg {
      margin: 0px auto;
      width: 17px;
      height: 17px;
    }
  
    .main-menu-search
      .header-search-button
      .header-search-button-icon
      svg:focus
      path,
    .main-menu-search
      .header-search-button
      .header-search-button-icon
      svg:hover
      path {
      fill: #b52b37;
    }
  
    .signin-menu
      .header-logged-in
      .header-account-menu
      .header-account-menu-trigger
      .header-account-menu-trigger-text {
      display: none !important;
    }
  
    .signin-menu
      .header-logged-in
      .header-account-menu
      .header-account-menu-trigger
      .header-account-menu-drop-icon {
      display: none !important;
    }
  
    .signin-menu
      .header-logged-in
      .header-account-menu
      .header-account-menu-trigger {
      margin: 0px auto;
    }
  
    .signin-menu
      .header-logged-in
      .header-account-menu
      .header-account-menu-trigger
      .header-account-menu-trigger-icon {
      margin-right: 0px;
    }
  
    .signin-menu
      .header-logged-in
      .header-account-menu
      .header-account-menu-link
      .header-account-icon {
      margin: 0px auto;
      margin-top: 1px;
    }
  
    .signin-menu
      .header-logged-in
      .header-account-menu
      .header-account-menu-trigger
      .header-account-menu-trigger-icon
      .icon {
      width: 16px !important;
      height: 16px !important;
    }
  
    .signin-menu .header-logged-in {
      width: 36.68px !important;
    }
  
    .signin-menu
      .header-logged-in
      .header-account-menu
      .header-account-menu-link {
      width: 36.68px !important;
    }
  
    .main_header .header-mobile .navigation_kitchen {
      overflow: hidden;
    }
  
    .main-menu-search .header-search-button-icon {
      top: 0px !important;
    }
  
    .main-nav.nav_search {
      right: 50px;
    }
  
    .main-menu-search .header-search-form {
      padding: 0px !important;
      height: auto !important;
    }
  
    .user_links.header-search-mobile-device {
      width: 45px !important;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    ul.main-nav > li.popover-items {
      width: 45px !important;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .main-menu-search .header-search-button {
      height: auto !important;
      right: 0 !important;
    }
  
    .signin-menu {
      order: 2;
    }
  
    .cart-menu {
      order: 3;
    }
  
    .main-menu-search {
      width: 35px !important;
      height: 10px;
    }
  
    .frm-sbmt-btn {
      display: none !important;
    }

    ul.main-nav.nav_menu {
      padding-bottom: 20vh;
    }
  
    ul.main-nav.nav_menu > li > a {
      color: #000000;
    }
  
    .content-block-wrapper {
      display: block;
      background-color: #eee;
      margin: 0px auto;
      position: relative;
      margin-top: 30px;
    }
  
    .close-modal-overlay {
      position: absolute;
      display: block;
      width: 30px;
      height: 30px;
      font-size: 25px;
      color: #2e2e2e;
      cursor: pointer;
      text-align: center;
      right: 0px;
    }
  
    #update-location-btn {
      width: 100%;
    }

    #update-location-btn :focus{
      outline: 1px solid #000;
    }
  
    .main_header .header-mobile .logo {
      height: 48px;
    }
  
    ul.main-nav > li > a {
      padding: 15px 13px 15px 15px !important;
    }
    /*Added Css for mobile view only for search/signin/cart section*/
    ul.main-nav.nav_search.mobile-only {
      display: block;
    }
    ul.main-nav.nav_search.desktop-show {
      display: none !important;
    }
  }
  
  .sign-in-block .form-req-message {
    display: none;
  }
  
  .mega-menu-rtc-mobile h2 {
    color: #a7373a !important;
  }
  
  .sign-in-dropdown .form-submit-error-on {
    font-size: 12px;
  }
  
  @media only screen and (max-width: 767px) {
    .main-menu-search .header-search-button {
      top: 17px !important;
      right: 2px !important;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu-search .header-search-button {
      top: 0px !important;
      right: 2px !important;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1024px) {
    ul.main-nav.nav_menu > li {
      padding: 0;
    }

    ul.main-nav.nav_menu > li > a {
      padding: 6px calc(5px + 0.5vw);
    }

    ul.main-nav > li.popover-items {
      height: 65px;
      padding-top: 16px;
    }
  
    .live_chat {
      padding-left: 20px;
    }
  
    .navbar-ad-headline {
      font-size: 12px;
    }
  }

  @media only screen and (min-width: 1025px) {
    ul.main-nav > li.popover-items {
      height: 82px;
      padding-top: 25px;
    }
  }
  
  
  @media only screen and (min-width: 1025px) and (max-width: 1170px) {
    ul.main-nav.nav_menu > li {
      padding: 0;
    }
    ul.main-nav.nav_menu > li > a {
      padding: 6px calc(5px + 0.6vw);
    }
  }
  
  @media only screen and (max-width: 991px) and (orientation: landscape) {
    .sidebarMenuInner {
      height: calc(100vh - 160px);
    }
  }
  
  .open-drop-down-menu {
    display: block !important;
  }
  
  .main-menu-search:hover
    .header-search-button
    .header-search-button-icon
    svg
    path {
    fill: #b52b36;
  }
  
  .main-menu-live-chat-modal {
    display: none !important;
  }

.signin-menu .header-account-menu-trigger {
  display: block !important;
  color: #2e2e2e !important;
  font-size: inherit !important;
  height: unset !important;
}

@media (min-width: 48rem){
  .signin-menu .header-account-menu-trigger {
    display: block !important;
  }
}

.user-location-modal-box .modal-close{
  top: 30px;
}

.user-location-modal-box{
  background-color: #eee;
}

.checkout-logo-v2 {
  width: 240px;
}

.sign-in-dropdown input{
  font-size: 100%;
}

@media screen and (device-aspect-ratio: 2/3) {
  .sign-in-dropdown input { font-size: 14px; }
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40/71) {
  .sign-in-dropdown input { font-size: 14px; }
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375/667) {
  .sign-in-dropdown input { font-size: 14px; }
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9/16) {
  .sign-in-dropdown input { font-size: 14px; }
}
.sign-in-dropdown input {
  font-size: 14px;
}

.checkout-account-v2 .popover__dropdown {
  top: 70px;
  right: 0px;
}

.checkout-account-v2 .sign-in-dropdown .login-registration-form input{
  margin-bottom: 10px;
}

.checkout-modal-overlay-v2 .login-registration-form input{
  margin-bottom: 10px;
}

.checkout-account-v2 .sign-in-dropdown .signin-cart-button {
  font-size: 14px;
}

.checkout-account-v2 .login-user-nav-dropdown {
  top: 40px;
  left: inherit;
  right: 0px;
}

@media only screen and (max-width: 424px){
  .checkout-guest-disclaimer-v2 {
    padding-top: 20px !important;
  }
}

@media only screen and (min-width: 425px) and (max-width: 991px){
  .checkout-help-link-v2 {
    padding-top: 20px !important;
    display: block;
  }
}

@media only screen and (max-width: 767px){
  .checkout-guest-disclaimer-v2 {
    font-size: 13px !important;
    padding-left: 5px !important;
  }

  .checkout-logo-v2{
    width: 210px;
  }
}

@media only screen and (max-width: 991px){
  .checkout-account-v2 .main-nav.nav_search {
      right: 0px;
      top: 18px;
      width: auto;
  }

  .checkout-sign-menu{
    margin: 15px;
  }
}

.checkout-modal-overlay-v2 .close-modal-overlay{
  display: none;
}

.d2cdp-header-checkout {
  z-index: 170 !important;
}

.sign-in-modal-box {
  background-color: #eee;
}

.sign-in-modal-box .modal-close {
  top: 30px;
}

.form-submit-error-on {
  font-size: 12px;
}

.aem-AuthorLayer-Edit .header .overlay-menu {
  height: unset;
}

.ps-map-control {
    z-index: 9 !important;
}
.prd-carousel__product-tile__prices .member-price-cta .member-price-cta__text {
    color: #c41230;
}
.prd-carousel__product-tile__title--link, .prd-carousel__product-tile__detail, .prd-carousel__product-tile__prices--small b, .prd-carousel-top-price {
    font-family: "Avenir", sans-serif;
}

.prd-carousel__product-tile__title--link, .prd-carousel-top-price-label {
    font-weight: 400;
}

.prd-carousel__product-tile__detail b {
    font-weight: 800;
}

.prd-carousel__product-tile__prices--small strong {
    font-weight: 200;
}

.prd-carousel-top-price.urgent-price {
    color: #c41230;
    font-size: 1.5rem;
    font-weight: 900;
}

.prd-carousel__urgent-price-message {
    font-weight: 900;
    line-height: .875rem;
}
.list-component{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 -10px;
}

.list-component .item_card{
  width: 100%;
  padding: 0 10px;
}

.list-component .item_card{
  flex: 0 0 33.33%;
  padding: 0 10px 20px;
}

.list-component .item_card .article-preview{
  background: #fff;
  border: 2px solid #D1D1D1;
  height: 100%;
}

.list-component .content-wrapper .content-info .cmp-list__title-link:hover .cmp-list__item-title{
  color: #9a132b;
}

.list-component .cmp-list__item-link{
  outline: none;
}

.list-component .article-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.list-component .image-wrapper{
  position: relative;
  height: 100%;
  width: 100%;
  flex: 0 0 230px;
  overflow: hidden;
}

.list-component .image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all .4s ease-in-out;
}

.list-component .cmp-list__item-link:hover .image-wrapper img{
  transform: scale(1.1);
}

.list-component .item_card .content-wrapper{
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  padding: 26px 23px;
}

.list-component .content-wrapper .content-info{
  padding-bottom: 10px;
}

.list-component .content-wrapper .content-info .cmp-list__item-title{
  display: block;
  font-family: "Avenir W01", "Avenir", sans-serif;
  font-size: 22px;
  line-height: 25px;
  text-transform: uppercase;
  color: #2E2E2E;
  font-weight: 900;
  padding: 10px 0;
}

.list-component .content-wrapper .content-info .cmp-list__item-description{
  font-size: 16px;
  line-height: 24px;
  color: #2E2E2E;
}

.list-component .content-wrapper .content-info .cmp-list__item-date{
  display: block;
  color: #2E2E2E;
  padding: 0px 0px 20px;
}

@media (max-width: 940px){
  .list-component .item_card {
    flex: 0 0 50%;
  }
}

@media (max-width: 660px){
  .list-component .item_card {
    flex: 0 0 100%;
  }
}

.compare-bar {
    background-color: #c41230;
}
@media (min-width: 48rem){
    .pdp-tray__price-section .pdp-tray__eco .pdp-tray__eco-text--decorated .ng-isolate-scope .eco-m .eco-c .eco-widget .eco-value .ecr-details .ng-binding {
        font-family: "Avenir-Roman",sans-serif;
        text-decoration: underline;
        text-decoration-skip-ink: none;
    }

    .pdp-tray__price-section .pdp-tray__eco .pdp-tray__eco-text--decorated .ng-isolate-scope .eco-m .eco-c .eco-widget .eco-value .ecr-details .ng-binding:hover {
        color: #c41239;
    }

    .plp-items.plp-items-list .plp-item--new .plp-item-eco .eco-m .eco-c .eco-widget {
        max-width: fit-content;
    }
    
}

.plp-item--new .plp-item-eco .eco-m .eco-c a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    font-family: "Avenir-Roman",sans-serif;
}

.plp-item--new .plp-item-eco .eco-m .eco-c a:hover {
    color: #c41239;
}

.pdp-tray__price-section .pdp-tray__eco .pdp-tray__eco-text--decorated .ng-isolate-scope .eco-m .eco-c .eco-widget .eco-value .ecr-details .ng-binding:hover {
    color: #c41239;
}
.compatibility__header {
  font-family: 'Avenir-Black', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
}
.compatibility__hint {
  font-family: "Avenir-Heavy", Avenir, sans-serif;
}
.compatibility__found-message {
  font-family: "Avenir-Heavy", Avenir, sans-serif;
}
.compatibility .modal-close-icon {
  color: #c41230;
}
@media (min-width: 48rem) {
  .compatibility__header {
    font-size: 1.875rem;
  }
}
@media (max-width: 47.937rem) {
  .compatibility.updated-filter-compatibility .updated-compatibility__status {
    border: 0;
  }
}

.breadcrumbs-list-item:after {
  content: url('../../../etc.clientlibs/digital-platform/clientlibs/common/resources/breadcrumb-caret-right.svg');
}
@media (max-width: 47.9375rem) {
  .footer-accordion-checkbox[type=checkbox] + .footer-accordion-title::after {
    content: url('../../../etc.clientlibs/digital-platform/clientlibs/common/resources/breadcrumb-caret-right.svg');
  }
}
@media (max-width: 47.9375rem) {
  .breadcrumb.breadcrumbs-container {
    display: block;
    visibility: visible;
    line-height: 0.75rem;
  }
}
@media (max-width: 47.938rem) {
  .breadcrumb.breadcrumbs-container .breadcrumbs {
    padding-bottom: 1rem;
  }
}
.breadcrumb .breadcrumbs .breadcrumbs-list-item {
  font-family: "Avenir-Roman", sans-serif;
}
.breadcrumb .breadcrumbs .breadcrumbs-list-item:after {
  background-color: #5e5e5e;
}
.breadcrumb .breadcrumbs .breadcrumbs-list-item.breadcrumbs-list-item-last {
  color: #2e2e2e;
}
.breadcrumb .breadcrumbs .breadcrumbs-list-item .breadcrumbs-link {
  text-decoration-color: #2e2e2e;
  font-family: "Avenir-Roman", sans-serif;
}

.button.professional-discount-modal__buttons--skip {
  background: #ffffff;
  color: #2e2e2e;
  border: 0.063rem solid #2e2e2e;
  margin-top: 1rem;
}
.button.professional-discount-modal__buttons--skip:hover {
  background: #ffffff;
  color: #2e2e2e;
}
.button.professional-discount-modal__buttons--skip,
.button.professional-discount-modal__buttons--yes {
  width: 6rem;
}
@media (min-width: 64rem) {
  #professional-discount-modal .modal-box {
    width: 31.5rem;
  }
}

.password-visual-meter__validation-item {
  font-family: "Avenir", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}
.password-visual-meter__validation-item--failed {
  color: #433736;
}
.password-visual-meter__validation-item--failed:before {
  background: #c41230;
}
.password-visual-meter__validation-item--success {
  color: #5c700e;
}
.password-visual-meter__validation-item--success:before {
  background: #5c700e;
}
.form-input.form-success {
  border-color: #5c700e;
}

.potential-promotions__disclaimer-cta-button {
  border: 0.0625rem solid #5e5e5e;
  font-family: "Avenir", sans-serif;
  line-height: 100%;
}
.potential-promotions__disclaimer-cta-button:focus {
  outline: 0;
}
.potential-promotions__icon path {
  fill: #222222;
}
.potential-promotions__message {
  background-color: #eeeeee;
}
.potential-promotions__text {
  color: #2e2e2e;
  font-family: "Avenir", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
}
.potential-promotions__close-button {
  background: #c80a33;
}
.potential-promotions__close-button path {
  fill: #ffffff;
}
.potential-promotions__disclaimer-text {
  color: #2e2e2e;
  font-family: "Avenir", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  box-shadow: 0.0625rem 0.0625rem 0.5rem 0 rgba(0, 0, 0, 0.25);
}
.potential-promotions__disclaimer-text-index {
  border: 0.063rem solid #5e5e5e;
  line-height: 100%;
  letter-spacing: unset;
}
@media (min-width: 48rem) {
  .potential-promotions__text {
    font-size: 0.875rem;
  }
}
.plp-item .plp-item-meta-data .potential-promotions {
  margin-top: 0.625rem;
}
.plp-item .potential-promotions__message {
  text-align: center;
}
.plp-item .potential-promotions__disclaimer-text {
  padding: 1rem;
}
.plp-item__potential-promotions-title {
  color: #2e2e2e;
  font-family: "Avenir", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
}

.member-price-cta.header-account-link .member-price-cta__text__text {
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 0.75rem;
  color: #c41239;
  text-transform: uppercase;
  padding-top: 0.125rem;
}
.member-price-cta.header-account-link .member-price-cta__text__user-icon {
  background-color: #c41239;
  -webkit-mask-image: url("../../../etc.clientlibs/kitchenaid/clientlibs/global/resources/images/user-icon.svg");
  mask-image: url("../../../etc.clientlibs/kitchenaid/clientlibs/global/resources/images/user-icon.svg");
}
.member-price-cta.header-account-link .member-price-cta__text__arrow-icon {
  background-color: #c41239;
  -webkit-mask-image: url("../../../etc.clientlibs/kitchenaid/clientlibs/global/resources/images/arrow-icon.svg");
  mask-image: url("../../../etc.clientlibs/kitchenaid/clientlibs/global/resources/images/arrow-icon.svg");
}
.member-price-cta.header-account-link .member-price-cta__text.text-v2:hover > .member-price-cta__text__user-icon,
.member-price-cta.header-account-link .member-price-cta__text.text-v2:hover > .member-price-cta__text__arrow-icon {
  background-color: #9b132b;
}
.member-price-cta.header-account-link .member-price-cta__text.text-v2:hover > .member-price-cta__text__text {
  color: #9b132b;
}

.marketplace-product-label .marketplace-product__vendor-related-message--modal-trigger {
  text-decoration: underline;
  cursor: pointer;
}
.vendors-related-message-modal__overlay {
  background-color: rgba(35, 35, 35, 0.6);
  display: flex;
  justify-content: center;
  overflow: auto;
  z-index: 1050;
  flex-wrap: wrap-reverse;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-content: center;
  position: fixed;
}
.vendors-related-message-modal__container {
  background-color: #ffffff;
  width: 37rem;
  max-width: 80%;
  max-height: 80%;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 400;
  padding: 2.5rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.vendors-related-message-modal__container:focus {
  outline: none;
}
@media (max-width: 47.938rem) {
  .vendors-related-message-modal__container {
    padding: 2rem;
  }
}
.vendors-related-message-modal__close-button {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}
.vendors-related-message-modal__close-button svg {
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #ffffff;
  color: #000000;
}
.vendors-related-message-modal__content {
  font-family: "Avenir", sans-serif;
  color: #000000;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media (max-width: 47.938rem) {
  .vendors-related-message-modal__content {
    row-gap: 1.25rem;
  }
}
.vendors-related-message-modal__header {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.vendors-related-message-modal__header--title {
  font-family: 'HelveticaNeue', sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: #000000;
}
@media (max-width: 47.938rem) {
  .vendors-related-message-modal__header--title {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.vendors-related-message-modal__header--additional-info {
  line-height: 19.6px;
  color: #000000;
}
.vendors-related-message-modal__contacts {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (max-width: 47.938rem) {
  .vendors-related-message-modal__contacts {
    row-gap: 1rem;
  }
}
.vendors-related-message-modal__contacts--key {
  font-weight: 400;
  line-height: 14px;
  font-family: 'Avenir-Heavy', sans-serif;
  color: #000000;
}
.vendors-related-message-modal__contacts--value {
  font-weight: 400;
  font-family: 'Avenir', sans-serif;
  line-height: 19.6px;
  color: #000000;
}
@media (max-width: 47.938rem) {
  .vendors-related-message-modal__contacts--value {
    display: block;
    margin: 0.25rem 0 0 0;
    word-wrap: break-word;
  }
}
.vendors-related-message-modal__qna {
  line-height: 19.6px;
  color: #000000;
}
.vendors-related-message-modal__qna--mailto {
  color: #000000;
  text-decoration: underline;
}
.vendors-related-message-modal__qna--mailto:hover {
  color: #000000;
}

.plp-item-energy {
  position: relative;
  top: 0;
}

.plp-item-price-line-1 {
  font-family: "Avenir-Black", sans-serif;
}

.plp-compare-checkbox input:checked ~ .check-mark {
  background-color: #c41230;
  border: none;
}

.plp-compare-checkbox .check-mark:after {
  border-color: #ffffff;
}

h1 {
    margin: .3em 0 .2em;
}

.plp-actions--prominent .plp-actions-more {
  border-radius: 0;
  border: 0.063rem solid;
}

.facet-toggle-input:checked + .facet-toggle-label:before {
  background: #5c700e;
}

.plp-facet-group-container .plp-facet-group-title {
  margin-top: 0.4rem;
}

.facet__title-container .facet-toggle-label {
  margin-top: 0;
}

.plp-facets-active-item-value,
.plp-facets-active-title,
.plp-facets-active-clear {
    font-size: .75rem;
    font-family: "Avenir-Black", sans-serif;
    line-height: .8125rem;
}

.plp-facets-active-title {
    font-weight: 900;
    text-transform: uppercase;
}

.plp-facets-active-item-remove .icon {
    width: .5625rem;
    height: .5625rem;
}

.plp-facets-active-item {
    padding: .25rem .75rem ;
}

.plp-facets-active-items {
    background-color: #eee;
}

.plp-facet-range-btn {
    background: #c41239;
    text-transform: uppercase;
}

.plp-item-price .member-price-cta .member-price-cta__text {
    color: #c41230;
}

.badge__topseller {
    line-height: 24px;
    padding-left: 10px;
    position: absolute;
    top: -13px;
    background: #C41230;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    min-width: 88px;
    font-size: 12px;
    height: 24px;
    font-family: Helvetica;
    font-weight: 700;
    left: -8px;
}
.badge__topseller:before {
    content: "";
    bottom: -7px;
    left: 0;
    border-top: 7px solid black;
    border-left: 7px solid transparent;
    position: absolute;
}
.badge__topseller:after {
    height: 0;
    content: "";
    position: absolute;
    top: 0px;
    border: 10px solid #C41230;
    border-right-color: transparent;
    border-right-width: 6px;
    right: -13px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 7px;
}
.badge__recentlyviewed {
    line-height: 24px;
    position: absolute;
    left: -8px;
    top: 69px;
    background: #E2E2E5;
    text-align: center;
    text-transform: capitalize;
    color: #000;
    min-width: 103px;
    font-family: Helvetica;
    font-size: 12px;
    font-weight: 700;
    padding-left: 9px;
    z-index: 9;
}
.badge__recentlyviewed:before {
    content: "";
    bottom: -7px;
    left: 0;
    border-top: 7px solid black;
    border-left: 7px solid transparent;
    position: absolute;
}
.badge__recentlyviewed:after {
    height: 0;
    content: "";
    position: absolute;
    top: 0px;
    border: 10px solid #E2E2E5;
    border-right-color: transparent;
    border-right-width: 6px;
    border-right-width: 6px;
    right: -13px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 7px;
}
.plp-facets-panel-open .plp-facet-panel-wrapper {
    z-index: 10000;
}

.plp-items .plp-item--new .plp-item-price .plp-item-price-v1_urgency-message {
    font-family: "Avenir",sans-serif;
    font-weight: 800;
    line-height: 19.12px;
    display: none;
    gap: 2px;
    font-size: 11px;
    color: #000;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    width: max-content;
  } 

  .plp-items.plp-items-list .plp-item--new .plp-item-price {
    padding: 0;
  }

  .plp-items.plp-items-list .plp-item--new .plp-item-price .plp-item-price-v1_urgency-message {
    justify-content: center;
    margin: 0 auto;
  }

  .plp-items.plp-items-grid .plp-item--new .plp-item-price .plp-item-price-v1_urgency-message {
    justify-content: flex-start;
  }

  .plp-items .plp-item--new .plp-item-price .plp-item-price-v1_urgency-message .plp-item-price-v1_urgency-icon {
    min-width: auto;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .plp-items .plp-item--new .plp-item-price .plp-item-price-line-1.single-price-line.urgency-single-price {
    font-family: "Avenir",sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    text-align: left;
    color: #C41230;
  }

@media (max-width: 1024px) {
    .plp-items.plp-items-grid .plp-item-price {
        display: flex;
        justify-content: left;
    }
}

@media only screen and (min-width:768px) {
.plp-items.plp-items-list .badge__recentlyviewed {
    top: 26px;
}
p.badge-new{
    top:-11px;
}
.plp-items-grid .plp-item-box p.badge-new {
    top: 12px;
}
}

.plp-items .plp-item--new .plp-item-price .plp-item-price-line-1 {
    color: #C41230;
    font-family: "Avenir", sans-serif;
    font-weight: 800;
    line-height: 1.25rem;
}

.plp-items .plp-item--new .plp-item-price .plp-item-price-line-1 .price-label {
    font-size: .875rem;
}

.plp-items .plp-item--new .plp-item-price .plp-item-price-line-1 .price-value {
    font-size: 1.25rem;
}

.plp-items .plp-item--new .plp-item-price .plp-item-price-line-1.single-price-line {
    color: #2E2E2E;
    font-weight: 900;
    font-size: 1.25rem;
}

.plp-items .plp-item--new .plp-item-price .plp-item-price__save {
    margin-left: 0;
}

.plp-items .plp-item--new .plp-item-price .plp-item-price__save .plp-item-price-line-2 {
    font-family: "Avenir", sans-serif;
    font-size: .75rem;
    font-weight: 400;
    line-height: .75rem;
}

.plp-items .plp-item--new .plp-item-price .plp-item-price__save .plp-item-price__save-value {
    font-family: "Avenir", sans-serif;
    font-size: .75rem;
    font-weight: 800;
    line-height: .75rem;
    margin-left: 0.25rem;
}

p.badge__manual {
    font-family: "Avenir-Black", sans-serif;
    font-weight: 800;
}

p.badge__bestSeller, p.badge__topRated {
    font-weight: 800;
}

p.badge__manual.badge-primary, p.badge__bestSeller.badge-primary, p.badge__topRated.badge-primary {
    background: #000000;
    color: white;
}

p.badge__manual.badge-primary:after, p.badge__bestSeller.badge-primary:after, p.badge__topRated.badge-primary:after {
    border-color: #000000;
    border-right-color: transparent;
}

p.badge__manual.badge-secondary, p.badge__bestSeller.badge-secondary, p.badge__topRated.badge-secondary {
    background: #5E5E5E;
    color: white;
}

p.badge__manual.badge-secondary:after, p.badge__bestSeller.badge-secondary:after, p.badge__topRated.badge-secondary:after {
    border-color: #5E5E5E;
    border-right-color: transparent;
}

p.badge__manual.badge-tertiary, p.badge__bestSeller.badge-tertiary, p.badge__topRated.badge-tertiary {
    background: #E2E2E5;
    color: black;
}

p.badge__manual.badge-tertiary:after, p.badge__bestSeller.badge-tertiary:after, p.badge__topRated.badge-tertiary:after {
    border-color: #E2E2E5;
    border-right-color: transparent;
}

.plp .star-rating__icon {
    pointer-events: none;
}

.plp .icon.star {
    fill: #B20E26;
}
.plp .icon.empty-star {
    fill: #BFBFBF;
}

.plp-facet {
    padding: .188rem 0;
}

.plp-facet-Ratings {
    height: 1.25rem;
    padding-top: .125rem;
}

.plp-facet-Ratings .star-rating {
    margin-right: 0;
    display: flex;
}

.plp-facet-Ratings .star-rating__icon {
    width: 1.125rem;
}

.plp-facets-active-item .plp-facet-Ratings {
    height: .75rem;
    padding-top: 0;
    margin-top: -0.125rem;
}

.plp-facets-active-item .plp-facet-Ratings .star-rating {
    margin-left: .5rem;
    margin-right: .5rem;
}

.plp-facets-active-item .plp-facet-Ratings .star-rating__icon {
    width: .875rem;
}

.plp-facet::after {
    display: none;
}

p.badge-new{
  color: #C41239;
  font-family: 'Avenir', sans-serif;
  border: 1px solid #C41239;
  line-height: 19.6px;
}

@media (max-width:767px) {
  p.badge-new{
    top:7%;
  }

  .plp-items.plp-items-list .plp-item--new .plp-item-price .plp-item-price-v1_urgency-message {
    margin: 10px 0;
  }
}
.plp[data-plp-new-design-enabled="false"] #plp-fast-filters {
    display: none;
  }
.plp-item--new .plp-item-name,
.plp-item--new .plp-item-stock,
.plp-item--new .plp-item-price,
.plp-item--new .plp-item-model-title,
.plp-item--new .plp-item-specs strong,
.plp-item--new .plp-item-price-line-1,
.plp-item--new .plp-item-free-shipping,
.plp-item--new .plp-where-to-buy-button,
.plp-item--new .plp-item-price__save-value {
    font-family: "Avenir-Black", sans-serif;
}

.plp-item--new .plp-item-price-line-2 {
    font-family: "Avenir-Roman", sans-serif;
}

.plp-item--new .plp-item-name,
.plp-item--new .plp-item-model-title {
    color: #2e2e2e;
}

.plp-item--new .plp-item-model {
    border-color: #2e2e2e;
}

.plp-item--new .plp-item-free-shipping,
.plp-item--new .plp-item-price__save-value {
    color: #5c700e;
}

.plp-item--new .plp-item-price .plp-item-price-line-1.plp-item-price-line-urgency {
    font-size: 1.5rem;
    font-weight: 900;
}

.plp-item--new .plp-item-price.plp-item-price-urgent .plp-item-price_urgency-message {
    font-weight: 900;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    line-height: .875rem;
}

@media all and (min-width: 64rem) {
    .plp-item--new .small-font-size .plp-item-price-line-1 {
        font-weight: 900;
        max-width: 65%;
    }

    .plp-item--new .small-font-size .plp-item-price__save {
        padding-bottom: .1rem;
    }
}

.add-to-package-enabled .plp-item-saves .plp-compare-checkbox .check-mark{
    border: 2px solid #2e2e2e;
}
.add-to-package-enabled .plp-item-saves .plp-item-wishlist-trigger .icon{
    color: #2e2e2e;
}
.add-to-package-enabled .plp-item-saves .plp-item-wishlist-trigger:hover .icon{
    color: #9a132b;
}
.wf-exp .add-to-package-enabled .plp-item-saves{
    display: flex!important;
}
.add-to-package-enabled .plp-item-saves .plp-compare-checkbox, 
.add-to-package-enabled .plp-item-saves .plp-item-wishlist-trigger, 
.add-to-package-enabled .plp-item-saves .plp-item-wishlist-trigger .wishlist-btn__text, 
.add-to-package-enabled .plp-item-saves .plp-item-addToPackage .add-to-package-cta {
    font-family: 'Avenir-Heavy', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: normal;
    text-transform: uppercase;
}
.add-to-package-enabled .plp-item-saves .plp-item-addToPackage .pc-icon-plus {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

