/* colors */
/* The CTA and Main colors are pulled from site templates created by the Design team. These colors vary per OEM or group. */
/* CTA stands for Call-to-Action. The CTA color is often a bright, eye-catching color like red or light blue, used for links and important buttons. */
/* The Main color is often a dark, muted color like black or navy blue, used for backgrounds and less important buttons. */
/* fonts */
/* breakpoints */
/* borders */
/* local variables */
/* TODO: remove if border color classes are added to site templates */
/* Construct a media query that applies to multiple ranges of breakpoints. First and last argument must either be a single number or a list of 2 numbers. */
/* Make sure to give the truncated element a width. If the truncated element has display: flex or inline-flex, add min-width: 0 to the truncated element's immediate parent. If the flex truncated element is nested inside one or more other flex containers, also add min-width: 0 to the nearest ancestor element that does NOT have display: flex or inline-flex */
/* Works well for either single elements, or multiple elements grouped under the same parent */
/* Remove default styling from button element */
/* Good for adding color to an SVG-based image. Adds an ::after of the intended color and positions it over the element with a grid. NOTE: doesn't just use position: absolute because Safari doesn't like it. */
/* Good for adding color to an SVG-based image. Adds an ::after of the intended color and positions it over the element with a grid. Uses the SVG itself as a mask. NOTE: doesn't just use position: absolute because Safari doesn't like it. Expected code structure: <div class="icon" style="{the image url}"><img src="{the image url}"></div> */
.mega-menu-card {
  display: flex;
  align-items: center;
  gap: 1.2em;
}
@media (min-width: 992px) {
  .mega-menu-card {
    flex-direction: column;
    align-items: unset;
  }
}
.mega-menu-card__cta {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.2em;
  cursor: pointer;
}
.mega-menu-card__cta:focus {
  outline: 2px solid #333 !important;
  outline-offset: 1px !important;
}
@media (min-width: 992px) {
  .mega-menu-card__cta {
    flex-direction: column;
    align-items: unset;
  }
}
.mega-menu-card__image-container {
  width: min-content;
  flex: 0 0 auto;
  position: relative;
  display: flex;
  gap: 1.2em;
  align-items: center;
}
.mega-menu-card__image {
  max-width: 100px;
  max-height: 56px;
  object-fit: contain;
  object-position: 0% 50%;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .mega-menu-card__image {
    max-width: 180px;
    max-height: 101px;
  }
}
.mega-menu-card__image-overlay {
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #333;
}
@media (min-width: 992px) {
  .mega-menu-card__image-overlay {
    font-size: 1.6em;
  }
}
.mega-menu-card__title {
  font-size: 1.6em;
  font-weight: bold;
  color: #333;
  /* Removing margin from bootstrap.css */
  margin-top: unset;
  margin-bottom: unset;
}
.mega-menu-card__price {
  display: none;
  font-size: 1.6em;
  margin-top: 8px;
  color: #333;
}
@media (min-width: 992px) {
  .mega-menu-card__price {
    display: block;
  }
}
.mega-menu-card__no-stock {
  position: absolute;
  padding: 0.3em 0.6em;
  background-color: #eaecf0;
  border-radius: 0.5em;
}
.mega-menu-card__no-stock--mobile {
  margin-top: 0.4em;
}
@media (min-width: 992px) {
  .mega-menu-card__no-stock--mobile {
    display: none;
  }
}
.mega-menu-card__no-stock--desktop {
  display: none;
}
@media (min-width: 992px) {
  .mega-menu-card__no-stock--desktop {
    display: block;
    top: 0px;
    right: 0px;
  }
}

@media (max-width: 991px) {
  .mega-menu-used .mega-menu-card:nth-of-type(n+4) {
    display: none;
  }
}

.mega-menu-breadcrumbs {
  font-size: 1.4em;
  display: none;
  /* Removing margin from bootstrap.css */
  margin-top: unset;
  margin-bottom: unset;
}
@media (min-width: 992px) {
  .mega-menu-breadcrumbs {
    display: unset;
  }
}
.mega-menu-breadcrumbs__cta {
  color: #333;
}
.mega-menu-breadcrumbs__cta:hover {
  color: #333;
}
.mega-menu-breadcrumbs__cta:focus {
  outline: 2px solid #333 !important;
  outline-offset: 1px !important;
}
.mega-menu-breadcrumbs__learn-more {
  margin-left: 10px;
  color: #333;
}
.mega-menu-breadcrumbs__learn-more:hover {
  color: #333;
}
.mega-menu-breadcrumbs__learn-more:focus {
  outline: 2px solid #333 !important;
  outline-offset: 1px !important;
}
.mega-menu-breadcrumbs__learn-more--blue {
  color: #007DA3;
}
.mega-menu-breadcrumbs__learn-more--blue:hover {
  color: #007DA3;
}
.mega-menu-breadcrumbs__check-availability {
  cursor: pointer;
  color: #333;
}

.static-cta-card__cta {
  display: block;
  color: #333;
  height: fit-content;
  border: 1px solid #333;
  padding: 2em 1.6em 1.6em 1.6em;
  box-shadow: 0.4em 0.4em #333;
  margin-top: 0.4em;
}
.static-cta-card__cta:hover {
  text-decoration: none;
  color: #5c5c5c;
}
.static-cta-card__cta:focus {
  outline: 2px solid #333 !important;
  outline-offset: 1px !important;
}
@media (min-width: 992px) {
  .static-cta-card__cta {
    max-width: 192px;
    margin-top: unset;
  }
}
.static-cta-card__title {
  font-weight: bold;
  font-size: 1.8em;
}
.static-cta-card__text {
  font-size: 1.6em;
}
.static-cta-card--dark {
  color: #ffffff;
  background-color: #333;
}
.static-cta-card--dark:hover {
  color: #f4f5f7;
}
.static-cta-card__disclaimer {
  display: none;
  font-size: 1.3em;
  margin-top: 16px;
  color: #333;
}
@media (min-width: 992px) {
  .static-cta-card__disclaimer {
    display: block;
  }
}

.mega-menu-used .static-cta-card__cta {
  box-shadow: 0.4em 0.4em #5c5c5c;
}
@media (min-width: 992px) {
  .mega-menu-used .static-cta-card__cta {
    min-height: 135px;
  }
}

.mega-menu {
  width: 280px;
  padding: 1.6em 2em 2em 2em;
  font-size: 10px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .mega-menu {
    width: 824px;
    padding: 2.8em 3.2em 3.6em 3.2em;
  }
}
.mega-menu__header {
  display: none;
  margin-bottom: 2.8em;
}
@media (min-width: 992px) {
  .mega-menu__header {
    display: block;
  }
}
.mega-menu__header-title {
  font-size: 1.8em;
  margin-top: unset;
  margin-bottom: unset;
}
.mega-menu__header-link {
  font-size: 1.6em;
  margin-left: 1.6em;
}
.mega-menu__card-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 992px) {
  .mega-menu__card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.8em;
    column-gap: 0;
  }
}

@media (min-width: 992px) {
  .mega-menu.mega-menu-used {
    width: 856px;
  }
  .mega-menu.mega-menu-used .mega-menu__card-container {
    column-gap: 1.4em;
    grid-template-columns: repeat(4, 1fr);
  }
}

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