html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
:root {
  --bleed: 4rem;
  --copyWidth: 68ch;
  --contentWidth: 68rem;
  --gap-s: 1rem;
  --gap: 2rem;
  --gap-l: 4rem;
  --spacing-none: 0;
  --spacing-small: 1rem;
  --spacing-default: 2.5rem;
  --spacing-large: 4rem;
}
@media screen and (max-width: 767.99999px) {
  :root {
    --gap-s: 1rem;
    --gap: 1.5rem;
    --gap-l: 2rem;
    --spacing-default: 0.5rem;
  }
}
@media screen and (max-width: 60rem) {
  :root {
    --bleed: 1rem;
  }
}

/* 
  Container for block editors
  This class provides a grid context to stack block editors within Umbraco.
*/
.blocks {
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--bleed, 0), 1fr) [copy-start] minmax(auto, var(--contentWidth)) [copy-end] minmax(var(--bleed, 0), 1fr) [full-width-end];
  /* 
    Default block styling
    Blocks are wrapped to max-width, centered, with padding to prevent text from touching the viewport edges.
  */
}
.blocks > div,
.blocks > section,
.blocks > header,
.blocks > footer,
.blocks > article {
  grid-column: copy;
  background: var(--background);
  color: var(--foreground);
}
.blocks {
  /*
    Full-width option
    Allows blocks to break out of the wrapper and extend edge to edge across the viewport.
  */
}
.blocks > .-full-width {
  grid-column: full-width;
}
.blocks {
  /*
    Copy-width option
    Enforces a maximum size of 60ch to blocks.
  */
}
.blocks > .-copy-width {
  max-width: 60ch;
  margin: auto;
}
.blocks {
  /*
    Form-width option
    Enforces a maximum size of 30rem to blocks.
  */
}
.blocks > .-form-width {
  max-width: 30rem;
  margin: auto;
}

/*
  Nested block containers should remove the bleeds.
*/
.contentWithToC main,
.contentWithToC main .blocks {
  grid-column: full-width;
  grid-template-columns: [full-width-start] minmax(var(--gap-s), 1fr) [copy-start] minmax(auto, var(--contentWidth)) [copy-end] minmax(var(--gap-s), 1fr) [full-width-end];
}
.contentWithToC main .container,
.contentWithToC main .blocks .container {
  padding: 30px;
}

/* Integration with Umbraco Grid */
.blocks .umb-block-grid__area-container {
  column-gap: var(--umb-block-grid--column-gap, var(--spacing-default));
  row-gap: var(--umb-block-grid--row-gap, var(--spacing-default));
}
@media (max-width: 63.999rem) {
  .blocks .umb-block-grid__area-container {
    --umb-block-grid--area-grid-columns: 1!important;
  }
}
.blocks .umb-block-grid__area {
  justify-content: var(--justify, inherit);
}

/* Common UI issues. */
header.header + .content {
  padding-top: 60px;
  padding-bottom: 30px;
}

.flex {
  display: flex;
}
.flex > * {
  flex: 1;
  flex-basis: 0;
}
@media screen and (max-width: 719px) {
  .flex {
    flex-direction: column;
  }
}

:root {
  --space: 6rem;
}
@media screen and (max-width: 60rem) {
  :root {
    --space: 4rem;
  }
}

.-space-y {
  padding-top: var(--space);
  padding-bottom: var(--space);
}

.-space-x {
  padding-left: var(--space);
  padding-right: var(--space);
}

:root {
  --rem: 18px;
  --base-font-size: 1rem;
  --base-font-family: system-ui, "Open Sans", sans-serif;
}

html {
  font-size: var(--rem);
  font-family: var(--font-copy, var(--base-font-family));
}

/* 
  Resets 
*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/*
  Styles
*/
.heading {
  /* Heading */
  font-family: var(--font-heading, var(--base-font-family));
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
}

.subheading {
  /* Subheading */
  font-family: var(--font-subheading, var(--base-font-family));
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
}

nav {
  font-family: var(--font-copy, var(--base-font-family));
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 18px;
}

.-text-left {
  text-align: left;
}

.-text-right {
  text-align: right;
}

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

small {
  font-size: calc(var(--base-font-size) * 0.8);
}

p, td, li, dt, dd {
  font-family: var(--font-copy, var(--base-font-family));
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.legal {
  font-size: 11px;
  line-height: 1.5;
}

/* 
Vertical Rhythm
*/
h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h1 + p, h2 + h1, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6, h2 + p, h3 + h1, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6, h3 + p, h4 + h1, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6, h4 + p, h5 + h1, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6, h5 + p, h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6, h6 + p, p + h1, p + h2, p + h3, p + h4, p + h5, p + h6, p + p {
  margin-top: 1.125rem;
}

.heading + .heading,
.heading + .subheading,
.heading + p {
  margin-top: 1.125rem;
}

.subheading + p {
  margin-top: 1.5rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

li + li {
  margin-top: 0.5rem;
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
.contentWithToC {
  display: flex;
}
.contentWithToC nav,
.contentWithToC main {
  display: flex;
  flex-direction: column;
  padding: 60px 30px;
  gap: 30px;
}
.contentWithToC nav.blocks,
.contentWithToC main.blocks {
  display: grid;
  padding-left: 0;
  padding-right: 0;
}
.contentWithToC nav {
  flex: none;
  align-self: flex-start;
  position: sticky;
  top: 0px;
  box-sizing: border-box;
  width: 310px;
  gap: 15px;
}
.contentWithToC nav > img {
  align-self: start;
  width: 100%;
  margin-bottom: 1rem;
}
.contentWithToC nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contentWithToC nav ul ul {
  display: none;
  padding: 0.5rem;
}
.contentWithToC nav a {
  display: flex;
  color: inherit;
  text-decoration: none;
}
.contentWithToC nav li svg {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-left: auto;
}
.contentWithToC nav li.-active svg {
  transform: rotate(90deg);
}
.contentWithToC nav {
  /* First level */
}
.contentWithToC nav > ul > li > a {
  font-weight: bold;
}
.contentWithToC nav {
  /* Second level */
}
.contentWithToC nav ul ul a.-current {
  color: #4E44C8;
}
.contentWithToC main {
  flex-grow: 1;
}

/* 
  Mobile 
*/
@media (max-width: 63.999rem) {
  .contentWithToC {
    flex-direction: column;
  }
  .contentWithToC > nav {
    order: 2;
    width: 100%;
    padding: 0 0 40px 0;
  }
  .contentWithToC > main {
    order: 1;
    padding: 40px 0;
  }
}
main img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.media {
  aspect-ratio: var(--ratio, 16/9);
}
.media.-as-bg {
  --ratio: auto;
  position: relative;
  justify-self: stretch;
  align-self: stretch;
}
.media.-as-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focal-point, center center);
}

.button {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 14px 24px;
  gap: 10px;
  height: 52px;
  background: var(--primary-button-background, #3d7fc0);
  border-radius: 6px;
  /* Primary Button */
  font-family: var(--font-copy, var(--base-font-family));
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: var(--primary-button-foreground, #FFFFFF);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.button.-secondary {
  background: var(--secondary-button-background, #E6E3E0);
  color: var(--secondary-button-foreground, #333333);
  text-shadow: none;
}
.button.-ecommerce, .button.-positive {
  background: #0BB850;
  color: #fff;
}

.promotion {
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  border-radius: 10px;
  display: flex;
  gap: 24px;
  padding: 24px;
  align-items: center;
  position: relative;
  transition: 0.2s all ease-in-out;
}
.promotion:focus-within, .promotion:hover {
  box-shadow: 2px 8px 22px rgba(1, 17, 40, 0.25);
}
.promotion .logo {
  width: 10rem;
  height: 3rem;
  overflow: hidden;
}
.promotion .logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}
.promotion .copy {
  flex: 1;
}
.promotion .copy p {
  margin: 0;
}
.promotion .copy p + p {
  margin-top: 12px;
}
.promotion .cta {
  flex: none;
  margin-left: 0;
}
.promotion + .promotion {
  margin-top: 1rem;
}
.promotion > a {
  position: absolute;
  inset: 0;
}

.banner {
  position: relative;
  padding: 4rem 0;
}
.banner > picture {
  pointer-events: none;
}
.banner > picture > img {
  position: absolute;
  inset: 0 auto 0 50%;
  height: 100%;
  object-position: center center;
  transform: translateX(-50%);
}
.banner .copy {
  margin-right: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  max-width: 414px;
  padding: 32px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  border-radius: 10px;
  margin-left: auto;
}
.banner .copy > p {
  margin: 0;
}
.banner .copy > div {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  padding-top: 1rem;
}
.banner .logo {
  width: 100%;
  height: 110px;
  object-fit: contain;
  object-position: center;
}

/*
	- Give the banner area a minimum height requirement of 520px.
	- If the box is shorter than the minimum height, align it to the banner's center line.
*/
@media screen and (min-width: 768px) {
  .banner {
    min-height: 520px;
  }
  .banner .copy {
    align-self: center;
  }
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
}
.breadcrumbs li {
  margin: 0;
}
.breadcrumbs a {
  color: #417FBC;
}
.breadcrumbs svg {
  width: 5px;
  height: 8px;
}

.vcard {
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  border-radius: 10px;
  display: flex;
  padding: 24px;
  gap: 24px;
  overflow: hidden;
  align-items: center;
}
.vcard img {
  aspect-ratio: 1/1;
  display: block;
  object-fit: cover;
  margin: -24px 0 -24px -24px;
}
.vcard > .copy {
  flex: 1;
}
.vcard > .qr {
  margin-left: auto;
  flex: none;
}
.vcard > .qr img {
  display: block;
  width: 155px;
  height: 155px;
  padding: 24px 0;
}

.cardDeck ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1279px) {
  .cardDeck ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .cardDeck ul {
    grid-template-columns: 1fr;
  }
}
.cardDeck li {
  margin: 0;
  display: flex;
}
.cardDeck li > div {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  border-radius: 10px;
  color: inherit;
  text-decoration: inherit;
  position: relative;
  flex: 1;
  transition: 0.2s all ease-in-out;
}
.cardDeck li > div:focus-within, .cardDeck li > div:hover {
  box-shadow: 2px 8px 22px rgba(1, 17, 40, 0.25);
}
.cardDeck li > div > a {
  position: absolute;
  inset: 0;
}
.cardDeck li > div .media {
  box-sizing: border-box;
  height: 200px;
  padding: 24px;
  aspect-ratio: unset;
}
.cardDeck li > div .media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.cardDeck li > div .copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
}
.cardDeck li > div .promo {
  padding: 0 24px 24px 24px;
  margin-top: auto;
  text-align: center;
}
.cardDeck.-content .media {
  padding: 0;
}
.cardDeck.-content .media img {
  object-fit: cover;
}
.cardDeck.-supplier .copy {
  padding-top: 0;
}

.autoComplete_wrapper {
  display: block;
  position: relative;
}

.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 226px;
  overflow-y: scroll;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0.5rem 0 0 0;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid rgba(33, 33, 33, 0.1);
  z-index: 1000;
  outline: none;
  padding: 12px;
  box-sizing: border-box;
}

.autoComplete_wrapper > ul > li {
  padding: 10px 20px;
  list-style: none;
  text-align: left;
  font-size: 16px;
  color: #212121;
  transition: all 0.1s ease-in-out;
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.autoComplete_wrapper > ul > li::selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(123, 123, 123, 0.1);
}

.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: rgb(255, 122, 122);
  font-weight: bold;
}

.autoComplete_wrapper > ul > li mark::selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_wrapper > ul > li[aria-selected=true] {
  background-color: rgba(123, 123, 123, 0.1);
}

@media only screen and (max-width: 600px) {
  .autoComplete_wrapper > input {
    width: 18rem;
  }
}
.modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5) !important;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
}
.modal > div {
  position: absolute;
  max-width: 60ch;
  width: 100%;
  inset: 50% 0 0 50%;
  transform: translate(-50%, 0%);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  height: max-content;
  pointer-events: none;
  padding: 1.5rem;
  padding-top: 4rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
}
.modal > div > div,
.modal > div > section {
  height: max-content;
  max-height: calc(80vh - 5.5rem);
  overflow-y: auto;
}
.modal > div > ._close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.modal > div > ._close span {
  font-size: 1.75rem;
  line-height: 1;
}
.modal > div > ._close:hover, .modal > div > ._close:focus-visible {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.3);
  color: #111;
}

body.-modal-open .modal {
  pointer-events: all;
  opacity: 1;
  z-index: 9999;
  transition: 0.2s;
}
body .modal > div.-open {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  transition-delay: 0.2s;
  pointer-events: all;
}

.blocks.-theme-primary,
.container.-theme-primary {
  background: var(--theme-primary-background);
  color: var(--theme-primary-foreground);
}
.blocks.-theme-dark,
.container.-theme-dark {
  background: var(--theme-dark-background);
  color: var(--theme-dark-foreground);
}
.blocks.-theme-accent,
.container.-theme-accent {
  background: var(--theme-accent-background);
  color: var(--theme-accent-foreground);
}
.blocks[class*=-theme-] > div,
.container[class*=-theme-] > div {
  background: transparent;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 0 12px;
  font-size: 18px;
  color: #000000;
  background: #FFFFFF;
  border: 2px solid #DBDBDB;
  border-radius: 10px;
}

textarea {
  height: 100px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
  height: 48px;
  line-height: 44px;
}

/* Login Form */
/* Umbraco Forms */
.login-form,
.form {
  max-width: 68ch;
  margin: auto;
}
.login-form .validation-summary-valid,
.form .validation-summary-valid {
  display: none;
}
.login-form .umbraco-forms-page,
.form .umbraco-forms-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.login-form .flex,
.form .flex {
  gap: 1rem;
}
.login-form .umbraco-forms-fieldset,
.form .umbraco-forms-fieldset {
  border: none;
  padding: 0;
}
.login-form .umbraco-forms-field,
.form .umbraco-forms-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-form .umbraco-forms-field > label,
.form .umbraco-forms-field > label {
  font-weight: bold;
}
.login-form .umbraco-forms-field > label + span,
.form .umbraco-forms-field > label + span {
  display: block;
  opacity: 0.9;
}
.login-form .umbraco-forms-container.col-md-12,
.form .umbraco-forms-container.col-md-12 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.login-form .umbraco-forms-hidden,
.form .umbraco-forms-hidden {
  display: none;
}
.login-form .field-validation-error,
.form .field-validation-error {
  padding: 4px 14px;
  display: inline-block;
  font-style: italic;
  color: red;
}

aside.sidebar {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
}
aside.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside.sidebar ul ul {
  display: none;
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
.card {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.card .copy,
.card .media {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
}
.card > .copy {
  position: relative;
  padding: 2.5rem 0;
}
.card > .copy > .heading, .card > .copy .subheading {
  max-width: 10ch;
}
.card > .copy > p, .card > .copy div, .card > .copy ul, .card > .copy ol {
  max-width: 44ch;
}
.card .media img {
  border-radius: 1rem;
}
.card.-reversed .copy {
  order: 1;
}
.card.-reversed .media {
  order: 0;
}

@media (max-width: 63.999rem) {
  .card {
    flex-direction: column;
  }
  .card > .copy {
    order: 1;
    margin: 2rem;
  }
  .card > .media {
    order: 0;
    margin: 0 0 -50% 0;
  }
  .card > .media img {
    aspect-ratio: 1/1;
    height: auto;
  }
}
.container {
  background-color: var(--background, transparent);
  background-repeat: repeat;
}

.image picture {
  display: block;
  width: 100%;
}
.image img {
  width: 100%;
  height: auto;
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	Spacers
*/
.spacer.-size\:xs {
  height: 0.5rem;
}
@media (min-width: 64rem) {
  .spacer.-size\:xs {
    height: 1rem;
  }
}
@media (min-width: 90rem) {
  .spacer.-size\:xs {
    height: 2rem;
  }
}
.spacer.-size\:s {
  height: 1rem;
}
@media (min-width: 64rem) {
  .spacer.-size\:s {
    height: 2rem;
  }
}
@media (min-width: 90rem) {
  .spacer.-size\:s {
    height: 4rem;
  }
}
.spacer.-size\:m {
  height: 2rem;
}
@media (min-width: 64rem) {
  .spacer.-size\:m {
    height: 4rem;
  }
}
@media (min-width: 90rem) {
  .spacer.-size\:m {
    height: 6rem;
  }
}
.spacer.-size\:l {
  height: 4rem;
}
@media (min-width: 64rem) {
  .spacer.-size\:l {
    height: 6rem;
  }
}
@media (min-width: 90rem) {
  .spacer.-size\:l {
    height: 8rem;
  }
}
.spacer.-size\:xl {
  height: 6rem;
}
@media (min-width: 64rem) {
  .spacer.-size\:xl {
    height: 8rem;
  }
}
@media (min-width: 90rem) {
  .spacer.-size\:xl {
    height: 10rem;
  }
}

.video {
  position: relative;
  width: 100%;
  max-width: 1024px;
  aspect-ratio: 16/9;
  margin: auto;
}
.video video,
.video iframe {
  display: block;
  height: 100%;
  position: relative;
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  border-radius: 1rem;
  z-index: 1;
}
.video figcaption {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  max-width: calc(var(--copyWidth) / 2);
  margin: -4rem auto 0 auto;
  z-index: 2;
}

.logoWall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-content: center;
  justify-content: center;
  gap: 1rem;
}
.logoWall img {
  margin: auto;
  vertical-align: middle;
  align-self: center;
  justify-self: center;
}

main.organization {
  grid-column: full-width;
}
main.organization .intro {
  display: flex;
  gap: 4rem;
  padding: 4rem 0;
  justify-content: center;
  align-items: center;
}
main.organization .intro .logo {
  flex: 1;
  max-width: 260px;
}
main.organization .intro .copy {
  flex: 1;
  max-width: 52ch;
}
main.organization .intro img {
  width: 100%;
}

.homeRebateCalculator {
  --home-rebate-slider-progress: 0%;
  --home-rebate-slider-track: #d9e0ea;
  --home-rebate-slider-fill: #1b63d9;
  --home-rebate-slider-thumb: #fff;
  --home-rebate-slider-thumb-border: #1b63d9;
  .form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .field {
    display: grid;
    gap: 0.75rem;
  }
  .slider {
    position: relative;
    padding-top: 2.75rem;
    margin: 1rem 0 0 0;
  }
  .homeValue {
    position: absolute;
    top: 0;
    left: clamp(2.75rem, var(--home-rebate-slider-progress), 100% - 2.75rem);
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: var(--home-rebate-slider-fill);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    &::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -0.3rem;
      width: 0.6rem;
      height: 0.6rem;
      background: var(--home-rebate-slider-fill);
      transform: translateX(-50%) rotate(45deg);
    }
  }
  [type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--home-rebate-slider-fill) 0 var(--home-rebate-slider-progress), var(--home-rebate-slider-track) var(--home-rebate-slider-progress) 100%);
    cursor: pointer;
    &:focus-visible {
      outline: 3px solid rgba(27, 99, 217, 0.3);
      outline-offset: 4px;
    }
    &::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 1.5rem;
      height: 1.5rem;
      margin-top: -0.375rem;
      border: 0.25rem solid var(--home-rebate-slider-thumb-border);
      border-radius: 50%;
      background: var(--home-rebate-slider-thumb);
      box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
    }
    &::-webkit-slider-runnable-track {
      height: 0.75rem;
      border-radius: 999px;
    }
    &::-moz-range-thumb {
      width: 1rem;
      height: 1rem;
      border: 0.25rem solid var(--home-rebate-slider-thumb-border);
      border-radius: 50%;
      background: var(--home-rebate-slider-thumb);
      box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
    }
    &::-moz-range-track {
      height: 0.75rem;
      border-radius: 999px;
      background: var(--home-rebate-slider-track);
    }
    &::-moz-range-progress {
      height: 0.75rem;
      border-radius: 999px;
      background: var(--home-rebate-slider-fill);
    }
  }
  .bounds {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    opacity: 0.5;
    margin: 0 0 1rem 0;
  }
  .details {
    margin: 0;
    display: flex;
    gap: 1rem;
    div {
      flex: 1 0 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--theme-accent-background);
      color: var(--theme-accent-foreground);
      padding: 2rem 1rem;
    }
    dt,
    dd {
      margin: 0;
    }
    dt {
      font-size: 1.25rem;
      opacity: 0.5;
    }
    dd {
      font-size: 2rem;
      font-weight: 500;
    }
  }
}

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