/** Shopify CDN: Minification failed

Line 17:0 Unexpected "}"
Line 254:8 Unexpected "{"
Line 254:20 Expected ":"

**/
@media screen and (min-width: 990px) {

  .header__menu-item {
    font-size: 1.4rem !important;
  }}

  .header__heading-link {
    padding: 0 !important;
  }
}
 @media screen and (min-width: 990px) {

  /* Ensure the logo container is not compressed */
  .header__heading-logo-wrapper {
    max-width: 350px !important;
    width: auto !important;
  }
  .header__heading-logo {
    width: 100% !important;
    height: auto !important;
    display: block!important;
  }

  /* For header icons, use a flex container with gap to add spacing */
  .header__icons {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem!important; 
  }

  /* Set the icon sizes explicitly without adding extra margin */
  .header__icon .icon {
    width: 1.7rem !important; 
    height: 1.7rem !important;
  }

  .header:not(.drawer-menu).page-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.menu-drawer .icon.icon-account path {
  fill: #000 !important;
}
@media screen and (min-width: 990px) {
  .mega-menu {
    position: relative !important;
    z-index: 1 !important;
  }
  /* Ensure your mega menu content uses the light blue background, with extra breathing room */
  .mega-menu__content {
    background-color: #effafa !important;  /* set your desired light blue */
    padding: 1.5rem 2rem !important; /* 1.5rem top/bottom, 2rem left/right for more space */
    margin-top: 0.5rem !important; /* if you want a bit more gap from the parent */
    position: absolute !important;
    top: calc(100% + 0.5rem) !important;
    left: 0 !important;
    transform: none !important;
    width: auto !important;
    min-width: fit-content !important;
    max-width: none !important;
    right: auto !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    overflow: visible !important;
  }
}

  .mega-menu__list {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .mega-menu__link {
    display: block !important;
    padding: 0.5rem 1rem !important;
    color: #000 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .mega-menu__link:hover {
    color: #005A91 !important;
  }
.mega-menu__thumbnail, .menu-drawer__thumbnail {
 display: inline-block;
  vertical-align: middle;
  width: 75px; /* adjust the size as needed */
  height: 75px;
  border-radius: 50%;       /* Creates the circular shape */
  object-fit: cover;        /* Ensures the image covers the container area */
  margin-right: 0.5rem;     /* Spacing between the image and text */
}


/* Variant Swatch Label */

.swatchlabel {
  position: absolute;
background: #000000;
  border-radius: 4px;
    bottom: -2px;
   left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  height: 11px;
  line-height: 11px;
  width: 28px;
  margin: 0;
  text-align: center;
  z-index: 1;
}
/*** Global styles ***/

/* Center elements with IDs starting with "Nova--" */
[id^="Nova--"] {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  /* Reset default margins and paddings */
  margin: 0;
  padding: 0;
  z-index: 1;
}

/* Apply a consistent box-sizing to elements in Nova sections */
.nova__section * {
  box-sizing: border-box !important;
}

/* Ensure images do not exceed their container's width */
.nova__section img {
  max-width: 100%;
}

/* Hide any fixed elements that begin with "nova_-_fixed" */
[class^="nova_-_fixed"] {
  display: none;
}

/* Headings resets */
.nova__section h1,
.nova__section h2,
.nova__section h3,
.nova__section h4,
.nova__section h5,
.nova__section h6 {
  color: inherit;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

/* Rich text styling */
.nova__rte,
.nova__rte p,
.nova__rte a,
.nova__rte a:hover,
.nova__rte a:visited,
.nova__rte a:focus {
  color: inherit;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

.nova__rte a {
  text-decoration: underline;
}

.nova__rte p {
  margin-bottom: 0.8em;
}

.nova__rte p:last-of-type {
  margin-bottom: 0;
}

.nova__rte ul {
  margin: 1em 0;
  padding-left: 40px;
}

.nova__rte li {
  list-style: unset;
}

/* Absolute link used for overlay purposes */
.nova__absolute-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 2;
}

/* Relative positioning helper */
.nova__relative {
  position: relative;
}

/* Headings with the nova__heading class */
h1.nova__heading,
h2.nova__heading,
h3.nova__heading,
h4.nova__heading,
h5.nova__heading,
h6.nova__heading {
  margin-bottom: 1.2rem;
}

/* Text elements */
.nova__text {
  margin: 0;
  color: inherit;
}

/* Button styles */
.nova__button {
  font-family: inherit;
  cursor: pointer;
  text-transform: unset;
  -webkit-appearance: none;
}

.nova__button::after {
  display: none;
}

/* Remove native styles from form inputs */
.nova__section button,
.nova__section input[type="text"],
.nova__section input[type="email"] {
  -webkit-appearance: none;
}

/* Sizer container: Updated to force full width */
#Nova--{{ section_id }} .nova__sizer {
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  /* Removing max-width constraint so the sidebar can expand */
  max-width: none;
}

/*** Height Sizers ***/
.nova__height-sizer {
  display: table;
}

.nova__height--x-small { height: 125px; }
.nova__height--small   { height: 300px; }
.nova__height--medium  { height: 475px; }
.nova__height--large   { height: 650px; }
.nova__height--x-large { height: 775px; }

@media only screen and (max-width: 767px) {
  .nova__height--x-small { height: 94px; }
  .nova__height--small   { height: 225px; }
  .nova__height--medium  { height: 357px; }
  .nova__height--large   { height: 488px; }
  .nova__height--x-large { height: 582px; }
}

/*** Videos ***/
.nova__video__wrapper video[loading=lazy],
.nova__background-video[loading=lazy] {
  opacity: 1;
}

/*** Images ***/
.nova__image__wrapper {
  display: grid;
  position: relative;
  margin: 0;
}

.nova__image__wrapper svg {
  display: block;
}

.nova__image__wrapper:not(.nova__image__wrapper--contain) svg {
  width: inherit;
  height: inherit;
}

.nova__image__wrapper > * {
  grid-area: 1 / 1 / 2 / 2;
}

.nova__image__wrapper img,
.nova__image__wrapper .nova__placeholder {
  object-fit: cover;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
}

.nova__image__wrapper--contain img {
  object-fit: contain;
}

.nova__image-link {
  display: block;
  overflow: hidden;
}

/*** Widths ***/
div.Nova__widths {
  display: inline-block !important;
  vertical-align: top;
  font-size: 0;
  margin: 0 auto;
}

div.Nova__widths * {
  font-size: initial;
}

@media (max-width: 767px) {
  div.Nova__widths { width: 100% !important; }
}

/*** Flex and Grid Utilities ***/
/* Flex utility classes */
.nova__flex { display: flex; }
.nova__flex-wrap { flex-wrap: wrap; }
.nova__flex--1-per-row .nova__flex-item { flex-basis: 100%; }
.nova__flex--2-per-row .nova__flex-item { flex-basis: 50%; }
.nova__flex--3-per-row .nova__flex-item { flex-basis: 33.3333%; }
.nova__flex--4-per-row .nova__flex-item { flex-basis: 25%; }
.nova__flex--5-per-row .nova__flex-item { flex-basis: 20%; }
.nova__flex--6-per-row .nova__flex-item { flex-basis: 16.6666%; }
.nova__flex--7-per-row .nova__flex-item { flex-basis: 14.3%; }
.nova__flex--8-per-row .nova__flex-item { flex-basis: 12.5%; }
.nova__flex-row-reverse { flex-direction: row-reverse; }

/* Grid utilities */
.nova__grid {
  display: grid;
}
.nova__grid--1-per-row { grid-template-columns: 1fr; }
.nova__grid--2-per-row { grid-template-columns: 1fr 1fr; }
.nova__grid--3-per-row { grid-template-columns: 1fr 1fr 1fr; }
.nova__grid--4-per-row { grid-template-columns: 1fr 1fr 1fr 1fr; }
.nova__grid--5-per-row { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
.nova__grid--6-per-row { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; }
.nova__grid--7-per-row { grid-template-columns: repeat(7, 1fr); }
.nova__grid--8-per-row { grid-template-columns: repeat(8, 1fr); }

/* Justification and alignment utilities */
.nova__justify-left { justify-content: flex-start; text-align: left; }
.nova__justify-center { justify-content: center; text-align: center; }
.nova__justify-right { justify-content: flex-end; text-align: right; }
.nova__justify-justify { justify-content: space-between; text-align: justify; }
.nova__align-top { align-items: flex-start; }
.nova__align-center { align-items: center; }
.nova__align-bottom { align-items: flex-end; }

/* Text alignment helpers */
.nova__text-alignment-left { text-align: left; }
.nova__text-alignment-center { text-align: center; }
.nova__text-alignment-right { text-align: right; }
.nova__text-alignment-justify { text-align: justify; }

/*** Helpers ***/
.nova__unset {
  font-family: unset;
  font-size: unset;
  letter-spacing: unset;
  line-height: unset;
  margin: unset;
  padding: unset;
  list-style: none;
}

.nova__force-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.nova__visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.nova__recaptcha-message {
  margin-top: 0.8em;
  font-size: 0.8em;
}

.nova__recaptcha-message a,
.nova__recaptcha-message a:hover,
.nova__recaptcha-message a:focus {
  font-style: italic;
  color: inherit;
  font-size: inherit;
}

/*** Pages ***/
.nova__page-intro {
  width: 100%;
}



/*** Animations ***/
[style*="--nova-animate"] {
  will-change: transform;
  transform: translateZ(0);
  opacity: 0;
}

.nova__animation-applied {
  overflow: hidden;
}

.nova__animation-applied [style*="--nova-animate"] {
  --nova-animation-multiplier: 0.3s;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: calc(var(--nova-animation-multiplier) * var(--nova-animate));
}

@keyframes nova__animation--fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes nova__animation--fade-in-left {
  0% { opacity: 0; transform: translateX(10%); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes nova__animation--fade-in-right {
  0% { opacity: 0; transform: translateX(-10%); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes nova__animation--fade-in-down {
  0% { opacity: 0; transform: translateY(-10%); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes nova__animation--fade-in-up {
  0% { opacity: 0; transform: translateY(10%); }
  100% { opacity: 1; transform: translateY(0); }
}

/*** Parallax ***/
.nova__parallax {
  position: relative;
  z-index: 1;
}

.nova__parallax > .nova__parallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*** Responsive helpers ***/
.nova__desktop--visible { display: inherit; }
.nova__desktop--hidden { display: none !important; }

@media (max-width: 767px) {
  .nova__tablet--visible { display: block !important; }
  .nova__tablet--hidden { display: none !important; }
}

@media (max-width: 480px) {
  .nova__mobile--visible { display: block !important; }
  .nova__mobile--hidden { display: none !important; }
}

/*** Theme specific adjustments ***/

/* Dawn */
[class*="nova"]:empty { display: inherit; }

/* Brooklyn */
.index-sections [class*="Nova__"] { margin-top: 0; }
.index-sections [class*="Nova__"].shopify-section:first-child:not(.shopify-section--full-width) { margin-top: 0; }

/* Impulse */
.main-content [class*="Nova__"] { margin-top: 0; margin-bottom: 0; }

/* Cornerstone override */
[class*="Nova__"].shopify-section { overflow: unset; }
