/** Shopify CDN: Minification failed

Line 136:8 Unexpected "{"
Line 136:20 Expected ":"

**/
/*** 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%;
}

/*** Theme editor warnings ***/
.nova__no-app-warning {
  position: relative;
  overflow: hidden;
  padding: 1em;
}

.nova__no-app-warning-text {
  position: relative;
  background: #ff0;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  max-width: 50%;
  margin: 0 auto;
}

.nova__no-app-warning-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 130%;
  background: repeating-linear-gradient(-45deg, #ff0, #ff0 20px, #000 20px, #000 40px);
  animation: nova__warning-background 1s linear infinite;
}

@keyframes nova__warning-background {
  to {
    transform: translateX(-56px);
  }
}

/*** 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; }

