/** Shopify CDN: Minification failed

Line 47:0 Unexpected "{"
Line 47:1 Expected identifier but found "%"
Line 47:30 Unexpected "1"
Line 47:122 Expected identifier but found "%"
Line 55:0 Unexpected "{"
Line 55:1 Expected identifier but found "%"
Line 55:30 Unexpected "1"
Line 55:117 Expected identifier but found "%"
Line 63:0 Unexpected "{"
Line 63:1 Expected identifier but found "%"
... and 14 more hidden warnings

**/
.mega-menu {
  position: static;
}

.mega-menu__content {
  background-color: rgb(var(--color-background));
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  left: 0;
  overflow-y: auto;
  padding-bottom: 2.4rem;
  padding-top: 2.4rem;
  position: absolute;
  right: 0;
  top: 100%;
}

.shopify-section-header-sticky .mega-menu__content {
  max-height: calc(100vh - var(--header-bottom-position-desktop, 20rem) - 4rem);
}

.header-wrapper--border-bottom .mega-menu__content {
  border-top: 0;
}

.js .mega-menu__content {
  opacity: 0;
  transform: translateY(-1.5rem);
}

{% comment %} Change on April 1, 2023 by David Allen-Lawrence at POLARcreo add border to bottom of mega menu from 6 to 4 {% endcomment %}
.mega-menu[open] .mega-menu__content {
  opacity: 1;
  transform: translateY(0);
  border-bottom: 1px solid #003591;

}

{% comment %} Change on April 1, 2023 by David Allen-Lawrence at POLARcreo change grid template columns from 6 to 4 {% endcomment %}
.mega-menu__list {
  display: grid;
  gap: 2.4rem 4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

{% comment %} Change on April 1, 2023 by David Allen-Lawrence at POLARcreo change link colors and other styles {% endcomment %}
.mega-menu__link {
  color: #7a7a7a;
  display: block;
  font-size: 1.5rem;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  text-decoration: none;
  transition: color var(--duration-short) ease;
  word-wrap: break-word;
}

{% comment %} Change on April 1, 2023 by David Allen-Lawrence at POLARcreo add font-weight and color{% endcomment %}
.mega-menu__link--level-2 {
  color: #003591;
  font-size: 1.4rem;
  font-weight: 600;
}

.mega-menu__link--level-2:not(:only-child) {
  margin-bottom: 0.8rem;
}

.header--top-center .mega-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0;
}

{% comment %} Change on April 1, 2023 by David Allen-Lawrence at POLARcreo change width from 16 to 20 {% endcomment %}
.header--top-center .mega-menu__list > li {
  width: 20%;
  padding-right: 2.4rem;
}

{% comment %} Change on April 1, 2023 by David Allen-Lawrence at POLARcreo change color and text decoration {% endcomment %}
.mega-menu__link:hover,
.mega-menu__link--active {
  color: #003591;
  text-decoration: none;
}

.mega-menu__link--active:hover {
  text-decoration-thickness: 0.2rem;
}

.mega-menu .mega-menu__list--condensed {
  display: block;
}

.mega-menu__list--condensed .mega-menu__link {
  font-weight: normal;
}
