html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  margin-top: 0;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* BREAKPOINTS
Older system (pre-2024):
- Desktop = 1136px and above
- Tablet = 600px - 1135px
- Mobile = 599px and below

New system (as of 2024):
- xl = 1536 and above // Large Desktops
- lg = 1280 - 1535 // Laptops & desktops
- md = 1024 - 1279 // tablets in landscape
- sm = 640 - 1023 // phones in landscape & tablets
- xs = 639 and below // phones
*/
/*
e.g:
@include breakpoint-min(lg) {
    // styles for lg and up
}
@include breakpoint-max(md) {
    // styles for below sm and below (not md)
}
*/
/*
If hardcoding CSS:
@media (width < 40rem) { // Mobile only
@media (40rem <= width < 64rem) { // Tablet only
*/
#content .wc-proceed-to-checkout .button, #content .place-order button, .btn--lg, .btn--sm, .btn--cta, .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: inherit;
  background-color: transparent;
  line-height: 1;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  cursor: pointer;
  text-align: center;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0.0625rem solid transparent;
}
#content .wc-proceed-to-checkout .button:disabled, #content .place-order button:disabled, .btn--lg:disabled, .btn--sm:disabled, .btn--cta:disabled, .btn:disabled {
  cursor: not-allowed;
}

:root {
  --interactive: #008476;
  --interactive--hover: #00574d;
  --interactive--pressed: #003630;
  --interactive--disabled: #ebefef;
  --interactive--critical: #900000;
  --interactive--critical--hover: #710000;
  --interactive--critical--pressed: #571600;
  --interactive--switch: rgba(0, 0, 0, 0.5);
  --interactive--focused: #374141;
  --bg--app: #f8fafa;
  --bg--page: #ffffff;
  --bg--on-page: #f2f5f4;
  --bg--card: #ffffff;
  --bg--menu: #ffffff;
  --bg--menu--hovered: #f8fafa;
  --bg--menu--pressed: #ebefef;
  --bg--menu--selected: rgba(0, 0, 0, 0.05);
  --bg--on-menu: #f2f5f4;
  --bg--overlay: rgba(0, 0, 0, 0.5);
  --bg--critical: #fbe6e6;
  --bg--warning: #fbf6e6;
  --bg--info: #e6f2fb;
  --bg--success: #e6fbf9;
  --text--default: #1f2625;
  --text--subtle: #687675;
  --text--disabled: #9aa8a7;
  --text--critical: #840000;
  --text--on-interactive: #ffffff;
  --text--placeholder: #b2bfbe;
  --border--default: #82908f;
  --border--subtle: #e5eaea;
  --border--hovered: #1f2625;
  --border--disabled: #b2bfbe;
  --border--critical: #d26666;
  --border--warning: #d2bc66;
  --border--info: #66a7d2;
  --border--success: #66d2c6;
  --icon--default: #4f5c5b;
  --icon--subtle: #9aa8a7;
  --icon--hovered: #1f2625;
  --icon--critical: #900000;
  --icon--warning: #907800;
  --icon--success: #009083;
  --icon--info: #006090;
  --icon--on-interactive: #ffffff;
}

body {
  background: var(--bg--page);
}
body.dark-theme {
  --interactive: #009083;
  --interactive--disabled: #374141;
  --interactive--switch: rgba(255, 255, 255, 0.5);
  --interactive--focused: #ffffff;
  --bg--app: #121716;
  --bg--page: #1f2625;
  --bg--on-page: #374141;
  --bg--card: #1f2625;
  --bg--menu: #191e1e;
  --bg--menu--hovered: #121716;
  --bg--menu--pressed: #0c0f0f;
  --bg--menu--selected: rgba(255, 255, 255, 0.05);
  --bg--on-menu: #374141;
  --bg--overlay: rgba(0, 0, 0, 0.75);
  --bg--critical: #360000;
  --bg--warning: #362a00;
  --bg--info: #001e36;
  --bg--success: #003630;
  --text--default: #ffffff;
  --text--subtle: #b2bfbe;
  --text--disabled: #82908f;
  --text--critical: #b53333;
  --text--on-interactive: #ffffff;
  --text--placeholder: #687675;
  --border--default: #b2bfbe;
  --border--subtle: #374141;
  --border--hovered: #ffffff;
  --border--disabled: #b2bfbe;
  --border--critical: #b53333;
  --border--warning: #b59d33;
  --border--info: #3385b5;
  --border--success: #33b5a8;
  --icon--default: #e5eaea;
  --icon--subtle: #9aa8a7;
  --icon--hovered: #ffffff;
  --icon--critical: #b53333;
  --icon--warning: #b59d33;
  --icon--success: #33b5a8;
  --icon--info: #3385b5;
  --icon--on-interactive: #ffffff;
}

/* TYPOGRAPHY STYLING */
@font-face {
  font-family: "Inter";
  src: url("/wp-content/themes/styles/fonts/Inter-Variable.ttf") format("woff2 supports variations"), url("/wp-content/themes/styles/fonts/Inter-Variable.ttf") format("woff2-variations");
  font-weight: 100 900;
}
@font-face {
  font-family: "Satoshi";
  src: url("/wp-content/themes/styles/fonts/Satoshi-Variable.ttf") format("woff2 supports variations"), url("/wp-content/themes/styles/fonts/Satoshi-Variable.ttf") format("woff2-variations");
  font-weight: 100 900;
}
* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html,
body {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  color: var(--text--default);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text--default);
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
}

h4,
h5,
h6 {
  margin-bottom: 0.5rem;
}

h1,
h1 > *,
.heading--1 {
  font-size: 3rem;
  line-height: 1.16667;
  font-weight: 800;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: -1px;
}
@media (max-width: 39.9875rem) {
  h1,
  h1 > *,
  .heading--1 {
    font-size: 2rem;
    line-height: 1.25;
  }
}

h2,
h2 > *,
.heading--2 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: -0.5px;
}
@media (max-width: 39.9875rem) {
  h2,
  h2 > *,
  .heading--2 {
    font-size: 1.75rem;
    line-height: 1.2857143;
  }
}

h3,
h3 > *,
.heading--3 {
  font-size: 1.5rem;
  line-height: 1.3333333;
  font-weight: 800;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: -0.25px;
}

h4,
h4 > *,
.heading--4 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: initial;
  margin-bottom: 0;
}

h5,
h5 > *,
.heading--5 {
  font-size: 1.125rem;
  line-height: 1.3333333;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: initial;
  margin-bottom: 0;
}

h6,
h6 > *,
.heading--6 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: initial;
  margin-bottom: 0;
}

.heading--7 {
  font-size: 0.875rem;
  line-height: 1.42857143;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: initial;
  margin-bottom: 0;
}

.subheading {
  font-size: 0.875rem;
  line-height: 1.42857143;
  font-weight: 600;
  text-transform: uppercase;
}

.text--lg {
  font-size: 1.125rem;
  line-height: 1.55556;
  font-weight: 400;
}

.text--md {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.text--sm {
  font-size: 0.875rem;
  line-height: 1.42857143;
  font-weight: 400;
}

.text--xs {
  font-size: 0.75rem;
  line-height: 1.3333333;
  font-weight: 400;
}

p,
.paragraph,
.paragraph-xs,
.paragraph-sm,
.paragraph-lg {
  font-weight: 400;
  margin-bottom: 1rem;
}

.paragraph-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.paragraph-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

p,
.paragraph {
  font-size: 1rem;
  line-height: 1.5rem;
}

.paragraph-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

label,
.label,
.label-xs,
.label-sm,
.label-lg {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

label,
.label {
  font-size: 1rem;
  line-height: 1.25rem;
}

label {
  display: inline-block;
}

.label-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.label-sm {
  font-size: 0.875rem;
  line-height: 1rem;
}

.label-lg {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

small {
  font-size: 75%;
}

a {
  color: var(--interactive);
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
a:hover {
  color: #3349b5;
}

sup,
sub {
  font-size: 75%;
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon {
  height: 1.25rem;
  width: 1.25rem;
  fill: currentColor;
}

.container {
  max-width: 100%;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 64rem) {
  .container {
    max-width: 64rem;
  }
}
@media (min-width: 80rem) {
  .container {
    max-width: 80rem;
  }
}
@media (min-width: 96rem) {
  .container {
    max-width: 96rem;
  }
}
.container.container--sm {
  max-width: 52rem;
}
.container.container--lg {
  max-width: 102rem;
}
.container.container--fluid {
  max-width: unset;
  margin-left: unset;
  margin-right: unset;
}
.container.container--left {
  margin-left: unset;
  margin-right: unset;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
/*
FORM CLASSES
1. .form-field => for [input, select, textarea]
2. .form-radio => for [input type=radio]
3. .form-checkbox => for [input type=checkbox]
 */
.form-field, .select2-search__field, #content input[type=text],
#content input[type=number],
#content input[type=email],
#content input[type=tel],
#content input[type=url],
#content input[type=password],
#content input[type=search],
#content textarea,
#content .input-text {
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1;
  border: 1px solid var(--border--subtle);
  border-radius: 0.125rem;
  color: var(--text--default);
  background: var(--bg--page);
  outline: none;
  vertical-align: middle;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-property: border-color, -webkit-box-shadow;
  transition-property: border-color, -webkit-box-shadow;
  transition-property: border-color, box-shadow;
  transition-property: border-color, box-shadow, -webkit-box-shadow;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  font-size: 1rem;
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
}
.form-field:hover, .select2-search__field:hover, #content input[type=text]:hover,
#content input[type=number]:hover,
#content input[type=email]:hover,
#content input[type=tel]:hover,
#content input[type=url]:hover,
#content input[type=password]:hover,
#content input[type=search]:hover,
#content textarea:hover,
#content .input-text:hover {
  border-color: #3349b5;
}
.form-field:focus, .select2-search__field:focus, #content input[type=text]:focus,
#content input[type=number]:focus,
#content input[type=email]:focus,
#content input[type=tel]:focus,
#content input[type=url]:focus,
#content input[type=password]:focus,
#content input[type=search]:focus,
#content textarea:focus,
#content .input-text:focus {
  border-color: #3349b5;
  -webkit-box-shadow: 0 0 0 0.0625rem #3349b5;
          box-shadow: 0 0 0 0.0625rem #3349b5;
}
.form-field:disabled, .select2-search__field:disabled, #content input[type=text]:disabled,
#content input[type=number]:disabled,
#content input[type=email]:disabled,
#content input[type=tel]:disabled,
#content input[type=url]:disabled,
#content input[type=password]:disabled,
#content input[type=search]:disabled,
#content textarea:disabled,
#content .input-text:disabled {
  cursor: not-allowed;
  background-color: var(--interactive--disabled);
  border-color: var(--text--disabled);
  color: var(--text--disabled);
}
.form-field::-webkit-input-placeholder, .select2-search__field::-webkit-input-placeholder, #content input[type=text]::-webkit-input-placeholder, #content input[type=number]::-webkit-input-placeholder, #content input[type=email]::-webkit-input-placeholder, #content input[type=tel]::-webkit-input-placeholder, #content input[type=url]::-webkit-input-placeholder, #content input[type=password]::-webkit-input-placeholder, #content input[type=search]::-webkit-input-placeholder, #content textarea::-webkit-input-placeholder, #content .input-text::-webkit-input-placeholder {
  color: var(--text--placeholder);
}
.form-field::-moz-placeholder, .select2-search__field::-moz-placeholder, #content input[type=text]::-moz-placeholder, #content input[type=number]::-moz-placeholder, #content input[type=email]::-moz-placeholder, #content input[type=tel]::-moz-placeholder, #content input[type=url]::-moz-placeholder, #content input[type=password]::-moz-placeholder, #content input[type=search]::-moz-placeholder, #content textarea::-moz-placeholder, #content .input-text::-moz-placeholder {
  color: var(--text--placeholder);
}
.form-field:-ms-input-placeholder, .select2-search__field:-ms-input-placeholder, #content input[type=text]:-ms-input-placeholder, #content input[type=number]:-ms-input-placeholder, #content input[type=email]:-ms-input-placeholder, #content input[type=tel]:-ms-input-placeholder, #content input[type=url]:-ms-input-placeholder, #content input[type=password]:-ms-input-placeholder, #content input[type=search]:-ms-input-placeholder, #content textarea:-ms-input-placeholder, #content .input-text:-ms-input-placeholder {
  color: var(--text--placeholder);
}
.form-field::-ms-input-placeholder, .select2-search__field::-ms-input-placeholder, #content input[type=text]::-ms-input-placeholder, #content input[type=number]::-ms-input-placeholder, #content input[type=email]::-ms-input-placeholder, #content input[type=tel]::-ms-input-placeholder, #content input[type=url]::-ms-input-placeholder, #content input[type=password]::-ms-input-placeholder, #content input[type=search]::-ms-input-placeholder, #content textarea::-ms-input-placeholder, #content .input-text::-ms-input-placeholder {
  color: var(--text--placeholder);
}
.form-field::placeholder, .select2-search__field::placeholder, #content input[type=text]::placeholder,
#content input[type=number]::placeholder,
#content input[type=email]::placeholder,
#content input[type=tel]::placeholder,
#content input[type=url]::placeholder,
#content input[type=password]::placeholder,
#content input[type=search]::placeholder,
#content textarea::placeholder,
#content .input-text::placeholder {
  color: var(--text--placeholder);
}

select.form-field, select.select2-search__field,
#content select.input-text {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOCA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy45OTk5NCA1LjE2NjY2QzMuOTU2MDcgNS4xNjY5MiAzLjkxMjU4IDUuMTU4NTEgMy44NzE5NyA1LjE0MTkyQzMuODMxMzYgNS4xMjUzMyAzLjc5NDQyIDUuMTAwODkgMy43NjMyNyA1LjA3TDIuNDI5OTQgMy43MzY2NkMyLjM5ODg2IDMuNzA1NTggMi4zNzQyMSAzLjY2ODY5IDIuMzU3MzkgMy42MjgwOEMyLjM0MDU3IDMuNTg3NDcgMi4zMzE5MSAzLjU0Mzk1IDIuMzMxOTEgMy41QzIuMzMxOTEgMy40NTYwNCAyLjM0MDU3IDMuNDEyNTIgMi4zNTczOSAzLjM3MTkxQzIuMzc0MjEgMy4zMzEzIDIuMzk4ODYgMy4yOTQ0MSAyLjQyOTk0IDMuMjYzMzNDMi40NjEwMiAzLjIzMjI1IDIuNDk3OTIgMy4yMDc2IDIuNTM4NTIgMy4xOTA3OEMyLjU3OTEzIDMuMTczOTYgMi42MjI2NSAzLjE2NTMgMi42NjY2MSAzLjE2NTNDMi43MTA1NiAzLjE2NTMgMi43NTQwOCAzLjE3Mzk2IDIuNzk0NjkgMy4xOTA3OEMyLjgzNTMgMy4yMDc2IDIuODcyMTkgMy4yMzIyNSAyLjkwMzI3IDMuMjYzMzNMMy45OTk5NCA0LjM2NjY2TDUuMDk5OTQgMy4zMDY2NkM1LjEzMDYgMy4yNzI1NyA1LjE2Nzk3IDMuMjQ1MTYgNS4yMDk3MSAzLjIyNjE3QzUuMjUxNDUgMy4yMDcxNyA1LjI5NjY2IDMuMTk2OTkgNS4zNDI1MSAzLjE5NjI3QzUuMzg4MzYgMy4xOTU1NCA1LjQzMzg3IDMuMjA0MjggNS40NzYxOCAzLjIyMTk1QzUuNTE4NSAzLjIzOTYxIDUuNTU2NzIgMy4yNjU4MSA1LjU4ODQ1IDMuMjk4OTJDNS42MjAxOCAzLjMzMjAzIDUuNjQ0NzMgMy4zNzEzMyA1LjY2MDU4IDMuNDE0MzZDNS42NzY0MyAzLjQ1NzM5IDUuNjgzMjMgMy41MDMyMyA1LjY4MDU1IDMuNTQ5MDFDNS42Nzc4OCAzLjU5NDc5IDUuNjY1NzggMy42Mzk1MiA1LjY0NTAzIDMuNjgwNDFDNS42MjQyOCAzLjcyMTMxIDUuNTk1MzEgMy43NTc0OCA1LjU1OTk0IDMuNzg2NjZMNC4yMjY2MSA1LjA3MzMzQzQuMTY1NjUgNS4xMzIxIDQuMDg0NjEgNS4xNjU0NyAzLjk5OTk0IDUuMTY2NjZaIiBmaWxsPSIjMUYxRjFGIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center right 0.5rem;
  background-size: 1.5rem;
  cursor: pointer;
  padding-right: 2rem;
}
select.form-field.form-field--sm, select.form-field--sm.select2-search__field,
#content select.form-field--sm.input-text {
  padding-right: 2rem;
}
select.form-field.form-field--lg, select.form-field--lg.select2-search__field,
#content select.form-field--lg.input-text {
  padding-right: 2.5rem;
}

textarea.form-field, textarea.select2-search__field,
#content textarea,
#content textarea.input-text {
  resize: vertical;
  height: auto;
  line-height: 1.5;
}

.form-field--sm {
  font-size: 0.875rem;
  height: 2rem;
  min-height: 2rem;
  padding: 0.5rem 0.75rem;
}

.form-field--lg {
  font-size: 1.125rem;
  height: 3.5rem;
  min-height: 3.5rem;
  padding: 1rem;
}

.form-field--invalid {
  border-color: var(--border--critical);
}
.form-field--invalid:hover {
  border-color: var(--border--critical);
}
.form-field--invalid:focus {
  border-color: var(--border--critical);
  -webkit-box-shadow: 0 0 0 0.0625rem var(--border--critical);
          box-shadow: 0 0 0 0.0625rem var(--border--critical);
}

.form-radio, .form-checkbox {
  position: relative;
  min-height: 1.5rem;
}
.form-radio .form-checkbox__input, .form-checkbox .form-checkbox__input,
.form-radio .form-radio__input,
.form-checkbox .form-radio__input {
  opacity: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.form-radio .form-checkbox__input:disabled ~ .form-checkbox__label, .form-checkbox .form-checkbox__input:disabled ~ .form-checkbox__label, .form-radio .form-checkbox__input:disabled ~ .form-radio__label, .form-checkbox .form-checkbox__input:disabled ~ .form-radio__label,
.form-radio .form-radio__input:disabled ~ .form-checkbox__label,
.form-checkbox .form-radio__input:disabled ~ .form-checkbox__label,
.form-radio .form-radio__input:disabled ~ .form-radio__label,
.form-checkbox .form-radio__input:disabled ~ .form-radio__label {
  cursor: not-allowed;
  color: var(--text--disabled);
}
.form-radio .form-checkbox__input:disabled ~ .form-checkbox__label:hover::before, .form-checkbox .form-checkbox__input:disabled ~ .form-checkbox__label:hover::before, .form-radio .form-checkbox__input:disabled ~ .form-radio__label:hover::before, .form-checkbox .form-checkbox__input:disabled ~ .form-radio__label:hover::before,
.form-radio .form-radio__input:disabled ~ .form-checkbox__label:hover::before,
.form-checkbox .form-radio__input:disabled ~ .form-checkbox__label:hover::before,
.form-radio .form-radio__input:disabled ~ .form-radio__label:hover::before,
.form-checkbox .form-radio__input:disabled ~ .form-radio__label:hover::before {
  border-color: var(--border--disabled);
}
.form-radio .form-checkbox__label, .form-checkbox .form-checkbox__label,
.form-radio .form-radio__label,
.form-checkbox .form-radio__label {
  font-weight: 400;
  margin: 0.125rem 0;
  padding-left: 2rem;
  cursor: pointer;
}
.form-radio .form-checkbox__label::before, .form-checkbox .form-checkbox__label::before, .form-radio .form-checkbox__label::after, .form-checkbox .form-checkbox__label::after,
.form-radio .form-radio__label::before,
.form-checkbox .form-radio__label::before,
.form-radio .form-radio__label::after,
.form-checkbox .form-radio__label::after {
  content: "";
  height: 1.25rem;
  width: 1.25rem;
  margin: 0.125rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.form-radio .form-checkbox__label::before, .form-checkbox .form-checkbox__label::before,
.form-radio .form-radio__label::before,
.form-checkbox .form-radio__label::before {
  border: 1px solid var(--border--subtle);
}
.form-radio .form-checkbox__label::after, .form-checkbox .form-checkbox__label::after,
.form-radio .form-radio__label::after,
.form-checkbox .form-radio__label::after {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.form-radio .form-checkbox__label:hover::before, .form-checkbox .form-checkbox__label:hover::before,
.form-radio .form-radio__label:hover::before,
.form-checkbox .form-radio__label:hover::before {
  border-color: #3349b5;
}

.form-checkbox .form-checkbox__input:checked ~ .form-checkbox__label::before {
  border-color: #3349b5;
  background: #3349b5;
}
.form-checkbox .form-checkbox__input:checked ~ .form-checkbox__label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.form-checkbox .form-checkbox__input:checked:disabled ~ .form-checkbox__label::before {
  border-color: var(--border--disabled);
  background: var(--interactive--disabled);
}
.form-checkbox .form-checkbox__label::before {
  border-radius: 0.125rem;
}
.form-checkbox .form-checkbox__label::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMjE2NjcgMTVDOC4xMDI0IDE0Ljk5OTYgNy45ODk0NCAxNC45NzU4IDcuODg0NzggMTQuOTI5OUM3Ljc4MDEzIDE0Ljg4NCA3LjY4NjAzIDE0LjgxNzEgNy42MDgzMyAxNC43MzM0TDMuNTU4MzMgMTAuNDI1QzMuNDA2OTQgMTAuMjYzNyAzLjMyNTg0IDEwLjA0ODggMy4zMzI4NyA5LjgyNzY3QzMuMzM5OSA5LjYwNjUzIDMuNDM0NDkgOS4zOTcyNSAzLjU5NTgzIDkuMjQ1ODVDMy43NTcxNyA5LjA5NDQ2IDMuOTcyMDUgOS4wMTMzNSA0LjE5MzE4IDkuMDIwMzlDNC40MTQzMiA5LjAyNzQyIDQuNjIzNjEgOS4xMjIwMSA0Ljc3NSA5LjI4MzM1TDguMjA4MzMgMTIuOTQxN0wxNS4yMTY3IDUuMjc1MDJDMTUuMjg3OCA1LjE4NjQ1IDE1LjM3NjMgNS4xMTMzNiAxNS40NzY3IDUuMDYwMjRDMTUuNTc3MSA1LjAwNzExIDE1LjY4NzMgNC45NzUwNyAxNS44MDA1IDQuOTY2MDhDMTUuOTEzNyA0Ljk1NzEgMTYuMDI3NiA0Ljk3MTM1IDE2LjEzNTEgNS4wMDc5OEMxNi4yNDI2IDUuMDQ0NiAxNi4zNDE1IDUuMTAyODIgMTYuNDI1NyA1LjE3OTA2QzE2LjUwOTkgNS4yNTUyOSAxNi41Nzc3IDUuMzQ3OTQgMTYuNjI0OCA1LjQ1MTNDMTYuNjcxOSA1LjU1NDY3IDE2LjY5NzMgNS42NjY1NyAxNi42OTk2IDUuNzgwMTNDMTYuNzAxOSA1Ljg5MzcgMTYuNjgwOSA2LjAwNjUzIDE2LjYzOCA2LjExMTY5QzE2LjU5NTEgNi4yMTY4NiAxNi41MzExIDYuMzEyMTQgMTYuNDUgNi4zOTE2OEw4LjgzMzMzIDE0LjcyNUM4Ljc1NjM3IDE0LjgxMDMgOC42NjI2IDE0Ljg3ODggOC41NTc5MSAxNC45MjYxQzguNDUzMjIgMTQuOTczNCA4LjMzOTg4IDE0Ljk5ODYgOC4yMjUgMTVIOC4yMTY2N1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-size: 1.25rem;
}

.form-radio .form-radio__input:checked ~ .form-radio__label::before {
  border-color: #3349b5;
  border-width: 2px;
}
.form-radio .form-radio__input:checked ~ .form-radio__label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #3349b5;
}
.form-radio .form-radio__input:checked:disabled ~ .form-radio__label::before {
  border-color: var(--border--disabled);
}
.form-radio .form-radio__input:checked:disabled ~ .form-radio__label::after {
  background-color: var(--interactive--disabled);
}
.form-radio .form-radio__label::before {
  border-radius: 9999px;
}
.form-radio .form-radio__label::after {
  height: 0.5rem;
  width: 0.5rem;
  margin: 0.5rem;
  border-radius: 9999px;
}

#content .wc-proceed-to-checkout .button, #content .place-order button, .btn--lg, .btn--sm, .btn--cta, .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: inherit;
  background-color: transparent;
  border: 0.0625rem solid transparent;
  border-radius: 0.125rem;
  line-height: 1;
  font-weight: 600;
  -webkit-transition-property: color, background-color, border-color, border-width;
  transition-property: color, background-color, border-color, border-width;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  cursor: pointer;
  text-align: center;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#content .wc-proceed-to-checkout .button:disabled, #content .place-order button:disabled, .btn--lg:disabled, .btn--sm:disabled, .btn--cta:disabled, .btn:disabled {
  cursor: not-allowed;
}
#content .wc-proceed-to-checkout .button:focus, #content .place-order button:focus, .btn--lg:focus, .btn--sm:focus, .btn--cta:focus, .btn:focus {
  -webkit-box-shadow: 0 0 0 0.125rem #3349b5;
          box-shadow: 0 0 0 0.125rem #3349b5;
}

.btn {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  height: 2.75rem;
}
.btn .icon {
  fill: currentColor;
}
.btn--cta {
  padding: 1rem;
  font-size: 1.125rem;
  height: 3.5rem;
  border-radius: 0.25rem;
}
.btn--cta .icon {
  fill: currentColor;
}
.btn--sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  height: 2rem;
}
.btn--sm .icon {
  fill: currentColor;
}
.btn--lg {
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  height: 3.5rem;
}
.btn--lg .icon {
  fill: currentColor;
}
.btn--primary, #content .wc-proceed-to-checkout .button, #content .place-order button {
  background-color: var(--interactive);
  color: #ffffff;
}
.btn--primary:hover, #content .wc-proceed-to-checkout .button:hover, #content .place-order button:hover {
  background-color: #3349b5;
  color: var(--text--on-interactive);
}
.btn--primary.btn--inverse, #content .wc-proceed-to-checkout .btn--inverse.button, #content .place-order button.btn--inverse {
  background-color: #ffffff;
  color: #009083;
}
.btn--primary.btn--inverse:hover, #content .wc-proceed-to-checkout .btn--inverse.button:hover, #content .place-order button.btn--inverse:hover {
  color: #3349b5;
  background-color: var(--bg--menu--hovered);
}
.btn--primary.btn--cta.btn--inverse, #content .wc-proceed-to-checkout .btn--cta.btn--inverse.button, #content .place-order button.btn--cta.btn--inverse {
  color: #009083;
}
.btn--primary.btn--cta.btn--inverse:hover, #content .wc-proceed-to-checkout .btn--cta.btn--inverse.button:hover, #content .place-order button.btn--cta.btn--inverse:hover {
  background-color: #e6fbf9;
}
.btn--primary:disabled, #content .wc-proceed-to-checkout .button:disabled, #content .place-order button:disabled {
  color: var(--text--disabled) !important;
  background-color: var(--interactive--disabled) !important;
}
.btn--secondary {
  border-color: var(--interactive);
  color: var(--interactive);
}
.btn--secondary:hover {
  border-color: #3349b5;
  color: #3349b5;
}
.btn--secondary.btn--inverse {
  border-color: #ffffff;
  color: #ffffff;
}
.btn--secondary.btn--inverse:hover {
  background-color: var(--bg--menu--hovered);
  border-color: #3349b5;
  color: #3349b5;
}
.btn--secondary.btn--cta {
  border-width: 0.125rem;
}
.btn--secondary.btn--cta.btn--inverse {
  border-color: #ffffff;
  color: #ffffff;
}
.btn--secondary.btn--cta.btn--inverse:hover {
  background-color: transparent;
  border-color: #e6fbf9;
  color: #e6fbf9;
}
.btn--secondary:disabled {
  cursor: not-allowed;
  color: var(--text--disabled) !important;
  border-color: var(--border--disabled) !important;
}
.btn--tertiary {
  color: var(--interactive);
  padding-left: 0;
  padding-right: 0;
}
.btn--tertiary:hover {
  color: #3349b5;
}
.btn--tertiary.btn--inverse {
  color: #ffffff;
  text-decoration-line: underline;
}
.btn--tertiary.btn--inverse:hover {
  color: #3349b5;
  background-color: #ffffff;
}
.btn--tertiary.btn--cta.btn--inverse {
  text-decoration-line: none;
}
.btn--tertiary.btn--cta.btn--inverse:hover {
  color: #e6fbf9;
  background-color: transparent;
}
.btn--tertiary:disabled {
  color: var(--text--disabled) !important;
}
.btn--danger {
  background-color: #900000;
  color: #ffffff;
}
.btn--danger:hover {
  background-color: #710000;
  color: var(--text--on-interactive);
}
.btn--danger:disabled {
  color: var(--text--disabled) !important;
  background-color: var(--interactive--disabled) !important;
}
.btn--play {
  border-radius: 100%;
  height: 5rem;
  width: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background-color: #009083;
}
.btn--play svg {
  margin: 0;
  height: 2rem;
  width: 2rem;
}
.btn--play:hover {
  background-color: #002490;
}
.btn--play.btn--inverse {
  background-color: var(--bg--page);
}
.btn--play.btn--inverse svg {
  color: #009083;
}
.btn--play.btn--inverse:hover {
  background-color: #e6fbf9;
}
.btn:not(.btn--play):not(.btn--icon) svg {
  margin-left: 0.75rem;
  height: 1.2em;
}
.btn:disabled {
  cursor: not-allowed;
}

.btn--icon {
  border-radius: 50%;
  padding: 0;
  color: inherit;
  width: 2.75rem;
}
.btn--icon.btn--sm {
  width: 2rem;
}
.btn--icon.btn--lg {
  width: 3.5rem;
}
.btn--icon:hover {
  background: var(--bg--menu--hovered);
}
.btn--icon:active {
  border-color: var(--border--subtle);
}
.btn--icon:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn--icon:disabled {
  color: var(--text--disabled);
}
.btn--icon:disabled:hover {
  background: none;
}
.btn--icon:disabled:active {
  border: 0;
}

#content .wc-proceed-to-checkout .button, #content .place-order button {
  padding: 1rem;
  font-size: 1.125rem;
  height: 3.5rem;
  font-size: 1.125rem !important;
  font-weight: 400;
}
#content .wc-proceed-to-checkout .button .icon, #content .place-order button .icon {
  fill: currentColor;
}

* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html,
body {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  color: var(--text--default);
}

body, button, input, textarea, select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

#content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {
  font-weight: 700;
  color: var(--text--default);
}
#content h1 {
  font-size: 3rem;
  line-height: 1.16667;
  font-weight: 800;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: -1px;
  margin-bottom: 0;
}
@media (max-width: 39.9875rem) {
  #content h1 {
    font-size: 2rem;
    line-height: 1.25;
  }
}
#content h3 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: initial;
  margin-bottom: 0;
  margin-bottom: 1rem;
  padding-bottom: 0;
}
#content #order_review_heading {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: initial;
  margin-bottom: 0;
}
#content .entry-header {
  border-bottom: 0.0625rem solid var(--border--subtle);
  padding-bottom: 4rem !important;
  margin-bottom: 1rem;
  height: auto;
}
@media (min-width: 80rem) {
  #content .entry-header {
    border-width: 0;
  }
}
#content .form-row label {
  color: var(--text--default);
  font-size: 0.875rem;
  line-height: 1.4;
}
#content .col-2 {
  margin-top: 4rem;
}
@media (min-width: 80rem) {
  #content .col-2 {
    margin-top: 0;
  }
}
#content .form-row.place-order,
#content .variations_form.cart,
#content .products .product {
  border: 0.0625rem solid var(--border--subtle);
  background: var(--bg--page);
  border-radius: 0.5rem;
}
#content .variations_form.cart {
  padding: 1rem;
}
#content .woocommerce-privacy-policy-text p {
  color: var(--text--subtle) !important;
  font-size: 0.75rem;
  line-height: 1.5;
}
#content input[type=text],
#content input[type=number],
#content input[type=email],
#content input[type=tel],
#content input[type=url],
#content input[type=password],
#content input[type=search],
#content textarea,
#content .input-text,
#content textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#content button {
  font-weight: 400;
}
#content .woocommerce-cart-form__contents .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 1rem;
}
#content .woocommerce-cart-form__contents .coupon button {
  white-space: nowrap;
}
#content .woocommerce-cart-form__contents .coupon + button[type=submit] {
  margin: 1rem;
}
#content .wc-proceed-to-checkout {
  float: right;
}
.select2-search__field {
  background-color: var(--bg--menu) !important;
}

.storefront-breadcrumb {
  display: none;
}

@media screen and (max-width: 9999px) {
  html.touch {
    margin-top: 0 !important;
  }
}