/*!
Theme Name: Hydra Creative WooCommerce Theme
Theme URI: https://www.hydracreative.com/
Author: Hydra Creative
Author URI: https://www.hydracreative.com/
Description: Custom Hydra Creative WooCommerce Theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 8.3
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hydra-wp
*/
/** BELOW IS EXPERIMENTAL AND NEEDS TESTING **/
/*
 * Border Radius
 */
/**
 * Creates a fluid border radius based on the provided size
 *
 * @dependency: $borderRadii
 * @use: border-radius: border-radius('xs');
 * @param {string} $size - The size of the border radius
 * @return {string} - The fluid border radius
 */
/*
 * Structure
 */
:root {
  --header-height: 4rem;
  --section-padding:1.5rem;
  --border-radius-xs: clamp(
      0.125rem,
      calc(0.125rem + 0.0023148148 * (100vw - 36rem)),
      0.25rem
  );
  --border-radius-sm: clamp(
      0.25rem,
      calc(0.25rem + 0.0046296296 * (100vw - 36rem)),
      0.5rem
  );
  --border-radius-md: clamp(
      0.5rem,
      calc(0.5rem + 0.0046296296 * (100vw - 36rem)),
      0.75rem
  );
  --border-radius-lg: clamp(
      0.75rem,
      calc(0.75rem + 0.0046296296 * (100vw - 36rem)),
      1rem
  );
  --border-radius-xl: clamp(
      1.5rem,
      calc(1.5rem + 0.0092592593 * (100vw - 36rem)),
      2rem
  );
  --border-radius-full: clamp(
      50rem,
      calc(50rem + 0 * (100vw - 36rem)),
      50rem
  );
}
@media only screen and (min-width: 75rem) {
  :root {
    --section-padding: 3rem;
  }
}
@media only screen and (min-width: 75rem) {
  :root {
    --header-height: 5.5rem;
  }
}

/*
 * Effects
 */
/*
 * Font Weights
 */
/*
 * Import Fonts
 */
@font-face {
  font-family: "Roboto";
  src: url(assets/fonts/Roboto-Regular.woff2) format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url(assets/fonts/Roboto-Medium.woff2) format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url(assets/fonts/Roboto-Bold.woff2) format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Kelso";
  src: url(assets/fonts/Kelso-Bold.woff2) format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Kelso";
  src: url(assets/fonts/Kelso-BoldOblique.woff2) format("truetype");
  font-style: italic;
}
@font-face {
  font-family: "Adagio-Slab";
  src: url(assets/fonts/Adagio-Slab-Semibold.woff2) format("truetype");
  font-weight: 600;
}
/*
 * Font Family
 */
/*
 * Font Line Height
 */
/**
 * Letter Spacing
 */
/*
 * Font Size
 *
 * clamp(min, preferred, max)
 * See: https://fluid.style/
 * Breakpoint from 30rem to 90rem
 */
/*
 * Font Sizes
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

img,
svg {
  vertical-align: middle;
}

html {
  font-size: 16px;
  scroll-padding-top: calc(var(--header-height) + var(--section-padding));
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding: 0;
  color: #292928;
  overflow-x: hidden;
}

/*
 * Links & Anchors
 */
a {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  text-underline-offset: 0.175rem;
}

p a {
  color: #00626e;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Roboto", BlinkMacSystemFont, sans-serif;
  font-size: clamp(1rem, 0.938rem + 0.208vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

h1, .h1, .card--cta--lg .card__body h3,
h2, .h2, .card--cta--md .card__body h3,
h3, .h3, article .entry-content h2,
h4, .h4, article .entry-content h3,
h5, .h5, article .entry-content h4,
h6, .h6, article .entry-content h5 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #00626e;
  font-family: "Adagio-Slab", "Roboto", BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}
h1:last-child, .h1:last-child, .card--cta--lg .card__body h3:last-child,
h2:last-child, .h2:last-child, .card--cta--md .card__body h3:last-child,
h3:last-child, .h3:last-child, article .entry-content h2:last-child,
h4:last-child, .h4:last-child, article .entry-content h3:last-child,
h5:last-child, .h5:last-child, article .entry-content h4:last-child,
h6:last-child, .h6:last-child, article .entry-content h5:last-child {
  margin-bottom: 0;
}

h1, .h1, .card--cta--lg .card__body h3 {
  font-size: clamp(2rem, 0.75rem + 4.167vw, 4.5rem);
  line-height: 1.2;
}

h2, .h2, .card--cta--md .card__body h3 {
  font-size: clamp(2rem, 1.25rem + 2.5vw, 3.5rem);
  line-height: 1.2;
}

h3, .h3, article .entry-content h2 {
  font-size: clamp(1.5rem, 1.25rem + 0.833vw, 2rem);
  line-height: 1.2;
}

h4, .h4, article .entry-content h3 {
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
  line-height: 1.2;
}

h5, .h5, article .entry-content h4 {
  font-size: clamp(1.125rem, 1.063rem + 0.208vw, 1.25rem);
  line-height: 1.2;
}

h6, .h6, article .entry-content h5 {
  font-size: clamp(1rem, 0.938rem + 0.208vw, 1.125rem);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0;
}

address {
  margin: 0;
  font-style: normal;
}

pre {
  font-family: courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 100%;
  overflow: auto;
  padding: 1.5rem;
}

code,
kbd,
tt,
var {
  font-family: courier, monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted inherit;
  cursor: help;
}

mark,
ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

.tag, .tag--blue {
  margin-right: 1rem;
  margin-bottom: 0;
  padding: 0.25rem 0.5rem;
  background-color: #ffede0;
  border-radius: 0.25rem;
  color: #e74000;
  font-size: clamp(1rem, 0.938rem + 0.208vw, 1.125rem);
  text-transform: uppercase;
}
.tag--blue {
  margin: 0;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  color: #00626e;
  font-size: clamp(1rem, 0.938rem + 0.208vw, 1.125rem);
  text-transform: none;
}

hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #e9e9e8;
  margin-block: 1.5rem;
}
hr.hr--dashed {
  border-top-style: dashed;
}
hr.hr--blue {
  border-top-color: #62cbe8;
}

ul,
ol {
  margin: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

nav ul, nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

iframe {
  border: none;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*
 * Form Elements
 */
label {
  color: #696968;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=tel],
input[type=search],
input[type=date],
select,
textarea {
  width: 100%;
  background-clip: padding-box;
  appearance: none;
  font-size: inherit;
  line-height: inherit;
  background-color: #f1f1f0;
  resize: vertical;
  padding: 0.75rem;
  border: solid 1px #f1f1f0;
  border-radius: 0.5rem;
  color: #4a4a49;
  font-size: 1rem;
  transition: 300ms;
}
input[type=text]:hover, input[type=text]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=date]:hover,
input[type=date]:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
  background-color: #ffffff;
}
input[type=text]:hover,
input[type=number]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=tel]:hover,
input[type=search]:hover,
input[type=date]:hover,
select:hover,
textarea:hover {
  border-color: #62cbe8;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
  border-color: #4a4a49;
}
input[type=text]:focus-visible,
input[type=number]:focus-visible,
input[type=email]:focus-visible,
input[type=password]:focus-visible,
input[type=tel]:focus-visible,
input[type=search]:focus-visible,
input[type=date]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  opacity: 75%;
}
input[type=text]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
input[type=search]:disabled,
input[type=date]:disabled,
select:disabled,
textarea:disabled {
  background: #ffffff;
  border: 1px solid #c5c5c4;
  cursor: not-allowed;
}
input[type=text].has-error, .wpcf7 form input[type=text].wpcf7-not-valid,
input[type=number].has-error,
.wpcf7 form input[type=number].wpcf7-not-valid,
input[type=email].has-error,
.wpcf7 form input[type=email].wpcf7-not-valid,
input[type=password].has-error,
.wpcf7 form input[type=password].wpcf7-not-valid,
input[type=tel].has-error,
.wpcf7 form input[type=tel].wpcf7-not-valid,
input[type=search].has-error,
.wpcf7 form input[type=search].wpcf7-not-valid,
input[type=date].has-error,
.wpcf7 form input[type=date].wpcf7-not-valid,
select.has-error,
.wpcf7 form select.wpcf7-not-valid,
textarea.has-error,
.wpcf7 form textarea.wpcf7-not-valid {
  background: #ffffff;
  border: 1px solid #c02b24;
}
input[type=text].has-error + span.form__text, .wpcf7 form input[type=text].has-error + span.wpcf7-not-valid-tip, .wpcf7 form input[type=text].wpcf7-not-valid + span.form__text, .wpcf7 form input[type=text].wpcf7-not-valid + span.wpcf7-not-valid-tip,
input[type=number].has-error + span.form__text,
.wpcf7 form input[type=number].has-error + span.wpcf7-not-valid-tip,
.wpcf7 form input[type=number].wpcf7-not-valid + span.form__text,
.wpcf7 form input[type=number].wpcf7-not-valid + span.wpcf7-not-valid-tip,
input[type=email].has-error + span.form__text,
.wpcf7 form input[type=email].has-error + span.wpcf7-not-valid-tip,
.wpcf7 form input[type=email].wpcf7-not-valid + span.form__text,
.wpcf7 form input[type=email].wpcf7-not-valid + span.wpcf7-not-valid-tip,
input[type=password].has-error + span.form__text,
.wpcf7 form input[type=password].has-error + span.wpcf7-not-valid-tip,
.wpcf7 form input[type=password].wpcf7-not-valid + span.form__text,
.wpcf7 form input[type=password].wpcf7-not-valid + span.wpcf7-not-valid-tip,
input[type=tel].has-error + span.form__text,
.wpcf7 form input[type=tel].has-error + span.wpcf7-not-valid-tip,
.wpcf7 form input[type=tel].wpcf7-not-valid + span.form__text,
.wpcf7 form input[type=tel].wpcf7-not-valid + span.wpcf7-not-valid-tip,
input[type=search].has-error + span.form__text,
.wpcf7 form input[type=search].has-error + span.wpcf7-not-valid-tip,
.wpcf7 form input[type=search].wpcf7-not-valid + span.form__text,
.wpcf7 form input[type=search].wpcf7-not-valid + span.wpcf7-not-valid-tip,
input[type=date].has-error + span.form__text,
.wpcf7 form input[type=date].has-error + span.wpcf7-not-valid-tip,
.wpcf7 form input[type=date].wpcf7-not-valid + span.form__text,
.wpcf7 form input[type=date].wpcf7-not-valid + span.wpcf7-not-valid-tip,
select.has-error + span.form__text,
.wpcf7 form select.has-error + span.wpcf7-not-valid-tip,
.wpcf7 form select.wpcf7-not-valid + span.form__text,
.wpcf7 form select.wpcf7-not-valid + span.wpcf7-not-valid-tip,
textarea.has-error + span.form__text,
.wpcf7 form textarea.has-error + span.wpcf7-not-valid-tip,
.wpcf7 form textarea.wpcf7-not-valid + span.form__text,
.wpcf7 form textarea.wpcf7-not-valid + span.wpcf7-not-valid-tip {
  color: #c02b24;
}
@media only screen and (min-width: 48rem) {
  input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=tel],
input[type=search],
input[type=date],
select,
textarea {
    padding: 1rem 1.25rem;
  }
}

textarea {
  min-height: 6rem;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 0.5rem;
  cursor: pointer;
  appearance: none;
  background: #ffffff;
  height: 20px;
  width: 20px;
  vertical-align: sub;
  position: relative;
  border-radius: 2px;
  transition: 300ms;
  border: solid 2px #696968;
  aspect-ratio: 1;
}
input[type=radio]::before,
input[type=checkbox]::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
  transition: 300ms;
}
input[type=radio] + label,
input[type=checkbox] + label {
  margin-left: 0.5rem;
}
input[type=radio]:checked::before, input[type=radio]:hover::before,
input[type=checkbox]:checked::before,
input[type=checkbox]:hover::before {
  opacity: 1;
}

input[type=radio] {
  border-radius: 100%;
}
input[type=radio]::before {
  display: flex;
  place-content: center;
  place-items: center;
  border-radius: 100%;
  background: #009eb7;
  width: 10px;
  aspect-ratio: 1;
  opacity: 0;
}

input[type=checkbox]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.293 12.293l-1.414 1.414 6.414 6.414 12-12-1.414-1.414-10.586 10.586z' stroke='%23ffffff' stroke-width='3' fill='none' /%3E%3C/svg%3E"); /* SVG icon */
  background-repeat: no-repeat;
  background-position: 1px 1px;
  background-size: 80%;
  opacity: 0;
}
input[type=checkbox]:checked, input[type=checkbox]:hover {
  border-color: #009eb7;
}
input[type=checkbox]:checked {
  background-color: #009eb7;
}

select {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
}
select[multiple], select[size]:not([size="1"]) {
  background-image: none;
}
select:focus {
  border-color: #00626e;
}

.form__group:not(:last-child) {
  margin-bottom: 1rem;
}
.form__group:has(input.has-error, .wpcf7 form input.wpcf7-not-valid) {
  position: relative;
}
.form__group:has(input.has-error, .wpcf7 form input.wpcf7-not-valid)::after {
  content: "\eca0";
  position: absolute;
  top: 1.625rem;
  right: 1rem;
  color: #c02b24;
  font-size: 1.5rem;
  font-family: "remixicon";
}
@media only screen and (min-width: 48rem) {
  .form__group:has(input.has-error, .wpcf7 form input.wpcf7-not-valid)::after {
    top: 2.125rem;
  }
}
.form__label, .form__text, .wpcf7 form .wpcf7-not-valid-tip {
  display: block;
  margin-left: 0.75rem;
  color: #00626e;
  font-size: 1rem;
}
.form__label:has(+ input:disabled), .form__label:has(+ input.has-error, + .wpcf7 form input.wpcf7-not-valid), .form__text:has(+ input:disabled), .wpcf7 form .wpcf7-not-valid-tip:has(+ input:disabled), .form__text:has(+ input.has-error, + .wpcf7 form input.wpcf7-not-valid), .wpcf7 form .wpcf7-not-valid-tip:has(+ input.has-error, + .wpcf7 form input.wpcf7-not-valid) {
  color: #a7a7a6;
}
.form__label span.required, .form__text span.required, .wpcf7 form .wpcf7-not-valid-tip span.required {
  color: #c02b24;
}
.search-form {
  position: relative;
  width: 100%;
}
.search-form input[type=search] {
  padding-block: 0.875rem;
  background-color: #f1f1f0;
  border-radius: 10rem;
}
.search-form .search-submit {
  position: absolute;
  right: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 1.25rem;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.ms-error,
.wpcf7-not-valid {
  border: 1px solid #e74c3c !important;
}
.ms-error:focus,
.wpcf7-not-valid:focus {
  box-shadow: inset 0 0 0 1px #e74c3c !important;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.btn, .btn__tertiary, section.product .product__overview table.variations .reset_variations, .btn__secondary, article .entry-content .wp-block-button.is-style-outline .wp-element-button, .btn__primary, article .entry-content .wp-block-button .wp-element-button {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  column-gap: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-size: clamp(1.125rem, 1.063rem + 0.208vw, 1.25rem);
  line-height: 1;
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius-full);
  transition: 300ms;
}
.btn:hover, .btn__tertiary:hover, section.product .product__overview table.variations .reset_variations:hover, .btn__secondary:hover, .btn__primary:hover, article .entry-content .wp-block-button .wp-element-button:hover, .btn:focus, .btn__tertiary:focus, section.product .product__overview table.variations .reset_variations:focus, .btn__secondary:focus, .btn__primary:focus, article .entry-content .wp-block-button .wp-element-button:focus {
  text-decoration: none;
}
.btn:disabled, .btn__tertiary:disabled, section.product .product__overview table.variations .reset_variations:disabled, .btn__secondary:disabled, .btn__primary:disabled, article .entry-content .wp-block-button .wp-element-button:disabled, .btn.disabled, .disabled.btn__tertiary, section.product .product__overview table.variations .disabled.reset_variations, .disabled.btn__secondary, .disabled.btn__primary, article .entry-content .wp-block-button .disabled.wp-element-button {
  background-color: #F8F8F7 !important;
  color: #a7a7a6 !important;
  cursor: not-allowed;
}
.btn [class^=ri-], .btn__tertiary [class^=ri-], section.product .product__overview table.variations .reset_variations [class^=ri-], .btn__secondary [class^=ri-], .btn__primary [class^=ri-], article .entry-content .wp-block-button .wp-element-button [class^=ri-] {
  font-weight: 400;
}
.btn__primary, article .entry-content .wp-block-button .wp-element-button {
  background-color: #009eb7;
  color: #ffffff;
}
.btn__primary:hover, article .entry-content .wp-block-button .wp-element-button:hover {
  background-color: #007f93;
}
.btn__primary:focus, article .entry-content .wp-block-button .wp-element-button:focus {
  background-color: #00626e;
}
.btn__primary.btn--orange, article .entry-content .wp-block-button .btn--orange.wp-element-button {
  background-color: #e74000;
}
.btn__primary.btn--orange:hover, article .entry-content .wp-block-button .btn--orange.wp-element-button:hover {
  background-color: #ff4c00;
}
.btn__primary.btn--orange:focus, article .entry-content .wp-block-button .btn--orange.wp-element-button:focus {
  background-color: #d73700;
}
.btn__secondary, article .entry-content .wp-block-button.is-style-outline .wp-element-button {
  background-color: #ffede0;
  border: 1px solid #ff4c00;
  color: #e74000;
}
.btn__secondary:hover, article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover {
  border-color: #bf2b00;
  color: #bf2b00;
}
.btn__secondary:focus, article .entry-content .wp-block-button.is-style-outline .wp-element-button:focus {
  background-color: #ff4c00;
  color: #ffffff !important;
}
.btn__secondary:disabled, article .entry-content .wp-block-button.is-style-outline .wp-element-button:disabled, .btn__secondary.disabled, article .entry-content .wp-block-button.is-style-outline .disabled.wp-element-button {
  border-color: #c5c5c4;
}
.btn__secondary.btn--blue, article .entry-content .wp-block-button.is-style-outline .btn--blue.wp-element-button {
  background-color: #e9fbff;
  border-color: #00acc8;
  color: #0890a5;
}
.btn__secondary.btn--blue:hover, article .entry-content .wp-block-button.is-style-outline .btn--blue.wp-element-button:hover {
  border-color: #007f93;
  color: #007f93;
}
.btn__secondary.btn--blue:focus, article .entry-content .wp-block-button.is-style-outline .btn--blue.wp-element-button:focus {
  background-color: #00acc8;
}
.btn__tertiary, section.product .product__overview table.variations .reset_variations {
  padding: 0 !important;
  width: fit-content !important;
  color: #00626e;
  font-size: 1rem;
  font-weight: 500;
}
.btn__tertiary [class^=ri-], section.product .product__overview table.variations .reset_variations [class^=ri-] {
  font-size: 1.5rem;
}
.btn__tertiary.btn--sm, section.product .product__overview table.variations .btn--sm.reset_variations {
  padding: 0 !important;
  font-size: 0.875rem;
}
.btn__tertiary.btn--sm [class^=ri-], section.product .product__overview table.variations .btn--sm.reset_variations [class^=ri-] {
  font-size: 1.25rem;
}
.btn__white {
  background-color: #ffffff;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
}
@media only screen and (min-width: 48rem) {
  .btn--sm {
    padding: 0.75rem 1.25rem !important;
  }
}
@media only screen and (min-width: 48rem) {
  .btn, .btn__tertiary, section.product .product__overview table.variations .reset_variations, .btn__secondary, article .entry-content .wp-block-button.is-style-outline .wp-element-button, .btn__primary, article .entry-content .wp-block-button .wp-element-button {
    padding: 1rem 2rem;
  }
}

.btn__icon, .btn__icon__filled, .btn__icon--sm {
  display: grid;
  place-content: center;
  padding: 0.625rem;
  aspect-ratio: 1;
  border: 1px solid #e9e9e8;
  border-radius: var(--border-radius-full);
  color: #009eb7;
  font-size: 1.5rem;
  line-height: 1;
  transition: 300ms;
}
.btn__icon:hover, .btn__icon__filled:hover, .btn__icon--sm:hover, .btn__icon:focus, .btn__icon__filled:focus, .btn__icon--sm:focus {
  text-decoration: none;
}
.btn__icon:hover, .btn__icon__filled:hover, .btn__icon--sm:hover {
  color: #007f93;
}
.btn__icon:focus, .btn__icon__filled:focus, .btn__icon--sm:focus {
  background-color: #00626e;
  color: #ffffff;
}
.btn__icon.btn--orange, .btn--orange.btn__icon__filled, .btn--orange.btn__icon--sm {
  color: #ff4c00;
}
.btn__icon.btn--orange:hover, .btn--orange.btn__icon__filled:hover, .btn--orange.btn__icon--sm:hover {
  color: #bf2b00;
}
.btn__icon.btn--orange:focus, .btn--orange.btn__icon__filled:focus, .btn--orange.btn__icon--sm:focus {
  background-color: #bf2b00;
  color: #ffffff;
}
.btn__icon--sm {
  padding: 0.25rem;
  border: none;
  font-size: 1.5rem !important;
}
.btn__icon--sm:focus {
  background: none !important;
  color: #00626e;
}
.btn__icon--sm:focus.btn--orange {
  color: #6f1900;
}
.btn__icon__filled {
  background-color: #009eb7;
  color: #ffffff !important;
}
.btn__icon__filled:hover {
  background-color: #007f93;
}
.btn__icon__filled:focus {
  background-color: #00626e !important;
}
.btn__icon__filled.btn--orange {
  background-color: #e74000;
}
.btn__icon__filled.btn--orange:hover {
  background-color: #ff4c00;
}
.btn__icon__filled.btn--orange:focus {
  background-color: #d73700 !important;
}
@media only screen and (min-width: 48rem) {
  .btn__icon, .btn__icon__filled, .btn__icon--sm {
    font-size: 1.75rem;
  }
}

.badge, .badge--green, .badge--red {
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #4a4a49;
  background-color: #c5c5c4;
}
.badge--red {
  color: #ffffff;
  background-color: #bf2b00;
}
.badge--green {
  color: #ffffff;
  background-color: #178E3C;
}

.breadcrumbs {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  list-style: none;
  color: #bf2b00;
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
}
.breadcrumbs li:not(:first-of-type) {
  position: relative;
  padding-left: 1rem;
}
.breadcrumbs li:not(:first-of-type)::before {
  content: "/";
  position: absolute;
  left: 0;
  color: #bf2b00;
}
.breadcrumbs li:last-of-type {
  color: #6f1900;
  font-weight: 700;
}
.breadcrumbs a {
  transition: 300ms;
}
.breadcrumbs a:hover {
  color: #6f1900;
}

.card h3, .card--happiness-status h3, .card--member h3, .card--video h3, .card--team .card__front h3,
.card--team .card__back h3, .card--review h3, .card--product h3, .card--category h3, .card--category--vertical h3, .card--category--horizontal h3, .card--article h3 {
  margin-bottom: 0;
}
.card__media {
  border-radius: var(--border-radius-lg);
}
.card__media a {
  display: block;
}
.card__media img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
}
.card__link:hover {
  text-decoration: none;
}
.card--article .card__media {
  margin-bottom: 0.25rem;
}
.card--article .card__media img {
  aspect-ratio: 3/2;
  object-fit: cover;
  box-shadow: 0 28px 15px -15px rgba(41, 41, 40, 0.25);
  transition: 300ms;
}
.card--article .card__media:hover img {
  box-shadow: 0 28px 15px -15px rgba(41, 41, 40, 0.4);
}
@media only screen and (min-width: 48rem) {
  .card--article .card__media {
    margin-bottom: 1rem;
  }
}
.card--article h3 {
  color: #292928;
  font-family: "Roboto", BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
}
.card--category, .card--category--vertical, .card--category--horizontal {
  position: relative;
  align-items: center;
}
.card--category *, .card--category--vertical *, .card--category--horizontal * {
  transition: 300ms;
}
.card--category .card__link, .card--category--vertical .card__link, .card--category--horizontal .card__link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card--category .card__link:hover, .card--category--vertical .card__link:hover, .card--category--horizontal .card__link:hover {
  text-decoration: none;
}
.card--category .card__link:hover .card__icon, .card--category--vertical .card__link:hover .card__icon, .card--category--horizontal .card__link:hover .card__icon {
  background-color: #e74000;
  border-color: #e74000;
  color: #ffffff;
}
.card--category .card__icon, .card--category--vertical .card__icon, .card--category--horizontal .card__icon {
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #f1f1f0;
  display: grid;
  place-items: center;
  color: #e74000;
  font-size: 1.5rem;
}
.card--category .card__header, .card--category--vertical .card__header, .card--category--horizontal .card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card--category .card__title, .card--category--vertical .card__title, .card--category--horizontal .card__title {
  color: #4a4a49;
}
.card--category .card__media, .card--category--vertical .card__media, .card--category--horizontal .card__media {
  background-color: #ffffff;
  border: 2px solid #e9e9e8;
  border-radius: var(--border-radius-md);
}
.card--category .card__media img, .card--category--vertical .card__media img, .card--category--horizontal .card__media img {
  aspect-ratio: 1;
  object-fit: contain;
}
.card--category--horizontal .card__link {
  flex-direction: row;
  align-items: center;
}
.card--category--horizontal .card__media {
  border-radius: var(--border-radius-md);
}
.card--category--horizontal .card__media img {
  height: 2.75rem;
}
.card--category--horizontal:hover .card__media {
  border-color: #00acc8;
}
.card--category--horizontal:hover p {
  color: #00626e !important;
}
.card--category--vertical:hover .card__media {
  border-color: #c5c5c4;
}
.card--category--vertical:hover p {
  font-weight: 700;
}
.card--category--vertical .card__media {
  aspect-ratio: 1;
  border-radius: var(--border-radius-lg);
}
@media only screen and (min-width: 48rem) {
  .card--category, .card--category--vertical, .card--category--horizontal {
    gap: 0.75rem;
  }
  .card--category--horizontal .card__media img {
    height: 4rem;
  }
}
.card--product {
  position: relative;
}
.card--product .woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.card--product .woocommerce-loop-product__link:hover {
  text-decoration: none;
}
.card--product .card__media {
  position: relative;
  background-color: #ffffff;
}
.card--product .card__media img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: contain;
  transition: 300ms;
}
.card--product .card__badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}
.card--product h2, .card--product h3 {
  color: #292928;
  font-family: "Roboto", BlinkMacSystemFont, sans-serif;
  font-size: clamp(1rem, 0.938rem + 0.208vw, 1.125rem);
}
.card--product:hover .card__media img {
  box-shadow: 0 28px 20px -15px rgba(111, 25, 0, 0.4), 0 0 20px 0 rgba(111, 25, 0, 0.03);
}
@media only screen and (min-width: 48rem) {
  .card--product {
    gap: 0.75rem;
  }
}
.card--review {
  padding: 1rem;
  gap: 1.25rem;
  border: 1px solid #e9e9e8;
  border-radius: var(--border-radius-xl);
  transition: 300ms;
}
.card--review:hover {
  box-shadow: 0 28px 20px -15px rgba(0, 98, 110, 0.4), 0 0 20px 0 rgba(0, 98, 110, 0.03);
}
.card--review .card__header img {
  width: 1.5rem;
  height: 1.5rem;
}
.card--review .card__body {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card--review .card__footer img {
  width: auto;
  height: 5rem;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
}
.card--review .btn__tertiary [class^=ri-], .card--review section.product .product__overview table.variations .reset_variations [class^=ri-], section.product .product__overview table.variations .card--review .reset_variations [class^=ri-] {
  transition: 300ms;
}
.card--review .btn__tertiary.active [class^=ri-], .card--review section.product .product__overview table.variations .active.reset_variations [class^=ri-], section.product .product__overview table.variations .card--review .active.reset_variations [class^=ri-] {
  transform: rotate(180deg);
}
@media only screen and (min-width: 48rem) {
  .card--review {
    padding: 1.25rem;
  }
}
.card--team {
  height: 100%;
  transition: box-shadow 300ms;
  perspective: 1000px;
}
.card--team.active .card__inner {
  transform: rotateY(180deg);
}
.card--team .card__inner {
  height: inherit;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.card--team .card__front,
.card--team .card__back {
  height: inherit;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 1.25rem 0.75rem;
  border-radius: var(--border-radius-xl);
}
@media only screen and (min-width: 48rem) {
  .card--team .card__front,
.card--team .card__back {
    padding: 1rem 1rem 1.5rem 1rem;
  }
}
.card--team .card__front {
  background-color: #ffffff;
  border: 1px solid transparent;
  transition: 300ms;
}
.card--team .card__front:hover {
  border-color: #e74000;
  box-shadow: 0 28px 20px -15px rgba(111, 25, 0, 0.4), 0 0 20px 0 rgba(111, 25, 0, 0.03);
}
.card--team .card__media img {
  aspect-ratio: 6/5;
  object-fit: cover;
}
.card--team .card__header .socials a {
  color: #009eb7;
  font-size: 1.5rem;
}
.card--team .card__header .socials a:hover {
  text-decoration: none;
}
.card--team .card__back {
  position: absolute;
  top: 0;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  padding: 1.25rem 0.75rem;
  background-color: #4a4a49;
  color: #ffffff;
}
.card--team .card__back .tag, .card--team .card__back .tag--blue {
  margin-bottom: 0rem;
  padding: 0.25rem 0.5rem;
  width: fit-content;
  background-color: #ffede0;
  border-radius: var(--border-radius-xs);
  color: #e74000;
  text-transform: uppercase;
}
@media only screen and (min-width: 48rem) {
  .card--team .card__back {
    padding: 1.5rem 1rem;
  }
}
.card--timeline {
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
}
.card--timeline .card__media {
  margin: 0;
  gap: 0.75rem;
  background-color: rgba(41, 41, 40, 0.1);
  border-radius: 0.75rem;
}
.card--timeline .card__media img {
  aspect-ratio: 10/4;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}
@media only screen and (min-width: 64rem) {
  .card--timeline .card__media {
    grid-template-columns: 6.25rem 1fr;
  }
  .card--timeline .card__media img {
    aspect-ratio: 1;
  }
}
@media only screen and (min-width: 48rem) {
  .card--timeline {
    padding: 0.75rem;
  }
}
.card--video:hover iframe {
  box-shadow: 0 28px 20px -15px rgba(255, 76, 0, 0.4), 0 0 20px 0 rgba(255, 76, 0, 0.03);
}
.card--video iframe {
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-xl);
  transition: 300ms;
}
.card--video .card__media {
  position: relative;
}
.card--video .card__media::after {
  content: "\f508";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 0.875rem;
  display: grid;
  align-items: center;
  height: 4rem;
  aspect-ratio: 1;
  background-color: #ff4c00;
  border-radius: 50%;
  color: #ffffff;
  font-family: "remixicon";
  font-size: 2.5rem;
  line-height: 1;
}
.card--video a:hover {
  text-decoration: none;
}
.card--member {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}
.card--member .card__media {
  flex: 0 0 4rem;
}
.card--member .card__media a {
  height: 100%;
}
.card--member .card__media img {
  border-radius: clamp(
        0.5rem,
        calc(0.5rem + 0.0046296296 * (100vw - 36rem)),
        0.75rem
    );
  height: 100%;
  object-fit: cover;
}
.card--happiness-status .card__media img {
  max-width: 220px;
}
.cta-banner, .cta-banner--contact, .cta-banner--share, .cta-banner--wishlist {
  position: relative;
  padding: 1.25rem 1rem;
  border-radius: var(--border-radius-md);
  overflow: clip;
}
.cta-banner__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 3rem;
  flex-wrap: wrap;
  z-index: 1;
}
.cta-banner .socials, .cta-banner--contact .socials, .cta-banner--share .socials, .cta-banner--wishlist .socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cta-banner::before, .cta-banner--contact::before, .cta-banner--share::before, .cta-banner--wishlist::before, .cta-banner::after, .cta-banner--contact::after, .cta-banner--share::after, .cta-banner--wishlist::after {
  content: "";
  position: absolute;
  top: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 50%;
}
.cta-banner::before, .cta-banner--contact::before, .cta-banner--share::before, .cta-banner--wishlist::before {
  height: clamp(14rem, 1.5rem + 41.667vw, 39rem);
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 64rem) {
  .cta-banner::before, .cta-banner--contact::before, .cta-banner--share::before, .cta-banner--wishlist::before {
    top: 0 !important;
    left: -5rem !important;
    transform: translateY(-65%) !important;
  }
}
.cta-banner::after, .cta-banner--contact::after, .cta-banner--share::after, .cta-banner--wishlist::after {
  right: 0;
  height: clamp(17rem, 12.5rem + 15vw, 26rem);
  transform: translateX(50%);
}
@media only screen and (min-width: 64rem) {
  .cta-banner::after, .cta-banner--contact::after, .cta-banner--share::after, .cta-banner--wishlist::after {
    transform: translate(1.25rem, -25%);
  }
}
.cta-banner--contact, .cta-banner--wishlist {
  color: #ffffff;
}
.cta-banner--contact {
  background-color: #0890a5;
}
.cta-banner--contact::before {
  background-color: #00acc8;
}
.cta-banner--contact::after {
  background-color: #00626e;
}
.cta-banner--share {
  background-color: #f1f1f0;
  color: #4a4a49;
}
.cta-banner--share::before, .cta-banner--share::after {
  background-color: #e9e9e8;
}
.cta-banner--share::before {
  opacity: 100%;
}
.cta-banner--share::after {
  mix-blend-mode: multiply;
}
.cta-banner--wishlist {
  background-color: #4a4a49;
}
.cta-banner--wishlist::before {
  top: -3rem;
  left: -1rem;
  background-color: #6f1900;
  opacity: 20%;
  mix-blend-mode: multiply;
  transform: none;
}
.cta-banner--wishlist::after {
  background-color: #F8F8F7;
  opacity: 10%;
}
@media only screen and (min-width: 48rem) {
  .cta-banner, .cta-banner--contact, .cta-banner--share, .cta-banner--wishlist {
    padding: 1.5rem;
  }
  .cta-banner .socials, .cta-banner--contact .socials, .cta-banner--share .socials, .cta-banner--wishlist .socials {
    gap: 0.75rem;
  }
}

.card--cta, .card--cta--sm, .card--cta--md, .card--cta--lg, .card--cta--swiper {
  display: flex;
  gap: 0.5rem;
  border-radius: var(--border-radius-xl);
  overflow: clip;
  /**
   * Color variants
   */
  /**
   * Size variants
   */
}
.card--cta .card__body p a, .card--cta--sm .card__body p a, .card--cta--md .card__body p a, .card--cta--lg .card__body p a, .card--cta--swiper .card__body p a {
  color: #00626e;
  text-decoration: underline;
}
.card--cta::before, .card--cta--sm::before, .card--cta--md::before, .card--cta--lg::before, .card--cta--swiper::before, .card--cta::after, .card--cta--sm::after, .card--cta--md::after, .card--cta--lg::after, .card--cta--swiper::after {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}
.card--cta.blue .btn:hover, .blue.card--cta--sm .btn:hover, .blue.card--cta--md .btn:hover, .blue.card--cta--lg .btn:hover, .blue.card--cta--swiper .btn:hover, .card--cta.blue .btn__primary:hover, .card--cta.blue article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .card--cta.blue .wp-element-button:hover, .blue.card--cta--sm .btn__primary:hover, .blue.card--cta--sm article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .blue.card--cta--sm .wp-element-button:hover, .blue.card--cta--md .btn__primary:hover, .blue.card--cta--md article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .blue.card--cta--md .wp-element-button:hover, .blue.card--cta--lg .btn__primary:hover, .blue.card--cta--lg article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .blue.card--cta--lg .wp-element-button:hover, .blue.card--cta--swiper .btn__primary:hover, .blue.card--cta--swiper article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .blue.card--cta--swiper .wp-element-button:hover, .card--cta.blue .btn__secondary:hover, .card--cta.blue article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .card--cta.blue .wp-element-button:hover, .blue.card--cta--sm .btn__secondary:hover, .blue.card--cta--sm article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .blue.card--cta--sm .wp-element-button:hover, .blue.card--cta--md .btn__secondary:hover, .blue.card--cta--md article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .blue.card--cta--md .wp-element-button:hover, .blue.card--cta--lg .btn__secondary:hover, .blue.card--cta--lg article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .blue.card--cta--lg .wp-element-button:hover, .blue.card--cta--swiper .btn__secondary:hover, .blue.card--cta--swiper article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .blue.card--cta--swiper .wp-element-button:hover, .card--cta.blue .btn__tertiary:hover, .card--cta.blue section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .card--cta.blue .reset_variations:hover, .blue.card--cta--sm .btn__tertiary:hover, .blue.card--cta--sm section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .blue.card--cta--sm .reset_variations:hover, .blue.card--cta--md .btn__tertiary:hover, .blue.card--cta--md section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .blue.card--cta--md .reset_variations:hover, .blue.card--cta--lg .btn__tertiary:hover, .blue.card--cta--lg section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .blue.card--cta--lg .reset_variations:hover, .blue.card--cta--swiper .btn__tertiary:hover, .blue.card--cta--swiper section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .blue.card--cta--swiper .reset_variations:hover, .card--cta.green .btn:hover, .green.card--cta--sm .btn:hover, .green.card--cta--md .btn:hover, .green.card--cta--lg .btn:hover, .green.card--cta--swiper .btn:hover, .card--cta.green .btn__primary:hover, .card--cta.green article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .card--cta.green .wp-element-button:hover, .green.card--cta--sm .btn__primary:hover, .green.card--cta--sm article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .green.card--cta--sm .wp-element-button:hover, .green.card--cta--md .btn__primary:hover, .green.card--cta--md article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .green.card--cta--md .wp-element-button:hover, .green.card--cta--lg .btn__primary:hover, .green.card--cta--lg article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .green.card--cta--lg .wp-element-button:hover, .green.card--cta--swiper .btn__primary:hover, .green.card--cta--swiper article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .green.card--cta--swiper .wp-element-button:hover, .card--cta.green .btn__secondary:hover, .card--cta.green article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .card--cta.green .wp-element-button:hover, .green.card--cta--sm .btn__secondary:hover, .green.card--cta--sm article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .green.card--cta--sm .wp-element-button:hover, .green.card--cta--md .btn__secondary:hover, .green.card--cta--md article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .green.card--cta--md .wp-element-button:hover, .green.card--cta--lg .btn__secondary:hover, .green.card--cta--lg article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .green.card--cta--lg .wp-element-button:hover, .green.card--cta--swiper .btn__secondary:hover, .green.card--cta--swiper article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .green.card--cta--swiper .wp-element-button:hover, .card--cta.green .btn__tertiary:hover, .card--cta.green section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .card--cta.green .reset_variations:hover, .green.card--cta--sm .btn__tertiary:hover, .green.card--cta--sm section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .green.card--cta--sm .reset_variations:hover, .green.card--cta--md .btn__tertiary:hover, .green.card--cta--md section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .green.card--cta--md .reset_variations:hover, .green.card--cta--lg .btn__tertiary:hover, .green.card--cta--lg section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .green.card--cta--lg .reset_variations:hover, .green.card--cta--swiper .btn__tertiary:hover, .green.card--cta--swiper section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .green.card--cta--swiper .reset_variations:hover, .card--cta.orange .btn:hover, .orange.card--cta--sm .btn:hover, .orange.card--cta--md .btn:hover, .orange.card--cta--lg .btn:hover, .orange.card--cta--swiper .btn:hover, .card--cta.orange .btn__primary:hover, .card--cta.orange article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .card--cta.orange .wp-element-button:hover, .orange.card--cta--sm .btn__primary:hover, .orange.card--cta--sm article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .orange.card--cta--sm .wp-element-button:hover, .orange.card--cta--md .btn__primary:hover, .orange.card--cta--md article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .orange.card--cta--md .wp-element-button:hover, .orange.card--cta--lg .btn__primary:hover, .orange.card--cta--lg article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .orange.card--cta--lg .wp-element-button:hover, .orange.card--cta--swiper .btn__primary:hover, .orange.card--cta--swiper article .entry-content .wp-block-button .wp-element-button:hover, article .entry-content .wp-block-button .orange.card--cta--swiper .wp-element-button:hover, .card--cta.orange .btn__secondary:hover, .card--cta.orange article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .card--cta.orange .wp-element-button:hover, .orange.card--cta--sm .btn__secondary:hover, .orange.card--cta--sm article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .orange.card--cta--sm .wp-element-button:hover, .orange.card--cta--md .btn__secondary:hover, .orange.card--cta--md article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .orange.card--cta--md .wp-element-button:hover, .orange.card--cta--lg .btn__secondary:hover, .orange.card--cta--lg article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .orange.card--cta--lg .wp-element-button:hover, .orange.card--cta--swiper .btn__secondary:hover, .orange.card--cta--swiper article .entry-content .wp-block-button.is-style-outline .wp-element-button:hover, article .entry-content .wp-block-button.is-style-outline .orange.card--cta--swiper .wp-element-button:hover, .card--cta.orange .btn__tertiary:hover, .card--cta.orange section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .card--cta.orange .reset_variations:hover, .orange.card--cta--sm .btn__tertiary:hover, .orange.card--cta--sm section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .orange.card--cta--sm .reset_variations:hover, .orange.card--cta--md .btn__tertiary:hover, .orange.card--cta--md section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .orange.card--cta--md .reset_variations:hover, .orange.card--cta--lg .btn__tertiary:hover, .orange.card--cta--lg section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .orange.card--cta--lg .reset_variations:hover, .orange.card--cta--swiper .btn__tertiary:hover, .orange.card--cta--swiper section.product .product__overview table.variations .reset_variations:hover, section.product .product__overview table.variations .orange.card--cta--swiper .reset_variations:hover {
  background-color: #00626e !important;
}
.card--cta.blue, .blue.card--cta--sm, .blue.card--cta--md, .blue.card--cta--lg, .blue.card--cta--swiper {
  background: linear-gradient(100deg, #e9fbff 30%, #cdf7ff 100%);
  color: #00626e;
}
.card--cta.blue .btn, .blue.card--cta--sm .btn, .blue.card--cta--md .btn, .blue.card--cta--lg .btn, .blue.card--cta--swiper .btn, .card--cta.blue .btn__primary, .card--cta.blue article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .card--cta.blue .wp-element-button, .blue.card--cta--sm .btn__primary, .blue.card--cta--sm article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .blue.card--cta--sm .wp-element-button, .blue.card--cta--md .btn__primary, .blue.card--cta--md article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .blue.card--cta--md .wp-element-button, .blue.card--cta--lg .btn__primary, .blue.card--cta--lg article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .blue.card--cta--lg .wp-element-button, .blue.card--cta--swiper .btn__primary, .blue.card--cta--swiper article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .blue.card--cta--swiper .wp-element-button, .card--cta.blue .btn__secondary, .blue.card--cta--sm .btn__secondary, .blue.card--cta--md .btn__secondary, .blue.card--cta--lg .btn__secondary, .blue.card--cta--swiper .btn__secondary, .card--cta.blue .btn__tertiary, .card--cta.blue section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .card--cta.blue .reset_variations, .blue.card--cta--sm .btn__tertiary, .blue.card--cta--sm section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .blue.card--cta--sm .reset_variations, .blue.card--cta--md .btn__tertiary, .blue.card--cta--md section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .blue.card--cta--md .reset_variations, .blue.card--cta--lg .btn__tertiary, .blue.card--cta--lg section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .blue.card--cta--lg .reset_variations, .blue.card--cta--swiper .btn__tertiary, .blue.card--cta--swiper section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .blue.card--cta--swiper .reset_variations {
  background-color: #009eb7 !important;
}
.card--cta.green, .green.card--cta--sm, .green.card--cta--md, .green.card--cta--lg, .green.card--cta--swiper {
  background: linear-gradient(100deg, #dff5e4 30%, #bfe8c7 100%);
  color: #005f21;
}
.card--cta.green .btn, .green.card--cta--sm .btn, .green.card--cta--md .btn, .green.card--cta--lg .btn, .green.card--cta--swiper .btn, .card--cta.green .btn__primary, .card--cta.green article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .card--cta.green .wp-element-button, .green.card--cta--sm .btn__primary, .green.card--cta--sm article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .green.card--cta--sm .wp-element-button, .green.card--cta--md .btn__primary, .green.card--cta--md article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .green.card--cta--md .wp-element-button, .green.card--cta--lg .btn__primary, .green.card--cta--lg article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .green.card--cta--lg .wp-element-button, .green.card--cta--swiper .btn__primary, .green.card--cta--swiper article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .green.card--cta--swiper .wp-element-button, .card--cta.green .btn__secondary, .green.card--cta--sm .btn__secondary, .green.card--cta--md .btn__secondary, .green.card--cta--lg .btn__secondary, .green.card--cta--swiper .btn__secondary, .card--cta.green .btn__tertiary, .card--cta.green section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .card--cta.green .reset_variations, .green.card--cta--sm .btn__tertiary, .green.card--cta--sm section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .green.card--cta--sm .reset_variations, .green.card--cta--md .btn__tertiary, .green.card--cta--md section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .green.card--cta--md .reset_variations, .green.card--cta--lg .btn__tertiary, .green.card--cta--lg section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .green.card--cta--lg .reset_variations, .green.card--cta--swiper .btn__tertiary, .green.card--cta--swiper section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .green.card--cta--swiper .reset_variations {
  background-color: #005f21 !important;
}
.card--cta.orange, .orange.card--cta--sm, .orange.card--cta--md, .orange.card--cta--lg, .orange.card--cta--swiper {
  background: linear-gradient(100deg, #ffede0 30%, #efc5a7 100%);
  color: #6f1900;
}
.card--cta.orange .btn, .orange.card--cta--sm .btn, .orange.card--cta--md .btn, .orange.card--cta--lg .btn, .orange.card--cta--swiper .btn, .card--cta.orange .btn__primary, .card--cta.orange article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .card--cta.orange .wp-element-button, .orange.card--cta--sm .btn__primary, .orange.card--cta--sm article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .orange.card--cta--sm .wp-element-button, .orange.card--cta--md .btn__primary, .orange.card--cta--md article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .orange.card--cta--md .wp-element-button, .orange.card--cta--lg .btn__primary, .orange.card--cta--lg article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .orange.card--cta--lg .wp-element-button, .orange.card--cta--swiper .btn__primary, .orange.card--cta--swiper article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .orange.card--cta--swiper .wp-element-button, .card--cta.orange .btn__secondary, .orange.card--cta--sm .btn__secondary, .orange.card--cta--md .btn__secondary, .orange.card--cta--lg .btn__secondary, .orange.card--cta--swiper .btn__secondary, .card--cta.orange .btn__tertiary, .card--cta.orange section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .card--cta.orange .reset_variations, .orange.card--cta--sm .btn__tertiary, .orange.card--cta--sm section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .orange.card--cta--sm .reset_variations, .orange.card--cta--md .btn__tertiary, .orange.card--cta--md section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .orange.card--cta--md .reset_variations, .orange.card--cta--lg .btn__tertiary, .orange.card--cta--lg section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .orange.card--cta--lg .reset_variations, .orange.card--cta--swiper .btn__tertiary, .orange.card--cta--swiper section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .orange.card--cta--swiper .reset_variations {
  background-color: #6f1900 !important;
}
.card--cta.blue-alt::before, .blue-alt.card--cta--sm::before, .blue-alt.card--cta--md::before, .blue-alt.card--cta--lg::before, .blue-alt.card--cta--swiper::before, .card--cta.blue-alt::after, .blue-alt.card--cta--sm::after, .blue-alt.card--cta--md::after, .blue-alt.card--cta--lg::after, .blue-alt.card--cta--swiper::after, .card--cta.orange-alt::before, .orange-alt.card--cta--sm::before, .orange-alt.card--cta--md::before, .orange-alt.card--cta--lg::before, .orange-alt.card--cta--swiper::before, .card--cta.orange-alt::after, .orange-alt.card--cta--sm::after, .orange-alt.card--cta--md::after, .orange-alt.card--cta--lg::after, .orange-alt.card--cta--swiper::after {
  left: auto;
  right: 0;
}
.card--cta.blue-alt::before, .blue-alt.card--cta--sm::before, .blue-alt.card--cta--md::before, .blue-alt.card--cta--lg::before, .blue-alt.card--cta--swiper::before, .card--cta.orange-alt::before, .orange-alt.card--cta--sm::before, .orange-alt.card--cta--md::before, .orange-alt.card--cta--lg::before, .orange-alt.card--cta--swiper::before {
  top: 50%;
  height: 115%;
  transform: translateX(-40%);
  z-index: 2;
}
.card--cta.blue-alt::after, .blue-alt.card--cta--sm::after, .blue-alt.card--cta--md::after, .blue-alt.card--cta--lg::after, .blue-alt.card--cta--swiper::after, .card--cta.orange-alt::after, .orange-alt.card--cta--sm::after, .orange-alt.card--cta--md::after, .orange-alt.card--cta--lg::after, .orange-alt.card--cta--swiper::after {
  top: 0;
  height: 170%;
  mix-blend-mode: unset;
  transform: translate(25%, -10%);
}
@media only screen and (min-width: 48rem) {
  .card--cta.blue-alt .card__body, .blue-alt.card--cta--sm .card__body, .blue-alt.card--cta--md .card__body, .blue-alt.card--cta--lg .card__body, .blue-alt.card--cta--swiper .card__body, .card--cta.orange-alt .card__body, .orange-alt.card--cta--sm .card__body, .orange-alt.card--cta--md .card__body, .orange-alt.card--cta--lg .card__body, .orange-alt.card--cta--swiper .card__body {
    max-width: 22rem;
  }
}
.card--cta.blue-alt, .blue-alt.card--cta--sm, .blue-alt.card--cta--md, .blue-alt.card--cta--lg, .blue-alt.card--cta--swiper {
  background-image: linear-gradient(101deg, #0890a5 29.37%, #efc5a7 100%);
}
.card--cta.blue-alt .card__body h3, .blue-alt.card--cta--sm .card__body h3, .blue-alt.card--cta--md .card__body h3, .blue-alt.card--cta--lg .card__body h3, .blue-alt.card--cta--swiper .card__body h3 {
  color: #ffffff;
}
.card--cta.blue-alt::before, .blue-alt.card--cta--sm::before, .blue-alt.card--cta--md::before, .blue-alt.card--cta--lg::before, .blue-alt.card--cta--swiper::before, .card--cta.blue-alt::after, .blue-alt.card--cta--sm::after, .blue-alt.card--cta--md::after, .blue-alt.card--cta--lg::after, .blue-alt.card--cta--swiper::after {
  mix-blend-mode: soft-light;
}
.card--cta.blue-alt::before, .blue-alt.card--cta--sm::before, .blue-alt.card--cta--md::before, .blue-alt.card--cta--lg::before, .blue-alt.card--cta--swiper::before {
  background-color: #F8F8F7;
  opacity: 0.5;
}
.card--cta.blue-alt::after, .blue-alt.card--cta--sm::after, .blue-alt.card--cta--md::after, .blue-alt.card--cta--lg::after, .blue-alt.card--cta--swiper::after {
  background-color: #ffede0;
  opacity: 1;
}
.card--cta.orange-alt, .orange-alt.card--cta--sm, .orange-alt.card--cta--md, .orange-alt.card--cta--lg, .orange-alt.card--cta--swiper {
  background-image: linear-gradient(94deg, #ffede0 28.51%, #cdf7ff 79.23%);
}
.card--cta.orange-alt::before, .orange-alt.card--cta--sm::before, .orange-alt.card--cta--md::before, .orange-alt.card--cta--lg::before, .orange-alt.card--cta--swiper::before {
  background-color: #fd620d;
  opacity: 0.2;
}
.card--cta.orange-alt::after, .orange-alt.card--cta--sm::after, .orange-alt.card--cta--md::after, .orange-alt.card--cta--lg::after, .orange-alt.card--cta--swiper::after {
  background-color: #efc5a7;
  opacity: 0.4;
}
.card--cta--sm, .card--cta--md, .card--cta--lg, .card--cta--swiper {
  position: relative;
  padding: 1.5rem;
}
.card--cta--sm .card__body, .card--cta--md .card__body, .card--cta--lg .card__body, .card--cta--swiper .card__body {
  z-index: 2;
}
.card--cta--sm .card__media, .card--cta--md .card__media, .card--cta--lg .card__media, .card--cta--swiper .card__media {
  z-index: 1;
}
.card--cta--sm .card__media img, .card--cta--md .card__media img, .card--cta--lg .card__media img, .card--cta--swiper .card__media img {
  width: 100%;
}
.card--cta--sm.blue::after, .card--cta--md.blue::after, .card--cta--lg.blue::after, .card--cta--swiper.blue::after {
  background-color: #cdf7ff;
}
.card--cta--sm.green::after, .card--cta--md.green::after, .card--cta--lg.green::after, .card--cta--swiper.green::after {
  background-color: #bfe8c7;
}
.card--cta--sm.orange::after, .card--cta--md.orange::after, .card--cta--lg.orange::after, .card--cta--swiper.orange::after {
  background-color: #efc5a7;
}
.card--cta--sm {
  align-items: center;
}
.card--cta--sm::before {
  top: -0.5rem;
  left: 80%;
  height: 130%;
  background-color: #f1f1f0;
}
.card--cta--sm::after {
  top: 45%;
  left: 55%;
  height: 100%;
  opacity: 50%;
  mix-blend-mode: multiply;
}
@media only screen and (min-width: 48rem) {
  .card--cta--sm {
    padding: 3rem;
    padding-right: 1.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .card--cta--sm::before {
    top: -3rem;
    height: 180%;
  }
  .card--cta--sm::after {
    height: 120%;
  }
}
.card--cta--md .card__media img, .card--cta--swiper .card__media img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 72%;
  width: auto;
}
.card--cta--md::after, .card--cta--swiper::after {
  top: 0;
  right: 0;
  transform: translateX(50%);
  height: 200%;
  opacity: 50%;
}
.card--cta--md.blue::after, .card--cta--swiper.blue::after {
  opacity: 100%;
}
@media only screen and (min-width: 36rem) {
  .card--cta--md .card__body, .card--cta--swiper .card__body {
    max-width: 60%;
  }
}
@media only screen and (min-width: 75rem) {
  .card--cta--md .card__body, .card--cta--swiper .card__body {
    max-width: 30rem;
  }
}
@media only screen and (min-width: 48rem) {
  .card--cta--md {
    padding: 3rem;
  }
}
@media only screen and (min-width: 75rem) {
  .card--cta--md .card__media img {
    height: 60%;
  }
}
.card--cta--lg {
  padding: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 5rem;
}
.card--cta--lg .card__body p {
  color: #696968;
}
.card--cta--lg .card__media {
  margin-right: -1.5rem;
}
.card--cta--lg::after {
  top: 0;
  right: 0;
  transform: translate(30%, 10%);
  height: 160%;
  opacity: 50%;
  mix-blend-mode: multiply;
}
@media only screen and (min-width: 48rem) {
  .card--cta--lg {
    padding: 3.75rem 0 3.75rem 5rem;
  }
  .card--cta--lg .card__body,
.card--cta--lg .card__media {
    flex: 1;
  }
  .card--cta--lg .card__media {
    margin-right: 0;
  }
}
@media only screen and (min-width: 64rem) {
  .card--cta--lg {
    flex-wrap: nowrap;
  }
}
.card--cta--swiper {
  padding: 1.5rem 1.5rem 3.5rem;
}
@media only screen and (min-width: 36rem) {
  .card--cta--swiper .card__media img {
    height: 100%;
  }
}
@media only screen and (min-width: 48rem) {
  .card--cta--swiper {
    padding: 3rem 5rem 6rem;
  }
}
.card--cta--tab {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e9fbff;
  border: 1px solid #9be1f8;
  border-radius: var(--border-radius-md);
}
.card--cta--tab [class^=ri-] {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .card--cta--tab {
    gap: 0.75rem;
  }
}

.modal {
  --f-close-button-width: 1.5rem;
  --f-close-button-height: 1.5rem;
  --f-close-button-color: #000000;
  --f-close-button-hover-color: #0890a5;
  padding: 1.5rem;
  max-width: 64rem;
  border-radius: clamp(
        0.75rem,
        calc(0.75rem + 0.0046296296 * (100vw - 36rem)),
        1rem
    );
  border: 1px solid #e9e9e8;
  background: #ffffff;
}
.modal .f-button[data-fancybox-close] {
  top: 2.5rem;
  right: 2.5rem;
  color: #696968;
}
@media only screen and (min-width: 48rem) {
  .modal {
    padding: 3rem;
  }
}

.offcanvas {
  --oc-width: 100%;
  display: block;
  width: var(--oc-width);
  position: fixed;
  inset-block-start: var(--header-height);
  inset-block-end: 0;
  inset-inline-end: 100%;
  z-index: 999;
  transition: transform 300ms ease-in-out;
  background: #ffffff;
}
@media only screen and (min-width: 48rem) {
  .offcanvas {
    --oc-width: 25rem;
  }
}
.offcanvas--navigation {
  position: absolute;
  top: 100%;
  height: calc(100vh - var(--header-height));
}
.offcanvas.open {
  transform: translateX(100%);
}
.offcanvas[data-side=right] {
  inset-inline-start: 100%;
  inset-inline-end: auto;
}
.offcanvas[data-side=right].open {
  transform: translateX(-100%);
}
@media only screen and (min-width: 36rem) {
  .offcanvas.xs\:offcanvas--static {
    position: static;
    inset: auto;
    transform: none !important;
    transition: none;
    width: auto;
    z-index: auto;
    background-color: transparent;
  }
}
@media only screen and (min-width: 48rem) {
  .offcanvas.sm\:offcanvas--static {
    position: static;
    inset: auto;
    transform: none !important;
    transition: none;
    width: auto;
    z-index: auto;
    background-color: transparent;
  }
}
@media only screen and (min-width: 64rem) {
  .offcanvas.md\:offcanvas--static {
    position: static;
    inset: auto;
    transform: none !important;
    transition: none;
    width: auto;
    z-index: auto;
    background-color: transparent;
  }
}
@media only screen and (min-width: 75rem) {
  .offcanvas.lg\:offcanvas--static {
    position: static;
    inset: auto;
    transform: none !important;
    transition: none;
    width: auto;
    z-index: auto;
    background-color: transparent;
  }
}
@media only screen and (min-width: 90rem) {
  .offcanvas.xl\:offcanvas--static {
    position: static;
    inset: auto;
    transform: none !important;
    transition: none;
    width: auto;
    z-index: auto;
    background-color: transparent;
  }
}
@media only screen and (min-width: 105rem) {
  .offcanvas.xxl\:offcanvas--static {
    position: static;
    inset: auto;
    transform: none !important;
    transition: none;
    width: auto;
    z-index: auto;
    background-color: transparent;
  }
}

.navigation.pagination .nav-links,
.navigation.pagination ul.page-numbers,
.woocommerce-pagination .nav-links,
.woocommerce-pagination ul.page-numbers {
  display: flex;
  gap: 0.25rem;
}
.navigation.pagination .nav-links .page-numbers,
.navigation.pagination ul.page-numbers .page-numbers,
.woocommerce-pagination .nav-links .page-numbers,
.woocommerce-pagination ul.page-numbers .page-numbers {
  display: grid;
  place-content: center;
  height: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #009eb7;
  line-height: 1;
}
.navigation.pagination .nav-links .page-numbers.current,
.navigation.pagination ul.page-numbers .page-numbers.current,
.woocommerce-pagination .nav-links .page-numbers.current,
.woocommerce-pagination ul.page-numbers .page-numbers.current {
  background-color: #009eb7;
  color: #ffffff;
}
.navigation.pagination .nav-links .page-numbers:not(.current):hover,
.navigation.pagination ul.page-numbers .page-numbers:not(.current):hover,
.woocommerce-pagination .nav-links .page-numbers:not(.current):hover,
.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):hover {
  background-color: #ffffff;
  color: #00626e;
  text-decoration: none;
}
.navigation.pagination .nav-links .page-numbers.next, .navigation.pagination .nav-links .page-numbers.prev,
.navigation.pagination ul.page-numbers .page-numbers.next,
.navigation.pagination ul.page-numbers .page-numbers.prev,
.woocommerce-pagination .nav-links .page-numbers.next,
.woocommerce-pagination .nav-links .page-numbers.prev,
.woocommerce-pagination ul.page-numbers .page-numbers.next,
.woocommerce-pagination ul.page-numbers .page-numbers.prev {
  color: #7d7d7c;
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .navigation.pagination .nav-links,
.navigation.pagination ul.page-numbers,
.woocommerce-pagination .nav-links,
.woocommerce-pagination ul.page-numbers {
    gap: 0.5rem;
  }
}

.progress-bar {
  position: relative;
  height: 0.25rem;
  width: 100%;
  background-color: #a7a7a6;
  border-radius: var(--border-radius-full);
}
.progress-bar .active,
.progress-bar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #cdf7ff;
  border-radius: var(--border-radius-full);
}

/* Already present for the bar */
@property --p {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
/* NEW: integer property for the label counter */
@property --int {
  syntax: "<integer>";
  inherits: false;
  initial-value: 0;
}
:root {
  --size: 420px;
  --thickness: 5;
  --track: #e5e7eb;
  --bar: #e74000;
  --end: 75; /* final percent */
}

.progress-ring {
  position: relative;
  width: var(--size);
  height: var(--size);
}
.progress-ring .ring {
  /* Label counts up with an integer custom prop */
}
.progress-ring .ring__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* start at 12 o'clock */
}
.progress-ring .ring__track, .progress-ring .ring__bar {
  fill: none;
  stroke-width: var(--thickness);
  /*vector-effect: non-scaling-stroke;*/
}
.progress-ring .ring__track {
  stroke: var(--track);
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
}
.progress-ring .ring__bar {
  stroke: var(--bar);
  stroke-linecap: round;
  stroke-dasharray: 100;
  /* bar animation via --p (number) */
  --p: 0;
  stroke-dashoffset: calc(100 - var(--p));
  animation: ring-fill 1.6s ease-out forwards;
}
.progress-ring .ring__content {
  position: absolute;
  inset: 10%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  color: #4a4a49;
}
.progress-ring .ring__tag {
  border-radius: clamp(
        0.25rem,
        calc(0.25rem + 0.0046296296 * (100vw - 36rem)),
        0.5rem
    );
  padding: 0.25rem 0.5rem;
  color: #e74000;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background-color: #ffede0;
}
.progress-ring .ring__percentage {
  font-size: clamp(2rem, 0.75rem + 4.167vw, 4.5rem);
  font-family: "Adagio-Slab", "Roboto", BlinkMacSystemFont, sans-serif;
  line-height: 1;
  /* counter from integer var */
  --int: 0;
  counter-reset: num var(--int);
  animation: count-up 1.6s linear forwards;
}
.progress-ring .ring__percentage::after {
  content: counter(num) "%";
}
@media (prefers-reduced-motion: reduce) {
  .progress-ring .ring__bar, .progress-ring .ring__label {
    animation: none;
  }
  .progress-ring .ring__bar {
    stroke-dashoffset: calc(100 - var(--end));
  }
}

@keyframes ring-fill {
  to {
    --p: var(--end);
  }
}
@keyframes count-up {
  from {
    --int: 0;
  }
  to {
    --int: var(--end);
  }
}
.tabs .tab__nav, .woocommerce-tabs .tab__nav, .woocommerce-tabs .wc-tabs {
  display: flex;
  gap: 0.25rem;
}
.tabs .tab__header, .woocommerce-tabs .tab__header, .woocommerce-tabs .wc-tabs li > a {
  line-height: 1;
  transition: 300ms;
}
.tabs .tab__header:hover, .woocommerce-tabs .tab__header:hover, .woocommerce-tabs .wc-tabs li > a:hover, .tabs .tab__header:focus, .woocommerce-tabs .tab__header:focus, .woocommerce-tabs .wc-tabs li > a:focus {
  text-decoration: none;
}
.tabs--buttons .tab__nav, .woocommerce-tabs .tab__nav, .woocommerce-tabs .wc-tabs {
  padding: 0.5rem;
  width: fit-content;
  background-color: #f1f1f0;
  border-radius: var(--border-radius-xl);
}
.tabs--buttons .tab__header, .woocommerce-tabs .tab__header, .woocommerce-tabs .wc-tabs li > a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-xl);
  color: #696968;
  font-size: 1rem;
  font-weight: 500;
}
.tabs--buttons .tab__header:hover, .woocommerce-tabs .tab__header:hover, .woocommerce-tabs .wc-tabs li > a:hover {
  background-color: #ffffff;
  color: #007f93;
}
.tabs--buttons .tab__header.active, .woocommerce-tabs .tab__header.active, .woocommerce-tabs .wc-tabs li > a.active, .tabs--buttons .tab__header[aria-selected=true], .woocommerce-tabs .tab__header[aria-selected=true], .woocommerce-tabs .wc-tabs li > a[aria-selected=true] {
  background-color: #007f93;
  color: #ffffff;
}
@media only screen and (min-width: 48rem) {
  .tabs--buttons .tab__nav, .woocommerce-tabs .tab__nav, .woocommerce-tabs .wc-tabs {
    gap: 0.5rem;
  }
  .tabs--buttons .tab__header, .woocommerce-tabs .tab__header, .woocommerce-tabs .wc-tabs li > a {
    padding: 0.75rem 1rem;
  }
}
.tabs--vertical {
  position: relative;
  gap: 6rem;
}
.tabs--vertical .tab__nav, .tabs--vertical .woocommerce-tabs .wc-tabs, .woocommerce-tabs .tabs--vertical .wc-tabs {
  flex-direction: column;
}
@media only screen and (min-width: 75rem) {
  .tabs--vertical .tab__nav, .tabs--vertical .woocommerce-tabs .wc-tabs, .woocommerce-tabs .tabs--vertical .wc-tabs {
    gap: 3rem;
  }
}
.tabs--vertical .tab__header, .tabs--vertical .woocommerce-tabs .wc-tabs li > a, .woocommerce-tabs .wc-tabs .tabs--vertical li > a {
  color: #7d7d7c;
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
  transition: color 300ms;
}
.tabs--vertical .tab__header:hover, .tabs--vertical .woocommerce-tabs .wc-tabs li > a:hover, .woocommerce-tabs .wc-tabs .tabs--vertical li > a:hover {
  color: #000000;
}
.tabs--vertical .tab__header.active, .tabs--vertical .woocommerce-tabs .wc-tabs li > a.active, .woocommerce-tabs .wc-tabs .tabs--vertical li > a.active {
  color: #ff4c00;
  font-weight: 700;
}
.tabs--vertical .tab__content::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #9be1f8;
  transform: translateX(-3rem);
}

.tooltip {
  position: relative;
  cursor: pointer;
}
.tooltip__content {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 17.5rem;
  opacity: 0;
  transition: 300ms;
  z-index: 98;
  pointer-events: none;
}
@media only screen and (min-width: 75rem) {
  .tooltip__content {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 1rem);
  }
}
.tooltip:hover .tooltip__content {
  opacity: 1;
}

.component--video {
  width: 100%;
  aspect-ratio: 16/9;
}

.upload-container {
  padding: 1.25rem;
  display: grid;
  gap: 1.5rem 3rem;
  background-color: #ffede0;
  border-radius: var(--border-radius-lg);
}
.upload-container__content p {
  margin-bottom: 0;
}
.upload-container__input {
  padding: 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  border: 1px dashed #696968;
  border-radius: var(--border-radius-md);
}
.upload-container__input .btn, .upload-container__input .btn__primary, .upload-container__input article .entry-content .wp-block-button .wp-element-button, article .entry-content .wp-block-button .upload-container__input .wp-element-button, .upload-container__input .btn__secondary, .upload-container__input .btn__tertiary, .upload-container__input section.product .product__overview table.variations .reset_variations, section.product .product__overview table.variations .upload-container__input .reset_variations {
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 97.5rem) {
  .upload-container {
    grid-template-columns: 13fr 7fr;
  }
  .upload-container__input {
    padding-inline: 2rem;
  }
}

.floating-cta {
  position: fixed;
  bottom: 0.625rem;
  right: 1.375rem;
  padding: 0.875rem;
  gap: 0.375rem;
  z-index: 2000000001;
}

.sidebar-content {
  display: grid;
  grid-gap: 4rem;
}
@media only screen and (min-width: 64rem) {
  .sidebar-content {
    grid-template-columns: 300px 1fr;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.accordion__header {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #4a4a49;
  cursor: pointer;
}
.accordion__header .h3, .accordion__header article .entry-content h2, article .entry-content .accordion__header h2, .accordion__header .h4, .accordion__header article .entry-content h3, article .entry-content .accordion__header h3, .accordion__header .h5, .accordion__header article .entry-content h4, article .entry-content .accordion__header h4 {
  color: inherit;
}
.accordion__header * {
  transition: 300ms;
}
@media only screen and (min-width: 64rem) {
  .accordion__header {
    padding: 1rem 2rem;
    gap: 1.5rem;
  }
}
.accordion__icon {
  aspect-ratio: 1;
  width: 2rem;
  height: auto;
}
@media only screen and (min-width: 64rem) {
  .accordion__icon {
    width: 2.75rem;
  }
}
.accordion__toggle {
  margin-left: auto;
}
.accordion__toggle .lines {
  position: relative;
}
.accordion__toggle .lines::before, .accordion__toggle .lines::after {
  content: "";
  display: block;
  width: 21px;
  height: 3px;
  background-color: #00acc8;
  transition: 300ms;
}
.accordion__toggle .lines::after {
  position: absolute;
  top: 0;
  transform: rotate(90deg);
}
.accordion__content {
  display: none;
  padding-inline: 1.5rem;
  color: #4a4a49;
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .accordion__content {
    margin-top: -0.5rem;
    padding-inline: 2rem;
  }
}
.accordion__item {
  width: 100%;
  border-radius: var(--border-radius-lg);
  transition: padding 300ms;
  background-color: #ffffff;
  transition: 300ms;
  border: 1px solid #e9e9e8;
}
.accordion__item:hover, .accordion__item.open {
  border-color: #62cbe8;
}
.accordion__item.open {
  padding-bottom: 0.75rem;
}
.accordion__item.open .accordion__header {
  color: #007f93;
  font-weight: 700;
}
.accordion__item.open .accordion__toggle {
  transform: rotate(180deg);
}
.accordion__item.open .accordion__toggle .lines:after {
  transform: rotate(180deg);
}
.accordion__item--columns {
  border: 1px solid #e9e9e8;
}
.accordion__item--columns .accordion__header {
  color: #4a4a49 !important;
}
@media only screen and (min-width: 75rem) {
  .accordion__item--columns .accordion__header__text {
    width: calc(50% - 3.75rem);
  }
  .accordion__item--columns .accordion__content {
    margin: -2.5rem 3.75rem 0 auto;
    padding: 0;
    width: calc(50% - 3.75rem);
  }
}
.accordion__item--icon {
  padding-block: 1.5rem;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.accordion__item--icon:first-child {
  padding-top: 0;
}
.accordion__item--icon:last-child {
  padding-bottom: 0;
}
.accordion__item--icon:not(:first-child) {
  margin-top: -0.5rem;
}
.accordion__item--icon:not(:last-child) {
  border-bottom: 1px solid #00acc8;
}
.accordion__item--icon .accordion__header {
  padding: 0;
  color: #696968;
}
.accordion__item--icon .accordion__header .h3, .accordion__item--icon .accordion__header article .entry-content h2, article .entry-content .accordion__item--icon .accordion__header h2, .accordion__item--icon .accordion__header .h4, .accordion__item--icon .accordion__header article .entry-content h3, article .entry-content .accordion__item--icon .accordion__header h3, .accordion__item--icon .accordion__header .h5, .accordion__item--icon .accordion__header article .entry-content h4, article .entry-content .accordion__item--icon .accordion__header h4 {
  color: inherit;
}
.accordion__item--icon .accordion__content {
  margin-top: 0.25rem;
  padding-left: 3.25rem;
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .accordion__item--icon .accordion__content {
    margin-top: 1.5rem;
    padding-left: 4.25rem;
  }
}
.accordion__item--icon:hover .accordion__header, .accordion__item--icon.open .accordion__header {
  color: #292928;
}
.accordion__item--icon:hover .accordion__header .h3, .accordion__item--icon:hover .accordion__header article .entry-content h2, article .entry-content .accordion__item--icon:hover .accordion__header h2, .accordion__item--icon:hover .accordion__header .h4, .accordion__item--icon:hover .accordion__header article .entry-content h3, article .entry-content .accordion__item--icon:hover .accordion__header h3, .accordion__item--icon:hover .accordion__header .h5, .accordion__item--icon:hover .accordion__header article .entry-content h4, article .entry-content .accordion__item--icon:hover .accordion__header h4, .accordion__item--icon.open .accordion__header .h3, .accordion__item--icon.open .accordion__header article .entry-content h2, article .entry-content .accordion__item--icon.open .accordion__header h2, .accordion__item--icon.open .accordion__header .h4, .accordion__item--icon.open .accordion__header article .entry-content h3, article .entry-content .accordion__item--icon.open .accordion__header h3, .accordion__item--icon.open .accordion__header .h5, .accordion__item--icon.open .accordion__header article .entry-content h4, article .entry-content .accordion__item--icon.open .accordion__header h4 {
  color: inherit;
}
.accordion__item--tabs {
  border: none !important;
  border-radius: 0;
}
.accordion__item--tabs .accordion__header,
.accordion__item--tabs .accordion__content {
  padding: 0;
}
.accordion__item--tabs .accordion__header {
  color: #7d7d7c;
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
  transition: color 300ms;
}
.accordion__item--tabs .accordion__header:hover {
  color: #000000;
}
.accordion__item--tabs .accordion__content {
  margin-top: 0.75rem;
}
.accordion__item--tabs .accordion__toggle {
  color: #ff4c00;
}
.accordion__item--tabs.open .accordion__header {
  color: #ff4c00;
  font-weight: 700;
}
@media only screen and (min-width: 75rem) {
  .accordion__item--tabs .accordion__header {
    display: none;
  }
  .accordion__item--tabs .accordion__content {
    display: block !important;
    margin-top: 0;
  }
}

.wpcf7 form .grid {
  column-gap: 0.75rem;
}
.wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.wpcf7 form .wpcf7-spinner {
  display: none;
}
.wpcf7 form .wpcf7-checkbox .first {
  margin-left: 0;
}
.wpcf7 form.submitting .wpcf7-spinner {
  display: block;
}
.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #c02b24;
}

.cf7-thanks[hidden] {
  display: none !important;
}

.cf7-form-wrap[hidden] {
  display: none !important;
}

/* optional: hide default CF7 success message */
#quick-quote-modal .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

#wishlist-share-modal .wpcf7-spinner {
  margin: 0.5rem auto !important;
}
#wishlist-share-modal .wpcf7-response-output {
  text-align: center;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: static;
}
.swiper-scrollbar-horizontal {
  background: #f1f1f0;
}
.swiper-scrollbar-drag {
  background: #62cbe8;
}

.swiper-pagination-bullets {
  margin-inline: auto;
  display: flex;
  gap: 0.25rem;
  width: fit-content !important;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 !important;
  background-color: #fb7a2d;
  border-radius: var(--border-radius-full);
  transition: 300ms;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 2rem;
  background-color: #d73700;
}
.swiper-pagination-bullets.swiper-dots--blue .swiper-pagination-bullet {
  background-color: #c5c5c4;
}
.swiper-pagination-bullets.swiper-dots--blue .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00acc8;
}
@media only screen and (min-width: 48rem) {
  .swiper-pagination-bullets {
    gap: 0.5rem;
  }
}

.swiper {
  width: 100%;
  height: auto;
}
.swiper-wrapper {
  align-items: stretch;
  padding-block: 5px;
}
.swiper-slide {
  background: transparent;
  will-change: transform;
  height: auto;
}
.swiper-slide a,
.swiper-slide img {
  display: block;
  width: 100%;
}
.swiper--logo {
  padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem) !important;
}
.swiper--logo .swiper-slide {
  margin-right: 7.5rem;
  width: 200px;
  display: flex;
  align-items: center;
}
.swiper--product-categories .swiper-slide, .swiper--products .swiper-slide, .swiper--why-choose .swiper-slide {
  margin-right: 1rem;
  width: 300px;
}
@media only screen and (max-width: 89.9375rem) {
  .swiper--reviews {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem) !important;
  }
}
.swiper--reviews .swiper-wrapper {
  padding-bottom: 1.5rem;
}
.swiper--social-gallery {
  z-index: auto !important;
}
@media only screen and (max-width: 89.9375rem) {
  .swiper--social-gallery {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem) !important;
  }
}

.woocommerce-cart article .entry-content,
.yith-request-a-quote-page article .entry-content {
  max-width: unset !important;
}

.section--basket > .grid {
  gap: 1.5rem 3rem;
}
@media only screen and (min-width: 90rem) {
  .section--basket > .grid {
    grid-template-columns: 1fr 32rem;
  }
}
.section--basket .woocommerce-cart-form__item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .section--basket .woocommerce-cart-form__item {
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 75rem) {
  .section--basket .woocommerce-cart-form__item {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.yith-ywraq-before-table .button.wc-backward {
  color: #00626e;
}
.yith-ywraq-before-table .button.wc-backward:hover {
  text-decoration: none;
}

#yith-ywraq-form .product-quantity.product__quantity {
  text-align: unset;
  padding: 0;
}
#yith-ywraq-form .product-quantity.product__quantity .quantity {
  width: 100%;
}

.ywraq-with-form .ywraq-form-table-wrapper.wide {
  grid-template-columns: 100% !important;
  row-gap: 1.5rem !important;
}

@media only screen and (min-width: 75rem) {
  .ywraq-with-form .ywraq-form-table-wrapper.wide {
    grid-template-columns: 1fr 350px !important;
    grid-auto-rows: unset !important;
    grid-column-gap: unset !important;
    grid-row-gap: unset !important;
    gap: 2.5rem !important;
  }
}
@media only screen and (min-width: 105rem) {
  .ywraq-with-form .ywraq-form-table-wrapper.wide {
    grid-template-columns: 1fr 500px !important;
  }
}
.request-quote__products {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.request-quote__products .product__item {
  display: flex;
  gap: 1.5rem;
}
.request-quote__products .product__item .form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.request-quote__products .product__item .form__group:input[type=number] {
  padding-right: 0;
  text-align: right;
}
@media only screen and (min-width: 75rem) {
  .request-quote__products .product__item .form__group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
}
.request-quote__products .product__item .form__label {
  margin-left: 0;
  color: #4a4a49;
  font-size: clamp(1rem, 0.938rem + 0.208vw, 1.125rem);
  font-weight: 700;
}
.request-quote__products .product__item .form__input,
.request-quote__products .product__item .form__select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #c5c5c4;
  background-color: #ffffff;
}
.request-quote__products .product__thumbnail img {
  width: 70px;
}
@media only screen and (min-width: 48rem) {
  .request-quote__products .product__thumbnail img {
    width: 230px;
  }
}
.request-quote__products .product__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem 3rem;
}
.request-quote__products .product__body label {
  display: block;
}
@media only screen and (min-width: 48rem) {
  .request-quote__products .product__body .product__content .xl\:grid-cols-2 {
    grid-template-columns: 10rem 1fr !important;
  }
}
.request-quote__products .product__body .product__title {
  color: #292928;
  font-size: clamp(1.125rem, 1.063rem + 0.208vw, 1.25rem);
  margin-bottom: 0.25rem;
}
.request-quote__products .product__body .product__code {
  color: #696968;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 64rem) {
  .request-quote__products .product__body .product__code {
    margin-bottom: 1.5rem;
  }
}
.request-quote__products .product__body .product__variations {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
}
.request-quote__products .product__body .product__meta {
  max-width: 200px;
}
@media only screen and (min-width: 75rem) {
  .request-quote__products .product__body .product__meta {
    text-align: right;
  }
}
.request-quote__products .product__body .product__price--subtotal {
  color: #00626e;
  font-size: clamp(1.125rem, 1.063rem + 0.208vw, 1.25rem);
  font-family: "Adagio-Slab", "Roboto", BlinkMacSystemFont, sans-serif;
}
.request-quote__products .product__body .product__price--unit {
  color: #696968;
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
}
.request-quote__products .product__body .product__remove a,
.request-quote__products .product__body .product__notes a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e74000;
  font-size: 1rem;
  font-weight: 500;
}
.request-quote__products .product__body .product__remove a i,
.request-quote__products .product__body .product__notes a i {
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
}
.request-quote__products .product__body .product__remove a:hover,
.request-quote__products .product__body .product__notes a:hover {
  text-decoration: none;
}
.request-quote__products .product__body .product__notes a {
  color: #00626e;
}
@media only screen and (min-width: 64rem) {
  .request-quote__products .product__body {
    flex-direction: row;
  }
  .request-quote__products .product__body .product__content {
    flex: 1;
  }
}
.request-quote__products--popup .product__item {
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 36rem) {
  .request-quote__products--popup .product__item {
    flex-direction: row;
  }
}
.request-quote__products--popup .product__thumbnail img {
  width: 100%;
  width: 260px;
}
@media only screen and (min-width: 48rem) {
  .request-quote__products--popup .product__thumbnail img {
    width: inherit;
  }
}

.offcanvas--cart {
  border-top-left-radius: clamp(
        0.75rem,
        calc(0.75rem + 0.0046296296 * (100vw - 36rem)),
        1rem
    );
  border-bottom-left-radius: clamp(
        0.75rem,
        calc(0.75rem + 0.0046296296 * (100vw - 36rem)),
        1rem
    );
  top: 0;
}
@media only screen and (min-width: 48rem) {
  .offcanvas--cart {
    width: 30rem;
  }
}
.offcanvas--cart .widget_ywraq_list_quote {
  height: 100%;
}
.offcanvas--cart .widget_ywraq_list_quote .yith-ywraq-list-widget-wrapper {
  height: 100%;
}

.mini-cart {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100vh;
}
.mini-cart__header {
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
}
.mini-cart__content, .mini-cart__content--empty {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
}
.mini-cart__content::-webkit-scrollbar, .mini-cart__content--empty::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #f1f1f0;
}
.mini-cart__content::-webkit-scrollbar-thumb, .mini-cart__content--empty::-webkit-scrollbar-thumb {
  background-color: #62cbe8;
  border-radius: 9999px;
  cursor: pointer;
}
.mini-cart__content::-webkit-scrollbar-thumb:hover, .mini-cart__content--empty::-webkit-scrollbar-thumb:hover {
  background-color: #78d2eb;
}
.mini-cart__content::-webkit-scrollbar-track, .mini-cart__content--empty::-webkit-scrollbar-track {
  background-color: transparent;
}
.mini-cart__content--empty {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mini-cart__content--empty p {
  font-family: "Adagio-Slab", "Roboto", BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
}
.mini-cart__total {
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 1rem 2rem 0.5rem;
}
.mini-cart__total span {
  color: #00626e;
  font-weight: 700;
}
.mini-cart__buttons {
  padding: 0.5rem 2rem 1rem;
}
.mini-cart__toggle:hover {
  text-decoration: none;
}

ul.mini-cart__list {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
ul.mini-cart__list li.hc-mini-cart-item {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  background-color: #F8F8F7;
  border: 1px solid #e9e9e8;
  border-radius: clamp(
        0.75rem,
        calc(0.75rem + 0.0046296296 * (100vw - 36rem)),
        1rem
    );
}
ul.mini-cart__list .hc-mini-cart-thumbnail {
  width: 75px;
  min-width: 60px;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: center;
}
ul.mini-cart__list .hc-mini-cart-thumbnail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
ul.mini-cart__list .hc-mini-cart-thumbnail a.thumbnail__link {
  display: flex;
}
ul.mini-cart__list .hc-mini-cart-details {
  flex: 1;
}
ul.mini-cart__list .hc-mini-cart-details .mini-cart__product-title {
  display: block;
  margin-bottom: 0.5rem;
  color: #4a4a49;
  font-family: "Roboto", BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.75px;
}
ul.mini-cart__list .hc-mini-cart-details .mini-cart__product-title a.mini-cart__product-link {
  color: #4a4a49;
}
ul.mini-cart__list .hc-mini-cart-details .mini-cart__product-title a.mini-cart__product-link:hover, ul.mini-cart__list .hc-mini-cart-details .mini-cart__product-title a.mini-cart__product-linkfocus {
  color: #009eb7;
}
ul.mini-cart__list .hc-mini-cart-details .hc-mini-cart-quantity-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul.mini-cart__list .hc-mini-cart-details .hc-mini-cart-quantity-pricing .hc-mini-cart-quantity {
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
}
ul.mini-cart__list .hc-mini-cart-details .hc-mini-cart-quantity-pricing .hc-mini-cart-quantity strong {
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
}
ul.mini-cart__list .hc-mini-cart-details .hc-mini-cart-quantity-pricing .hc-mini-cart-price {
  color: #00626e;
  font-weight: 700;
}
ul.mini-cart__list .hc-mini-cart-details ul.variation-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.mini-cart__list .hc-mini-cart-details ul.variation-meta li {
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
}
ul.mini-cart__list .hc-mini-cart-details .variation {
  margin-block: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
}
ul.mini-cart__list .hc-mini-cart-details .variation dt {
  font-size: inherit;
  font-weight: 700;
}
ul.mini-cart__list .hc-mini-cart-details .variation dd {
  font-size: inherit;
  margin: 0;
}
ul.mini-cart__list a.yith-ywraq-item-remove.remove,
ul.mini-cart__list a.remove_from_cart_button {
  position: absolute;
  top: 0.5rem !important;
  right: 0.5rem !important;
  left: auto !important;
  color: #d73700;
  font-size: 1rem;
}
ul.mini-cart__list a.yith-ywraq-item-remove.remove:hover,
ul.mini-cart__list a.remove_from_cart_button:hover {
  text-decoration: none;
}

/**
 * Archive Layout
 */
.woo-shop-grid {
  display: grid;
  gap: 2rem;
}
@media only screen and (min-width: 75rem) {
  .woo-shop-grid {
    grid-template-columns: 250px 1fr;
    gap: 3rem;
  }
}
.woo-shop-grid .content-area {
  order: 2;
}

.woo-shop-order-bar {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}
.woo-shop-order-bar.top .woocommerce-pagination {
  display: none;
}
.woo-shop-order-bar.bottom {
  margin-top: 2rem;
  margin-bottom: 0;
  flex-direction: column;
}
@media only screen and (min-width: 75rem) {
  .woo-shop-order-bar {
    justify-content: flex-end;
  }
  .woo-shop-order-bar.bottom {
    justify-content: space-between;
    flex-direction: row;
  }
  .woo-shop-order-bar.top .woocommerce-pagination {
    display: block;
  }
}

/**
 * Brand Archive Description
 */
@media only screen and (min-width: 75rem) {
  .brand-description {
    column-count: 2;
    column-gap: 3rem;
  }
}

/**
 * Ordering Bar
 */
.product-archive-order-bar {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 36rem) {
  .product-archive-order-bar {
    flex-direction: row;
  }
}

/**
 * Ordering select
 */
.woocommerce-ordering {
  margin: 0;
}
.woocommerce-ordering select {
  height: auto;
  margin-left: 0;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  width: auto;
  background-color: #ffffff;
}
@media only screen and (min-width: 75rem) {
  .woo-shop-order-bar .woocommerce-ordering {
    margin-right: auto;
  }
}

/**
 * Results Count
 */
.woocommerce-result-count {
  margin-bottom: 0;
}

/**
 * Product Grid
 */
.products {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  width: 100%;
}
@media only screen and (min-width: 30rem) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 64rem) {
  .products {
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 75rem) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 105rem) {
  .products {
    grid-template-columns: repeat(4, 1fr);
  }
}

li.product {
  list-style: none;
}

.btn__filter {
  display: none;
}
@media only screen and (max-width: 74.9375rem) {
  .btn__filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
  }
  .btn__filter i {
    transition: 300ms;
  }
  .btn__filter:hover, .btn__filter:focus {
    text-decoration: none;
  }
  .btn__filter:hover i, .btn__filter:focus i {
    color: #009eb7;
  }
}

.btn__close i {
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
  transition: 300ms;
}
.btn__close:hover, .btn__close:focus {
  text-decoration: none;
}
.btn__close:hover i, .btn__close:focus i {
  color: #009eb7;
}
@media only screen and (min-width: 75rem) {
  .btn__close {
    display: none;
  }
}

@media only screen and (max-width: 74.9375rem) {
  .offcanvas--filter {
    padding: 2rem;
  }
}

.product-filter-single {
  margin-bottom: 1rem;
  border-bottom: 1px solid #62cbe8;
}
.product-filter-single .bapf_sfilter {
  margin-bottom: 1rem;
}
.product-filter-single .bapf_colaps_togl {
  cursor: pointer;
}
.product-filter-single .bapf_head {
  margin-bottom: 1rem;
}
.product-filter-single .bapf_head h3 {
  color: #4a4a49;
  font-size: 1rem;
  font-family: "Roboto", BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  transition: 300ms;
}
.product-filter-single .bapf_head h3 i {
  font-size: 0.625rem;
}
.product-filter-single .bapf_head:hover h3 {
  color: #007f93;
}
.product-filter-single .bapf_body li:not(:last-child) {
  margin-bottom: 0.75rem !important;
}
.product-filter-single .bapf_body li:not(:has(ul)) {
  display: flex;
}
.product-filter-single .bapf_body li .bapf_ochild,
.product-filter-single .bapf_body li .bapf_cchild {
  align-self: center;
  font-size: 0.75rem;
}
.product-filter-single .bapf_body li .bapf_ochild:before {
  content: "\f078";
}
.product-filter-single .bapf_body li .bapf_cchild:before {
  content: "\f077";
}
.product-filter-single .bapf_body li .bapf_clr_text {
  padding: 0;
  font-size: 1rem;
}
.product-filter-single .bapf_body li label {
  margin-left: 0.25rem;
}
.product-filter-single .bapf_body li ul {
  margin-top: 0.5rem;
}
.product-filter-single .bapf_stylecolor label {
  margin-left: 0;
}
.product-filter-single .bapf_stylecolor .bapf_clr_span {
  margin-left: 0;
  border-radius: 4px;
}
.product-filter-single .bapf_stylecolor .bapf_clr_text {
  margin-left: 0.5rem;
}
.product-filter-single .bapf_slidr_all {
  padding-left: 0.5rem;
}
.product-filter-single .bapf_slidr_main.ui-widget-content .ui-slider-range {
  background: #009eb7;
}
.product-filter-single .bapf_to input,
.product-filter-single .bapf_from input {
  background: #ffffff;
  padding: 0.25rem;
  width: 55%;
}

.circle_with_border_color_class_item .bapf_clr_multi_gradient {
  border-color: gray !important;
}

section.product {
  max-width: 100vw;
  overflow-x: hidden;
}
section.product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-25%, -10%);
  border-radius: 50%;
  height: 100%;
  width: auto;
  aspect-ratio: 1;
  background: #ffede0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  z-index: -1;
}
section.product .yith-ywraq-add-to-quote {
  margin-top: 0 !important;
  height: 100%;
}
section.product .yith-ywraq-add-to-quote .yith-ywraq-add-button {
  display: grid !important;
  align-items: center;
  height: 100% !important;
}
section.product .product__overview > .grid {
  gap: 1.5rem 3rem;
}
@media only screen and (min-width: 90rem) {
  section.product .product__overview > .grid {
    grid-template-columns: 1fr 17.5rem;
  }
}
section.product .product__overview label {
  color: #4a4a49;
  font-size: 1rem;
  font-weight: 700;
}
section.product .product__overview #quantity_input {
  padding: 0.5rem 0.75rem;
  max-width: 7.5rem;
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
}
section.product .product__overview input[name=quantity] {
  display: none;
}
section.product .product__overview table.variations {
  position: relative;
  margin-bottom: 0rem;
}
section.product .product__overview table.variations tr {
  display: grid;
}
section.product .product__overview table.variations tr:not(:first-child) {
  margin-top: 1.5rem;
}
section.product .product__overview table.variations tr th.label {
  justify-self: start;
  padding-bottom: 0.25rem;
}
section.product .product__overview table.variations .reset_variations {
  position: absolute;
  top: 0;
  right: 0.75rem;
  visibility: hidden;
}
section.product .product__overview table.variations .reset_variations::after {
  content: "\eb99";
  font-family: "remixicon";
}
section.product .product__overview .woocommerce-variation-add-to-cart {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #62cbe8;
}
section.product .product__overview .stock.out-of-stock {
  width: fit-content;
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
  background-color: #bf2b00;
}
section.product .woocommerce-product-gallery {
  position: relative;
  width: 100%;
}
section.product .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
}
section.product .woocommerce-product-gallery__wrapper > div {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}
section.product .woocommerce-product-gallery__wrapper a,
section.product .woocommerce-product-gallery .flex-control-thumbs li {
  display: block;
  border: 2px solid #e9e9e8;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}
section.product .woocommerce-product-gallery__wrapper a img,
section.product .woocommerce-product-gallery .flex-control-thumbs li img {
  aspect-ratio: 1;
  object-fit: contain;
}
section.product .woocommerce-product-gallery__image a {
  width: 100%;
}
section.product .woocommerce-product-gallery__image a img {
  width: 100%;
}
section.product .woocommerce-product-gallery .flex-control-thumbs {
  margin-top: 0.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  list-style: none;
}
section.product .woocommerce-product-gallery .flex-control-thumbs li {
  cursor: pointer;
}
section.product .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
}
section.product .product_title {
  margin-bottom: 0.25rem;
  font-family: "Roboto", BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.5rem, 1.25rem + 0.833vw, 2rem);
}
section.product .yith-ywraq-add-button {
  position: relative;
  display: block !important;
}
section.product .yith-ywraq-add-button .add-request-quote-button {
  display: grid !important;
  place-content: center;
  margin: 0 !important;
  height: 100%;
  width: 100%;
}
section.product .yith-ywraq-add-button img.ywraq-loader {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}
section.product .yith_ywraq_add_item_product_message,
section.product .yith_ywraq_add_item_response_message,
section.product .yith_ywraq_add_item_browse_message {
  display: none !important;
}
section.product .single_add_to_cart_button {
  display: none;
}

.woocommerce-tabs .wc-tabs {
  margin-block: 1.5rem;
  width: 100%;
  list-style: none;
}
.woocommerce-tabs .wc-tabs li > a:hover, .woocommerce-tabs .wc-tabs li > a:focus {
  text-decoration: none;
}
@media only screen and (min-width: 64rem) {
  .woocommerce-tabs .wc-tabs {
    margin-block: 3rem;
  }
}

.woocommerce-Tabs-panel table.woocommerce-product-attributes {
  border: 2px solid rgba(0, 98, 110, 0.1);
  border-collapse: collapse;
  font-size: 1rem;
}
.woocommerce-Tabs-panel table.woocommerce-product-attributes tr:nth-child(even) {
  background-color: rgba(0, 98, 110, 0.1);
}
.woocommerce-Tabs-panel table.woocommerce-product-attributes th,
.woocommerce-Tabs-panel table.woocommerce-product-attributes td {
  padding: 0.5rem 0.75rem;
}
.woocommerce-Tabs-panel table.woocommerce-product-attributes th {
  color: #4a4a49;
  font-weight: 700;
  text-align: left;
}

.card--product .yith-add-to-wishlist-button-block {
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  margin: 0;
  display: grid;
  place-content: center;
  height: 2rem;
  aspect-ratio: 1;
  background-color: #ffede0;
  border-radius: var(--border-radius-full);
}
@media only screen and (min-width: 48rem) {
  .card--product .yith-add-to-wishlist-button-block {
    bottom: 1rem;
    right: 1rem;
    height: 3rem;
  }
}

.yith-add-to-wishlist-button-block svg {
  height: 1.5rem !important;
}

.yith-wcwl-add-to-wishlist-button__label {
  display: none;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share {
  float: none;
}
.yith-wcwl-add-to-wishlist__feedback {
  display: none !important;
}

.woocommerce.single-product .product .yith-ywraq-add-to-quote {
  margin-top: 0;
}

.yith-ywraq-add-to-quote,
a.add-request-quote-button.button {
  margin-top: 0;
  border-radius: 99px;
}

.yith-variations-product-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.yith-variations-product-archive .swatch {
  flex: 0 0 auto;
}
.yith-variations-product-archive .swatch--color, .yith-variations-product-archive .swatch--image {
  width: 1.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.yith-variations-product-archive .swatch--color[title=White], .yith-variations-product-archive .swatch--color[title=white], .yith-variations-product-archive .swatch--image[title=White], .yith-variations-product-archive .swatch--image[title=white] {
  border: 1px solid #4a4a49;
}
.yith-variations-product-archive .swatch--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.yith-variations-product-archive .swatch--label {
  border-radius: 0.375rem;
  padding: 0 0.5rem;
  line-height: 1.5rem;
  font-size: 0.75rem;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section--archive {
  padding-top: 2.25rem;
}
.section--archive .archive__filter {
  margin-bottom: 1.25rem;
}
.section--archive .archive__filter .tab__nav, .section--archive .archive__filter .woocommerce-tabs .wc-tabs, .woocommerce-tabs .section--archive .archive__filter .wc-tabs {
  position: relative;
  width: 100%;
}
.section--archive .archive__filter .tab__nav .tab__header, .section--archive .archive__filter .woocommerce-tabs .wc-tabs .tab__header, .woocommerce-tabs .section--archive .archive__filter .wc-tabs .tab__header, .woocommerce-tabs .wc-tabs .section--archive .archive__filter .tab__nav li > a, .section--archive .archive__filter .woocommerce-tabs .wc-tabs li > a, .woocommerce-tabs .section--archive .archive__filter .wc-tabs li > a {
  flex: 1;
  text-align: center;
  font-size: clamp(1.125rem, 1.063rem + 0.208vw, 1.25rem);
  font-weight: 700;
}
.section--archive .archive__filter .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  padding: 0.25rem;
  width: calc(100% - 1rem);
  background-color: #ffffff;
  border: 1px solid #62cbe8;
  border-radius: var(--border-radius-md);
}
.section--archive .archive__filter .dropdown ul {
  max-height: 20rem;
  overflow-y: auto;
}
.section--archive .archive__filter .dropdown ul::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
  background-color: rgba(255, 255, 255, 0.15);
}
.section--archive .archive__filter .dropdown ul::-webkit-scrollbar-thumb {
  background-color: #00626e;
  border-radius: 9999px;
  cursor: pointer;
}
.section--archive .archive__filter .dropdown ul::-webkit-scrollbar-thumb:hover {
  background-color: #007988;
}
.section--archive .archive__filter .dropdown ul::-webkit-scrollbar-track {
  background-color: transparent;
}
.section--archive .archive__filter .dropdown li {
  border-radius: var(--border-radius-sm);
}
.section--archive .archive__filter .dropdown li:hover, .section--archive .archive__filter .dropdown li.active {
  background-color: #e9fbff;
}
.section--archive .archive__filter .dropdown li a {
  padding: 0.5rem 1.25rem;
  width: 100%;
}
.section--archive .archive__filter .dropdown li a:hover {
  text-decoration: none;
}
@media only screen and (min-width: 48rem) {
  .section--archive .archive__filter {
    margin-bottom: 3rem;
  }
  .section--archive .archive__filter .dropdown {
    left: calc(50% + 0.5rem);
    width: calc(50% - 1rem);
  }
}
.section--archive .archive__grid {
  display: grid;
  gap: 1.5rem;
}
@media only screen and (min-width: 36rem) {
  .section--archive .archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 64rem) {
  .section--archive .archive__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }
}
.section--archive .archive__pagination {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media only screen and (min-width: 36rem) {
  .section--archive .archive__pagination {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 48rem) {
  .section--archive {
    padding-top: 4rem;
  }
  .section--archive .archive__pagination {
    margin-top: 3rem;
    justify-content: space-between;
  }
}

.section--author img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

.section--card-carousel .card--cta--swiper {
  height: 100%;
}
.section--card-carousel .swiper-dots {
  position: absolute;
  bottom: 1.875rem;
  left: 1.5rem;
  z-index: 1;
}
.section--card-carousel .swiper-dots .swiper-pagination-bullet {
  background-color: #9be1f8;
  opacity: 1;
}
@media only screen and (min-width: 48rem) {
  .section--card-carousel .swiper-dots {
    bottom: 3rem;
    left: 5rem;
  }
}
@media only screen and (max-width: 35.9375rem) {
  .section--card-carousel .card--cta--md p {
    max-width: 65%;
  }
}

.section--contact > .grid {
  grid-template-rows: auto 1fr;
}
.section--contact .contact__icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  line-height: 0.8;
}
.section--contact input:not([type=submit]),
.section--contact select,
.section--contact textarea {
  background-color: #ffffff;
}
@media only screen and (min-width: 90rem) {
  .section--contact .contact__form {
    grid-area: 1/4/span 2/span 2 !important;
  }
}

article .entry-content {
  max-width: 85rem !important;
}
article .entry-content a:has(img) {
  margin: 0 auto;
  display: block;
}
article .entry-content img,
article .entry-content iframe {
  margin: 1.5rem auto;
  display: block;
  border-radius: var(--border-radius-lg);
}
@media only screen and (min-width: 64rem) {
  article .entry-content img,
article .entry-content iframe {
    max-width: 48rem;
  }
}
article .entry-content iframe {
  aspect-ratio: 16/9;
  height: auto;
}
article .entry-content h2, article .entry-content h3, article .entry-content h4, article .entry-content h5, article .entry-content h6 {
  margin-bottom: 0.75rem;
}
article .entry-content h2:not(:first-child), article .entry-content h3:not(:first-child), article .entry-content h4:not(:first-child), article .entry-content h5:not(:first-child), article .entry-content h6:not(:first-child) {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  article .entry-content h2:not(:first-child), article .entry-content h3:not(:first-child), article .entry-content h4:not(:first-child), article .entry-content h5:not(:first-child), article .entry-content h6:not(:first-child) {
    margin-top: 3rem;
  }
}
article .entry-content p a {
  color: #00626e;
  text-decoration: underline;
}
@media only screen and (min-width: 48rem) {
  article .entry-content figure {
    margin: 3rem 0;
  }
  article .entry-content figure * {
    display: block;
    margin: 0 auto;
  }
  article .entry-content .wp-block-button .wp-element-button {
    min-width: 14.5rem;
  }
}

.section--faqs {
  position: relative;
  background-image: linear-gradient(94deg, #ffede0 28.51%, #cdf7ff 79.23%);
  overflow: hidden;
}
.section--faqs > * {
  position: relative;
  z-index: 1;
}
.section--faqs::before, .section--faqs::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-45%, -45%);
  width: 80%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #ffede0;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}
.section--faqs::after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  transform: translate(30%, 30%);
  width: 60%;
  background: #fefefc;
  mix-blend-mode: unset;
}
@media only screen and (min-width: 64rem) {
  .section--faqs::before {
    width: 70%;
  }
  .section--faqs::after {
    width: 50%;
  }
  .section--faqs .section__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}

.page-faqs .section__sidebar .scroll-to-section {
  transition: 300ms;
}
.page-faqs .section__sidebar .scroll-to-section:hover, .page-faqs .section__sidebar .scroll-to-section:focus {
  text-decoration: none;
}
.page-faqs .section__sidebar .scroll-to-section:hover {
  color: #007f93;
}

.section--happiness-status {
  position: relative;
  background-image: linear-gradient(101deg, #00acc8 29.37%, #e74000 100%);
  overflow: hidden;
}
.section--happiness-status > * {
  position: relative;
  z-index: 3;
}
.section--happiness-status::before, .section--happiness-status::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translate(-25%, -50%);
  height: 130%;
  width: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(212deg, #007f93 21.07%, transparent 77.66%);
  mix-blend-mode: multiply;
  opacity: 40%;
  pointer-events: none;
}
.section--happiness-status::after {
  z-index: 2;
  transform: translate(70%, -10%);
  height: 90%;
  background: #F8F8F7;
  mix-blend-mode: soft-light;
  opacity: 20%;
}

.section--happiness-rating .rating__icon {
  width: 65px;
  height: auto;
  flex: 0 1 65px;
  aspect-ratio: 1/1;
}

.section--happiness-comments {
  background: radial-gradient(305% 122% at 70% 100%, #9be1f8 0%, #e9fbff 50%), #e9fbff;
  position: relative;
  overflow: hidden;
}
.section--happiness-comments > * {
  position: relative;
  z-index: 3;
}
.section--happiness-comments::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: translate(25%, 50%);
  width: 40%;
  min-width: 500px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #cdf7ff;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}

.comment__rating, .comment__rating--red, .comment__rating--amber, .comment__rating--green, .comment__rating--gold {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
}
.comment__rating--gold {
  background-color: #BDA65B;
}
.comment__rating--green {
  background-color: #5fb12b;
}
.comment__rating--amber {
  background-color: #e8ad2f;
}
.comment__rating--red {
  background-color: #c91b16;
}

.section--our-process {
  position: relative;
}
.section--our-process > * {
  position: relative;
  z-index: 1;
}
.section--our-process::before, .section--our-process::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-40%, -40%);
  width: 50%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(220deg, #007f93 21.07%, transparent 77.66%);
  opacity: 0.05;
  pointer-events: none;
}
.section--our-process::after {
  left: auto;
  right: 0;
  transform: translate(20%, -5%);
  width: 80%;
  background: linear-gradient(310deg, transparent 79.79%, #F8F8F7 85.23%);
  opacity: 1;
}
.section--our-process .process-item {
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
}
.section--our-process .process-item:not(:last-child)::after {
  content: "\ea6c";
  position: absolute;
  top: 2rem;
  left: 100%;
  color: #e74000;
  font-size: 1.25rem;
  font-family: "remixicon";
}

.section--page-heading {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.section--page-heading > * {
  position: relative;
  z-index: 1;
}
.section--page-heading + .byline-container {
  position: relative;
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, -1.714rem + 10.714vw, 9rem) 0;
  max-width: 85rem;
  text-align: center;
}
.section--page-heading + .byline-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  width: calc(100% - clamp(1.5rem, -1.714rem + 10.714vw, 9rem) * 2);
  height: 1px;
  background: #fd620d;
}
.section--page-heading:after {
  content: "";
  border-radius: 50%;
  width: 60%;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(20%, 0);
  opacity: 0.3;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section--page-heading.accent-orange, .section--page-heading.accent-orange--alt {
  background: linear-gradient(0deg, transparent 42.61%, #ffede0 100%);
}
.section--page-heading.accent-orange:after, .section--page-heading.accent-orange--alt:after {
  background: #ffede0;
}
.section--page-heading.accent-orange--alt:after {
  bottom: auto;
  top: 0;
  transform: translate(20%, -10%);
}
.section--page-heading.accent-blue {
  background: linear-gradient(0deg, transparent 5%, #e9fbff 100%);
}
.section--page-heading.accent-blue:after {
  opacity: 0.6;
  background: #e9fbff;
}

.section.product-categories, .product-categories.section--timeline, .product-categories.section--team, .product-categories.section--global-tabs, .product-categories.section--social-gallery, .product-categories.section--basket, section.product-categories.product, .product-categories.section--card-carousel, .product-categories.section--contact, .product-categories.section--faqs, .product-categories.section--happiness-status, .product-categories.section--happiness-rating, .product-categories.section--happiness-comments, .product-categories.section--our-process {
  position: relative;
}
.section.product-categories > *, .product-categories.section--timeline > *, .product-categories.section--team > *, .product-categories.section--global-tabs > *, .product-categories.section--social-gallery > *, .product-categories.section--basket > *, section.product-categories.product > *, .product-categories.section--card-carousel > *, .product-categories.section--contact > *, .product-categories.section--faqs > *, .product-categories.section--happiness-status > *, .product-categories.section--happiness-rating > *, .product-categories.section--happiness-comments > *, .product-categories.section--our-process > * {
  position: relative;
  z-index: 1;
}
.section.product-categories::before, .product-categories.section--timeline::before, .product-categories.section--team::before, .product-categories.section--global-tabs::before, .product-categories.section--social-gallery::before, .product-categories.section--basket::before, section.product-categories.product::before, .product-categories.section--card-carousel::before, .product-categories.section--contact::before, .product-categories.section--faqs::before, .product-categories.section--happiness-status::before, .product-categories.section--happiness-rating::before, .product-categories.section--happiness-comments::before, .product-categories.section--our-process::before {
  content: "";
  position: absolute;
  left: -10rem;
  top: 0;
  transform: translateY(-50%);
  width: 22rem;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #e9fbff;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
@media only screen and (min-width: 64rem) {
  .section.product-categories::before, .product-categories.section--timeline::before, .product-categories.section--team::before, .product-categories.section--global-tabs::before, .product-categories.section--social-gallery::before, .product-categories.section--basket::before, section.product-categories.product::before, .product-categories.section--card-carousel::before, .product-categories.section--contact::before, .product-categories.section--faqs::before, .product-categories.section--happiness-status::before, .product-categories.section--happiness-rating::before, .product-categories.section--happiness-comments::before, .product-categories.section--our-process::before {
    width: 45rem;
  }
}

.section--social-gallery {
  position: relative;
  background-image: linear-gradient(266deg, #ffede0 0.98%, #e9fbff 97.12%);
  overflow: hidden;
}
.section--social-gallery > * {
  position: relative;
  z-index: 3;
}
.section--social-gallery::before, .section--social-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: translate(-10%, 56%);
  width: 30%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #cdf7ff;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.section--social-gallery::after {
  z-index: 2;
  transform: translate(22%, 60%);
  width: 60%;
  background: #00acc8;
  mix-blend-mode: unset;
  opacity: 0.1;
}
.section--social-gallery .social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem);
  color: #e74000;
  transition: all 300ms ease-in-out;
  border: 1px solid #e9e9e8;
}
.section--social-gallery .social-icons a:hover {
  background-color: #e74000;
  border-color: #e74000;
  color: #ffffff;
  text-decoration: none;
}

.section--global-tabs .card--member {
  max-width: unset;
}
.section--global-tabs .card--member .card__media {
  flex: 0 0 8rem;
}
@media only screen and (min-width: 64rem) {
  .section--global-tabs .card-container {
    margin-left: calc(25% + 6rem);
  }
}

.section--team {
  position: relative;
  background-image: linear-gradient(296deg, #ffede0 0.98%, rgba(255, 237, 224, 0.3) 100%);
  overflow: hidden;
}
.section--team > * {
  position: relative;
  z-index: 3;
}
.section--team::before, .section--team::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transform: translate(12%, 45%);
  width: 50%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #e9fbff;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section--team::after {
  left: auto;
  right: 0;
  z-index: 1;
  transform: translate(15%, 5%);
  width: 70%;
  background-image: linear-gradient(115deg, #ffede0 19.51%, #ff4c00 65.9%);
  mix-blend-mode: unset;
}

.section--text-media .section__content {
  margin: 0 auto;
  max-width: 67rem;
}

.section--timeline {
  position: relative;
  background-image: linear-gradient(101deg, #00acc8 29.37%, #e74000 100%);
  overflow: hidden;
}
.section--timeline > * {
  position: relative;
  z-index: 3;
}
.section--timeline::before, .section--timeline::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translate(-25%, -50%);
  height: 130%;
  width: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(212deg, #007f93 21.07%, transparent 77.66%);
  mix-blend-mode: multiply;
  opacity: 40%;
  pointer-events: none;
}
.section--timeline::after {
  z-index: 2;
  transform: translate(70%, -10%);
  height: 90%;
  background: #F8F8F7;
  mix-blend-mode: soft-light;
  opacity: 20%;
}
.section--timeline .swiper-slide:not(:last-child) .timeline__year {
  position: relative;
}
.section--timeline .swiper-slide:not(:last-child) .timeline__year::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  height: 2px;
  width: calc(100% + 3rem);
  background: linear-gradient(90deg, transparent 5%, #cdf7ff 15%, #cdf7ff 85%, transparent 95%);
  z-index: -1;
}
.section--timeline .swiper-scrollbar-horizontal {
  background: #a7a7a6;
}
.section--timeline .swiper-scrollbar-drag {
  background: #cdf7ff;
}

.section--why-choose .swiper-slide {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: center;
}
.section--why-choose img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.section--why-choose--sm {
  padding-block: 0.75rem;
}
.section--why-choose--sm img {
  max-width: 2.5rem;
}
.section--why-choose--lg {
  padding-block: 1.25rem;
}
.section--why-choose--lg img {
  max-width: 3.25rem;
}
@media only screen and (max-width: 89.9375rem) {
  .section--why-choose .container {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 64rem) {
  .section--why-choose--sm img {
    max-width: 3.25rem;
  }
  .section--why-choose--lg img {
    max-width: 5rem;
  }
  .section--why-choose--lg .swiper-slide {
    flex-direction: column;
    text-align: center;
  }
  .section--why-choose .swiper-slide {
    gap: 0.75rem;
  }
  .section--why-choose .swiper-slide p {
    max-width: 16rem;
  }
}

.site-footer {
  padding-top: 1.5rem;
  padding-bottom: 6rem;
  background-color: #F8F8F7;
  border-top: 1px solid #ff4c00;
}
.site-footer__header, .site-footer__footer {
  display: grid;
}
.site-footer__header {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
}
@media only screen and (max-width: 63.9375rem) {
  .site-footer__header *:first-child, .site-footer__header *:last-child {
    grid-column: 1/3;
  }
}
@media only screen and (min-width: 64rem) and (max-width: 89.9375rem) {
  .site-footer__header *:first-child, .site-footer__header *:last-child {
    grid-column: 1/4;
  }
}
@media only screen and (min-width: 64rem) {
  .site-footer__header {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
  }
}
@media only screen and (min-width: 90rem) {
  .site-footer__header {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (min-width: 105rem) {
  .site-footer__header {
    grid-template-columns: 1fr repeat(3, 14.5rem) 1fr;
  }
}
.site-footer__footer {
  gap: 1.25rem 3rem;
}
.site-footer .site-branding {
  max-width: 17.5rem;
}
.site-footer .dividers {
  display: flex;
  gap: 0.5rem 0.75rem;
  flex-wrap: wrap;
}
.site-footer .dividers > * {
  margin-bottom: 0;
  line-height: 1;
}
.site-footer .dividers > *:not(:last-child) {
  padding-right: 0.75rem;
  border-right: 2px solid #7d7d7c;
}
.site-footer .accreditations img {
  height: 6.25rem;
}
.site-footer .menu a {
  color: #00626e;
  font-size: 1rem;
}
.site-footer .menu li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 48rem) {
  .site-footer__header {
    gap: 2rem;
  }
}
@media only screen and (min-width: 64rem) {
  .site-footer {
    padding-top: 3rem;
  }
  .site-footer__footer {
    grid-template-columns: auto 1fr;
  }
}

#newsletter-modal {
  padding: 1.5rem;
  max-width: 35rem;
}
#newsletter-modal .form__group {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  #newsletter-modal {
    padding: 3rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  width: 100vw;
  overflow-x: clip;
  z-index: 2000000002;
}
.site-header .site-branding {
  flex-shrink: 0;
}
.site-header .site-branding * {
  display: block;
}
.site-header .site-branding img {
  height: calc(var(--header-height) - 1.5rem);
  width: auto;
}
.site-header .site-branding .site-title {
  position: absolute;
  top: -100vh;
}
.site-header__contact {
  position: relative;
  z-index: 99;
}
.site-header__top {
  padding-block: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  background-color: #ffffff;
}
.site-header__bottom {
  display: none;
  padding-block: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1rem);
}
.site-header__bottom:has(.mega-menu.open) {
  background-color: #ffffff;
}
.site-header .search-toggle:focus {
  background-color: #ffffff;
  color: #009eb7;
}
.site-header .cart-toggle {
  position: relative;
}
.site-header .cart-toggle .cart-count {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  display: grid;
  place-content: center;
  width: 1.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 0.125rem;
  background-color: #e74000;
  color: #ffffff;
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem);
  line-height: 1.4;
}
@media only screen and (max-width: 74.9375rem) {
  .site-header__top .btn__icon:not(.search-submit), .site-header__top .btn__icon--sm:not(.search-submit), .site-header__top .btn__icon__filled:not(.search-submit) {
    padding: 0;
    border: none;
  }
  .site-header .search-form {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0.75rem 0.75rem;
    background-color: #ffffff;
    transition: 300ms;
    z-index: -1;
  }
  .site-header .search-form.open {
    top: 100%;
  }
  .site-header .search-form .search-submit {
    top: 41%;
    right: 1.125rem;
  }
}
@media only screen and (min-width: 75rem) {
  .site-header__bottom {
    display: block;
  }
}

.backdrop {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 99;
}

/**
 * Generic styles for both menus
 */
ul.menu > li > a {
  color: #4a4a49;
  font-size: 1rem;
  font-weight: 500;
}
ul.menu .menu-item-has-children.open > a [class^=ri-] {
  transform: rotate(180deg);
}
ul.menu .menu-item-has-children.open > .sub-menu {
  display: block !important;
}
ul.menu .menu-item-has-children.open > .mega-menu-container,
ul.menu .menu-item-has-children.open > .categories-container {
  display: grid !important;
}

ul.sub-menu.has_columns {
  column-count: 2;
  column-gap: 1.5rem;
}

.menu-item-has-children > ul.sub-menu {
  display: none;
}

.menu > .menu-item-has-children > ul.sub-menu {
  color: #000000;
  font-size: 1rem;
}
.menu > .menu-item-has-children > ul.sub-menu li:not(:last-child) {
  margin-bottom: 0.25rem;
}
@media only screen and (min-width: 75rem) {
  .menu > .menu-item-has-children > ul.sub-menu {
    padding: 0.25rem;
    background-color: #ffffff;
    border: 1px solid #62cbe8;
    border-radius: var(--border-radius-md);
  }
  .menu > .menu-item-has-children > ul.sub-menu li > a {
    padding: 0.5rem 1.25rem;
    width: 100%;
  }
}

/**
Desktop Menu
 */
#site-navigation {
  display: none;
}
#site-navigation a:hover, #site-navigation a:focus {
  text-decoration: none;
}
#site-navigation ul.menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  height: 100%;
}
#site-navigation ul.menu > li {
  display: grid;
  place-items: center;
  border-radius: var(--border-radius-full);
  transition: 300ms;
}
#site-navigation ul.menu > li:hover {
  background-color: #F8F8F7;
}
#site-navigation ul.menu > li > a {
  padding: 0.5rem 0.75rem;
  transition: 300ms;
}
#site-navigation ul.menu > li > a:hover {
  color: #00626e;
}
#site-navigation ul.menu > li:not(:has(.mega-menu-container)):not(:has(.categories-container)) {
  position: relative;
}
#site-navigation ul.menu > li:first-child > a, #site-navigation ul.menu > li.blue > a, #site-navigation ul.menu > li.orange > a {
  color: #ffffff !important;
  font-weight: 700;
}
#site-navigation ul.menu > li:first-child {
  background-color: #009eb7;
}
#site-navigation ul.menu > li:first-child:hover, #site-navigation ul.menu > li:first-child.open {
  background-color: #007f93;
}
#site-navigation ul.menu > li.blue {
  background-color: #00626e;
}
#site-navigation ul.menu > li.blue:hover, #site-navigation ul.menu > li.blue.open {
  background-color: #0890a5;
}
#site-navigation ul.menu > li.orange {
  background-color: #e74000;
}
#site-navigation ul.menu > li.orange:hover, #site-navigation ul.menu > li.orange.open {
  background-color: #bf2b00;
}
#site-navigation ul.menu > li > ul.sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  width: 12.5rem;
  z-index: 1;
}
#site-navigation ul.menu > li > ul.sub-menu > li {
  border-radius: var(--border-radius-sm);
}
#site-navigation ul.menu > li > ul.sub-menu > li:hover {
  background-color: #e9fbff;
}
#site-navigation ul.menu > li [class^=ri-] {
  margin-left: 0.25rem;
  transition: 300ms;
}
#site-navigation ul.menu > li.open {
  background-color: #e9fbff;
}
#site-navigation ul.menu > li.open > a {
  color: #00626e;
}
@media only screen and (min-width: 90rem) {
  #site-navigation ul.menu {
    align-items: stretch;
  }
}
#site-navigation .mega-menu-container,
#site-navigation .categories-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  gap: 5rem;
  padding: 3rem clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  width: 100%;
  background-color: #ffffff;
}
#site-navigation .mega-menu-container {
  grid-template-columns: 12rem 1fr;
}
#site-navigation .mega-menu-container .mega-menu-items {
  padding-right: 0.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
}
#site-navigation .mega-menu-container .mega-menu-items .mega-menu__item {
  margin-right: 5rem;
  display: none;
}
#site-navigation .mega-menu-container .mega-menu-items .mega-menu__item > .sub-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#site-navigation .mega-menu-container .mega-menu-items .mega-menu__item > .sub-menu > li {
  flex-basis: 10rem;
  flex-shrink: 0;
}
#site-navigation .mega-menu-container .mega-menu-items .mega-menu__item > .sub-menu > li > a {
  margin-bottom: 1.5rem;
  color: #00626e;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}
#site-navigation .mega-menu-container .mega-menu-items .mega-menu__item > .sub-menu > li .sub-menu {
  display: block;
  color: #4a4a49;
  font-size: 1rem;
}
#site-navigation .mega-menu-container .mega-menu-items .mega-menu__item > .sub-menu > li .sub-menu li:not(:last-child) {
  margin-bottom: 0.75rem;
}
#site-navigation .mega-menu-container .mega-menu-items .mega-menu__image {
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 75rem) {
  #site-navigation .mega-menu-container .mega-menu-items {
    max-height: 60vh;
    overflow-y: auto;
  }
  #site-navigation .mega-menu-container .mega-menu-items::-webkit-scrollbar {
    width: 0.4rem;
    height: 0.4rem;
    background-color: rgba(255, 255, 255, 0.15);
  }
  #site-navigation .mega-menu-container .mega-menu-items::-webkit-scrollbar-thumb {
    background-color: #00626e;
    border-radius: 9999px;
    cursor: pointer;
  }
  #site-navigation .mega-menu-container .mega-menu-items::-webkit-scrollbar-thumb:hover {
    background-color: #007988;
  }
  #site-navigation .mega-menu-container .mega-menu-items::-webkit-scrollbar-track {
    background-color: transparent;
  }
  #site-navigation .mega-menu-container .mega-menu-items .mega-menu__image {
    position: sticky;
    top: 0;
    max-height: 60vh;
  }
}
#site-navigation .mega-menu-container > .sub-menu {
  position: relative;
}
#site-navigation .mega-menu-container > .sub-menu li {
  color: #00626e;
  font-size: clamp(1.125rem, 1.063rem + 0.208vw, 1.25rem);
  font-weight: 700;
}
#site-navigation .mega-menu-container > .sub-menu li a {
  white-space: nowrap;
}
#site-navigation .mega-menu-container > .sub-menu li:not(:last-child) {
  margin-bottom: 0.75rem;
  transition: 300ms;
}
#site-navigation .mega-menu-container > .sub-menu li:not(:last-child):hover {
  color: #007f93;
}
#site-navigation .mega-menu-container > .sub-menu li:not(:last-child) > a {
  width: 100%;
}
#site-navigation .categories-container .sub-menu {
  --line: 1px;
  --line-color: #62cbe8;
  margin-left: -3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem var(--line);
  /* 3 vertical rules at 25%, 50%, 75% of the grid width */
  background: linear-gradient(to bottom, var(--line-color), var(--line-color)) 0 0/var(--line) 100% no-repeat, linear-gradient(to bottom, var(--line-color), var(--line-color)) 0 0/var(--line) 100% no-repeat, linear-gradient(to bottom, var(--line-color), var(--line-color)) 0 0/var(--line) 100% no-repeat;
  background-position: calc(25% - var(--line) / 2) 0, calc(50% - var(--line) / 2) 0, calc(75% - var(--line) / 2) 0;
}
#site-navigation .categories-container .sub-menu > li {
  padding-left: 3rem;
}
@media only screen and (min-width: 75rem) {
  #site-navigation {
    display: flex;
  }
}

/**
Mobile Menu
 */
#mobile-navigation {
  overflow-x: clip;
  overflow-y: auto;
}
#mobile-navigation::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
  background-color: rgba(255, 255, 255, 0.15);
}
#mobile-navigation::-webkit-scrollbar-thumb {
  background-color: #00626e;
  border-radius: 9999px;
  cursor: pointer;
}
#mobile-navigation::-webkit-scrollbar-thumb:hover {
  background-color: #007988;
}
#mobile-navigation::-webkit-scrollbar-track {
  background-color: transparent;
}
#mobile-navigation ul.menu > li,
#mobile-navigation ul.menu .btn__tertiary,
#mobile-navigation ul.menu section.product .product__overview table.variations .reset_variations,
section.product .product__overview table.variations #mobile-navigation ul.menu .reset_variations,
#mobile-navigation ul.sub-menu > li,
#mobile-navigation ul.sub-menu .btn__tertiary,
#mobile-navigation ul.sub-menu section.product .product__overview table.variations .reset_variations,
section.product .product__overview table.variations #mobile-navigation ul.sub-menu .reset_variations {
  padding: 1rem 0.75rem !important;
}
#mobile-navigation ul.menu > li:first-child > a {
  color: #00626e;
  font-weight: 700;
}
#mobile-navigation li.open > .offcanvas-panel {
  transform: translateX(-100%);
}
#mobile-navigation .offcanvas-panel {
  position: absolute;
  top: 0;
  left: 100%;
  height: 100vh;
  width: 100%;
  background-color: #ffffff;
  transition: 300ms;
}
#mobile-navigation .offcanvas-back {
  padding-block: 0.25rem !important;
  justify-content: start;
  width: 100%;
  border-bottom: 1px solid #62cbe8;
  border-radius: 0;
  cursor: pointer;
}
@media only screen and (min-width: 75rem) {
  #mobile-navigation {
    display: none;
  }
}

/**
Menu Toggle Button
 */
.menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  z-index: 1;
}
.menu-toggle .hamburger {
  position: relative;
  width: 24px;
  height: 19px;
}
.menu-toggle .line {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background: #009eb7;
  transition: margin 100ms 150ms, transform 200ms;
}
.menu-toggle .line1 {
  top: 0;
}
.menu-toggle .line2 {
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle .line3 {
  bottom: 0;
}
.menu-toggle.open .line {
  transition: margin 200ms, transform 100ms 150ms;
}
.menu-toggle.open .line1 {
  margin-top: 8px;
  transform: rotate(45deg);
}
.menu-toggle.open .line2 {
  transform: rotateY(90deg);
}
.menu-toggle.open .line3 {
  margin-bottom: 9px;
  transform: rotate(-45deg);
}
@media only screen and (min-width: 75rem) {
  .menu-toggle {
    display: none;
  }
}

.section, .section--basket, section.product, .section--card-carousel, .section--contact, .section--faqs, .section--happiness-status, .section--happiness-rating, .section--happiness-comments, .section--our-process, .section--social-gallery, .section--global-tabs, .section--team, .section--timeline {
  margin-block: var(--section-padding);
}

.section--page-heading + section {
  margin-top: 0;
}

.sidebar--banner {
  padding: 1.25rem;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  text-align: center;
}
.sidebar--banner .swiper-slide {
  line-height: 1.1;
}
.sidebar--banner .swiper-slide svg {
  margin: 0.5rem auto 1.5rem;
  height: 5rem;
}
.sidebar--banner .swiper-dots {
  margin-top: 1.5rem;
}
.sidebar--banner .card--member {
  margin: 0 auto;
  justify-content: center;
}
@media only screen and (min-width: 75rem) {
  .sidebar--banner {
    padding-block: 1.5rem;
    gap: 2.5rem;
  }
  .sidebar--banner .swiper {
    max-width: 10rem;
  }
  .sidebar--banner .card--member {
    justify-content: start;
  }
}

.sidebar--process {
  padding: 1.25rem;
}
.sidebar--process .grid {
  gap: 1.25rem 1.5rem;
}
.sidebar--process__featured {
  margin-inline: auto;
  max-width: 10rem;
}
.sidebar--process__featured img {
  margin: 0 auto 1rem;
  height: 5rem;
}
.sidebar--process__carousel p {
  width: 100%;
  text-align: center;
}
.sidebar--process__carousel p:not(:last-child) {
  margin-bottom: 0.375rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #62cbe8;
}
.sidebar--process__carousel .swiper-dots {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 75rem) {
  .sidebar--process {
    padding: 1.5rem;
    max-width: 32rem;
  }
  .sidebar--process .grid {
    grid-template-columns: 10rem calc(100% - 11.5rem);
  }
  .sidebar--process__carousel p {
    text-align: left;
  }
  .sidebar--process__carousel p:not(:last-child) {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sidebar--process__carousel .swiper-dots {
    margin-inline: 0;
  }
}

.sidebar-shop .sidebar__body {
  font-size: 1rem;
}
@media only screen and (min-width: 75rem) {
  .sidebar-shop .sidebar__body {
    position: sticky;
    top: 5rem;
    padding-right: 0.5rem;
    height: fit-content;
    max-height: 75vh;
    overflow-y: auto;
  }
  .sidebar-shop .sidebar__body::-webkit-scrollbar {
    width: 0.4rem;
    height: 0.4rem;
    background-color: rgba(255, 255, 255, 0.15);
  }
  .sidebar-shop .sidebar__body::-webkit-scrollbar-thumb {
    background-color: #00626e;
    border-radius: 9999px;
    cursor: pointer;
  }
  .sidebar-shop .sidebar__body::-webkit-scrollbar-thumb:hover {
    background-color: #007988;
  }
  .sidebar-shop .sidebar__body::-webkit-scrollbar-track {
    background-color: transparent;
  }
}
@media only screen and (min-width: 90rem) {
  .sidebar-shop .sidebar__body {
    top: 14rem;
  }
}
@media only screen and (min-width: 1820px) {
  .sidebar-shop .sidebar__body {
    top: 11rem;
    max-height: 80vh;
  }
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

.bg-orange-50 {
  background-color: #ffede0 !important;
}

.text-orange-50 {
  color: #ffede0 !important;
}
.text-orange-50 h1, .text-orange-50 h2, .text-orange-50 h3, .text-orange-50 h4, .text-orange-50 h5, .text-orange-50 h6,
.text-orange-50 .h1,
.text-orange-50 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-50 h3, .text-orange-50 .h2, .text-orange-50 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-50 h3, .text-orange-50 .h3, .text-orange-50 article .entry-content h2, article .entry-content .text-orange-50 h2, .text-orange-50 .h4, .text-orange-50 article .entry-content h3, article .entry-content .text-orange-50 h3, .text-orange-50 .h5, .text-orange-50 article .entry-content h4, article .entry-content .text-orange-50 h4, .text-orange-50 .h6, .text-orange-50 article .entry-content h5, article .entry-content .text-orange-50 h5 {
  color: inherit !important;
}

.bg-orange-100 {
  background-color: #efc5a7 !important;
}

.text-orange-100 {
  color: #efc5a7 !important;
}
.text-orange-100 h1, .text-orange-100 h2, .text-orange-100 h3, .text-orange-100 h4, .text-orange-100 h5, .text-orange-100 h6,
.text-orange-100 .h1,
.text-orange-100 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-100 h3, .text-orange-100 .h2, .text-orange-100 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-100 h3, .text-orange-100 .h3, .text-orange-100 article .entry-content h2, article .entry-content .text-orange-100 h2, .text-orange-100 .h4, .text-orange-100 article .entry-content h3, article .entry-content .text-orange-100 h3, .text-orange-100 .h5, .text-orange-100 article .entry-content h4, article .entry-content .text-orange-100 h4, .text-orange-100 .h6, .text-orange-100 article .entry-content h5, article .entry-content .text-orange-100 h5 {
  color: inherit !important;
}

.bg-orange-200 {
  background-color: #f5b081 !important;
}

.text-orange-200 {
  color: #f5b081 !important;
}
.text-orange-200 h1, .text-orange-200 h2, .text-orange-200 h3, .text-orange-200 h4, .text-orange-200 h5, .text-orange-200 h6,
.text-orange-200 .h1,
.text-orange-200 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-200 h3, .text-orange-200 .h2, .text-orange-200 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-200 h3, .text-orange-200 .h3, .text-orange-200 article .entry-content h2, article .entry-content .text-orange-200 h2, .text-orange-200 .h4, .text-orange-200 article .entry-content h3, article .entry-content .text-orange-200 h3, .text-orange-200 .h5, .text-orange-200 article .entry-content h4, article .entry-content .text-orange-200 h4, .text-orange-200 .h6, .text-orange-200 article .entry-content h5, article .entry-content .text-orange-200 h5 {
  color: inherit !important;
}

.bg-orange-300 {
  background-color: #fb7a2d !important;
}

.text-orange-300 {
  color: #fb7a2d !important;
}
.text-orange-300 h1, .text-orange-300 h2, .text-orange-300 h3, .text-orange-300 h4, .text-orange-300 h5, .text-orange-300 h6,
.text-orange-300 .h1,
.text-orange-300 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-300 h3, .text-orange-300 .h2, .text-orange-300 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-300 h3, .text-orange-300 .h3, .text-orange-300 article .entry-content h2, article .entry-content .text-orange-300 h2, .text-orange-300 .h4, .text-orange-300 article .entry-content h3, article .entry-content .text-orange-300 h3, .text-orange-300 .h5, .text-orange-300 article .entry-content h4, article .entry-content .text-orange-300 h4, .text-orange-300 .h6, .text-orange-300 article .entry-content h5, article .entry-content .text-orange-300 h5 {
  color: inherit !important;
}

.bg-orange-400 {
  background-color: #fd620d !important;
}

.text-orange-400 {
  color: #fd620d !important;
}
.text-orange-400 h1, .text-orange-400 h2, .text-orange-400 h3, .text-orange-400 h4, .text-orange-400 h5, .text-orange-400 h6,
.text-orange-400 .h1,
.text-orange-400 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-400 h3, .text-orange-400 .h2, .text-orange-400 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-400 h3, .text-orange-400 .h3, .text-orange-400 article .entry-content h2, article .entry-content .text-orange-400 h2, .text-orange-400 .h4, .text-orange-400 article .entry-content h3, article .entry-content .text-orange-400 h3, .text-orange-400 .h5, .text-orange-400 article .entry-content h4, article .entry-content .text-orange-400 h4, .text-orange-400 .h6, .text-orange-400 article .entry-content h5, article .entry-content .text-orange-400 h5 {
  color: inherit !important;
}

.bg-orange-500 {
  background-color: #ff4c00 !important;
}

.text-orange-500 {
  color: #ff4c00 !important;
}
.text-orange-500 h1, .text-orange-500 h2, .text-orange-500 h3, .text-orange-500 h4, .text-orange-500 h5, .text-orange-500 h6,
.text-orange-500 .h1,
.text-orange-500 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-500 h3, .text-orange-500 .h2, .text-orange-500 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-500 h3, .text-orange-500 .h3, .text-orange-500 article .entry-content h2, article .entry-content .text-orange-500 h2, .text-orange-500 .h4, .text-orange-500 article .entry-content h3, article .entry-content .text-orange-500 h3, .text-orange-500 .h5, .text-orange-500 article .entry-content h4, article .entry-content .text-orange-500 h4, .text-orange-500 .h6, .text-orange-500 article .entry-content h5, article .entry-content .text-orange-500 h5 {
  color: inherit !important;
}

.bg-orange-600 {
  background-color: #e74000 !important;
}

.text-orange-600 {
  color: #e74000 !important;
}
.text-orange-600 h1, .text-orange-600 h2, .text-orange-600 h3, .text-orange-600 h4, .text-orange-600 h5, .text-orange-600 h6,
.text-orange-600 .h1,
.text-orange-600 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-600 h3, .text-orange-600 .h2, .text-orange-600 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-600 h3, .text-orange-600 .h3, .text-orange-600 article .entry-content h2, article .entry-content .text-orange-600 h2, .text-orange-600 .h4, .text-orange-600 article .entry-content h3, article .entry-content .text-orange-600 h3, .text-orange-600 .h5, .text-orange-600 article .entry-content h4, article .entry-content .text-orange-600 h4, .text-orange-600 .h6, .text-orange-600 article .entry-content h5, article .entry-content .text-orange-600 h5 {
  color: inherit !important;
}

.bg-orange-700 {
  background-color: #d73700 !important;
}

.text-orange-700 {
  color: #d73700 !important;
}
.text-orange-700 h1, .text-orange-700 h2, .text-orange-700 h3, .text-orange-700 h4, .text-orange-700 h5, .text-orange-700 h6,
.text-orange-700 .h1,
.text-orange-700 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-700 h3, .text-orange-700 .h2, .text-orange-700 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-700 h3, .text-orange-700 .h3, .text-orange-700 article .entry-content h2, article .entry-content .text-orange-700 h2, .text-orange-700 .h4, .text-orange-700 article .entry-content h3, article .entry-content .text-orange-700 h3, .text-orange-700 .h5, .text-orange-700 article .entry-content h4, article .entry-content .text-orange-700 h4, .text-orange-700 .h6, .text-orange-700 article .entry-content h5, article .entry-content .text-orange-700 h5 {
  color: inherit !important;
}

.bg-orange-800 {
  background-color: #bf2b00 !important;
}

.text-orange-800 {
  color: #bf2b00 !important;
}
.text-orange-800 h1, .text-orange-800 h2, .text-orange-800 h3, .text-orange-800 h4, .text-orange-800 h5, .text-orange-800 h6,
.text-orange-800 .h1,
.text-orange-800 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-800 h3, .text-orange-800 .h2, .text-orange-800 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-800 h3, .text-orange-800 .h3, .text-orange-800 article .entry-content h2, article .entry-content .text-orange-800 h2, .text-orange-800 .h4, .text-orange-800 article .entry-content h3, article .entry-content .text-orange-800 h3, .text-orange-800 .h5, .text-orange-800 article .entry-content h4, article .entry-content .text-orange-800 h4, .text-orange-800 .h6, .text-orange-800 article .entry-content h5, article .entry-content .text-orange-800 h5 {
  color: inherit !important;
}

.bg-orange-900 {
  background-color: #6f1900 !important;
}

.text-orange-900 {
  color: #6f1900 !important;
}
.text-orange-900 h1, .text-orange-900 h2, .text-orange-900 h3, .text-orange-900 h4, .text-orange-900 h5, .text-orange-900 h6,
.text-orange-900 .h1,
.text-orange-900 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-orange-900 h3, .text-orange-900 .h2, .text-orange-900 .card--cta--md .card__body h3, .card--cta--md .card__body .text-orange-900 h3, .text-orange-900 .h3, .text-orange-900 article .entry-content h2, article .entry-content .text-orange-900 h2, .text-orange-900 .h4, .text-orange-900 article .entry-content h3, article .entry-content .text-orange-900 h3, .text-orange-900 .h5, .text-orange-900 article .entry-content h4, article .entry-content .text-orange-900 h4, .text-orange-900 .h6, .text-orange-900 article .entry-content h5, article .entry-content .text-orange-900 h5 {
  color: inherit !important;
}

.bg-blue-50 {
  background-color: #e9fbff !important;
}

.text-blue-50 {
  color: #e9fbff !important;
}
.text-blue-50 h1, .text-blue-50 h2, .text-blue-50 h3, .text-blue-50 h4, .text-blue-50 h5, .text-blue-50 h6,
.text-blue-50 .h1,
.text-blue-50 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-50 h3, .text-blue-50 .h2, .text-blue-50 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-50 h3, .text-blue-50 .h3, .text-blue-50 article .entry-content h2, article .entry-content .text-blue-50 h2, .text-blue-50 .h4, .text-blue-50 article .entry-content h3, article .entry-content .text-blue-50 h3, .text-blue-50 .h5, .text-blue-50 article .entry-content h4, article .entry-content .text-blue-50 h4, .text-blue-50 .h6, .text-blue-50 article .entry-content h5, article .entry-content .text-blue-50 h5 {
  color: inherit !important;
}

.bg-blue-100 {
  background-color: #cdf7ff !important;
}

.text-blue-100 {
  color: #cdf7ff !important;
}
.text-blue-100 h1, .text-blue-100 h2, .text-blue-100 h3, .text-blue-100 h4, .text-blue-100 h5, .text-blue-100 h6,
.text-blue-100 .h1,
.text-blue-100 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-100 h3, .text-blue-100 .h2, .text-blue-100 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-100 h3, .text-blue-100 .h3, .text-blue-100 article .entry-content h2, article .entry-content .text-blue-100 h2, .text-blue-100 .h4, .text-blue-100 article .entry-content h3, article .entry-content .text-blue-100 h3, .text-blue-100 .h5, .text-blue-100 article .entry-content h4, article .entry-content .text-blue-100 h4, .text-blue-100 .h6, .text-blue-100 article .entry-content h5, article .entry-content .text-blue-100 h5 {
  color: inherit !important;
}

.bg-blue-200 {
  background-color: #9be1f8 !important;
}

.text-blue-200 {
  color: #9be1f8 !important;
}
.text-blue-200 h1, .text-blue-200 h2, .text-blue-200 h3, .text-blue-200 h4, .text-blue-200 h5, .text-blue-200 h6,
.text-blue-200 .h1,
.text-blue-200 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-200 h3, .text-blue-200 .h2, .text-blue-200 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-200 h3, .text-blue-200 .h3, .text-blue-200 article .entry-content h2, article .entry-content .text-blue-200 h2, .text-blue-200 .h4, .text-blue-200 article .entry-content h3, article .entry-content .text-blue-200 h3, .text-blue-200 .h5, .text-blue-200 article .entry-content h4, article .entry-content .text-blue-200 h4, .text-blue-200 .h6, .text-blue-200 article .entry-content h5, article .entry-content .text-blue-200 h5 {
  color: inherit !important;
}

.bg-blue-300 {
  background-color: #62cbe8 !important;
}

.text-blue-300 {
  color: #62cbe8 !important;
}
.text-blue-300 h1, .text-blue-300 h2, .text-blue-300 h3, .text-blue-300 h4, .text-blue-300 h5, .text-blue-300 h6,
.text-blue-300 .h1,
.text-blue-300 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-300 h3, .text-blue-300 .h2, .text-blue-300 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-300 h3, .text-blue-300 .h3, .text-blue-300 article .entry-content h2, article .entry-content .text-blue-300 h2, .text-blue-300 .h4, .text-blue-300 article .entry-content h3, article .entry-content .text-blue-300 h3, .text-blue-300 .h5, .text-blue-300 article .entry-content h4, article .entry-content .text-blue-300 h4, .text-blue-300 .h6, .text-blue-300 article .entry-content h5, article .entry-content .text-blue-300 h5 {
  color: inherit !important;
}

.bg-blue-400 {
  background-color: #31bcda !important;
}

.text-blue-400 {
  color: #31bcda !important;
}
.text-blue-400 h1, .text-blue-400 h2, .text-blue-400 h3, .text-blue-400 h4, .text-blue-400 h5, .text-blue-400 h6,
.text-blue-400 .h1,
.text-blue-400 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-400 h3, .text-blue-400 .h2, .text-blue-400 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-400 h3, .text-blue-400 .h3, .text-blue-400 article .entry-content h2, article .entry-content .text-blue-400 h2, .text-blue-400 .h4, .text-blue-400 article .entry-content h3, article .entry-content .text-blue-400 h3, .text-blue-400 .h5, .text-blue-400 article .entry-content h4, article .entry-content .text-blue-400 h4, .text-blue-400 .h6, .text-blue-400 article .entry-content h5, article .entry-content .text-blue-400 h5 {
  color: inherit !important;
}

.bg-blue-500 {
  background-color: #00acc8 !important;
}

.text-blue-500 {
  color: #00acc8 !important;
}
.text-blue-500 h1, .text-blue-500 h2, .text-blue-500 h3, .text-blue-500 h4, .text-blue-500 h5, .text-blue-500 h6,
.text-blue-500 .h1,
.text-blue-500 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-500 h3, .text-blue-500 .h2, .text-blue-500 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-500 h3, .text-blue-500 .h3, .text-blue-500 article .entry-content h2, article .entry-content .text-blue-500 h2, .text-blue-500 .h4, .text-blue-500 article .entry-content h3, article .entry-content .text-blue-500 h3, .text-blue-500 .h5, .text-blue-500 article .entry-content h4, article .entry-content .text-blue-500 h4, .text-blue-500 .h6, .text-blue-500 article .entry-content h5, article .entry-content .text-blue-500 h5 {
  color: inherit !important;
}

.bg-blue-600 {
  background-color: #009eb7 !important;
}

.text-blue-600 {
  color: #009eb7 !important;
}
.text-blue-600 h1, .text-blue-600 h2, .text-blue-600 h3, .text-blue-600 h4, .text-blue-600 h5, .text-blue-600 h6,
.text-blue-600 .h1,
.text-blue-600 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-600 h3, .text-blue-600 .h2, .text-blue-600 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-600 h3, .text-blue-600 .h3, .text-blue-600 article .entry-content h2, article .entry-content .text-blue-600 h2, .text-blue-600 .h4, .text-blue-600 article .entry-content h3, article .entry-content .text-blue-600 h3, .text-blue-600 .h5, .text-blue-600 article .entry-content h4, article .entry-content .text-blue-600 h4, .text-blue-600 .h6, .text-blue-600 article .entry-content h5, article .entry-content .text-blue-600 h5 {
  color: inherit !important;
}

.bg-blue-700 {
  background-color: #0890a5 !important;
}

.text-blue-700 {
  color: #0890a5 !important;
}
.text-blue-700 h1, .text-blue-700 h2, .text-blue-700 h3, .text-blue-700 h4, .text-blue-700 h5, .text-blue-700 h6,
.text-blue-700 .h1,
.text-blue-700 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-700 h3, .text-blue-700 .h2, .text-blue-700 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-700 h3, .text-blue-700 .h3, .text-blue-700 article .entry-content h2, article .entry-content .text-blue-700 h2, .text-blue-700 .h4, .text-blue-700 article .entry-content h3, article .entry-content .text-blue-700 h3, .text-blue-700 .h5, .text-blue-700 article .entry-content h4, article .entry-content .text-blue-700 h4, .text-blue-700 .h6, .text-blue-700 article .entry-content h5, article .entry-content .text-blue-700 h5 {
  color: inherit !important;
}

.bg-blue-800 {
  background-color: #007f93 !important;
}

.text-blue-800 {
  color: #007f93 !important;
}
.text-blue-800 h1, .text-blue-800 h2, .text-blue-800 h3, .text-blue-800 h4, .text-blue-800 h5, .text-blue-800 h6,
.text-blue-800 .h1,
.text-blue-800 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-800 h3, .text-blue-800 .h2, .text-blue-800 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-800 h3, .text-blue-800 .h3, .text-blue-800 article .entry-content h2, article .entry-content .text-blue-800 h2, .text-blue-800 .h4, .text-blue-800 article .entry-content h3, article .entry-content .text-blue-800 h3, .text-blue-800 .h5, .text-blue-800 article .entry-content h4, article .entry-content .text-blue-800 h4, .text-blue-800 .h6, .text-blue-800 article .entry-content h5, article .entry-content .text-blue-800 h5 {
  color: inherit !important;
}

.bg-blue-900 {
  background-color: #00626e !important;
}

.text-blue-900 {
  color: #00626e !important;
}
.text-blue-900 h1, .text-blue-900 h2, .text-blue-900 h3, .text-blue-900 h4, .text-blue-900 h5, .text-blue-900 h6,
.text-blue-900 .h1,
.text-blue-900 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-blue-900 h3, .text-blue-900 .h2, .text-blue-900 .card--cta--md .card__body h3, .card--cta--md .card__body .text-blue-900 h3, .text-blue-900 .h3, .text-blue-900 article .entry-content h2, article .entry-content .text-blue-900 h2, .text-blue-900 .h4, .text-blue-900 article .entry-content h3, article .entry-content .text-blue-900 h3, .text-blue-900 .h5, .text-blue-900 article .entry-content h4, article .entry-content .text-blue-900 h4, .text-blue-900 .h6, .text-blue-900 article .entry-content h5, article .entry-content .text-blue-900 h5 {
  color: inherit !important;
}

.bg-green-50 {
  background-color: #dff5e4 !important;
}

.text-green-50 {
  color: #dff5e4 !important;
}
.text-green-50 h1, .text-green-50 h2, .text-green-50 h3, .text-green-50 h4, .text-green-50 h5, .text-green-50 h6,
.text-green-50 .h1,
.text-green-50 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-green-50 h3, .text-green-50 .h2, .text-green-50 .card--cta--md .card__body h3, .card--cta--md .card__body .text-green-50 h3, .text-green-50 .h3, .text-green-50 article .entry-content h2, article .entry-content .text-green-50 h2, .text-green-50 .h4, .text-green-50 article .entry-content h3, article .entry-content .text-green-50 h3, .text-green-50 .h5, .text-green-50 article .entry-content h4, article .entry-content .text-green-50 h4, .text-green-50 .h6, .text-green-50 article .entry-content h5, article .entry-content .text-green-50 h5 {
  color: inherit !important;
}

.bg-green-100 {
  background-color: #bfe8c7 !important;
}

.text-green-100 {
  color: #bfe8c7 !important;
}
.text-green-100 h1, .text-green-100 h2, .text-green-100 h3, .text-green-100 h4, .text-green-100 h5, .text-green-100 h6,
.text-green-100 .h1,
.text-green-100 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-green-100 h3, .text-green-100 .h2, .text-green-100 .card--cta--md .card__body h3, .card--cta--md .card__body .text-green-100 h3, .text-green-100 .h3, .text-green-100 article .entry-content h2, article .entry-content .text-green-100 h2, .text-green-100 .h4, .text-green-100 article .entry-content h3, article .entry-content .text-green-100 h3, .text-green-100 .h5, .text-green-100 article .entry-content h4, article .entry-content .text-green-100 h4, .text-green-100 .h6, .text-green-100 article .entry-content h5, article .entry-content .text-green-100 h5 {
  color: inherit !important;
}

.bg-green-200 {
  background-color: #99d6a4 !important;
}

.text-green-200 {
  color: #99d6a4 !important;
}
.text-green-200 h1, .text-green-200 h2, .text-green-200 h3, .text-green-200 h4, .text-green-200 h5, .text-green-200 h6,
.text-green-200 .h1,
.text-green-200 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-green-200 h3, .text-green-200 .h2, .text-green-200 .card--cta--md .card__body h3, .card--cta--md .card__body .text-green-200 h3, .text-green-200 .h3, .text-green-200 article .entry-content h2, article .entry-content .text-green-200 h2, .text-green-200 .h4, .text-green-200 article .entry-content h3, article .entry-content .text-green-200 h3, .text-green-200 .h5, .text-green-200 article .entry-content h4, article .entry-content .text-green-200 h4, .text-green-200 .h6, .text-green-200 article .entry-content h5, article .entry-content .text-green-200 h5 {
  color: inherit !important;
}

.bg-green-700 {
  background-color: #178E3C !important;
}

.text-green-700 {
  color: #178E3C !important;
}
.text-green-700 h1, .text-green-700 h2, .text-green-700 h3, .text-green-700 h4, .text-green-700 h5, .text-green-700 h6,
.text-green-700 .h1,
.text-green-700 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-green-700 h3, .text-green-700 .h2, .text-green-700 .card--cta--md .card__body h3, .card--cta--md .card__body .text-green-700 h3, .text-green-700 .h3, .text-green-700 article .entry-content h2, article .entry-content .text-green-700 h2, .text-green-700 .h4, .text-green-700 article .entry-content h3, article .entry-content .text-green-700 h3, .text-green-700 .h5, .text-green-700 article .entry-content h4, article .entry-content .text-green-700 h4, .text-green-700 .h6, .text-green-700 article .entry-content h5, article .entry-content .text-green-700 h5 {
  color: inherit !important;
}

.bg-green-900 {
  background-color: #005f21 !important;
}

.text-green-900 {
  color: #005f21 !important;
}
.text-green-900 h1, .text-green-900 h2, .text-green-900 h3, .text-green-900 h4, .text-green-900 h5, .text-green-900 h6,
.text-green-900 .h1,
.text-green-900 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-green-900 h3, .text-green-900 .h2, .text-green-900 .card--cta--md .card__body h3, .card--cta--md .card__body .text-green-900 h3, .text-green-900 .h3, .text-green-900 article .entry-content h2, article .entry-content .text-green-900 h2, .text-green-900 .h4, .text-green-900 article .entry-content h3, article .entry-content .text-green-900 h3, .text-green-900 .h5, .text-green-900 article .entry-content h4, article .entry-content .text-green-900 h4, .text-green-900 .h6, .text-green-900 article .entry-content h5, article .entry-content .text-green-900 h5 {
  color: inherit !important;
}

.bg-red-700 {
  background-color: #c02b24 !important;
}

.text-red-700 {
  color: #c02b24 !important;
}
.text-red-700 h1, .text-red-700 h2, .text-red-700 h3, .text-red-700 h4, .text-red-700 h5, .text-red-700 h6,
.text-red-700 .h1,
.text-red-700 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-red-700 h3, .text-red-700 .h2, .text-red-700 .card--cta--md .card__body h3, .card--cta--md .card__body .text-red-700 h3, .text-red-700 .h3, .text-red-700 article .entry-content h2, article .entry-content .text-red-700 h2, .text-red-700 .h4, .text-red-700 article .entry-content h3, article .entry-content .text-red-700 h3, .text-red-700 .h5, .text-red-700 article .entry-content h4, article .entry-content .text-red-700 h4, .text-red-700 .h6, .text-red-700 article .entry-content h5, article .entry-content .text-red-700 h5 {
  color: inherit !important;
}

.bg-yellow-700 {
  background-color: #f1c21b !important;
}

.text-yellow-700 {
  color: #f1c21b !important;
}
.text-yellow-700 h1, .text-yellow-700 h2, .text-yellow-700 h3, .text-yellow-700 h4, .text-yellow-700 h5, .text-yellow-700 h6,
.text-yellow-700 .h1,
.text-yellow-700 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-yellow-700 h3, .text-yellow-700 .h2, .text-yellow-700 .card--cta--md .card__body h3, .card--cta--md .card__body .text-yellow-700 h3, .text-yellow-700 .h3, .text-yellow-700 article .entry-content h2, article .entry-content .text-yellow-700 h2, .text-yellow-700 .h4, .text-yellow-700 article .entry-content h3, article .entry-content .text-yellow-700 h3, .text-yellow-700 .h5, .text-yellow-700 article .entry-content h4, article .entry-content .text-yellow-700 h4, .text-yellow-700 .h6, .text-yellow-700 article .entry-content h5, article .entry-content .text-yellow-700 h5 {
  color: inherit !important;
}

.bg-yellow-800 {
  background-color: #f0aa0e !important;
}

.text-yellow-800 {
  color: #f0aa0e !important;
}
.text-yellow-800 h1, .text-yellow-800 h2, .text-yellow-800 h3, .text-yellow-800 h4, .text-yellow-800 h5, .text-yellow-800 h6,
.text-yellow-800 .h1,
.text-yellow-800 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-yellow-800 h3, .text-yellow-800 .h2, .text-yellow-800 .card--cta--md .card__body h3, .card--cta--md .card__body .text-yellow-800 h3, .text-yellow-800 .h3, .text-yellow-800 article .entry-content h2, article .entry-content .text-yellow-800 h2, .text-yellow-800 .h4, .text-yellow-800 article .entry-content h3, article .entry-content .text-yellow-800 h3, .text-yellow-800 .h5, .text-yellow-800 article .entry-content h4, article .entry-content .text-yellow-800 h4, .text-yellow-800 .h6, .text-yellow-800 article .entry-content h5, article .entry-content .text-yellow-800 h5 {
  color: inherit !important;
}

.bg-grey-50 {
  background-color: #fefefc !important;
}

.text-grey-50 {
  color: #fefefc !important;
}
.text-grey-50 h1, .text-grey-50 h2, .text-grey-50 h3, .text-grey-50 h4, .text-grey-50 h5, .text-grey-50 h6,
.text-grey-50 .h1,
.text-grey-50 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-50 h3, .text-grey-50 .h2, .text-grey-50 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-50 h3, .text-grey-50 .h3, .text-grey-50 article .entry-content h2, article .entry-content .text-grey-50 h2, .text-grey-50 .h4, .text-grey-50 article .entry-content h3, article .entry-content .text-grey-50 h3, .text-grey-50 .h5, .text-grey-50 article .entry-content h4, article .entry-content .text-grey-50 h4, .text-grey-50 .h6, .text-grey-50 article .entry-content h5, article .entry-content .text-grey-50 h5 {
  color: inherit !important;
}

.border-grey-50 {
  border-color: #fefefc !important;
}

.bg-grey-100 {
  background-color: #F8F8F7 !important;
}

.text-grey-100 {
  color: #F8F8F7 !important;
}
.text-grey-100 h1, .text-grey-100 h2, .text-grey-100 h3, .text-grey-100 h4, .text-grey-100 h5, .text-grey-100 h6,
.text-grey-100 .h1,
.text-grey-100 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-100 h3, .text-grey-100 .h2, .text-grey-100 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-100 h3, .text-grey-100 .h3, .text-grey-100 article .entry-content h2, article .entry-content .text-grey-100 h2, .text-grey-100 .h4, .text-grey-100 article .entry-content h3, article .entry-content .text-grey-100 h3, .text-grey-100 .h5, .text-grey-100 article .entry-content h4, article .entry-content .text-grey-100 h4, .text-grey-100 .h6, .text-grey-100 article .entry-content h5, article .entry-content .text-grey-100 h5 {
  color: inherit !important;
}

.border-grey-100 {
  border-color: #F8F8F7 !important;
}

.bg-grey-200 {
  background-color: #f1f1f0 !important;
}

.text-grey-200 {
  color: #f1f1f0 !important;
}
.text-grey-200 h1, .text-grey-200 h2, .text-grey-200 h3, .text-grey-200 h4, .text-grey-200 h5, .text-grey-200 h6,
.text-grey-200 .h1,
.text-grey-200 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-200 h3, .text-grey-200 .h2, .text-grey-200 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-200 h3, .text-grey-200 .h3, .text-grey-200 article .entry-content h2, article .entry-content .text-grey-200 h2, .text-grey-200 .h4, .text-grey-200 article .entry-content h3, article .entry-content .text-grey-200 h3, .text-grey-200 .h5, .text-grey-200 article .entry-content h4, article .entry-content .text-grey-200 h4, .text-grey-200 .h6, .text-grey-200 article .entry-content h5, article .entry-content .text-grey-200 h5 {
  color: inherit !important;
}

.border-grey-200 {
  border-color: #f1f1f0 !important;
}

.bg-grey-300 {
  background-color: #e9e9e8 !important;
}

.text-grey-300 {
  color: #e9e9e8 !important;
}
.text-grey-300 h1, .text-grey-300 h2, .text-grey-300 h3, .text-grey-300 h4, .text-grey-300 h5, .text-grey-300 h6,
.text-grey-300 .h1,
.text-grey-300 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-300 h3, .text-grey-300 .h2, .text-grey-300 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-300 h3, .text-grey-300 .h3, .text-grey-300 article .entry-content h2, article .entry-content .text-grey-300 h2, .text-grey-300 .h4, .text-grey-300 article .entry-content h3, article .entry-content .text-grey-300 h3, .text-grey-300 .h5, .text-grey-300 article .entry-content h4, article .entry-content .text-grey-300 h4, .text-grey-300 .h6, .text-grey-300 article .entry-content h5, article .entry-content .text-grey-300 h5 {
  color: inherit !important;
}

.border-grey-300 {
  border-color: #e9e9e8 !important;
}

.bg-grey-400 {
  background-color: #c5c5c4 !important;
}

.text-grey-400 {
  color: #c5c5c4 !important;
}
.text-grey-400 h1, .text-grey-400 h2, .text-grey-400 h3, .text-grey-400 h4, .text-grey-400 h5, .text-grey-400 h6,
.text-grey-400 .h1,
.text-grey-400 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-400 h3, .text-grey-400 .h2, .text-grey-400 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-400 h3, .text-grey-400 .h3, .text-grey-400 article .entry-content h2, article .entry-content .text-grey-400 h2, .text-grey-400 .h4, .text-grey-400 article .entry-content h3, article .entry-content .text-grey-400 h3, .text-grey-400 .h5, .text-grey-400 article .entry-content h4, article .entry-content .text-grey-400 h4, .text-grey-400 .h6, .text-grey-400 article .entry-content h5, article .entry-content .text-grey-400 h5 {
  color: inherit !important;
}

.border-grey-400 {
  border-color: #c5c5c4 !important;
}

.bg-grey-500 {
  background-color: #a7a7a6 !important;
}

.text-grey-500 {
  color: #a7a7a6 !important;
}
.text-grey-500 h1, .text-grey-500 h2, .text-grey-500 h3, .text-grey-500 h4, .text-grey-500 h5, .text-grey-500 h6,
.text-grey-500 .h1,
.text-grey-500 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-500 h3, .text-grey-500 .h2, .text-grey-500 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-500 h3, .text-grey-500 .h3, .text-grey-500 article .entry-content h2, article .entry-content .text-grey-500 h2, .text-grey-500 .h4, .text-grey-500 article .entry-content h3, article .entry-content .text-grey-500 h3, .text-grey-500 .h5, .text-grey-500 article .entry-content h4, article .entry-content .text-grey-500 h4, .text-grey-500 .h6, .text-grey-500 article .entry-content h5, article .entry-content .text-grey-500 h5 {
  color: inherit !important;
}

.border-grey-500 {
  border-color: #a7a7a6 !important;
}

.bg-grey-600 {
  background-color: #7d7d7c !important;
}

.text-grey-600 {
  color: #7d7d7c !important;
}
.text-grey-600 h1, .text-grey-600 h2, .text-grey-600 h3, .text-grey-600 h4, .text-grey-600 h5, .text-grey-600 h6,
.text-grey-600 .h1,
.text-grey-600 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-600 h3, .text-grey-600 .h2, .text-grey-600 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-600 h3, .text-grey-600 .h3, .text-grey-600 article .entry-content h2, article .entry-content .text-grey-600 h2, .text-grey-600 .h4, .text-grey-600 article .entry-content h3, article .entry-content .text-grey-600 h3, .text-grey-600 .h5, .text-grey-600 article .entry-content h4, article .entry-content .text-grey-600 h4, .text-grey-600 .h6, .text-grey-600 article .entry-content h5, article .entry-content .text-grey-600 h5 {
  color: inherit !important;
}

.border-grey-600 {
  border-color: #7d7d7c !important;
}

.bg-grey-700 {
  background-color: #696968 !important;
}

.text-grey-700 {
  color: #696968 !important;
}
.text-grey-700 h1, .text-grey-700 h2, .text-grey-700 h3, .text-grey-700 h4, .text-grey-700 h5, .text-grey-700 h6,
.text-grey-700 .h1,
.text-grey-700 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-700 h3, .text-grey-700 .h2, .text-grey-700 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-700 h3, .text-grey-700 .h3, .text-grey-700 article .entry-content h2, article .entry-content .text-grey-700 h2, .text-grey-700 .h4, .text-grey-700 article .entry-content h3, article .entry-content .text-grey-700 h3, .text-grey-700 .h5, .text-grey-700 article .entry-content h4, article .entry-content .text-grey-700 h4, .text-grey-700 .h6, .text-grey-700 article .entry-content h5, article .entry-content .text-grey-700 h5 {
  color: inherit !important;
}

.border-grey-700 {
  border-color: #696968 !important;
}

.bg-grey-800 {
  background-color: #4a4a49 !important;
}

.text-grey-800 {
  color: #4a4a49 !important;
}
.text-grey-800 h1, .text-grey-800 h2, .text-grey-800 h3, .text-grey-800 h4, .text-grey-800 h5, .text-grey-800 h6,
.text-grey-800 .h1,
.text-grey-800 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-800 h3, .text-grey-800 .h2, .text-grey-800 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-800 h3, .text-grey-800 .h3, .text-grey-800 article .entry-content h2, article .entry-content .text-grey-800 h2, .text-grey-800 .h4, .text-grey-800 article .entry-content h3, article .entry-content .text-grey-800 h3, .text-grey-800 .h5, .text-grey-800 article .entry-content h4, article .entry-content .text-grey-800 h4, .text-grey-800 .h6, .text-grey-800 article .entry-content h5, article .entry-content .text-grey-800 h5 {
  color: inherit !important;
}

.border-grey-800 {
  border-color: #4a4a49 !important;
}

.bg-grey-900 {
  background-color: #292928 !important;
}

.text-grey-900 {
  color: #292928 !important;
}
.text-grey-900 h1, .text-grey-900 h2, .text-grey-900 h3, .text-grey-900 h4, .text-grey-900 h5, .text-grey-900 h6,
.text-grey-900 .h1,
.text-grey-900 .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-grey-900 h3, .text-grey-900 .h2, .text-grey-900 .card--cta--md .card__body h3, .card--cta--md .card__body .text-grey-900 h3, .text-grey-900 .h3, .text-grey-900 article .entry-content h2, article .entry-content .text-grey-900 h2, .text-grey-900 .h4, .text-grey-900 article .entry-content h3, article .entry-content .text-grey-900 h3, .text-grey-900 .h5, .text-grey-900 article .entry-content h4, article .entry-content .text-grey-900 h4, .text-grey-900 .h6, .text-grey-900 article .entry-content h5, article .entry-content .text-grey-900 h5 {
  color: inherit !important;
}

.border-grey-900 {
  border-color: #292928 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.text-white {
  color: #ffffff !important;
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6,
.text-white .h1,
.text-white .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-white h3, .text-white .h2, .text-white .card--cta--md .card__body h3, .card--cta--md .card__body .text-white h3, .text-white .h3, .text-white article .entry-content h2, article .entry-content .text-white h2, .text-white .h4, .text-white article .entry-content h3, article .entry-content .text-white h3, .text-white .h5, .text-white article .entry-content h4, article .entry-content .text-white h4, .text-white .h6, .text-white article .entry-content h5, article .entry-content .text-white h5 {
  color: inherit !important;
}

.bg-black {
  background-color: #000000 !important;
}

.text-black {
  color: #000000 !important;
}
.text-black h1, .text-black h2, .text-black h3, .text-black h4, .text-black h5, .text-black h6,
.text-black .h1,
.text-black .card--cta--lg .card__body h3,
.card--cta--lg .card__body .text-black h3, .text-black .h2, .text-black .card--cta--md .card__body h3, .card--cta--md .card__body .text-black h3, .text-black .h3, .text-black article .entry-content h2, article .entry-content .text-black h2, .text-black .h4, .text-black article .entry-content h3, article .entry-content .text-black h3, .text-black .h5, .text-black article .entry-content h4, article .entry-content .text-black h4, .text-black .h6, .text-black article .entry-content h5, article .entry-content .text-black h5 {
  color: inherit !important;
}

.bg-grad-grey-blue {
  background-image: linear-gradient(90deg, #F8F8F7 27.11%, #e9fbff 91.59%) !important;
}

.bg-grad-orange-blue {
  background-image: linear-gradient(94deg, #ffede0 28.51%, #cdf7ff 79.23%) !important;
}

.bg-grad-blue-orange {
  background-image: linear-gradient(266deg, #ffede0 0.98%, #e9fbff 97.12%) !important;
}

.bg-grad-blue-orange-dark {
  background-image: linear-gradient(101deg, #00acc8 29.37%, #e74000 100%) !important;
}

.bg-grad-orange-tran {
  background-image: linear-gradient(0deg, transparent 42.61%, #ffede0 100%) !important;
}

.bg-grad-blue-tran {
  background-image: linear-gradient(0deg, transparent 5%, #e9fbff 100%) !important;
}

.bg-grad-blue-tran-vertical {
  background-image: linear-gradient(166deg, transparent 45%, #e9fbff 90%) !important;
}

.bg-grad-orange-light {
  background-image: linear-gradient(296deg, #ffede0 0.98%, rgba(255, 237, 224, 0.3) 100%) !important;
}

.bg-grad-orange-dark {
  background-image: linear-gradient(115deg, #ffede0 19.51%, #ff4c00 65.9%) !important;
}

.bg-grad-tran-blue {
  background-image: linear-gradient(220deg, #007f93 21.07%, transparent 77.66%) !important;
}

.bg-grad-tran-neutral {
  background-image: linear-gradient(310deg, transparent 79.79%, #F8F8F7 85.23%) !important;
}

.bg-grad-neutral-blue {
  background-image: linear-gradient(90deg, #fefefc 0%, #e9fbff 100%) !important;
}

.bg-grad-neutral-orange {
  background-image: linear-gradient(90deg, #fefefc 0%, #ffede0 100%) !important;
}

.bg-grad-white-blue {
  background-image: radial-gradient(81.97% 107.6% at 100% 100%, #e9fbff 0%, transparent 100%) !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:d-none {
    display: none !important;
  }
  .xs\:d-block {
    display: block !important;
  }
  .xs\:d-flex {
    display: flex !important;
  }
  .xs\:d-inline {
    display: inline !important;
  }
  .xs\:d-inline-block {
    display: inline-block !important;
  }
  .xs\:d-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:d-none {
    display: none !important;
  }
  .sm\:d-block {
    display: block !important;
  }
  .sm\:d-flex {
    display: flex !important;
  }
  .sm\:d-inline {
    display: inline !important;
  }
  .sm\:d-inline-block {
    display: inline-block !important;
  }
  .sm\:d-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
  .md\:d-inline {
    display: inline !important;
  }
  .md\:d-inline-block {
    display: inline-block !important;
  }
  .md\:d-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:d-none {
    display: none !important;
  }
  .lg\:d-block {
    display: block !important;
  }
  .lg\:d-flex {
    display: flex !important;
  }
  .lg\:d-inline {
    display: inline !important;
  }
  .lg\:d-inline-block {
    display: inline-block !important;
  }
  .lg\:d-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:d-none {
    display: none !important;
  }
  .xl\:d-block {
    display: block !important;
  }
  .xl\:d-flex {
    display: flex !important;
  }
  .xl\:d-inline {
    display: inline !important;
  }
  .xl\:d-inline-block {
    display: inline-block !important;
  }
  .xl\:d-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:d-none {
    display: none !important;
  }
  .xxl\:d-block {
    display: block !important;
  }
  .xxl\:d-flex {
    display: flex !important;
  }
  .xxl\:d-inline {
    display: inline !important;
  }
  .xxl\:d-inline-block {
    display: inline-block !important;
  }
  .xxl\:d-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:flex-row {
    flex-direction: row !important;
  }
  .xs\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .xs\:flex-column {
    flex-direction: column !important;
  }
  .xs\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:flex-row {
    flex-direction: row !important;
  }
  .sm\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .sm\:flex-column {
    flex-direction: column !important;
  }
  .sm\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .md\:flex-column {
    flex-direction: column !important;
  }
  .md\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:flex-row {
    flex-direction: row !important;
  }
  .lg\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .lg\:flex-column {
    flex-direction: column !important;
  }
  .lg\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:flex-row {
    flex-direction: row !important;
  }
  .xl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .xl\:flex-column {
    flex-direction: column !important;
  }
  .xl\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:flex-row {
    flex-direction: row !important;
  }
  .xxl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .xxl\:flex-column {
    flex-direction: column !important;
  }
  .xxl\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .xs\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .xs\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .sm\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .md\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .lg\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .xl\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .xxl\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .xxl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
.justify-stretch > * {
  flex: 1;
}

.flex-grow {
  flex-grow: 1;
}

@media only screen and (min-width: 36rem) {
  .xs\:justify-stretch > * {
    flex: 1;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:justify-stretch > * {
    flex: 1;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:justify-stretch > * {
    flex: 1;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:justify-stretch > * {
    flex: 1;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:justify-stretch > * {
    flex: 1;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:justify-stretch > * {
    flex: 1;
  }
}
.overflow-hidden {
  overflow: hidden;
}

.box-shadow {
  box-shadow: 0 5px 12px -7px #4a4a49;
}
.box-shadow--sm, .card--category--horizontal .card__media {
  box-shadow: 0 5px 12px -7px #4a4a49;
}
.box-shadow--md {
  box-shadow: 0 50px 30px -40px rgba(74, 74, 73, 0.3);
}
.box-shadow--blue, .card--review {
  box-shadow: 0 28px 20px -15px rgba(0, 98, 110, 0.2), 0 0 20px 0 rgba(0, 98, 110, 0.03);
}
.box-shadow--green {
  box-shadow: 0 50px 30px -40px rgba(0, 95, 33, 0.3);
}
.box-shadow--orange, .card--category .card__link:hover .card__media, .card--category--horizontal .card__link:hover .card__media, .card--category--vertical .card__link:hover .card__media, .card--category--vertical:hover .card__media, .card--product .card__media, .card--team .card__front, .card--video .card__media::after {
  box-shadow: 0 28px 20px -15px rgba(111, 25, 0, 0.2), 0 0 20px 0 rgba(111, 25, 0, 0.03);
}
@media only screen and (min-width: 48rem) {
  .box-shadow {
    box-shadow: 0 28px 15px -15px rgba(41, 41, 40, 0.4);
  }
}

.text-shadow-light {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.text-shadow-medium {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-shadow-heavy {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.outline {
  outline: 2px solid #3498db;
}

.outline-none {
  outline: none;
}

.transition {
  transition: all 0.3s ease;
}

.transition-fast {
  transition: all 0.1s ease;
}

.transition-slow {
  transition: all 0.5s ease;
}

.filter-blur {
  filter: blur(2px);
}

.filter-grayscale {
  filter: grayscale(100%);
}

.backdrop-blur {
  backdrop-filter: blur(5px);
}

.backdrop-brightness {
  backdrop-filter: brightness(1.2);
}

:root {
  --gap: 1.5rem;
}
@media screen and (min-width: 389px) {
  :root {
    --gap: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --gap: 2.5rem;
  }
}

.container,
.container-wide,
.container-thin,
.container-narrow {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
}

.container-thin {
  max-width: 85rem;
}

.container-narrow {
  max-width: 105rem;
}

.container-wide {
  padding-inline: clamp(1.5rem, 0.536rem + 3.214vw, 3.75rem);
}

@media only screen and (min-width: 64rem) {
  .md\:container {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .md\:container-thin {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .md\:container-narrow {
    padding-inline: clamp(1.5rem, -5.571rem + 23.571vw, 18rem);
  }
  .md\:container-wide {
    padding-inline: clamp(1.5rem, 0.536rem + 3.214vw, 3.75rem);
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:container {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .lg\:container-thin {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .lg\:container-narrow {
    padding-inline: clamp(1.5rem, -5.571rem + 23.571vw, 18rem);
  }
  .lg\:container-wide {
    padding-inline: clamp(1.5rem, 0.536rem + 3.214vw, 3.75rem);
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:container {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .xl\:container-thin {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .xl\:container-narrow {
    padding-inline: clamp(1.5rem, -5.571rem + 23.571vw, 18rem);
  }
  .xl\:container-wide {
    padding-inline: clamp(1.5rem, 0.536rem + 3.214vw, 3.75rem);
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:container {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .xxl\:container-thin {
    padding-inline: clamp(1.5rem, -1.714rem + 10.714vw, 9rem);
  }
  .xxl\:container-narrow {
    padding-inline: clamp(1.5rem, -5.571rem + 23.571vw, 18rem);
  }
  .xxl\:container-wide {
    padding-inline: clamp(1.5rem, 0.536rem + 3.214vw, 3.75rem);
  }
}
.grid {
  display: grid !important;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
}

@media only screen and (min-width: 36rem) {
  .xs\:grid {
    display: grid !important;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:grid {
    display: grid !important;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media only screen and (min-width: 64rem) {
  .md\:grid {
    display: grid !important;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:grid {
    display: grid !important;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:grid {
    display: grid !important;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:grid {
    display: grid !important;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .xs\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
.grid-col-span-1 {
  grid-column: span 1 !important;
}

.grid-col-span-2 {
  grid-column: span 2 !important;
}

.grid-col-span-3 {
  grid-column: span 3 !important;
}

.grid-col-span-4 {
  grid-column: span 4 !important;
}

.grid-col-span-5 {
  grid-column: span 5 !important;
}

.grid-col-span-6 {
  grid-column: span 6 !important;
}

.grid-col-span-7 {
  grid-column: span 7 !important;
}

.grid-col-span-8 {
  grid-column: span 8 !important;
}

.grid-col-span-9 {
  grid-column: span 9 !important;
}

.grid-col-span-10 {
  grid-column: span 10 !important;
}

.grid-col-span-11 {
  grid-column: span 11 !important;
}

.grid-col-span-12 {
  grid-column: span 12 !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:grid-col-span-1 {
    grid-column: span 1 !important;
  }
  .xs\:grid-col-span-2 {
    grid-column: span 2 !important;
  }
  .xs\:grid-col-span-3 {
    grid-column: span 3 !important;
  }
  .xs\:grid-col-span-4 {
    grid-column: span 4 !important;
  }
  .xs\:grid-col-span-5 {
    grid-column: span 5 !important;
  }
  .xs\:grid-col-span-6 {
    grid-column: span 6 !important;
  }
  .xs\:grid-col-span-7 {
    grid-column: span 7 !important;
  }
  .xs\:grid-col-span-8 {
    grid-column: span 8 !important;
  }
  .xs\:grid-col-span-9 {
    grid-column: span 9 !important;
  }
  .xs\:grid-col-span-10 {
    grid-column: span 10 !important;
  }
  .xs\:grid-col-span-11 {
    grid-column: span 11 !important;
  }
  .xs\:grid-col-span-12 {
    grid-column: span 12 !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:grid-col-span-1 {
    grid-column: span 1 !important;
  }
  .sm\:grid-col-span-2 {
    grid-column: span 2 !important;
  }
  .sm\:grid-col-span-3 {
    grid-column: span 3 !important;
  }
  .sm\:grid-col-span-4 {
    grid-column: span 4 !important;
  }
  .sm\:grid-col-span-5 {
    grid-column: span 5 !important;
  }
  .sm\:grid-col-span-6 {
    grid-column: span 6 !important;
  }
  .sm\:grid-col-span-7 {
    grid-column: span 7 !important;
  }
  .sm\:grid-col-span-8 {
    grid-column: span 8 !important;
  }
  .sm\:grid-col-span-9 {
    grid-column: span 9 !important;
  }
  .sm\:grid-col-span-10 {
    grid-column: span 10 !important;
  }
  .sm\:grid-col-span-11 {
    grid-column: span 11 !important;
  }
  .sm\:grid-col-span-12 {
    grid-column: span 12 !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:grid-col-span-1 {
    grid-column: span 1 !important;
  }
  .md\:grid-col-span-2 {
    grid-column: span 2 !important;
  }
  .md\:grid-col-span-3 {
    grid-column: span 3 !important;
  }
  .md\:grid-col-span-4 {
    grid-column: span 4 !important;
  }
  .md\:grid-col-span-5 {
    grid-column: span 5 !important;
  }
  .md\:grid-col-span-6 {
    grid-column: span 6 !important;
  }
  .md\:grid-col-span-7 {
    grid-column: span 7 !important;
  }
  .md\:grid-col-span-8 {
    grid-column: span 8 !important;
  }
  .md\:grid-col-span-9 {
    grid-column: span 9 !important;
  }
  .md\:grid-col-span-10 {
    grid-column: span 10 !important;
  }
  .md\:grid-col-span-11 {
    grid-column: span 11 !important;
  }
  .md\:grid-col-span-12 {
    grid-column: span 12 !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:grid-col-span-1 {
    grid-column: span 1 !important;
  }
  .lg\:grid-col-span-2 {
    grid-column: span 2 !important;
  }
  .lg\:grid-col-span-3 {
    grid-column: span 3 !important;
  }
  .lg\:grid-col-span-4 {
    grid-column: span 4 !important;
  }
  .lg\:grid-col-span-5 {
    grid-column: span 5 !important;
  }
  .lg\:grid-col-span-6 {
    grid-column: span 6 !important;
  }
  .lg\:grid-col-span-7 {
    grid-column: span 7 !important;
  }
  .lg\:grid-col-span-8 {
    grid-column: span 8 !important;
  }
  .lg\:grid-col-span-9 {
    grid-column: span 9 !important;
  }
  .lg\:grid-col-span-10 {
    grid-column: span 10 !important;
  }
  .lg\:grid-col-span-11 {
    grid-column: span 11 !important;
  }
  .lg\:grid-col-span-12 {
    grid-column: span 12 !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:grid-col-span-1 {
    grid-column: span 1 !important;
  }
  .xl\:grid-col-span-2 {
    grid-column: span 2 !important;
  }
  .xl\:grid-col-span-3 {
    grid-column: span 3 !important;
  }
  .xl\:grid-col-span-4 {
    grid-column: span 4 !important;
  }
  .xl\:grid-col-span-5 {
    grid-column: span 5 !important;
  }
  .xl\:grid-col-span-6 {
    grid-column: span 6 !important;
  }
  .xl\:grid-col-span-7 {
    grid-column: span 7 !important;
  }
  .xl\:grid-col-span-8 {
    grid-column: span 8 !important;
  }
  .xl\:grid-col-span-9 {
    grid-column: span 9 !important;
  }
  .xl\:grid-col-span-10 {
    grid-column: span 10 !important;
  }
  .xl\:grid-col-span-11 {
    grid-column: span 11 !important;
  }
  .xl\:grid-col-span-12 {
    grid-column: span 12 !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:grid-col-span-1 {
    grid-column: span 1 !important;
  }
  .xxl\:grid-col-span-2 {
    grid-column: span 2 !important;
  }
  .xxl\:grid-col-span-3 {
    grid-column: span 3 !important;
  }
  .xxl\:grid-col-span-4 {
    grid-column: span 4 !important;
  }
  .xxl\:grid-col-span-5 {
    grid-column: span 5 !important;
  }
  .xxl\:grid-col-span-6 {
    grid-column: span 6 !important;
  }
  .xxl\:grid-col-span-7 {
    grid-column: span 7 !important;
  }
  .xxl\:grid-col-span-8 {
    grid-column: span 8 !important;
  }
  .xxl\:grid-col-span-9 {
    grid-column: span 9 !important;
  }
  .xxl\:grid-col-span-10 {
    grid-column: span 10 !important;
  }
  .xxl\:grid-col-span-11 {
    grid-column: span 11 !important;
  }
  .xxl\:grid-col-span-12 {
    grid-column: span 12 !important;
  }
}
.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }
  .xs\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .xs\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }
  .xs\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }
  .xs\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }
  .xs\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }
  .sm\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .sm\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }
  .sm\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }
  .sm\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }
  .sm\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }
  .md\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }
  .md\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }
  .md\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }
  .md\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }
  .lg\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .lg\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }
  .lg\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }
  .lg\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }
  .xl\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .xl\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }
  .xl\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }
  .xl\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }
  .xl\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }
  .xxl\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }
}
.gap-0 {
  gap: 0 !important;
}

.gap-0_5 {
  gap: 0.5rem !important;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-2 {
  gap: 1.5rem !important;
}

.gap-3 {
  gap: 2rem !important;
}

.gap-4 {
  gap: 2.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-6 {
  gap: 3.5rem !important;
}

.gap-7 {
  gap: 4rem !important;
}

.gap-8 {
  gap: 4.5rem !important;
}

.gap-9 {
  gap: 5rem !important;
}

.gap-10 {
  gap: 5.5rem !important;
}

.gap-11 {
  gap: 6rem !important;
}

.gap-12 {
  gap: 6.5rem !important;
}

.gap-13 {
  gap: 7rem !important;
}

.gap-14 {
  gap: 7.5rem !important;
}

.gap-15 {
  gap: 8rem !important;
}

.gap-16 {
  gap: 8.5rem !important;
}

.gap-17 {
  gap: 9rem !important;
}

.gap-18 {
  gap: 9.5rem !important;
}

.gap-19 {
  gap: 10rem !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:gap-0 {
    gap: 0 !important;
  }
  .xs\:gap-0_5 {
    gap: 0.5rem !important;
  }
  .xs\:gap-1 {
    gap: 1rem !important;
  }
  .xs\:gap-2 {
    gap: 1.5rem !important;
  }
  .xs\:gap-3 {
    gap: 2rem !important;
  }
  .xs\:gap-4 {
    gap: 2.5rem !important;
  }
  .xs\:gap-5 {
    gap: 3rem !important;
  }
  .xs\:gap-6 {
    gap: 3.5rem !important;
  }
  .xs\:gap-7 {
    gap: 4rem !important;
  }
  .xs\:gap-8 {
    gap: 4.5rem !important;
  }
  .xs\:gap-9 {
    gap: 5rem !important;
  }
  .xs\:gap-10 {
    gap: 5.5rem !important;
  }
  .xs\:gap-11 {
    gap: 6rem !important;
  }
  .xs\:gap-12 {
    gap: 6.5rem !important;
  }
  .xs\:gap-13 {
    gap: 7rem !important;
  }
  .xs\:gap-14 {
    gap: 7.5rem !important;
  }
  .xs\:gap-15 {
    gap: 8rem !important;
  }
  .xs\:gap-16 {
    gap: 8.5rem !important;
  }
  .xs\:gap-17 {
    gap: 9rem !important;
  }
  .xs\:gap-18 {
    gap: 9.5rem !important;
  }
  .xs\:gap-19 {
    gap: 10rem !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:gap-0 {
    gap: 0 !important;
  }
  .sm\:gap-0_5 {
    gap: 0.5rem !important;
  }
  .sm\:gap-1 {
    gap: 1rem !important;
  }
  .sm\:gap-2 {
    gap: 1.5rem !important;
  }
  .sm\:gap-3 {
    gap: 2rem !important;
  }
  .sm\:gap-4 {
    gap: 2.5rem !important;
  }
  .sm\:gap-5 {
    gap: 3rem !important;
  }
  .sm\:gap-6 {
    gap: 3.5rem !important;
  }
  .sm\:gap-7 {
    gap: 4rem !important;
  }
  .sm\:gap-8 {
    gap: 4.5rem !important;
  }
  .sm\:gap-9 {
    gap: 5rem !important;
  }
  .sm\:gap-10 {
    gap: 5.5rem !important;
  }
  .sm\:gap-11 {
    gap: 6rem !important;
  }
  .sm\:gap-12 {
    gap: 6.5rem !important;
  }
  .sm\:gap-13 {
    gap: 7rem !important;
  }
  .sm\:gap-14 {
    gap: 7.5rem !important;
  }
  .sm\:gap-15 {
    gap: 8rem !important;
  }
  .sm\:gap-16 {
    gap: 8.5rem !important;
  }
  .sm\:gap-17 {
    gap: 9rem !important;
  }
  .sm\:gap-18 {
    gap: 9.5rem !important;
  }
  .sm\:gap-19 {
    gap: 10rem !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:gap-0 {
    gap: 0 !important;
  }
  .md\:gap-0_5 {
    gap: 0.5rem !important;
  }
  .md\:gap-1 {
    gap: 1rem !important;
  }
  .md\:gap-2 {
    gap: 1.5rem !important;
  }
  .md\:gap-3 {
    gap: 2rem !important;
  }
  .md\:gap-4 {
    gap: 2.5rem !important;
  }
  .md\:gap-5 {
    gap: 3rem !important;
  }
  .md\:gap-6 {
    gap: 3.5rem !important;
  }
  .md\:gap-7 {
    gap: 4rem !important;
  }
  .md\:gap-8 {
    gap: 4.5rem !important;
  }
  .md\:gap-9 {
    gap: 5rem !important;
  }
  .md\:gap-10 {
    gap: 5.5rem !important;
  }
  .md\:gap-11 {
    gap: 6rem !important;
  }
  .md\:gap-12 {
    gap: 6.5rem !important;
  }
  .md\:gap-13 {
    gap: 7rem !important;
  }
  .md\:gap-14 {
    gap: 7.5rem !important;
  }
  .md\:gap-15 {
    gap: 8rem !important;
  }
  .md\:gap-16 {
    gap: 8.5rem !important;
  }
  .md\:gap-17 {
    gap: 9rem !important;
  }
  .md\:gap-18 {
    gap: 9.5rem !important;
  }
  .md\:gap-19 {
    gap: 10rem !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:gap-0 {
    gap: 0 !important;
  }
  .lg\:gap-0_5 {
    gap: 0.5rem !important;
  }
  .lg\:gap-1 {
    gap: 1rem !important;
  }
  .lg\:gap-2 {
    gap: 1.5rem !important;
  }
  .lg\:gap-3 {
    gap: 2rem !important;
  }
  .lg\:gap-4 {
    gap: 2.5rem !important;
  }
  .lg\:gap-5 {
    gap: 3rem !important;
  }
  .lg\:gap-6 {
    gap: 3.5rem !important;
  }
  .lg\:gap-7 {
    gap: 4rem !important;
  }
  .lg\:gap-8 {
    gap: 4.5rem !important;
  }
  .lg\:gap-9 {
    gap: 5rem !important;
  }
  .lg\:gap-10 {
    gap: 5.5rem !important;
  }
  .lg\:gap-11 {
    gap: 6rem !important;
  }
  .lg\:gap-12 {
    gap: 6.5rem !important;
  }
  .lg\:gap-13 {
    gap: 7rem !important;
  }
  .lg\:gap-14 {
    gap: 7.5rem !important;
  }
  .lg\:gap-15 {
    gap: 8rem !important;
  }
  .lg\:gap-16 {
    gap: 8.5rem !important;
  }
  .lg\:gap-17 {
    gap: 9rem !important;
  }
  .lg\:gap-18 {
    gap: 9.5rem !important;
  }
  .lg\:gap-19 {
    gap: 10rem !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:gap-0 {
    gap: 0 !important;
  }
  .xl\:gap-0_5 {
    gap: 0.5rem !important;
  }
  .xl\:gap-1 {
    gap: 1rem !important;
  }
  .xl\:gap-2 {
    gap: 1.5rem !important;
  }
  .xl\:gap-3 {
    gap: 2rem !important;
  }
  .xl\:gap-4 {
    gap: 2.5rem !important;
  }
  .xl\:gap-5 {
    gap: 3rem !important;
  }
  .xl\:gap-6 {
    gap: 3.5rem !important;
  }
  .xl\:gap-7 {
    gap: 4rem !important;
  }
  .xl\:gap-8 {
    gap: 4.5rem !important;
  }
  .xl\:gap-9 {
    gap: 5rem !important;
  }
  .xl\:gap-10 {
    gap: 5.5rem !important;
  }
  .xl\:gap-11 {
    gap: 6rem !important;
  }
  .xl\:gap-12 {
    gap: 6.5rem !important;
  }
  .xl\:gap-13 {
    gap: 7rem !important;
  }
  .xl\:gap-14 {
    gap: 7.5rem !important;
  }
  .xl\:gap-15 {
    gap: 8rem !important;
  }
  .xl\:gap-16 {
    gap: 8.5rem !important;
  }
  .xl\:gap-17 {
    gap: 9rem !important;
  }
  .xl\:gap-18 {
    gap: 9.5rem !important;
  }
  .xl\:gap-19 {
    gap: 10rem !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:gap-0 {
    gap: 0 !important;
  }
  .xxl\:gap-0_5 {
    gap: 0.5rem !important;
  }
  .xxl\:gap-1 {
    gap: 1rem !important;
  }
  .xxl\:gap-2 {
    gap: 1.5rem !important;
  }
  .xxl\:gap-3 {
    gap: 2rem !important;
  }
  .xxl\:gap-4 {
    gap: 2.5rem !important;
  }
  .xxl\:gap-5 {
    gap: 3rem !important;
  }
  .xxl\:gap-6 {
    gap: 3.5rem !important;
  }
  .xxl\:gap-7 {
    gap: 4rem !important;
  }
  .xxl\:gap-8 {
    gap: 4.5rem !important;
  }
  .xxl\:gap-9 {
    gap: 5rem !important;
  }
  .xxl\:gap-10 {
    gap: 5.5rem !important;
  }
  .xxl\:gap-11 {
    gap: 6rem !important;
  }
  .xxl\:gap-12 {
    gap: 6.5rem !important;
  }
  .xxl\:gap-13 {
    gap: 7rem !important;
  }
  .xxl\:gap-14 {
    gap: 7.5rem !important;
  }
  .xxl\:gap-15 {
    gap: 8rem !important;
  }
  .xxl\:gap-16 {
    gap: 8.5rem !important;
  }
  .xxl\:gap-17 {
    gap: 9rem !important;
  }
  .xxl\:gap-18 {
    gap: 9.5rem !important;
  }
  .xxl\:gap-19 {
    gap: 10rem !important;
  }
}
.justify-start {
  justify-content: start !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: end !important;
}

.justify-space-between {
  justify-content: space-between !important;
}

.justify-space-around {
  justify-content: space-around !important;
}

.justify-space-evenly {
  justify-content: space-evenly !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:justify-start {
    justify-content: start !important;
  }
  .xs\:justify-center {
    justify-content: center !important;
  }
  .xs\:justify-end {
    justify-content: end !important;
  }
  .xs\:justify-space-between {
    justify-content: space-between !important;
  }
  .xs\:justify-space-around {
    justify-content: space-around !important;
  }
  .xs\:justify-space-evenly {
    justify-content: space-evenly !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:justify-start {
    justify-content: start !important;
  }
  .sm\:justify-center {
    justify-content: center !important;
  }
  .sm\:justify-end {
    justify-content: end !important;
  }
  .sm\:justify-space-between {
    justify-content: space-between !important;
  }
  .sm\:justify-space-around {
    justify-content: space-around !important;
  }
  .sm\:justify-space-evenly {
    justify-content: space-evenly !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:justify-start {
    justify-content: start !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:justify-end {
    justify-content: end !important;
  }
  .md\:justify-space-between {
    justify-content: space-between !important;
  }
  .md\:justify-space-around {
    justify-content: space-around !important;
  }
  .md\:justify-space-evenly {
    justify-content: space-evenly !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:justify-start {
    justify-content: start !important;
  }
  .lg\:justify-center {
    justify-content: center !important;
  }
  .lg\:justify-end {
    justify-content: end !important;
  }
  .lg\:justify-space-between {
    justify-content: space-between !important;
  }
  .lg\:justify-space-around {
    justify-content: space-around !important;
  }
  .lg\:justify-space-evenly {
    justify-content: space-evenly !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:justify-start {
    justify-content: start !important;
  }
  .xl\:justify-center {
    justify-content: center !important;
  }
  .xl\:justify-end {
    justify-content: end !important;
  }
  .xl\:justify-space-between {
    justify-content: space-between !important;
  }
  .xl\:justify-space-around {
    justify-content: space-around !important;
  }
  .xl\:justify-space-evenly {
    justify-content: space-evenly !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:justify-start {
    justify-content: start !important;
  }
  .xxl\:justify-center {
    justify-content: center !important;
  }
  .xxl\:justify-end {
    justify-content: end !important;
  }
  .xxl\:justify-space-between {
    justify-content: space-between !important;
  }
  .xxl\:justify-space-around {
    justify-content: space-around !important;
  }
  .xxl\:justify-space-evenly {
    justify-content: space-evenly !important;
  }
}
.justify-items-start {
  justify-items: start !important;
}

.justify-items-center {
  justify-items: center !important;
}

.justify-items-end {
  justify-items: end !important;
}

.justify-items-stretch {
  justify-items: stretch !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:justify-items-start {
    justify-items: start !important;
  }
  .xs\:justify-items-center {
    justify-items: center !important;
  }
  .xs\:justify-items-end {
    justify-items: end !important;
  }
  .xs\:justify-items-stretch {
    justify-items: stretch !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:justify-items-start {
    justify-items: start !important;
  }
  .sm\:justify-items-center {
    justify-items: center !important;
  }
  .sm\:justify-items-end {
    justify-items: end !important;
  }
  .sm\:justify-items-stretch {
    justify-items: stretch !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:justify-items-start {
    justify-items: start !important;
  }
  .md\:justify-items-center {
    justify-items: center !important;
  }
  .md\:justify-items-end {
    justify-items: end !important;
  }
  .md\:justify-items-stretch {
    justify-items: stretch !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:justify-items-start {
    justify-items: start !important;
  }
  .lg\:justify-items-center {
    justify-items: center !important;
  }
  .lg\:justify-items-end {
    justify-items: end !important;
  }
  .lg\:justify-items-stretch {
    justify-items: stretch !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:justify-items-start {
    justify-items: start !important;
  }
  .xl\:justify-items-center {
    justify-items: center !important;
  }
  .xl\:justify-items-end {
    justify-items: end !important;
  }
  .xl\:justify-items-stretch {
    justify-items: stretch !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:justify-items-start {
    justify-items: start !important;
  }
  .xxl\:justify-items-center {
    justify-items: center !important;
  }
  .xxl\:justify-items-end {
    justify-items: end !important;
  }
  .xxl\:justify-items-stretch {
    justify-items: stretch !important;
  }
}
.content-start {
  align-content: start !important;
}

.content-center {
  align-content: center !important;
}

.content-end {
  align-content: end !important;
}

.content-space-between {
  align-content: space-between !important;
}

.content-space-around {
  align-content: space-around !important;
}

.content-space-evenly {
  align-content: space-evenly !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:content-start {
    align-content: start !important;
  }
  .xs\:content-center {
    align-content: center !important;
  }
  .xs\:content-end {
    align-content: end !important;
  }
  .xs\:content-space-between {
    align-content: space-between !important;
  }
  .xs\:content-space-around {
    align-content: space-around !important;
  }
  .xs\:content-space-evenly {
    align-content: space-evenly !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:content-start {
    align-content: start !important;
  }
  .sm\:content-center {
    align-content: center !important;
  }
  .sm\:content-end {
    align-content: end !important;
  }
  .sm\:content-space-between {
    align-content: space-between !important;
  }
  .sm\:content-space-around {
    align-content: space-around !important;
  }
  .sm\:content-space-evenly {
    align-content: space-evenly !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:content-start {
    align-content: start !important;
  }
  .md\:content-center {
    align-content: center !important;
  }
  .md\:content-end {
    align-content: end !important;
  }
  .md\:content-space-between {
    align-content: space-between !important;
  }
  .md\:content-space-around {
    align-content: space-around !important;
  }
  .md\:content-space-evenly {
    align-content: space-evenly !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:content-start {
    align-content: start !important;
  }
  .lg\:content-center {
    align-content: center !important;
  }
  .lg\:content-end {
    align-content: end !important;
  }
  .lg\:content-space-between {
    align-content: space-between !important;
  }
  .lg\:content-space-around {
    align-content: space-around !important;
  }
  .lg\:content-space-evenly {
    align-content: space-evenly !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:content-start {
    align-content: start !important;
  }
  .xl\:content-center {
    align-content: center !important;
  }
  .xl\:content-end {
    align-content: end !important;
  }
  .xl\:content-space-between {
    align-content: space-between !important;
  }
  .xl\:content-space-around {
    align-content: space-around !important;
  }
  .xl\:content-space-evenly {
    align-content: space-evenly !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:content-start {
    align-content: start !important;
  }
  .xxl\:content-center {
    align-content: center !important;
  }
  .xxl\:content-end {
    align-content: end !important;
  }
  .xxl\:content-space-between {
    align-content: space-between !important;
  }
  .xxl\:content-space-around {
    align-content: space-around !important;
  }
  .xxl\:content-space-evenly {
    align-content: space-evenly !important;
  }
}
.items-start {
  align-items: start !important;
}

.items-center {
  align-items: center !important;
}

.items-end {
  align-items: end !important;
}

.items-stretch {
  align-items: stretch !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:items-start {
    align-items: start !important;
  }
  .xs\:items-center {
    align-items: center !important;
  }
  .xs\:items-end {
    align-items: end !important;
  }
  .xs\:items-stretch {
    align-items: stretch !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:items-start {
    align-items: start !important;
  }
  .sm\:items-center {
    align-items: center !important;
  }
  .sm\:items-end {
    align-items: end !important;
  }
  .sm\:items-stretch {
    align-items: stretch !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:items-start {
    align-items: start !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
  .md\:items-end {
    align-items: end !important;
  }
  .md\:items-stretch {
    align-items: stretch !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:items-start {
    align-items: start !important;
  }
  .lg\:items-center {
    align-items: center !important;
  }
  .lg\:items-end {
    align-items: end !important;
  }
  .lg\:items-stretch {
    align-items: stretch !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:items-start {
    align-items: start !important;
  }
  .xl\:items-center {
    align-items: center !important;
  }
  .xl\:items-end {
    align-items: end !important;
  }
  .xl\:items-stretch {
    align-items: stretch !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:items-start {
    align-items: start !important;
  }
  .xxl\:items-center {
    align-items: center !important;
  }
  .xxl\:items-end {
    align-items: end !important;
  }
  .xxl\:items-stretch {
    align-items: stretch !important;
  }
}
.self-start {
  align-self: start !important;
}

.self-center {
  align-self: center !important;
}

.self-end {
  align-self: end !important;
}

.self-stretch {
  align-self: stretch !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:self-start {
    align-self: start !important;
  }
  .xs\:self-center {
    align-self: center !important;
  }
  .xs\:self-end {
    align-self: end !important;
  }
  .xs\:self-stretch {
    align-self: stretch !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:self-start {
    align-self: start !important;
  }
  .sm\:self-center {
    align-self: center !important;
  }
  .sm\:self-end {
    align-self: end !important;
  }
  .sm\:self-stretch {
    align-self: stretch !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:self-start {
    align-self: start !important;
  }
  .md\:self-center {
    align-self: center !important;
  }
  .md\:self-end {
    align-self: end !important;
  }
  .md\:self-stretch {
    align-self: stretch !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:self-start {
    align-self: start !important;
  }
  .lg\:self-center {
    align-self: center !important;
  }
  .lg\:self-end {
    align-self: end !important;
  }
  .lg\:self-stretch {
    align-self: stretch !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:self-start {
    align-self: start !important;
  }
  .xl\:self-center {
    align-self: center !important;
  }
  .xl\:self-end {
    align-self: end !important;
  }
  .xl\:self-stretch {
    align-self: stretch !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:self-start {
    align-self: start !important;
  }
  .xxl\:self-center {
    align-self: center !important;
  }
  .xxl\:self-end {
    align-self: end !important;
  }
  .xxl\:self-stretch {
    align-self: stretch !important;
  }
}
.place-start {
  place-content: start !important;
}

.place-center {
  place-content: center !important;
}

.place-end {
  place-content: end !important;
}

.place-space-between {
  place-content: space-between !important;
}

.place-space-around {
  place-content: space-around !important;
}

.place-space-evenly {
  place-content: space-evenly !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:place-start {
    place-content: start !important;
  }
  .xs\:place-center {
    place-content: center !important;
  }
  .xs\:place-end {
    place-content: end !important;
  }
  .xs\:place-space-between {
    place-content: space-between !important;
  }
  .xs\:place-space-around {
    place-content: space-around !important;
  }
  .xs\:place-space-evenly {
    place-content: space-evenly !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:place-start {
    place-content: start !important;
  }
  .sm\:place-center {
    place-content: center !important;
  }
  .sm\:place-end {
    place-content: end !important;
  }
  .sm\:place-space-between {
    place-content: space-between !important;
  }
  .sm\:place-space-around {
    place-content: space-around !important;
  }
  .sm\:place-space-evenly {
    place-content: space-evenly !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:place-start {
    place-content: start !important;
  }
  .md\:place-center {
    place-content: center !important;
  }
  .md\:place-end {
    place-content: end !important;
  }
  .md\:place-space-between {
    place-content: space-between !important;
  }
  .md\:place-space-around {
    place-content: space-around !important;
  }
  .md\:place-space-evenly {
    place-content: space-evenly !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:place-start {
    place-content: start !important;
  }
  .lg\:place-center {
    place-content: center !important;
  }
  .lg\:place-end {
    place-content: end !important;
  }
  .lg\:place-space-between {
    place-content: space-between !important;
  }
  .lg\:place-space-around {
    place-content: space-around !important;
  }
  .lg\:place-space-evenly {
    place-content: space-evenly !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:place-start {
    place-content: start !important;
  }
  .xl\:place-center {
    place-content: center !important;
  }
  .xl\:place-end {
    place-content: end !important;
  }
  .xl\:place-space-between {
    place-content: space-between !important;
  }
  .xl\:place-space-around {
    place-content: space-around !important;
  }
  .xl\:place-space-evenly {
    place-content: space-evenly !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:place-start {
    place-content: start !important;
  }
  .xxl\:place-center {
    place-content: center !important;
  }
  .xxl\:place-end {
    place-content: end !important;
  }
  .xxl\:place-space-between {
    place-content: space-between !important;
  }
  .xxl\:place-space-around {
    place-content: space-around !important;
  }
  .xxl\:place-space-evenly {
    place-content: space-evenly !important;
  }
}
.place-items-start {
  place-items: start !important;
}

.place-items-center {
  place-items: center !important;
}

.place-items-end {
  place-items: end !important;
}

.place-items-stretch {
  place-items: stretch !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:place-items-start {
    place-items: start !important;
  }
  .xs\:place-items-center {
    place-items: center !important;
  }
  .xs\:place-items-end {
    place-items: end !important;
  }
  .xs\:place-items-stretch {
    place-items: stretch !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:place-items-start {
    place-items: start !important;
  }
  .sm\:place-items-center {
    place-items: center !important;
  }
  .sm\:place-items-end {
    place-items: end !important;
  }
  .sm\:place-items-stretch {
    place-items: stretch !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:place-items-start {
    place-items: start !important;
  }
  .md\:place-items-center {
    place-items: center !important;
  }
  .md\:place-items-end {
    place-items: end !important;
  }
  .md\:place-items-stretch {
    place-items: stretch !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:place-items-start {
    place-items: start !important;
  }
  .lg\:place-items-center {
    place-items: center !important;
  }
  .lg\:place-items-end {
    place-items: end !important;
  }
  .lg\:place-items-stretch {
    place-items: stretch !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:place-items-start {
    place-items: start !important;
  }
  .xl\:place-items-center {
    place-items: center !important;
  }
  .xl\:place-items-end {
    place-items: end !important;
  }
  .xl\:place-items-stretch {
    place-items: stretch !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:place-items-start {
    place-items: start !important;
  }
  .xxl\:place-items-center {
    place-items: center !important;
  }
  .xxl\:place-items-end {
    place-items: end !important;
  }
  .xxl\:place-items-stretch {
    place-items: stretch !important;
  }
}
.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-6 {
  order: 6 !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:order-1 {
    order: 1 !important;
  }
  .xs\:order-2 {
    order: 2 !important;
  }
  .xs\:order-3 {
    order: 3 !important;
  }
  .xs\:order-4 {
    order: 4 !important;
  }
  .xs\:order-5 {
    order: 5 !important;
  }
  .xs\:order-6 {
    order: 6 !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:order-1 {
    order: 1 !important;
  }
  .sm\:order-2 {
    order: 2 !important;
  }
  .sm\:order-3 {
    order: 3 !important;
  }
  .sm\:order-4 {
    order: 4 !important;
  }
  .sm\:order-5 {
    order: 5 !important;
  }
  .sm\:order-6 {
    order: 6 !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:order-1 {
    order: 1 !important;
  }
  .md\:order-2 {
    order: 2 !important;
  }
  .md\:order-3 {
    order: 3 !important;
  }
  .md\:order-4 {
    order: 4 !important;
  }
  .md\:order-5 {
    order: 5 !important;
  }
  .md\:order-6 {
    order: 6 !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:order-1 {
    order: 1 !important;
  }
  .lg\:order-2 {
    order: 2 !important;
  }
  .lg\:order-3 {
    order: 3 !important;
  }
  .lg\:order-4 {
    order: 4 !important;
  }
  .lg\:order-5 {
    order: 5 !important;
  }
  .lg\:order-6 {
    order: 6 !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:order-1 {
    order: 1 !important;
  }
  .xl\:order-2 {
    order: 2 !important;
  }
  .xl\:order-3 {
    order: 3 !important;
  }
  .xl\:order-4 {
    order: 4 !important;
  }
  .xl\:order-5 {
    order: 5 !important;
  }
  .xl\:order-6 {
    order: 6 !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:order-1 {
    order: 1 !important;
  }
  .xxl\:order-2 {
    order: 2 !important;
  }
  .xxl\:order-3 {
    order: 3 !important;
  }
  .xxl\:order-4 {
    order: 4 !important;
  }
  .xxl\:order-5 {
    order: 5 !important;
  }
  .xxl\:order-6 {
    order: 6 !important;
  }
}
.sticky {
  position: sticky;
}

.absolute {
  position: sticky;
}

.fixed {
  position: sticky;
}

.top-0 {
  top: 0;
}

/*
Takes into account header and section padding
 */
.sticky-section-top {
  position: sticky;
  top: calc(var(--header-height) + 5rem);
}

@media only screen and (min-width: 36rem) {
  .xs\:sticky-section-top {
    position: sticky;
    top: calc(var(--header-height) + 5rem);
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:sticky-section-top {
    position: sticky;
    top: calc(var(--header-height) + 5rem);
  }
}
@media only screen and (min-width: 64rem) {
  .md\:sticky-section-top {
    position: sticky;
    top: calc(var(--header-height) + 5rem);
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:sticky-section-top {
    position: sticky;
    top: calc(var(--header-height) + 5rem);
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:sticky-section-top {
    position: sticky;
    top: calc(var(--header-height) + 5rem);
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:sticky-section-top {
    position: sticky;
    top: calc(var(--header-height) + 5rem);
  }
}
.fiveFour {
  aspect-ratio: 5/4;
}

.fourThree {
  aspect-ratio: 4/3;
}

.sixteenNine {
  aspect-ratio: 16/9;
}

.sixteenTen {
  aspect-ratio: 16/10;
}

.twentyoneNine {
  aspect-ratio: 21/9;
}

[class*=ratio-] {
  object-fit: cover !important;
}

.ratio-1x1 {
  aspect-ratio: 1 !important;
}
.ratio-2x3 {
  aspect-ratio: 0.6666666667 !important;
}
.ratio-4x3 {
  aspect-ratio: 1.3333333333 !important;
}
.ratio-5x4 {
  aspect-ratio: 1.25 !important;
}
.ratio-16x9 {
  aspect-ratio: 1.7777777778 !important;
}
.ratio-21x9 {
  aspect-ratio: 2.3333333333 !important;
}

.w-auto {
  width: auto !important;
  flex-shrink: 0;
}

.w-10 {
  width: 10% !important;
  flex-shrink: 0;
}

.w-20 {
  width: 20% !important;
  flex-shrink: 0;
}

.w-25 {
  width: 25% !important;
  flex-shrink: 0;
}

.w-30 {
  width: 30% !important;
  flex-shrink: 0;
}

.w-40 {
  width: 40% !important;
  flex-shrink: 0;
}

.w-50 {
  width: 50% !important;
  flex-shrink: 0;
}

.w-60 {
  width: 60% !important;
  flex-shrink: 0;
}

.w-70 {
  width: 70% !important;
  flex-shrink: 0;
}

.w-75 {
  width: 75% !important;
  flex-shrink: 0;
}

.w-80 {
  width: 80% !important;
  flex-shrink: 0;
}

.w-90 {
  width: 90% !important;
  flex-shrink: 0;
}

.w-100 {
  width: 100px !important;
  flex-shrink: 0;
}

.w-125 {
  width: 125px !important;
  flex-shrink: 0;
}

.w-150 {
  width: 150px !important;
  flex-shrink: 0;
}

.w-200 {
  width: 200px !important;
  flex-shrink: 0;
}

.w-300 {
  width: 300px !important;
  flex-shrink: 0;
}

.w-400 {
  width: 400px !important;
  flex-shrink: 0;
}

.w-500 {
  width: 500px !important;
  flex-shrink: 0;
}

.w-600 {
  width: 600px !important;
  flex-shrink: 0;
}

.w-700 {
  width: 700px !important;
  flex-shrink: 0;
}

.w-800 {
  width: 800px !important;
  flex-shrink: 0;
}

.w-900 {
  width: 900px !important;
  flex-shrink: 0;
}

.w-full {
  width: 100% !important;
  flex-shrink: 0;
}

.w-fit {
  width: fit-content !important;
  flex-shrink: 0;
}

@media only screen and (min-width: 36rem) {
  .xs\:w-auto {
    width: auto !important;
    flex-shrink: 0;
  }
  .xs\:w-10 {
    width: 10% !important;
    flex-shrink: 0;
  }
  .xs\:w-20 {
    width: 20% !important;
    flex-shrink: 0;
  }
  .xs\:w-25 {
    width: 25% !important;
    flex-shrink: 0;
  }
  .xs\:w-30 {
    width: 30% !important;
    flex-shrink: 0;
  }
  .xs\:w-40 {
    width: 40% !important;
    flex-shrink: 0;
  }
  .xs\:w-50 {
    width: 50% !important;
    flex-shrink: 0;
  }
  .xs\:w-60 {
    width: 60% !important;
    flex-shrink: 0;
  }
  .xs\:w-70 {
    width: 70% !important;
    flex-shrink: 0;
  }
  .xs\:w-75 {
    width: 75% !important;
    flex-shrink: 0;
  }
  .xs\:w-80 {
    width: 80% !important;
    flex-shrink: 0;
  }
  .xs\:w-90 {
    width: 90% !important;
    flex-shrink: 0;
  }
  .xs\:w-100 {
    width: 100px !important;
    flex-shrink: 0;
  }
  .xs\:w-125 {
    width: 125px !important;
    flex-shrink: 0;
  }
  .xs\:w-150 {
    width: 150px !important;
    flex-shrink: 0;
  }
  .xs\:w-200 {
    width: 200px !important;
    flex-shrink: 0;
  }
  .xs\:w-300 {
    width: 300px !important;
    flex-shrink: 0;
  }
  .xs\:w-400 {
    width: 400px !important;
    flex-shrink: 0;
  }
  .xs\:w-500 {
    width: 500px !important;
    flex-shrink: 0;
  }
  .xs\:w-600 {
    width: 600px !important;
    flex-shrink: 0;
  }
  .xs\:w-700 {
    width: 700px !important;
    flex-shrink: 0;
  }
  .xs\:w-800 {
    width: 800px !important;
    flex-shrink: 0;
  }
  .xs\:w-900 {
    width: 900px !important;
    flex-shrink: 0;
  }
  .xs\:w-full {
    width: 100% !important;
    flex-shrink: 0;
  }
  .xs\:w-fit {
    width: fit-content !important;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:w-auto {
    width: auto !important;
    flex-shrink: 0;
  }
  .sm\:w-10 {
    width: 10% !important;
    flex-shrink: 0;
  }
  .sm\:w-20 {
    width: 20% !important;
    flex-shrink: 0;
  }
  .sm\:w-25 {
    width: 25% !important;
    flex-shrink: 0;
  }
  .sm\:w-30 {
    width: 30% !important;
    flex-shrink: 0;
  }
  .sm\:w-40 {
    width: 40% !important;
    flex-shrink: 0;
  }
  .sm\:w-50 {
    width: 50% !important;
    flex-shrink: 0;
  }
  .sm\:w-60 {
    width: 60% !important;
    flex-shrink: 0;
  }
  .sm\:w-70 {
    width: 70% !important;
    flex-shrink: 0;
  }
  .sm\:w-75 {
    width: 75% !important;
    flex-shrink: 0;
  }
  .sm\:w-80 {
    width: 80% !important;
    flex-shrink: 0;
  }
  .sm\:w-90 {
    width: 90% !important;
    flex-shrink: 0;
  }
  .sm\:w-100 {
    width: 100px !important;
    flex-shrink: 0;
  }
  .sm\:w-125 {
    width: 125px !important;
    flex-shrink: 0;
  }
  .sm\:w-150 {
    width: 150px !important;
    flex-shrink: 0;
  }
  .sm\:w-200 {
    width: 200px !important;
    flex-shrink: 0;
  }
  .sm\:w-300 {
    width: 300px !important;
    flex-shrink: 0;
  }
  .sm\:w-400 {
    width: 400px !important;
    flex-shrink: 0;
  }
  .sm\:w-500 {
    width: 500px !important;
    flex-shrink: 0;
  }
  .sm\:w-600 {
    width: 600px !important;
    flex-shrink: 0;
  }
  .sm\:w-700 {
    width: 700px !important;
    flex-shrink: 0;
  }
  .sm\:w-800 {
    width: 800px !important;
    flex-shrink: 0;
  }
  .sm\:w-900 {
    width: 900px !important;
    flex-shrink: 0;
  }
  .sm\:w-full {
    width: 100% !important;
    flex-shrink: 0;
  }
  .sm\:w-fit {
    width: fit-content !important;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:w-auto {
    width: auto !important;
    flex-shrink: 0;
  }
  .md\:w-10 {
    width: 10% !important;
    flex-shrink: 0;
  }
  .md\:w-20 {
    width: 20% !important;
    flex-shrink: 0;
  }
  .md\:w-25 {
    width: 25% !important;
    flex-shrink: 0;
  }
  .md\:w-30 {
    width: 30% !important;
    flex-shrink: 0;
  }
  .md\:w-40 {
    width: 40% !important;
    flex-shrink: 0;
  }
  .md\:w-50 {
    width: 50% !important;
    flex-shrink: 0;
  }
  .md\:w-60 {
    width: 60% !important;
    flex-shrink: 0;
  }
  .md\:w-70 {
    width: 70% !important;
    flex-shrink: 0;
  }
  .md\:w-75 {
    width: 75% !important;
    flex-shrink: 0;
  }
  .md\:w-80 {
    width: 80% !important;
    flex-shrink: 0;
  }
  .md\:w-90 {
    width: 90% !important;
    flex-shrink: 0;
  }
  .md\:w-100 {
    width: 100px !important;
    flex-shrink: 0;
  }
  .md\:w-125 {
    width: 125px !important;
    flex-shrink: 0;
  }
  .md\:w-150 {
    width: 150px !important;
    flex-shrink: 0;
  }
  .md\:w-200 {
    width: 200px !important;
    flex-shrink: 0;
  }
  .md\:w-300 {
    width: 300px !important;
    flex-shrink: 0;
  }
  .md\:w-400 {
    width: 400px !important;
    flex-shrink: 0;
  }
  .md\:w-500 {
    width: 500px !important;
    flex-shrink: 0;
  }
  .md\:w-600 {
    width: 600px !important;
    flex-shrink: 0;
  }
  .md\:w-700 {
    width: 700px !important;
    flex-shrink: 0;
  }
  .md\:w-800 {
    width: 800px !important;
    flex-shrink: 0;
  }
  .md\:w-900 {
    width: 900px !important;
    flex-shrink: 0;
  }
  .md\:w-full {
    width: 100% !important;
    flex-shrink: 0;
  }
  .md\:w-fit {
    width: fit-content !important;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:w-auto {
    width: auto !important;
    flex-shrink: 0;
  }
  .lg\:w-10 {
    width: 10% !important;
    flex-shrink: 0;
  }
  .lg\:w-20 {
    width: 20% !important;
    flex-shrink: 0;
  }
  .lg\:w-25 {
    width: 25% !important;
    flex-shrink: 0;
  }
  .lg\:w-30 {
    width: 30% !important;
    flex-shrink: 0;
  }
  .lg\:w-40 {
    width: 40% !important;
    flex-shrink: 0;
  }
  .lg\:w-50 {
    width: 50% !important;
    flex-shrink: 0;
  }
  .lg\:w-60 {
    width: 60% !important;
    flex-shrink: 0;
  }
  .lg\:w-70 {
    width: 70% !important;
    flex-shrink: 0;
  }
  .lg\:w-75 {
    width: 75% !important;
    flex-shrink: 0;
  }
  .lg\:w-80 {
    width: 80% !important;
    flex-shrink: 0;
  }
  .lg\:w-90 {
    width: 90% !important;
    flex-shrink: 0;
  }
  .lg\:w-100 {
    width: 100px !important;
    flex-shrink: 0;
  }
  .lg\:w-125 {
    width: 125px !important;
    flex-shrink: 0;
  }
  .lg\:w-150 {
    width: 150px !important;
    flex-shrink: 0;
  }
  .lg\:w-200 {
    width: 200px !important;
    flex-shrink: 0;
  }
  .lg\:w-300 {
    width: 300px !important;
    flex-shrink: 0;
  }
  .lg\:w-400 {
    width: 400px !important;
    flex-shrink: 0;
  }
  .lg\:w-500 {
    width: 500px !important;
    flex-shrink: 0;
  }
  .lg\:w-600 {
    width: 600px !important;
    flex-shrink: 0;
  }
  .lg\:w-700 {
    width: 700px !important;
    flex-shrink: 0;
  }
  .lg\:w-800 {
    width: 800px !important;
    flex-shrink: 0;
  }
  .lg\:w-900 {
    width: 900px !important;
    flex-shrink: 0;
  }
  .lg\:w-full {
    width: 100% !important;
    flex-shrink: 0;
  }
  .lg\:w-fit {
    width: fit-content !important;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:w-auto {
    width: auto !important;
    flex-shrink: 0;
  }
  .xl\:w-10 {
    width: 10% !important;
    flex-shrink: 0;
  }
  .xl\:w-20 {
    width: 20% !important;
    flex-shrink: 0;
  }
  .xl\:w-25 {
    width: 25% !important;
    flex-shrink: 0;
  }
  .xl\:w-30 {
    width: 30% !important;
    flex-shrink: 0;
  }
  .xl\:w-40 {
    width: 40% !important;
    flex-shrink: 0;
  }
  .xl\:w-50 {
    width: 50% !important;
    flex-shrink: 0;
  }
  .xl\:w-60 {
    width: 60% !important;
    flex-shrink: 0;
  }
  .xl\:w-70 {
    width: 70% !important;
    flex-shrink: 0;
  }
  .xl\:w-75 {
    width: 75% !important;
    flex-shrink: 0;
  }
  .xl\:w-80 {
    width: 80% !important;
    flex-shrink: 0;
  }
  .xl\:w-90 {
    width: 90% !important;
    flex-shrink: 0;
  }
  .xl\:w-100 {
    width: 100px !important;
    flex-shrink: 0;
  }
  .xl\:w-125 {
    width: 125px !important;
    flex-shrink: 0;
  }
  .xl\:w-150 {
    width: 150px !important;
    flex-shrink: 0;
  }
  .xl\:w-200 {
    width: 200px !important;
    flex-shrink: 0;
  }
  .xl\:w-300 {
    width: 300px !important;
    flex-shrink: 0;
  }
  .xl\:w-400 {
    width: 400px !important;
    flex-shrink: 0;
  }
  .xl\:w-500 {
    width: 500px !important;
    flex-shrink: 0;
  }
  .xl\:w-600 {
    width: 600px !important;
    flex-shrink: 0;
  }
  .xl\:w-700 {
    width: 700px !important;
    flex-shrink: 0;
  }
  .xl\:w-800 {
    width: 800px !important;
    flex-shrink: 0;
  }
  .xl\:w-900 {
    width: 900px !important;
    flex-shrink: 0;
  }
  .xl\:w-full {
    width: 100% !important;
    flex-shrink: 0;
  }
  .xl\:w-fit {
    width: fit-content !important;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:w-auto {
    width: auto !important;
    flex-shrink: 0;
  }
  .xxl\:w-10 {
    width: 10% !important;
    flex-shrink: 0;
  }
  .xxl\:w-20 {
    width: 20% !important;
    flex-shrink: 0;
  }
  .xxl\:w-25 {
    width: 25% !important;
    flex-shrink: 0;
  }
  .xxl\:w-30 {
    width: 30% !important;
    flex-shrink: 0;
  }
  .xxl\:w-40 {
    width: 40% !important;
    flex-shrink: 0;
  }
  .xxl\:w-50 {
    width: 50% !important;
    flex-shrink: 0;
  }
  .xxl\:w-60 {
    width: 60% !important;
    flex-shrink: 0;
  }
  .xxl\:w-70 {
    width: 70% !important;
    flex-shrink: 0;
  }
  .xxl\:w-75 {
    width: 75% !important;
    flex-shrink: 0;
  }
  .xxl\:w-80 {
    width: 80% !important;
    flex-shrink: 0;
  }
  .xxl\:w-90 {
    width: 90% !important;
    flex-shrink: 0;
  }
  .xxl\:w-100 {
    width: 100px !important;
    flex-shrink: 0;
  }
  .xxl\:w-125 {
    width: 125px !important;
    flex-shrink: 0;
  }
  .xxl\:w-150 {
    width: 150px !important;
    flex-shrink: 0;
  }
  .xxl\:w-200 {
    width: 200px !important;
    flex-shrink: 0;
  }
  .xxl\:w-300 {
    width: 300px !important;
    flex-shrink: 0;
  }
  .xxl\:w-400 {
    width: 400px !important;
    flex-shrink: 0;
  }
  .xxl\:w-500 {
    width: 500px !important;
    flex-shrink: 0;
  }
  .xxl\:w-600 {
    width: 600px !important;
    flex-shrink: 0;
  }
  .xxl\:w-700 {
    width: 700px !important;
    flex-shrink: 0;
  }
  .xxl\:w-800 {
    width: 800px !important;
    flex-shrink: 0;
  }
  .xxl\:w-900 {
    width: 900px !important;
    flex-shrink: 0;
  }
  .xxl\:w-full {
    width: 100% !important;
    flex-shrink: 0;
  }
  .xxl\:w-fit {
    width: fit-content !important;
    flex-shrink: 0;
  }
}
.h-auto {
  height: auto !important;
}

.h-50 {
  height: 50% !important;
}

.h-100 {
  height: 100px !important;
}

.h-150 {
  height: 150px !important;
}

.h-200 {
  height: 200px !important;
}

.h-300 {
  height: 300px !important;
}

.h-400 {
  height: 400px !important;
}

.h-500 {
  height: 500px !important;
}

.h-full {
  height: 100% !important;
}

.h-fit {
  height: fit-content !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:h-auto {
    height: auto !important;
  }
  .xs\:h-50 {
    height: 50% !important;
  }
  .xs\:h-100 {
    height: 100px !important;
  }
  .xs\:h-150 {
    height: 150px !important;
  }
  .xs\:h-200 {
    height: 200px !important;
  }
  .xs\:h-300 {
    height: 300px !important;
  }
  .xs\:h-400 {
    height: 400px !important;
  }
  .xs\:h-500 {
    height: 500px !important;
  }
  .xs\:h-full {
    height: 100% !important;
  }
  .xs\:h-fit {
    height: fit-content !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:h-auto {
    height: auto !important;
  }
  .sm\:h-50 {
    height: 50% !important;
  }
  .sm\:h-100 {
    height: 100px !important;
  }
  .sm\:h-150 {
    height: 150px !important;
  }
  .sm\:h-200 {
    height: 200px !important;
  }
  .sm\:h-300 {
    height: 300px !important;
  }
  .sm\:h-400 {
    height: 400px !important;
  }
  .sm\:h-500 {
    height: 500px !important;
  }
  .sm\:h-full {
    height: 100% !important;
  }
  .sm\:h-fit {
    height: fit-content !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:h-auto {
    height: auto !important;
  }
  .md\:h-50 {
    height: 50% !important;
  }
  .md\:h-100 {
    height: 100px !important;
  }
  .md\:h-150 {
    height: 150px !important;
  }
  .md\:h-200 {
    height: 200px !important;
  }
  .md\:h-300 {
    height: 300px !important;
  }
  .md\:h-400 {
    height: 400px !important;
  }
  .md\:h-500 {
    height: 500px !important;
  }
  .md\:h-full {
    height: 100% !important;
  }
  .md\:h-fit {
    height: fit-content !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:h-auto {
    height: auto !important;
  }
  .lg\:h-50 {
    height: 50% !important;
  }
  .lg\:h-100 {
    height: 100px !important;
  }
  .lg\:h-150 {
    height: 150px !important;
  }
  .lg\:h-200 {
    height: 200px !important;
  }
  .lg\:h-300 {
    height: 300px !important;
  }
  .lg\:h-400 {
    height: 400px !important;
  }
  .lg\:h-500 {
    height: 500px !important;
  }
  .lg\:h-full {
    height: 100% !important;
  }
  .lg\:h-fit {
    height: fit-content !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:h-auto {
    height: auto !important;
  }
  .xl\:h-50 {
    height: 50% !important;
  }
  .xl\:h-100 {
    height: 100px !important;
  }
  .xl\:h-150 {
    height: 150px !important;
  }
  .xl\:h-200 {
    height: 200px !important;
  }
  .xl\:h-300 {
    height: 300px !important;
  }
  .xl\:h-400 {
    height: 400px !important;
  }
  .xl\:h-500 {
    height: 500px !important;
  }
  .xl\:h-full {
    height: 100% !important;
  }
  .xl\:h-fit {
    height: fit-content !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:h-auto {
    height: auto !important;
  }
  .xxl\:h-50 {
    height: 50% !important;
  }
  .xxl\:h-100 {
    height: 100px !important;
  }
  .xxl\:h-150 {
    height: 150px !important;
  }
  .xxl\:h-200 {
    height: 200px !important;
  }
  .xxl\:h-300 {
    height: 300px !important;
  }
  .xxl\:h-400 {
    height: 400px !important;
  }
  .xxl\:h-500 {
    height: 500px !important;
  }
  .xxl\:h-full {
    height: 100% !important;
  }
  .xxl\:h-fit {
    height: fit-content !important;
  }
}
.min-w-200 {
  min-width: 200px !important;
}

.fit-contain {
  object-fit: contain !important;
}
.fit-cover {
  object-fit: cover !important;
}

/*
 * Margins
 */
.m-0 {
  margin: 0 !important;
}

.m-0_5 {
  margin: 0.5rem !important;
}

.m-1 {
  margin: 1rem !important;
}

.m-2 {
  margin: 1.5rem !important;
}

.m-3 {
  margin: 2rem !important;
}

.m-4 {
  margin: 2.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-6 {
  margin: 3.5rem !important;
}

.m-7 {
  margin: 4rem !important;
}

.m-8 {
  margin: 4.5rem !important;
}

.m-9 {
  margin: 5rem !important;
}

.m-10 {
  margin: 5.5rem !important;
}

.m-11 {
  margin: 6rem !important;
}

.m-12 {
  margin: 6.5rem !important;
}

.m-13 {
  margin: 7rem !important;
}

.m-14 {
  margin: 7.5rem !important;
}

.m-15 {
  margin: 8rem !important;
}

.m-16 {
  margin: 8.5rem !important;
}

.m-17 {
  margin: 9rem !important;
}

.m-18 {
  margin: 9.5rem !important;
}

.m-19 {
  margin: 10rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-0_5 {
  margin-top: 0.5rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 1.5rem !important;
}

.mt-3 {
  margin-top: 2rem !important;
}

.mt-4 {
  margin-top: 2.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 3.5rem !important;
}

.mt-7 {
  margin-top: 4rem !important;
}

.mt-8 {
  margin-top: 4.5rem !important;
}

.mt-9 {
  margin-top: 5rem !important;
}

.mt-10 {
  margin-top: 5.5rem !important;
}

.mt-11 {
  margin-top: 6rem !important;
}

.mt-12 {
  margin-top: 6.5rem !important;
}

.mt-13 {
  margin-top: 7rem !important;
}

.mt-14 {
  margin-top: 7.5rem !important;
}

.mt-15 {
  margin-top: 8rem !important;
}

.mt-16 {
  margin-top: 8.5rem !important;
}

.mt-17 {
  margin-top: 9rem !important;
}

.mt-18 {
  margin-top: 9.5rem !important;
}

.mt-19 {
  margin-top: 10rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-0_5 {
  margin-bottom: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 2rem !important;
}

.mb-4 {
  margin-bottom: 2.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 3.5rem !important;
}

.mb-7 {
  margin-bottom: 4rem !important;
}

.mb-8 {
  margin-bottom: 4.5rem !important;
}

.mb-9 {
  margin-bottom: 5rem !important;
}

.mb-10 {
  margin-bottom: 5.5rem !important;
}

.mb-11 {
  margin-bottom: 6rem !important;
}

.mb-12 {
  margin-bottom: 6.5rem !important;
}

.mb-13 {
  margin-bottom: 7rem !important;
}

.mb-14 {
  margin-bottom: 7.5rem !important;
}

.mb-15 {
  margin-bottom: 8rem !important;
}

.mb-16 {
  margin-bottom: 8.5rem !important;
}

.mb-17 {
  margin-bottom: 9rem !important;
}

.mb-18 {
  margin-bottom: 9.5rem !important;
}

.mb-19 {
  margin-bottom: 10rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-0_5 {
  margin-left: 0.5rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.ml-2 {
  margin-left: 1.5rem !important;
}

.ml-3 {
  margin-left: 2rem !important;
}

.ml-4 {
  margin-left: 2.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.ml-6 {
  margin-left: 3.5rem !important;
}

.ml-7 {
  margin-left: 4rem !important;
}

.ml-8 {
  margin-left: 4.5rem !important;
}

.ml-9 {
  margin-left: 5rem !important;
}

.ml-10 {
  margin-left: 5.5rem !important;
}

.ml-11 {
  margin-left: 6rem !important;
}

.ml-12 {
  margin-left: 6.5rem !important;
}

.ml-13 {
  margin-left: 7rem !important;
}

.ml-14 {
  margin-left: 7.5rem !important;
}

.ml-15 {
  margin-left: 8rem !important;
}

.ml-16 {
  margin-left: 8.5rem !important;
}

.ml-17 {
  margin-left: 9rem !important;
}

.ml-18 {
  margin-left: 9.5rem !important;
}

.ml-19 {
  margin-left: 10rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-0_5 {
  margin-right: 0.5rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 1.5rem !important;
}

.mr-3 {
  margin-right: 2rem !important;
}

.mr-4 {
  margin-right: 2.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mr-6 {
  margin-right: 3.5rem !important;
}

.mr-7 {
  margin-right: 4rem !important;
}

.mr-8 {
  margin-right: 4.5rem !important;
}

.mr-9 {
  margin-right: 5rem !important;
}

.mr-10 {
  margin-right: 5.5rem !important;
}

.mr-11 {
  margin-right: 6rem !important;
}

.mr-12 {
  margin-right: 6.5rem !important;
}

.mr-13 {
  margin-right: 7rem !important;
}

.mr-14 {
  margin-right: 7.5rem !important;
}

.mr-15 {
  margin-right: 8rem !important;
}

.mr-16 {
  margin-right: 8.5rem !important;
}

.mr-17 {
  margin-right: 9rem !important;
}

.mr-18 {
  margin-right: 9.5rem !important;
}

.mr-19 {
  margin-right: 10rem !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-0_5 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-2 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-3 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.mx-4 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-6 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.mx-7 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.mx-8 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.mx-9 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.mx-10 {
  margin-left: 5.5rem !important;
  margin-right: 5.5rem !important;
}

.mx-11 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.mx-12 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important;
}

.mx-13 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.mx-14 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}

.mx-15 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.mx-16 {
  margin-left: 8.5rem !important;
  margin-right: 8.5rem !important;
}

.mx-17 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.mx-18 {
  margin-left: 9.5rem !important;
  margin-right: 9.5rem !important;
}

.mx-19 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-0_5 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-3 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-4 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-6 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-7 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-8 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-9 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-10 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}

.my-11 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-12 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}

.my-13 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.my-14 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.my-15 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.my-16 {
  margin-top: 8.5rem !important;
  margin-bottom: 8.5rem !important;
}

.my-17 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.my-18 {
  margin-top: 9.5rem !important;
  margin-bottom: 9.5rem !important;
}

.my-19 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

@media (min-width: 36rem) {
  .xs\:m-0 {
    margin: 0 !important;
  }
  .xs\:m-0_5 {
    margin: 0.5rem !important;
  }
  .xs\:m-1 {
    margin: 1rem !important;
  }
  .xs\:m-2 {
    margin: 1.5rem !important;
  }
  .xs\:m-3 {
    margin: 2rem !important;
  }
  .xs\:m-4 {
    margin: 2.5rem !important;
  }
  .xs\:m-5 {
    margin: 3rem !important;
  }
  .xs\:m-6 {
    margin: 3.5rem !important;
  }
  .xs\:m-7 {
    margin: 4rem !important;
  }
  .xs\:m-8 {
    margin: 4.5rem !important;
  }
  .xs\:m-9 {
    margin: 5rem !important;
  }
  .xs\:m-10 {
    margin: 5.5rem !important;
  }
  .xs\:m-11 {
    margin: 6rem !important;
  }
  .xs\:m-12 {
    margin: 6.5rem !important;
  }
  .xs\:m-13 {
    margin: 7rem !important;
  }
  .xs\:m-14 {
    margin: 7.5rem !important;
  }
  .xs\:m-15 {
    margin: 8rem !important;
  }
  .xs\:m-16 {
    margin: 8.5rem !important;
  }
  .xs\:m-17 {
    margin: 9rem !important;
  }
  .xs\:m-18 {
    margin: 9.5rem !important;
  }
  .xs\:m-19 {
    margin: 10rem !important;
  }
  .xs\:m-auto {
    margin: auto !important;
  }
  .xs\:mt-0 {
    margin-top: 0 !important;
  }
  .xs\:mt-0_5 {
    margin-top: 0.5rem !important;
  }
  .xs\:mt-1 {
    margin-top: 1rem !important;
  }
  .xs\:mt-2 {
    margin-top: 1.5rem !important;
  }
  .xs\:mt-3 {
    margin-top: 2rem !important;
  }
  .xs\:mt-4 {
    margin-top: 2.5rem !important;
  }
  .xs\:mt-5 {
    margin-top: 3rem !important;
  }
  .xs\:mt-6 {
    margin-top: 3.5rem !important;
  }
  .xs\:mt-7 {
    margin-top: 4rem !important;
  }
  .xs\:mt-8 {
    margin-top: 4.5rem !important;
  }
  .xs\:mt-9 {
    margin-top: 5rem !important;
  }
  .xs\:mt-10 {
    margin-top: 5.5rem !important;
  }
  .xs\:mt-11 {
    margin-top: 6rem !important;
  }
  .xs\:mt-12 {
    margin-top: 6.5rem !important;
  }
  .xs\:mt-13 {
    margin-top: 7rem !important;
  }
  .xs\:mt-14 {
    margin-top: 7.5rem !important;
  }
  .xs\:mt-15 {
    margin-top: 8rem !important;
  }
  .xs\:mt-16 {
    margin-top: 8.5rem !important;
  }
  .xs\:mt-17 {
    margin-top: 9rem !important;
  }
  .xs\:mt-18 {
    margin-top: 9.5rem !important;
  }
  .xs\:mt-19 {
    margin-top: 10rem !important;
  }
  .xs\:mt-auto {
    margin-top: auto !important;
  }
  .xs\:mb-0 {
    margin-bottom: 0 !important;
  }
  .xs\:mb-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .xs\:mb-1 {
    margin-bottom: 1rem !important;
  }
  .xs\:mb-2 {
    margin-bottom: 1.5rem !important;
  }
  .xs\:mb-3 {
    margin-bottom: 2rem !important;
  }
  .xs\:mb-4 {
    margin-bottom: 2.5rem !important;
  }
  .xs\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .xs\:mb-6 {
    margin-bottom: 3.5rem !important;
  }
  .xs\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .xs\:mb-8 {
    margin-bottom: 4.5rem !important;
  }
  .xs\:mb-9 {
    margin-bottom: 5rem !important;
  }
  .xs\:mb-10 {
    margin-bottom: 5.5rem !important;
  }
  .xs\:mb-11 {
    margin-bottom: 6rem !important;
  }
  .xs\:mb-12 {
    margin-bottom: 6.5rem !important;
  }
  .xs\:mb-13 {
    margin-bottom: 7rem !important;
  }
  .xs\:mb-14 {
    margin-bottom: 7.5rem !important;
  }
  .xs\:mb-15 {
    margin-bottom: 8rem !important;
  }
  .xs\:mb-16 {
    margin-bottom: 8.5rem !important;
  }
  .xs\:mb-17 {
    margin-bottom: 9rem !important;
  }
  .xs\:mb-18 {
    margin-bottom: 9.5rem !important;
  }
  .xs\:mb-19 {
    margin-bottom: 10rem !important;
  }
  .xs\:mb-auto {
    margin-bottom: auto !important;
  }
  .xs\:ml-0 {
    margin-left: 0 !important;
  }
  .xs\:ml-0_5 {
    margin-left: 0.5rem !important;
  }
  .xs\:ml-1 {
    margin-left: 1rem !important;
  }
  .xs\:ml-2 {
    margin-left: 1.5rem !important;
  }
  .xs\:ml-3 {
    margin-left: 2rem !important;
  }
  .xs\:ml-4 {
    margin-left: 2.5rem !important;
  }
  .xs\:ml-5 {
    margin-left: 3rem !important;
  }
  .xs\:ml-6 {
    margin-left: 3.5rem !important;
  }
  .xs\:ml-7 {
    margin-left: 4rem !important;
  }
  .xs\:ml-8 {
    margin-left: 4.5rem !important;
  }
  .xs\:ml-9 {
    margin-left: 5rem !important;
  }
  .xs\:ml-10 {
    margin-left: 5.5rem !important;
  }
  .xs\:ml-11 {
    margin-left: 6rem !important;
  }
  .xs\:ml-12 {
    margin-left: 6.5rem !important;
  }
  .xs\:ml-13 {
    margin-left: 7rem !important;
  }
  .xs\:ml-14 {
    margin-left: 7.5rem !important;
  }
  .xs\:ml-15 {
    margin-left: 8rem !important;
  }
  .xs\:ml-16 {
    margin-left: 8.5rem !important;
  }
  .xs\:ml-17 {
    margin-left: 9rem !important;
  }
  .xs\:ml-18 {
    margin-left: 9.5rem !important;
  }
  .xs\:ml-19 {
    margin-left: 10rem !important;
  }
  .xs\:ml-auto {
    margin-left: auto !important;
  }
  .xs\:mr-0 {
    margin-right: 0 !important;
  }
  .xs\:mr-0_5 {
    margin-right: 0.5rem !important;
  }
  .xs\:mr-1 {
    margin-right: 1rem !important;
  }
  .xs\:mr-2 {
    margin-right: 1.5rem !important;
  }
  .xs\:mr-3 {
    margin-right: 2rem !important;
  }
  .xs\:mr-4 {
    margin-right: 2.5rem !important;
  }
  .xs\:mr-5 {
    margin-right: 3rem !important;
  }
  .xs\:mr-6 {
    margin-right: 3.5rem !important;
  }
  .xs\:mr-7 {
    margin-right: 4rem !important;
  }
  .xs\:mr-8 {
    margin-right: 4.5rem !important;
  }
  .xs\:mr-9 {
    margin-right: 5rem !important;
  }
  .xs\:mr-10 {
    margin-right: 5.5rem !important;
  }
  .xs\:mr-11 {
    margin-right: 6rem !important;
  }
  .xs\:mr-12 {
    margin-right: 6.5rem !important;
  }
  .xs\:mr-13 {
    margin-right: 7rem !important;
  }
  .xs\:mr-14 {
    margin-right: 7.5rem !important;
  }
  .xs\:mr-15 {
    margin-right: 8rem !important;
  }
  .xs\:mr-16 {
    margin-right: 8.5rem !important;
  }
  .xs\:mr-17 {
    margin-right: 9rem !important;
  }
  .xs\:mr-18 {
    margin-right: 9.5rem !important;
  }
  .xs\:mr-19 {
    margin-right: 10rem !important;
  }
  .xs\:mr-auto {
    margin-right: auto !important;
  }
  .xs\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xs\:mx-0_5 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xs\:mx-1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xs\:mx-2 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xs\:mx-3 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xs\:mx-4 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xs\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xs\:mx-6 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .xs\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xs\:mx-8 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .xs\:mx-9 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xs\:mx-10 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .xs\:mx-11 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xs\:mx-12 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .xs\:mx-13 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xs\:mx-14 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .xs\:mx-15 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xs\:mx-16 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .xs\:mx-17 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xs\:mx-18 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .xs\:mx-19 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xs\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xs\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xs\:my-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xs\:my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xs\:my-2 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xs\:my-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xs\:my-4 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xs\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xs\:my-6 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .xs\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xs\:my-8 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .xs\:my-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xs\:my-10 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .xs\:my-11 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xs\:my-12 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .xs\:my-13 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .xs\:my-14 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .xs\:my-15 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xs\:my-16 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .xs\:my-17 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .xs\:my-18 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .xs\:my-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xs\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 48rem) {
  .sm\:m-0 {
    margin: 0 !important;
  }
  .sm\:m-0_5 {
    margin: 0.5rem !important;
  }
  .sm\:m-1 {
    margin: 1rem !important;
  }
  .sm\:m-2 {
    margin: 1.5rem !important;
  }
  .sm\:m-3 {
    margin: 2rem !important;
  }
  .sm\:m-4 {
    margin: 2.5rem !important;
  }
  .sm\:m-5 {
    margin: 3rem !important;
  }
  .sm\:m-6 {
    margin: 3.5rem !important;
  }
  .sm\:m-7 {
    margin: 4rem !important;
  }
  .sm\:m-8 {
    margin: 4.5rem !important;
  }
  .sm\:m-9 {
    margin: 5rem !important;
  }
  .sm\:m-10 {
    margin: 5.5rem !important;
  }
  .sm\:m-11 {
    margin: 6rem !important;
  }
  .sm\:m-12 {
    margin: 6.5rem !important;
  }
  .sm\:m-13 {
    margin: 7rem !important;
  }
  .sm\:m-14 {
    margin: 7.5rem !important;
  }
  .sm\:m-15 {
    margin: 8rem !important;
  }
  .sm\:m-16 {
    margin: 8.5rem !important;
  }
  .sm\:m-17 {
    margin: 9rem !important;
  }
  .sm\:m-18 {
    margin: 9.5rem !important;
  }
  .sm\:m-19 {
    margin: 10rem !important;
  }
  .sm\:m-auto {
    margin: auto !important;
  }
  .sm\:mt-0 {
    margin-top: 0 !important;
  }
  .sm\:mt-0_5 {
    margin-top: 0.5rem !important;
  }
  .sm\:mt-1 {
    margin-top: 1rem !important;
  }
  .sm\:mt-2 {
    margin-top: 1.5rem !important;
  }
  .sm\:mt-3 {
    margin-top: 2rem !important;
  }
  .sm\:mt-4 {
    margin-top: 2.5rem !important;
  }
  .sm\:mt-5 {
    margin-top: 3rem !important;
  }
  .sm\:mt-6 {
    margin-top: 3.5rem !important;
  }
  .sm\:mt-7 {
    margin-top: 4rem !important;
  }
  .sm\:mt-8 {
    margin-top: 4.5rem !important;
  }
  .sm\:mt-9 {
    margin-top: 5rem !important;
  }
  .sm\:mt-10 {
    margin-top: 5.5rem !important;
  }
  .sm\:mt-11 {
    margin-top: 6rem !important;
  }
  .sm\:mt-12 {
    margin-top: 6.5rem !important;
  }
  .sm\:mt-13 {
    margin-top: 7rem !important;
  }
  .sm\:mt-14 {
    margin-top: 7.5rem !important;
  }
  .sm\:mt-15 {
    margin-top: 8rem !important;
  }
  .sm\:mt-16 {
    margin-top: 8.5rem !important;
  }
  .sm\:mt-17 {
    margin-top: 9rem !important;
  }
  .sm\:mt-18 {
    margin-top: 9.5rem !important;
  }
  .sm\:mt-19 {
    margin-top: 10rem !important;
  }
  .sm\:mt-auto {
    margin-top: auto !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0 !important;
  }
  .sm\:mb-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .sm\:mb-1 {
    margin-bottom: 1rem !important;
  }
  .sm\:mb-2 {
    margin-bottom: 1.5rem !important;
  }
  .sm\:mb-3 {
    margin-bottom: 2rem !important;
  }
  .sm\:mb-4 {
    margin-bottom: 2.5rem !important;
  }
  .sm\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .sm\:mb-6 {
    margin-bottom: 3.5rem !important;
  }
  .sm\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .sm\:mb-8 {
    margin-bottom: 4.5rem !important;
  }
  .sm\:mb-9 {
    margin-bottom: 5rem !important;
  }
  .sm\:mb-10 {
    margin-bottom: 5.5rem !important;
  }
  .sm\:mb-11 {
    margin-bottom: 6rem !important;
  }
  .sm\:mb-12 {
    margin-bottom: 6.5rem !important;
  }
  .sm\:mb-13 {
    margin-bottom: 7rem !important;
  }
  .sm\:mb-14 {
    margin-bottom: 7.5rem !important;
  }
  .sm\:mb-15 {
    margin-bottom: 8rem !important;
  }
  .sm\:mb-16 {
    margin-bottom: 8.5rem !important;
  }
  .sm\:mb-17 {
    margin-bottom: 9rem !important;
  }
  .sm\:mb-18 {
    margin-bottom: 9.5rem !important;
  }
  .sm\:mb-19 {
    margin-bottom: 10rem !important;
  }
  .sm\:mb-auto {
    margin-bottom: auto !important;
  }
  .sm\:ml-0 {
    margin-left: 0 !important;
  }
  .sm\:ml-0_5 {
    margin-left: 0.5rem !important;
  }
  .sm\:ml-1 {
    margin-left: 1rem !important;
  }
  .sm\:ml-2 {
    margin-left: 1.5rem !important;
  }
  .sm\:ml-3 {
    margin-left: 2rem !important;
  }
  .sm\:ml-4 {
    margin-left: 2.5rem !important;
  }
  .sm\:ml-5 {
    margin-left: 3rem !important;
  }
  .sm\:ml-6 {
    margin-left: 3.5rem !important;
  }
  .sm\:ml-7 {
    margin-left: 4rem !important;
  }
  .sm\:ml-8 {
    margin-left: 4.5rem !important;
  }
  .sm\:ml-9 {
    margin-left: 5rem !important;
  }
  .sm\:ml-10 {
    margin-left: 5.5rem !important;
  }
  .sm\:ml-11 {
    margin-left: 6rem !important;
  }
  .sm\:ml-12 {
    margin-left: 6.5rem !important;
  }
  .sm\:ml-13 {
    margin-left: 7rem !important;
  }
  .sm\:ml-14 {
    margin-left: 7.5rem !important;
  }
  .sm\:ml-15 {
    margin-left: 8rem !important;
  }
  .sm\:ml-16 {
    margin-left: 8.5rem !important;
  }
  .sm\:ml-17 {
    margin-left: 9rem !important;
  }
  .sm\:ml-18 {
    margin-left: 9.5rem !important;
  }
  .sm\:ml-19 {
    margin-left: 10rem !important;
  }
  .sm\:ml-auto {
    margin-left: auto !important;
  }
  .sm\:mr-0 {
    margin-right: 0 !important;
  }
  .sm\:mr-0_5 {
    margin-right: 0.5rem !important;
  }
  .sm\:mr-1 {
    margin-right: 1rem !important;
  }
  .sm\:mr-2 {
    margin-right: 1.5rem !important;
  }
  .sm\:mr-3 {
    margin-right: 2rem !important;
  }
  .sm\:mr-4 {
    margin-right: 2.5rem !important;
  }
  .sm\:mr-5 {
    margin-right: 3rem !important;
  }
  .sm\:mr-6 {
    margin-right: 3.5rem !important;
  }
  .sm\:mr-7 {
    margin-right: 4rem !important;
  }
  .sm\:mr-8 {
    margin-right: 4.5rem !important;
  }
  .sm\:mr-9 {
    margin-right: 5rem !important;
  }
  .sm\:mr-10 {
    margin-right: 5.5rem !important;
  }
  .sm\:mr-11 {
    margin-right: 6rem !important;
  }
  .sm\:mr-12 {
    margin-right: 6.5rem !important;
  }
  .sm\:mr-13 {
    margin-right: 7rem !important;
  }
  .sm\:mr-14 {
    margin-right: 7.5rem !important;
  }
  .sm\:mr-15 {
    margin-right: 8rem !important;
  }
  .sm\:mr-16 {
    margin-right: 8.5rem !important;
  }
  .sm\:mr-17 {
    margin-right: 9rem !important;
  }
  .sm\:mr-18 {
    margin-right: 9.5rem !important;
  }
  .sm\:mr-19 {
    margin-right: 10rem !important;
  }
  .sm\:mr-auto {
    margin-right: auto !important;
  }
  .sm\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sm\:mx-0_5 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .sm\:mx-1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .sm\:mx-2 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .sm\:mx-3 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .sm\:mx-4 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .sm\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .sm\:mx-6 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .sm\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .sm\:mx-8 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .sm\:mx-9 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .sm\:mx-10 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .sm\:mx-11 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .sm\:mx-12 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .sm\:mx-13 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .sm\:mx-14 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .sm\:mx-15 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .sm\:mx-16 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .sm\:mx-17 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .sm\:mx-18 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .sm\:mx-19 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sm\:my-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .sm\:my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .sm\:my-2 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .sm\:my-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .sm\:my-4 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .sm\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .sm\:my-6 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .sm\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .sm\:my-8 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .sm\:my-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .sm\:my-10 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .sm\:my-11 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .sm\:my-12 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .sm\:my-13 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .sm\:my-14 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .sm\:my-15 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .sm\:my-16 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .sm\:my-17 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .sm\:my-18 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .sm\:my-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 64rem) {
  .md\:m-0 {
    margin: 0 !important;
  }
  .md\:m-0_5 {
    margin: 0.5rem !important;
  }
  .md\:m-1 {
    margin: 1rem !important;
  }
  .md\:m-2 {
    margin: 1.5rem !important;
  }
  .md\:m-3 {
    margin: 2rem !important;
  }
  .md\:m-4 {
    margin: 2.5rem !important;
  }
  .md\:m-5 {
    margin: 3rem !important;
  }
  .md\:m-6 {
    margin: 3.5rem !important;
  }
  .md\:m-7 {
    margin: 4rem !important;
  }
  .md\:m-8 {
    margin: 4.5rem !important;
  }
  .md\:m-9 {
    margin: 5rem !important;
  }
  .md\:m-10 {
    margin: 5.5rem !important;
  }
  .md\:m-11 {
    margin: 6rem !important;
  }
  .md\:m-12 {
    margin: 6.5rem !important;
  }
  .md\:m-13 {
    margin: 7rem !important;
  }
  .md\:m-14 {
    margin: 7.5rem !important;
  }
  .md\:m-15 {
    margin: 8rem !important;
  }
  .md\:m-16 {
    margin: 8.5rem !important;
  }
  .md\:m-17 {
    margin: 9rem !important;
  }
  .md\:m-18 {
    margin: 9.5rem !important;
  }
  .md\:m-19 {
    margin: 10rem !important;
  }
  .md\:m-auto {
    margin: auto !important;
  }
  .md\:mt-0 {
    margin-top: 0 !important;
  }
  .md\:mt-0_5 {
    margin-top: 0.5rem !important;
  }
  .md\:mt-1 {
    margin-top: 1rem !important;
  }
  .md\:mt-2 {
    margin-top: 1.5rem !important;
  }
  .md\:mt-3 {
    margin-top: 2rem !important;
  }
  .md\:mt-4 {
    margin-top: 2.5rem !important;
  }
  .md\:mt-5 {
    margin-top: 3rem !important;
  }
  .md\:mt-6 {
    margin-top: 3.5rem !important;
  }
  .md\:mt-7 {
    margin-top: 4rem !important;
  }
  .md\:mt-8 {
    margin-top: 4.5rem !important;
  }
  .md\:mt-9 {
    margin-top: 5rem !important;
  }
  .md\:mt-10 {
    margin-top: 5.5rem !important;
  }
  .md\:mt-11 {
    margin-top: 6rem !important;
  }
  .md\:mt-12 {
    margin-top: 6.5rem !important;
  }
  .md\:mt-13 {
    margin-top: 7rem !important;
  }
  .md\:mt-14 {
    margin-top: 7.5rem !important;
  }
  .md\:mt-15 {
    margin-top: 8rem !important;
  }
  .md\:mt-16 {
    margin-top: 8.5rem !important;
  }
  .md\:mt-17 {
    margin-top: 9rem !important;
  }
  .md\:mt-18 {
    margin-top: 9.5rem !important;
  }
  .md\:mt-19 {
    margin-top: 10rem !important;
  }
  .md\:mt-auto {
    margin-top: auto !important;
  }
  .md\:mb-0 {
    margin-bottom: 0 !important;
  }
  .md\:mb-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .md\:mb-1 {
    margin-bottom: 1rem !important;
  }
  .md\:mb-2 {
    margin-bottom: 1.5rem !important;
  }
  .md\:mb-3 {
    margin-bottom: 2rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 2.5rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .md\:mb-6 {
    margin-bottom: 3.5rem !important;
  }
  .md\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .md\:mb-8 {
    margin-bottom: 4.5rem !important;
  }
  .md\:mb-9 {
    margin-bottom: 5rem !important;
  }
  .md\:mb-10 {
    margin-bottom: 5.5rem !important;
  }
  .md\:mb-11 {
    margin-bottom: 6rem !important;
  }
  .md\:mb-12 {
    margin-bottom: 6.5rem !important;
  }
  .md\:mb-13 {
    margin-bottom: 7rem !important;
  }
  .md\:mb-14 {
    margin-bottom: 7.5rem !important;
  }
  .md\:mb-15 {
    margin-bottom: 8rem !important;
  }
  .md\:mb-16 {
    margin-bottom: 8.5rem !important;
  }
  .md\:mb-17 {
    margin-bottom: 9rem !important;
  }
  .md\:mb-18 {
    margin-bottom: 9.5rem !important;
  }
  .md\:mb-19 {
    margin-bottom: 10rem !important;
  }
  .md\:mb-auto {
    margin-bottom: auto !important;
  }
  .md\:ml-0 {
    margin-left: 0 !important;
  }
  .md\:ml-0_5 {
    margin-left: 0.5rem !important;
  }
  .md\:ml-1 {
    margin-left: 1rem !important;
  }
  .md\:ml-2 {
    margin-left: 1.5rem !important;
  }
  .md\:ml-3 {
    margin-left: 2rem !important;
  }
  .md\:ml-4 {
    margin-left: 2.5rem !important;
  }
  .md\:ml-5 {
    margin-left: 3rem !important;
  }
  .md\:ml-6 {
    margin-left: 3.5rem !important;
  }
  .md\:ml-7 {
    margin-left: 4rem !important;
  }
  .md\:ml-8 {
    margin-left: 4.5rem !important;
  }
  .md\:ml-9 {
    margin-left: 5rem !important;
  }
  .md\:ml-10 {
    margin-left: 5.5rem !important;
  }
  .md\:ml-11 {
    margin-left: 6rem !important;
  }
  .md\:ml-12 {
    margin-left: 6.5rem !important;
  }
  .md\:ml-13 {
    margin-left: 7rem !important;
  }
  .md\:ml-14 {
    margin-left: 7.5rem !important;
  }
  .md\:ml-15 {
    margin-left: 8rem !important;
  }
  .md\:ml-16 {
    margin-left: 8.5rem !important;
  }
  .md\:ml-17 {
    margin-left: 9rem !important;
  }
  .md\:ml-18 {
    margin-left: 9.5rem !important;
  }
  .md\:ml-19 {
    margin-left: 10rem !important;
  }
  .md\:ml-auto {
    margin-left: auto !important;
  }
  .md\:mr-0 {
    margin-right: 0 !important;
  }
  .md\:mr-0_5 {
    margin-right: 0.5rem !important;
  }
  .md\:mr-1 {
    margin-right: 1rem !important;
  }
  .md\:mr-2 {
    margin-right: 1.5rem !important;
  }
  .md\:mr-3 {
    margin-right: 2rem !important;
  }
  .md\:mr-4 {
    margin-right: 2.5rem !important;
  }
  .md\:mr-5 {
    margin-right: 3rem !important;
  }
  .md\:mr-6 {
    margin-right: 3.5rem !important;
  }
  .md\:mr-7 {
    margin-right: 4rem !important;
  }
  .md\:mr-8 {
    margin-right: 4.5rem !important;
  }
  .md\:mr-9 {
    margin-right: 5rem !important;
  }
  .md\:mr-10 {
    margin-right: 5.5rem !important;
  }
  .md\:mr-11 {
    margin-right: 6rem !important;
  }
  .md\:mr-12 {
    margin-right: 6.5rem !important;
  }
  .md\:mr-13 {
    margin-right: 7rem !important;
  }
  .md\:mr-14 {
    margin-right: 7.5rem !important;
  }
  .md\:mr-15 {
    margin-right: 8rem !important;
  }
  .md\:mr-16 {
    margin-right: 8.5rem !important;
  }
  .md\:mr-17 {
    margin-right: 9rem !important;
  }
  .md\:mr-18 {
    margin-right: 9.5rem !important;
  }
  .md\:mr-19 {
    margin-right: 10rem !important;
  }
  .md\:mr-auto {
    margin-right: auto !important;
  }
  .md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .md\:mx-0_5 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .md\:mx-1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .md\:mx-2 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .md\:mx-3 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .md\:mx-4 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .md\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .md\:mx-6 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .md\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .md\:mx-8 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .md\:mx-9 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .md\:mx-10 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .md\:mx-11 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .md\:mx-12 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .md\:mx-13 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .md\:mx-14 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .md\:mx-15 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .md\:mx-16 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .md\:mx-17 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .md\:mx-18 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .md\:mx-19 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .md\:my-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .md\:my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .md\:my-2 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .md\:my-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .md\:my-4 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .md\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .md\:my-6 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .md\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .md\:my-8 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .md\:my-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .md\:my-10 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .md\:my-11 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .md\:my-12 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .md\:my-13 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .md\:my-14 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .md\:my-15 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .md\:my-16 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .md\:my-17 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .md\:my-18 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .md\:my-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 75rem) {
  .lg\:m-0 {
    margin: 0 !important;
  }
  .lg\:m-0_5 {
    margin: 0.5rem !important;
  }
  .lg\:m-1 {
    margin: 1rem !important;
  }
  .lg\:m-2 {
    margin: 1.5rem !important;
  }
  .lg\:m-3 {
    margin: 2rem !important;
  }
  .lg\:m-4 {
    margin: 2.5rem !important;
  }
  .lg\:m-5 {
    margin: 3rem !important;
  }
  .lg\:m-6 {
    margin: 3.5rem !important;
  }
  .lg\:m-7 {
    margin: 4rem !important;
  }
  .lg\:m-8 {
    margin: 4.5rem !important;
  }
  .lg\:m-9 {
    margin: 5rem !important;
  }
  .lg\:m-10 {
    margin: 5.5rem !important;
  }
  .lg\:m-11 {
    margin: 6rem !important;
  }
  .lg\:m-12 {
    margin: 6.5rem !important;
  }
  .lg\:m-13 {
    margin: 7rem !important;
  }
  .lg\:m-14 {
    margin: 7.5rem !important;
  }
  .lg\:m-15 {
    margin: 8rem !important;
  }
  .lg\:m-16 {
    margin: 8.5rem !important;
  }
  .lg\:m-17 {
    margin: 9rem !important;
  }
  .lg\:m-18 {
    margin: 9.5rem !important;
  }
  .lg\:m-19 {
    margin: 10rem !important;
  }
  .lg\:m-auto {
    margin: auto !important;
  }
  .lg\:mt-0 {
    margin-top: 0 !important;
  }
  .lg\:mt-0_5 {
    margin-top: 0.5rem !important;
  }
  .lg\:mt-1 {
    margin-top: 1rem !important;
  }
  .lg\:mt-2 {
    margin-top: 1.5rem !important;
  }
  .lg\:mt-3 {
    margin-top: 2rem !important;
  }
  .lg\:mt-4 {
    margin-top: 2.5rem !important;
  }
  .lg\:mt-5 {
    margin-top: 3rem !important;
  }
  .lg\:mt-6 {
    margin-top: 3.5rem !important;
  }
  .lg\:mt-7 {
    margin-top: 4rem !important;
  }
  .lg\:mt-8 {
    margin-top: 4.5rem !important;
  }
  .lg\:mt-9 {
    margin-top: 5rem !important;
  }
  .lg\:mt-10 {
    margin-top: 5.5rem !important;
  }
  .lg\:mt-11 {
    margin-top: 6rem !important;
  }
  .lg\:mt-12 {
    margin-top: 6.5rem !important;
  }
  .lg\:mt-13 {
    margin-top: 7rem !important;
  }
  .lg\:mt-14 {
    margin-top: 7.5rem !important;
  }
  .lg\:mt-15 {
    margin-top: 8rem !important;
  }
  .lg\:mt-16 {
    margin-top: 8.5rem !important;
  }
  .lg\:mt-17 {
    margin-top: 9rem !important;
  }
  .lg\:mt-18 {
    margin-top: 9.5rem !important;
  }
  .lg\:mt-19 {
    margin-top: 10rem !important;
  }
  .lg\:mt-auto {
    margin-top: auto !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0 !important;
  }
  .lg\:mb-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .lg\:mb-1 {
    margin-bottom: 1rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 2rem !important;
  }
  .lg\:mb-4 {
    margin-bottom: 2.5rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 3.5rem !important;
  }
  .lg\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 4.5rem !important;
  }
  .lg\:mb-9 {
    margin-bottom: 5rem !important;
  }
  .lg\:mb-10 {
    margin-bottom: 5.5rem !important;
  }
  .lg\:mb-11 {
    margin-bottom: 6rem !important;
  }
  .lg\:mb-12 {
    margin-bottom: 6.5rem !important;
  }
  .lg\:mb-13 {
    margin-bottom: 7rem !important;
  }
  .lg\:mb-14 {
    margin-bottom: 7.5rem !important;
  }
  .lg\:mb-15 {
    margin-bottom: 8rem !important;
  }
  .lg\:mb-16 {
    margin-bottom: 8.5rem !important;
  }
  .lg\:mb-17 {
    margin-bottom: 9rem !important;
  }
  .lg\:mb-18 {
    margin-bottom: 9.5rem !important;
  }
  .lg\:mb-19 {
    margin-bottom: 10rem !important;
  }
  .lg\:mb-auto {
    margin-bottom: auto !important;
  }
  .lg\:ml-0 {
    margin-left: 0 !important;
  }
  .lg\:ml-0_5 {
    margin-left: 0.5rem !important;
  }
  .lg\:ml-1 {
    margin-left: 1rem !important;
  }
  .lg\:ml-2 {
    margin-left: 1.5rem !important;
  }
  .lg\:ml-3 {
    margin-left: 2rem !important;
  }
  .lg\:ml-4 {
    margin-left: 2.5rem !important;
  }
  .lg\:ml-5 {
    margin-left: 3rem !important;
  }
  .lg\:ml-6 {
    margin-left: 3.5rem !important;
  }
  .lg\:ml-7 {
    margin-left: 4rem !important;
  }
  .lg\:ml-8 {
    margin-left: 4.5rem !important;
  }
  .lg\:ml-9 {
    margin-left: 5rem !important;
  }
  .lg\:ml-10 {
    margin-left: 5.5rem !important;
  }
  .lg\:ml-11 {
    margin-left: 6rem !important;
  }
  .lg\:ml-12 {
    margin-left: 6.5rem !important;
  }
  .lg\:ml-13 {
    margin-left: 7rem !important;
  }
  .lg\:ml-14 {
    margin-left: 7.5rem !important;
  }
  .lg\:ml-15 {
    margin-left: 8rem !important;
  }
  .lg\:ml-16 {
    margin-left: 8.5rem !important;
  }
  .lg\:ml-17 {
    margin-left: 9rem !important;
  }
  .lg\:ml-18 {
    margin-left: 9.5rem !important;
  }
  .lg\:ml-19 {
    margin-left: 10rem !important;
  }
  .lg\:ml-auto {
    margin-left: auto !important;
  }
  .lg\:mr-0 {
    margin-right: 0 !important;
  }
  .lg\:mr-0_5 {
    margin-right: 0.5rem !important;
  }
  .lg\:mr-1 {
    margin-right: 1rem !important;
  }
  .lg\:mr-2 {
    margin-right: 1.5rem !important;
  }
  .lg\:mr-3 {
    margin-right: 2rem !important;
  }
  .lg\:mr-4 {
    margin-right: 2.5rem !important;
  }
  .lg\:mr-5 {
    margin-right: 3rem !important;
  }
  .lg\:mr-6 {
    margin-right: 3.5rem !important;
  }
  .lg\:mr-7 {
    margin-right: 4rem !important;
  }
  .lg\:mr-8 {
    margin-right: 4.5rem !important;
  }
  .lg\:mr-9 {
    margin-right: 5rem !important;
  }
  .lg\:mr-10 {
    margin-right: 5.5rem !important;
  }
  .lg\:mr-11 {
    margin-right: 6rem !important;
  }
  .lg\:mr-12 {
    margin-right: 6.5rem !important;
  }
  .lg\:mr-13 {
    margin-right: 7rem !important;
  }
  .lg\:mr-14 {
    margin-right: 7.5rem !important;
  }
  .lg\:mr-15 {
    margin-right: 8rem !important;
  }
  .lg\:mr-16 {
    margin-right: 8.5rem !important;
  }
  .lg\:mr-17 {
    margin-right: 9rem !important;
  }
  .lg\:mr-18 {
    margin-right: 9.5rem !important;
  }
  .lg\:mr-19 {
    margin-right: 10rem !important;
  }
  .lg\:mr-auto {
    margin-right: auto !important;
  }
  .lg\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .lg\:mx-0_5 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .lg\:mx-1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .lg\:mx-2 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .lg\:mx-3 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .lg\:mx-4 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .lg\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .lg\:mx-6 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .lg\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .lg\:mx-8 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .lg\:mx-9 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .lg\:mx-10 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .lg\:mx-11 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .lg\:mx-12 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .lg\:mx-13 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .lg\:mx-14 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .lg\:mx-15 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .lg\:mx-16 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .lg\:mx-17 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .lg\:mx-18 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .lg\:mx-19 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .lg\:my-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .lg\:my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .lg\:my-2 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lg\:my-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .lg\:my-4 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .lg\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lg\:my-6 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .lg\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .lg\:my-8 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .lg\:my-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .lg\:my-10 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .lg\:my-11 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .lg\:my-12 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .lg\:my-13 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .lg\:my-14 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .lg\:my-15 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .lg\:my-16 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .lg\:my-17 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .lg\:my-18 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .lg\:my-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 90rem) {
  .xl\:m-0 {
    margin: 0 !important;
  }
  .xl\:m-0_5 {
    margin: 0.5rem !important;
  }
  .xl\:m-1 {
    margin: 1rem !important;
  }
  .xl\:m-2 {
    margin: 1.5rem !important;
  }
  .xl\:m-3 {
    margin: 2rem !important;
  }
  .xl\:m-4 {
    margin: 2.5rem !important;
  }
  .xl\:m-5 {
    margin: 3rem !important;
  }
  .xl\:m-6 {
    margin: 3.5rem !important;
  }
  .xl\:m-7 {
    margin: 4rem !important;
  }
  .xl\:m-8 {
    margin: 4.5rem !important;
  }
  .xl\:m-9 {
    margin: 5rem !important;
  }
  .xl\:m-10 {
    margin: 5.5rem !important;
  }
  .xl\:m-11 {
    margin: 6rem !important;
  }
  .xl\:m-12 {
    margin: 6.5rem !important;
  }
  .xl\:m-13 {
    margin: 7rem !important;
  }
  .xl\:m-14 {
    margin: 7.5rem !important;
  }
  .xl\:m-15 {
    margin: 8rem !important;
  }
  .xl\:m-16 {
    margin: 8.5rem !important;
  }
  .xl\:m-17 {
    margin: 9rem !important;
  }
  .xl\:m-18 {
    margin: 9.5rem !important;
  }
  .xl\:m-19 {
    margin: 10rem !important;
  }
  .xl\:m-auto {
    margin: auto !important;
  }
  .xl\:mt-0 {
    margin-top: 0 !important;
  }
  .xl\:mt-0_5 {
    margin-top: 0.5rem !important;
  }
  .xl\:mt-1 {
    margin-top: 1rem !important;
  }
  .xl\:mt-2 {
    margin-top: 1.5rem !important;
  }
  .xl\:mt-3 {
    margin-top: 2rem !important;
  }
  .xl\:mt-4 {
    margin-top: 2.5rem !important;
  }
  .xl\:mt-5 {
    margin-top: 3rem !important;
  }
  .xl\:mt-6 {
    margin-top: 3.5rem !important;
  }
  .xl\:mt-7 {
    margin-top: 4rem !important;
  }
  .xl\:mt-8 {
    margin-top: 4.5rem !important;
  }
  .xl\:mt-9 {
    margin-top: 5rem !important;
  }
  .xl\:mt-10 {
    margin-top: 5.5rem !important;
  }
  .xl\:mt-11 {
    margin-top: 6rem !important;
  }
  .xl\:mt-12 {
    margin-top: 6.5rem !important;
  }
  .xl\:mt-13 {
    margin-top: 7rem !important;
  }
  .xl\:mt-14 {
    margin-top: 7.5rem !important;
  }
  .xl\:mt-15 {
    margin-top: 8rem !important;
  }
  .xl\:mt-16 {
    margin-top: 8.5rem !important;
  }
  .xl\:mt-17 {
    margin-top: 9rem !important;
  }
  .xl\:mt-18 {
    margin-top: 9.5rem !important;
  }
  .xl\:mt-19 {
    margin-top: 10rem !important;
  }
  .xl\:mt-auto {
    margin-top: auto !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0 !important;
  }
  .xl\:mb-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .xl\:mb-1 {
    margin-bottom: 1rem !important;
  }
  .xl\:mb-2 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:mb-3 {
    margin-bottom: 2rem !important;
  }
  .xl\:mb-4 {
    margin-bottom: 2.5rem !important;
  }
  .xl\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 3.5rem !important;
  }
  .xl\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 4.5rem !important;
  }
  .xl\:mb-9 {
    margin-bottom: 5rem !important;
  }
  .xl\:mb-10 {
    margin-bottom: 5.5rem !important;
  }
  .xl\:mb-11 {
    margin-bottom: 6rem !important;
  }
  .xl\:mb-12 {
    margin-bottom: 6.5rem !important;
  }
  .xl\:mb-13 {
    margin-bottom: 7rem !important;
  }
  .xl\:mb-14 {
    margin-bottom: 7.5rem !important;
  }
  .xl\:mb-15 {
    margin-bottom: 8rem !important;
  }
  .xl\:mb-16 {
    margin-bottom: 8.5rem !important;
  }
  .xl\:mb-17 {
    margin-bottom: 9rem !important;
  }
  .xl\:mb-18 {
    margin-bottom: 9.5rem !important;
  }
  .xl\:mb-19 {
    margin-bottom: 10rem !important;
  }
  .xl\:mb-auto {
    margin-bottom: auto !important;
  }
  .xl\:ml-0 {
    margin-left: 0 !important;
  }
  .xl\:ml-0_5 {
    margin-left: 0.5rem !important;
  }
  .xl\:ml-1 {
    margin-left: 1rem !important;
  }
  .xl\:ml-2 {
    margin-left: 1.5rem !important;
  }
  .xl\:ml-3 {
    margin-left: 2rem !important;
  }
  .xl\:ml-4 {
    margin-left: 2.5rem !important;
  }
  .xl\:ml-5 {
    margin-left: 3rem !important;
  }
  .xl\:ml-6 {
    margin-left: 3.5rem !important;
  }
  .xl\:ml-7 {
    margin-left: 4rem !important;
  }
  .xl\:ml-8 {
    margin-left: 4.5rem !important;
  }
  .xl\:ml-9 {
    margin-left: 5rem !important;
  }
  .xl\:ml-10 {
    margin-left: 5.5rem !important;
  }
  .xl\:ml-11 {
    margin-left: 6rem !important;
  }
  .xl\:ml-12 {
    margin-left: 6.5rem !important;
  }
  .xl\:ml-13 {
    margin-left: 7rem !important;
  }
  .xl\:ml-14 {
    margin-left: 7.5rem !important;
  }
  .xl\:ml-15 {
    margin-left: 8rem !important;
  }
  .xl\:ml-16 {
    margin-left: 8.5rem !important;
  }
  .xl\:ml-17 {
    margin-left: 9rem !important;
  }
  .xl\:ml-18 {
    margin-left: 9.5rem !important;
  }
  .xl\:ml-19 {
    margin-left: 10rem !important;
  }
  .xl\:ml-auto {
    margin-left: auto !important;
  }
  .xl\:mr-0 {
    margin-right: 0 !important;
  }
  .xl\:mr-0_5 {
    margin-right: 0.5rem !important;
  }
  .xl\:mr-1 {
    margin-right: 1rem !important;
  }
  .xl\:mr-2 {
    margin-right: 1.5rem !important;
  }
  .xl\:mr-3 {
    margin-right: 2rem !important;
  }
  .xl\:mr-4 {
    margin-right: 2.5rem !important;
  }
  .xl\:mr-5 {
    margin-right: 3rem !important;
  }
  .xl\:mr-6 {
    margin-right: 3.5rem !important;
  }
  .xl\:mr-7 {
    margin-right: 4rem !important;
  }
  .xl\:mr-8 {
    margin-right: 4.5rem !important;
  }
  .xl\:mr-9 {
    margin-right: 5rem !important;
  }
  .xl\:mr-10 {
    margin-right: 5.5rem !important;
  }
  .xl\:mr-11 {
    margin-right: 6rem !important;
  }
  .xl\:mr-12 {
    margin-right: 6.5rem !important;
  }
  .xl\:mr-13 {
    margin-right: 7rem !important;
  }
  .xl\:mr-14 {
    margin-right: 7.5rem !important;
  }
  .xl\:mr-15 {
    margin-right: 8rem !important;
  }
  .xl\:mr-16 {
    margin-right: 8.5rem !important;
  }
  .xl\:mr-17 {
    margin-right: 9rem !important;
  }
  .xl\:mr-18 {
    margin-right: 9.5rem !important;
  }
  .xl\:mr-19 {
    margin-right: 10rem !important;
  }
  .xl\:mr-auto {
    margin-right: auto !important;
  }
  .xl\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xl\:mx-0_5 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xl\:mx-1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xl\:mx-2 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xl\:mx-3 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xl\:mx-4 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xl\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xl\:mx-6 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .xl\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xl\:mx-8 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .xl\:mx-9 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xl\:mx-10 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .xl\:mx-11 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xl\:mx-12 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .xl\:mx-13 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xl\:mx-14 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .xl\:mx-15 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xl\:mx-16 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .xl\:mx-17 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xl\:mx-18 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .xl\:mx-19 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xl\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xl\:my-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xl\:my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xl\:my-2 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xl\:my-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xl\:my-4 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xl\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xl\:my-6 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .xl\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xl\:my-8 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .xl\:my-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xl\:my-10 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .xl\:my-11 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xl\:my-12 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .xl\:my-13 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .xl\:my-14 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .xl\:my-15 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xl\:my-16 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .xl\:my-17 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .xl\:my-18 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .xl\:my-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 105rem) {
  .xxl\:m-0 {
    margin: 0 !important;
  }
  .xxl\:m-0_5 {
    margin: 0.5rem !important;
  }
  .xxl\:m-1 {
    margin: 1rem !important;
  }
  .xxl\:m-2 {
    margin: 1.5rem !important;
  }
  .xxl\:m-3 {
    margin: 2rem !important;
  }
  .xxl\:m-4 {
    margin: 2.5rem !important;
  }
  .xxl\:m-5 {
    margin: 3rem !important;
  }
  .xxl\:m-6 {
    margin: 3.5rem !important;
  }
  .xxl\:m-7 {
    margin: 4rem !important;
  }
  .xxl\:m-8 {
    margin: 4.5rem !important;
  }
  .xxl\:m-9 {
    margin: 5rem !important;
  }
  .xxl\:m-10 {
    margin: 5.5rem !important;
  }
  .xxl\:m-11 {
    margin: 6rem !important;
  }
  .xxl\:m-12 {
    margin: 6.5rem !important;
  }
  .xxl\:m-13 {
    margin: 7rem !important;
  }
  .xxl\:m-14 {
    margin: 7.5rem !important;
  }
  .xxl\:m-15 {
    margin: 8rem !important;
  }
  .xxl\:m-16 {
    margin: 8.5rem !important;
  }
  .xxl\:m-17 {
    margin: 9rem !important;
  }
  .xxl\:m-18 {
    margin: 9.5rem !important;
  }
  .xxl\:m-19 {
    margin: 10rem !important;
  }
  .xxl\:m-auto {
    margin: auto !important;
  }
  .xxl\:mt-0 {
    margin-top: 0 !important;
  }
  .xxl\:mt-0_5 {
    margin-top: 0.5rem !important;
  }
  .xxl\:mt-1 {
    margin-top: 1rem !important;
  }
  .xxl\:mt-2 {
    margin-top: 1.5rem !important;
  }
  .xxl\:mt-3 {
    margin-top: 2rem !important;
  }
  .xxl\:mt-4 {
    margin-top: 2.5rem !important;
  }
  .xxl\:mt-5 {
    margin-top: 3rem !important;
  }
  .xxl\:mt-6 {
    margin-top: 3.5rem !important;
  }
  .xxl\:mt-7 {
    margin-top: 4rem !important;
  }
  .xxl\:mt-8 {
    margin-top: 4.5rem !important;
  }
  .xxl\:mt-9 {
    margin-top: 5rem !important;
  }
  .xxl\:mt-10 {
    margin-top: 5.5rem !important;
  }
  .xxl\:mt-11 {
    margin-top: 6rem !important;
  }
  .xxl\:mt-12 {
    margin-top: 6.5rem !important;
  }
  .xxl\:mt-13 {
    margin-top: 7rem !important;
  }
  .xxl\:mt-14 {
    margin-top: 7.5rem !important;
  }
  .xxl\:mt-15 {
    margin-top: 8rem !important;
  }
  .xxl\:mt-16 {
    margin-top: 8.5rem !important;
  }
  .xxl\:mt-17 {
    margin-top: 9rem !important;
  }
  .xxl\:mt-18 {
    margin-top: 9.5rem !important;
  }
  .xxl\:mt-19 {
    margin-top: 10rem !important;
  }
  .xxl\:mt-auto {
    margin-top: auto !important;
  }
  .xxl\:mb-0 {
    margin-bottom: 0 !important;
  }
  .xxl\:mb-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .xxl\:mb-1 {
    margin-bottom: 1rem !important;
  }
  .xxl\:mb-2 {
    margin-bottom: 1.5rem !important;
  }
  .xxl\:mb-3 {
    margin-bottom: 2rem !important;
  }
  .xxl\:mb-4 {
    margin-bottom: 2.5rem !important;
  }
  .xxl\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .xxl\:mb-6 {
    margin-bottom: 3.5rem !important;
  }
  .xxl\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .xxl\:mb-8 {
    margin-bottom: 4.5rem !important;
  }
  .xxl\:mb-9 {
    margin-bottom: 5rem !important;
  }
  .xxl\:mb-10 {
    margin-bottom: 5.5rem !important;
  }
  .xxl\:mb-11 {
    margin-bottom: 6rem !important;
  }
  .xxl\:mb-12 {
    margin-bottom: 6.5rem !important;
  }
  .xxl\:mb-13 {
    margin-bottom: 7rem !important;
  }
  .xxl\:mb-14 {
    margin-bottom: 7.5rem !important;
  }
  .xxl\:mb-15 {
    margin-bottom: 8rem !important;
  }
  .xxl\:mb-16 {
    margin-bottom: 8.5rem !important;
  }
  .xxl\:mb-17 {
    margin-bottom: 9rem !important;
  }
  .xxl\:mb-18 {
    margin-bottom: 9.5rem !important;
  }
  .xxl\:mb-19 {
    margin-bottom: 10rem !important;
  }
  .xxl\:mb-auto {
    margin-bottom: auto !important;
  }
  .xxl\:ml-0 {
    margin-left: 0 !important;
  }
  .xxl\:ml-0_5 {
    margin-left: 0.5rem !important;
  }
  .xxl\:ml-1 {
    margin-left: 1rem !important;
  }
  .xxl\:ml-2 {
    margin-left: 1.5rem !important;
  }
  .xxl\:ml-3 {
    margin-left: 2rem !important;
  }
  .xxl\:ml-4 {
    margin-left: 2.5rem !important;
  }
  .xxl\:ml-5 {
    margin-left: 3rem !important;
  }
  .xxl\:ml-6 {
    margin-left: 3.5rem !important;
  }
  .xxl\:ml-7 {
    margin-left: 4rem !important;
  }
  .xxl\:ml-8 {
    margin-left: 4.5rem !important;
  }
  .xxl\:ml-9 {
    margin-left: 5rem !important;
  }
  .xxl\:ml-10 {
    margin-left: 5.5rem !important;
  }
  .xxl\:ml-11 {
    margin-left: 6rem !important;
  }
  .xxl\:ml-12 {
    margin-left: 6.5rem !important;
  }
  .xxl\:ml-13 {
    margin-left: 7rem !important;
  }
  .xxl\:ml-14 {
    margin-left: 7.5rem !important;
  }
  .xxl\:ml-15 {
    margin-left: 8rem !important;
  }
  .xxl\:ml-16 {
    margin-left: 8.5rem !important;
  }
  .xxl\:ml-17 {
    margin-left: 9rem !important;
  }
  .xxl\:ml-18 {
    margin-left: 9.5rem !important;
  }
  .xxl\:ml-19 {
    margin-left: 10rem !important;
  }
  .xxl\:ml-auto {
    margin-left: auto !important;
  }
  .xxl\:mr-0 {
    margin-right: 0 !important;
  }
  .xxl\:mr-0_5 {
    margin-right: 0.5rem !important;
  }
  .xxl\:mr-1 {
    margin-right: 1rem !important;
  }
  .xxl\:mr-2 {
    margin-right: 1.5rem !important;
  }
  .xxl\:mr-3 {
    margin-right: 2rem !important;
  }
  .xxl\:mr-4 {
    margin-right: 2.5rem !important;
  }
  .xxl\:mr-5 {
    margin-right: 3rem !important;
  }
  .xxl\:mr-6 {
    margin-right: 3.5rem !important;
  }
  .xxl\:mr-7 {
    margin-right: 4rem !important;
  }
  .xxl\:mr-8 {
    margin-right: 4.5rem !important;
  }
  .xxl\:mr-9 {
    margin-right: 5rem !important;
  }
  .xxl\:mr-10 {
    margin-right: 5.5rem !important;
  }
  .xxl\:mr-11 {
    margin-right: 6rem !important;
  }
  .xxl\:mr-12 {
    margin-right: 6.5rem !important;
  }
  .xxl\:mr-13 {
    margin-right: 7rem !important;
  }
  .xxl\:mr-14 {
    margin-right: 7.5rem !important;
  }
  .xxl\:mr-15 {
    margin-right: 8rem !important;
  }
  .xxl\:mr-16 {
    margin-right: 8.5rem !important;
  }
  .xxl\:mr-17 {
    margin-right: 9rem !important;
  }
  .xxl\:mr-18 {
    margin-right: 9.5rem !important;
  }
  .xxl\:mr-19 {
    margin-right: 10rem !important;
  }
  .xxl\:mr-auto {
    margin-right: auto !important;
  }
  .xxl\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xxl\:mx-0_5 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xxl\:mx-1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xxl\:mx-2 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xxl\:mx-3 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xxl\:mx-4 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xxl\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xxl\:mx-6 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .xxl\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xxl\:mx-8 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .xxl\:mx-9 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xxl\:mx-10 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
  .xxl\:mx-11 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xxl\:mx-12 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
  .xxl\:mx-13 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xxl\:mx-14 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
  .xxl\:mx-15 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xxl\:mx-16 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
  .xxl\:mx-17 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xxl\:mx-18 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
  .xxl\:mx-19 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xxl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xxl\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xxl\:my-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xxl\:my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xxl\:my-2 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xxl\:my-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xxl\:my-4 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xxl\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xxl\:my-6 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .xxl\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xxl\:my-8 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .xxl\:my-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xxl\:my-10 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .xxl\:my-11 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xxl\:my-12 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .xxl\:my-13 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .xxl\:my-14 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .xxl\:my-15 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xxl\:my-16 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .xxl\:my-17 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .xxl\:my-18 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .xxl\:my-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xxl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
/*
 * Padding
 */
.p-0 {
  padding: 0 !important;
}

.p-0_5 {
  padding: 0.5rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.p-2 {
  padding: 1.5rem !important;
}

.p-3 {
  padding: 2rem !important;
}

.p-4 {
  padding: 2.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-6 {
  padding: 3.5rem !important;
}

.p-7 {
  padding: 4rem !important;
}

.p-8 {
  padding: 4.5rem !important;
}

.p-9 {
  padding: 5rem !important;
}

.p-10 {
  padding: 5.5rem !important;
}

.p-11 {
  padding: 6rem !important;
}

.p-12 {
  padding: 6.5rem !important;
}

.p-13 {
  padding: 7rem !important;
}

.p-14 {
  padding: 7.5rem !important;
}

.p-15 {
  padding: 8rem !important;
}

.p-16 {
  padding: 8.5rem !important;
}

.p-17 {
  padding: 9rem !important;
}

.p-18 {
  padding: 9.5rem !important;
}

.p-19 {
  padding: 10rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-0_5 {
  padding-top: 0.5rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 1.5rem !important;
}

.pt-3 {
  padding-top: 2rem !important;
}

.pt-4 {
  padding-top: 2.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-6 {
  padding-top: 3.5rem !important;
}

.pt-7 {
  padding-top: 4rem !important;
}

.pt-8 {
  padding-top: 4.5rem !important;
}

.pt-9 {
  padding-top: 5rem !important;
}

.pt-10 {
  padding-top: 5.5rem !important;
}

.pt-11 {
  padding-top: 6rem !important;
}

.pt-12 {
  padding-top: 6.5rem !important;
}

.pt-13 {
  padding-top: 7rem !important;
}

.pt-14 {
  padding-top: 7.5rem !important;
}

.pt-15 {
  padding-top: 8rem !important;
}

.pt-16 {
  padding-top: 8.5rem !important;
}

.pt-17 {
  padding-top: 9rem !important;
}

.pt-18 {
  padding-top: 9.5rem !important;
}

.pt-19 {
  padding-top: 10rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-0_5 {
  padding-bottom: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 2rem !important;
}

.pb-4 {
  padding-bottom: 2.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-6 {
  padding-bottom: 3.5rem !important;
}

.pb-7 {
  padding-bottom: 4rem !important;
}

.pb-8 {
  padding-bottom: 4.5rem !important;
}

.pb-9 {
  padding-bottom: 5rem !important;
}

.pb-10 {
  padding-bottom: 5.5rem !important;
}

.pb-11 {
  padding-bottom: 6rem !important;
}

.pb-12 {
  padding-bottom: 6.5rem !important;
}

.pb-13 {
  padding-bottom: 7rem !important;
}

.pb-14 {
  padding-bottom: 7.5rem !important;
}

.pb-15 {
  padding-bottom: 8rem !important;
}

.pb-16 {
  padding-bottom: 8.5rem !important;
}

.pb-17 {
  padding-bottom: 9rem !important;
}

.pb-18 {
  padding-bottom: 9.5rem !important;
}

.pb-19 {
  padding-bottom: 10rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-0_5 {
  padding-left: 0.5rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.pl-2 {
  padding-left: 1.5rem !important;
}

.pl-3 {
  padding-left: 2rem !important;
}

.pl-4 {
  padding-left: 2.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pl-6 {
  padding-left: 3.5rem !important;
}

.pl-7 {
  padding-left: 4rem !important;
}

.pl-8 {
  padding-left: 4.5rem !important;
}

.pl-9 {
  padding-left: 5rem !important;
}

.pl-10 {
  padding-left: 5.5rem !important;
}

.pl-11 {
  padding-left: 6rem !important;
}

.pl-12 {
  padding-left: 6.5rem !important;
}

.pl-13 {
  padding-left: 7rem !important;
}

.pl-14 {
  padding-left: 7.5rem !important;
}

.pl-15 {
  padding-left: 8rem !important;
}

.pl-16 {
  padding-left: 8.5rem !important;
}

.pl-17 {
  padding-left: 9rem !important;
}

.pl-18 {
  padding-left: 9.5rem !important;
}

.pl-19 {
  padding-left: 10rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-0_5 {
  padding-right: 0.5rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pr-2 {
  padding-right: 1.5rem !important;
}

.pr-3 {
  padding-right: 2rem !important;
}

.pr-4 {
  padding-right: 2.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pr-6 {
  padding-right: 3.5rem !important;
}

.pr-7 {
  padding-right: 4rem !important;
}

.pr-8 {
  padding-right: 4.5rem !important;
}

.pr-9 {
  padding-right: 5rem !important;
}

.pr-10 {
  padding-right: 5.5rem !important;
}

.pr-11 {
  padding-right: 6rem !important;
}

.pr-12 {
  padding-right: 6.5rem !important;
}

.pr-13 {
  padding-right: 7rem !important;
}

.pr-14 {
  padding-right: 7.5rem !important;
}

.pr-15 {
  padding-right: 8rem !important;
}

.pr-16 {
  padding-right: 8.5rem !important;
}

.pr-17 {
  padding-right: 9rem !important;
}

.pr-18 {
  padding-right: 9.5rem !important;
}

.pr-19 {
  padding-right: 10rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-0_5 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-2 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-3 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-4 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-6 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.px-7 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.px-8 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.px-9 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.px-10 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important;
}

.px-11 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.px-12 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important;
}

.px-13 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.px-14 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}

.px-15 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.px-16 {
  padding-left: 8.5rem !important;
  padding-right: 8.5rem !important;
}

.px-17 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.px-18 {
  padding-left: 9.5rem !important;
  padding-right: 9.5rem !important;
}

.px-19 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-0_5 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-3 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-4 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-6 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-7 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-8 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-9 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-10 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.py-11 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-12 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

.py-13 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.py-14 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.py-15 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.py-16 {
  padding-top: 8.5rem !important;
  padding-bottom: 8.5rem !important;
}

.py-17 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.py-18 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.py-19 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

@media (min-width: 36rem) {
  .xs\:p-0 {
    padding: 0 !important;
  }
  .xs\:p-0_5 {
    padding: 0.5rem !important;
  }
  .xs\:p-1 {
    padding: 1rem !important;
  }
  .xs\:p-2 {
    padding: 1.5rem !important;
  }
  .xs\:p-3 {
    padding: 2rem !important;
  }
  .xs\:p-4 {
    padding: 2.5rem !important;
  }
  .xs\:p-5 {
    padding: 3rem !important;
  }
  .xs\:p-6 {
    padding: 3.5rem !important;
  }
  .xs\:p-7 {
    padding: 4rem !important;
  }
  .xs\:p-8 {
    padding: 4.5rem !important;
  }
  .xs\:p-9 {
    padding: 5rem !important;
  }
  .xs\:p-10 {
    padding: 5.5rem !important;
  }
  .xs\:p-11 {
    padding: 6rem !important;
  }
  .xs\:p-12 {
    padding: 6.5rem !important;
  }
  .xs\:p-13 {
    padding: 7rem !important;
  }
  .xs\:p-14 {
    padding: 7.5rem !important;
  }
  .xs\:p-15 {
    padding: 8rem !important;
  }
  .xs\:p-16 {
    padding: 8.5rem !important;
  }
  .xs\:p-17 {
    padding: 9rem !important;
  }
  .xs\:p-18 {
    padding: 9.5rem !important;
  }
  .xs\:p-19 {
    padding: 10rem !important;
  }
  .xs\:pt-0 {
    padding-top: 0 !important;
  }
  .xs\:pt-0_5 {
    padding-top: 0.5rem !important;
  }
  .xs\:pt-1 {
    padding-top: 1rem !important;
  }
  .xs\:pt-2 {
    padding-top: 1.5rem !important;
  }
  .xs\:pt-3 {
    padding-top: 2rem !important;
  }
  .xs\:pt-4 {
    padding-top: 2.5rem !important;
  }
  .xs\:pt-5 {
    padding-top: 3rem !important;
  }
  .xs\:pt-6 {
    padding-top: 3.5rem !important;
  }
  .xs\:pt-7 {
    padding-top: 4rem !important;
  }
  .xs\:pt-8 {
    padding-top: 4.5rem !important;
  }
  .xs\:pt-9 {
    padding-top: 5rem !important;
  }
  .xs\:pt-10 {
    padding-top: 5.5rem !important;
  }
  .xs\:pt-11 {
    padding-top: 6rem !important;
  }
  .xs\:pt-12 {
    padding-top: 6.5rem !important;
  }
  .xs\:pt-13 {
    padding-top: 7rem !important;
  }
  .xs\:pt-14 {
    padding-top: 7.5rem !important;
  }
  .xs\:pt-15 {
    padding-top: 8rem !important;
  }
  .xs\:pt-16 {
    padding-top: 8.5rem !important;
  }
  .xs\:pt-17 {
    padding-top: 9rem !important;
  }
  .xs\:pt-18 {
    padding-top: 9.5rem !important;
  }
  .xs\:pt-19 {
    padding-top: 10rem !important;
  }
  .xs\:pb-0 {
    padding-bottom: 0 !important;
  }
  .xs\:pb-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .xs\:pb-1 {
    padding-bottom: 1rem !important;
  }
  .xs\:pb-2 {
    padding-bottom: 1.5rem !important;
  }
  .xs\:pb-3 {
    padding-bottom: 2rem !important;
  }
  .xs\:pb-4 {
    padding-bottom: 2.5rem !important;
  }
  .xs\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .xs\:pb-6 {
    padding-bottom: 3.5rem !important;
  }
  .xs\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .xs\:pb-8 {
    padding-bottom: 4.5rem !important;
  }
  .xs\:pb-9 {
    padding-bottom: 5rem !important;
  }
  .xs\:pb-10 {
    padding-bottom: 5.5rem !important;
  }
  .xs\:pb-11 {
    padding-bottom: 6rem !important;
  }
  .xs\:pb-12 {
    padding-bottom: 6.5rem !important;
  }
  .xs\:pb-13 {
    padding-bottom: 7rem !important;
  }
  .xs\:pb-14 {
    padding-bottom: 7.5rem !important;
  }
  .xs\:pb-15 {
    padding-bottom: 8rem !important;
  }
  .xs\:pb-16 {
    padding-bottom: 8.5rem !important;
  }
  .xs\:pb-17 {
    padding-bottom: 9rem !important;
  }
  .xs\:pb-18 {
    padding-bottom: 9.5rem !important;
  }
  .xs\:pb-19 {
    padding-bottom: 10rem !important;
  }
  .xs\:pl-0 {
    padding-left: 0 !important;
  }
  .xs\:pl-0_5 {
    padding-left: 0.5rem !important;
  }
  .xs\:pl-1 {
    padding-left: 1rem !important;
  }
  .xs\:pl-2 {
    padding-left: 1.5rem !important;
  }
  .xs\:pl-3 {
    padding-left: 2rem !important;
  }
  .xs\:pl-4 {
    padding-left: 2.5rem !important;
  }
  .xs\:pl-5 {
    padding-left: 3rem !important;
  }
  .xs\:pl-6 {
    padding-left: 3.5rem !important;
  }
  .xs\:pl-7 {
    padding-left: 4rem !important;
  }
  .xs\:pl-8 {
    padding-left: 4.5rem !important;
  }
  .xs\:pl-9 {
    padding-left: 5rem !important;
  }
  .xs\:pl-10 {
    padding-left: 5.5rem !important;
  }
  .xs\:pl-11 {
    padding-left: 6rem !important;
  }
  .xs\:pl-12 {
    padding-left: 6.5rem !important;
  }
  .xs\:pl-13 {
    padding-left: 7rem !important;
  }
  .xs\:pl-14 {
    padding-left: 7.5rem !important;
  }
  .xs\:pl-15 {
    padding-left: 8rem !important;
  }
  .xs\:pl-16 {
    padding-left: 8.5rem !important;
  }
  .xs\:pl-17 {
    padding-left: 9rem !important;
  }
  .xs\:pl-18 {
    padding-left: 9.5rem !important;
  }
  .xs\:pl-19 {
    padding-left: 10rem !important;
  }
  .xs\:pr-0 {
    padding-right: 0 !important;
  }
  .xs\:pr-0_5 {
    padding-right: 0.5rem !important;
  }
  .xs\:pr-1 {
    padding-right: 1rem !important;
  }
  .xs\:pr-2 {
    padding-right: 1.5rem !important;
  }
  .xs\:pr-3 {
    padding-right: 2rem !important;
  }
  .xs\:pr-4 {
    padding-right: 2.5rem !important;
  }
  .xs\:pr-5 {
    padding-right: 3rem !important;
  }
  .xs\:pr-6 {
    padding-right: 3.5rem !important;
  }
  .xs\:pr-7 {
    padding-right: 4rem !important;
  }
  .xs\:pr-8 {
    padding-right: 4.5rem !important;
  }
  .xs\:pr-9 {
    padding-right: 5rem !important;
  }
  .xs\:pr-10 {
    padding-right: 5.5rem !important;
  }
  .xs\:pr-11 {
    padding-right: 6rem !important;
  }
  .xs\:pr-12 {
    padding-right: 6.5rem !important;
  }
  .xs\:pr-13 {
    padding-right: 7rem !important;
  }
  .xs\:pr-14 {
    padding-right: 7.5rem !important;
  }
  .xs\:pr-15 {
    padding-right: 8rem !important;
  }
  .xs\:pr-16 {
    padding-right: 8.5rem !important;
  }
  .xs\:pr-17 {
    padding-right: 9rem !important;
  }
  .xs\:pr-18 {
    padding-right: 9.5rem !important;
  }
  .xs\:pr-19 {
    padding-right: 10rem !important;
  }
  .xs\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xs\:px-0_5 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xs\:px-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xs\:px-2 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xs\:px-3 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xs\:px-4 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xs\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xs\:px-6 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xs\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xs\:px-8 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .xs\:px-9 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xs\:px-10 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .xs\:px-11 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xs\:px-12 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .xs\:px-13 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xs\:px-14 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .xs\:px-15 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xs\:px-16 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .xs\:px-17 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xs\:px-18 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .xs\:px-19 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xs\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xs\:py-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xs\:py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xs\:py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xs\:py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xs\:py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xs\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xs\:py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xs\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xs\:py-8 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .xs\:py-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xs\:py-10 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .xs\:py-11 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xs\:py-12 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .xs\:py-13 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xs\:py-14 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .xs\:py-15 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xs\:py-16 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .xs\:py-17 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .xs\:py-18 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .xs\:py-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 48rem) {
  .sm\:p-0 {
    padding: 0 !important;
  }
  .sm\:p-0_5 {
    padding: 0.5rem !important;
  }
  .sm\:p-1 {
    padding: 1rem !important;
  }
  .sm\:p-2 {
    padding: 1.5rem !important;
  }
  .sm\:p-3 {
    padding: 2rem !important;
  }
  .sm\:p-4 {
    padding: 2.5rem !important;
  }
  .sm\:p-5 {
    padding: 3rem !important;
  }
  .sm\:p-6 {
    padding: 3.5rem !important;
  }
  .sm\:p-7 {
    padding: 4rem !important;
  }
  .sm\:p-8 {
    padding: 4.5rem !important;
  }
  .sm\:p-9 {
    padding: 5rem !important;
  }
  .sm\:p-10 {
    padding: 5.5rem !important;
  }
  .sm\:p-11 {
    padding: 6rem !important;
  }
  .sm\:p-12 {
    padding: 6.5rem !important;
  }
  .sm\:p-13 {
    padding: 7rem !important;
  }
  .sm\:p-14 {
    padding: 7.5rem !important;
  }
  .sm\:p-15 {
    padding: 8rem !important;
  }
  .sm\:p-16 {
    padding: 8.5rem !important;
  }
  .sm\:p-17 {
    padding: 9rem !important;
  }
  .sm\:p-18 {
    padding: 9.5rem !important;
  }
  .sm\:p-19 {
    padding: 10rem !important;
  }
  .sm\:pt-0 {
    padding-top: 0 !important;
  }
  .sm\:pt-0_5 {
    padding-top: 0.5rem !important;
  }
  .sm\:pt-1 {
    padding-top: 1rem !important;
  }
  .sm\:pt-2 {
    padding-top: 1.5rem !important;
  }
  .sm\:pt-3 {
    padding-top: 2rem !important;
  }
  .sm\:pt-4 {
    padding-top: 2.5rem !important;
  }
  .sm\:pt-5 {
    padding-top: 3rem !important;
  }
  .sm\:pt-6 {
    padding-top: 3.5rem !important;
  }
  .sm\:pt-7 {
    padding-top: 4rem !important;
  }
  .sm\:pt-8 {
    padding-top: 4.5rem !important;
  }
  .sm\:pt-9 {
    padding-top: 5rem !important;
  }
  .sm\:pt-10 {
    padding-top: 5.5rem !important;
  }
  .sm\:pt-11 {
    padding-top: 6rem !important;
  }
  .sm\:pt-12 {
    padding-top: 6.5rem !important;
  }
  .sm\:pt-13 {
    padding-top: 7rem !important;
  }
  .sm\:pt-14 {
    padding-top: 7.5rem !important;
  }
  .sm\:pt-15 {
    padding-top: 8rem !important;
  }
  .sm\:pt-16 {
    padding-top: 8.5rem !important;
  }
  .sm\:pt-17 {
    padding-top: 9rem !important;
  }
  .sm\:pt-18 {
    padding-top: 9.5rem !important;
  }
  .sm\:pt-19 {
    padding-top: 10rem !important;
  }
  .sm\:pb-0 {
    padding-bottom: 0 !important;
  }
  .sm\:pb-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .sm\:pb-1 {
    padding-bottom: 1rem !important;
  }
  .sm\:pb-2 {
    padding-bottom: 1.5rem !important;
  }
  .sm\:pb-3 {
    padding-bottom: 2rem !important;
  }
  .sm\:pb-4 {
    padding-bottom: 2.5rem !important;
  }
  .sm\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .sm\:pb-6 {
    padding-bottom: 3.5rem !important;
  }
  .sm\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .sm\:pb-8 {
    padding-bottom: 4.5rem !important;
  }
  .sm\:pb-9 {
    padding-bottom: 5rem !important;
  }
  .sm\:pb-10 {
    padding-bottom: 5.5rem !important;
  }
  .sm\:pb-11 {
    padding-bottom: 6rem !important;
  }
  .sm\:pb-12 {
    padding-bottom: 6.5rem !important;
  }
  .sm\:pb-13 {
    padding-bottom: 7rem !important;
  }
  .sm\:pb-14 {
    padding-bottom: 7.5rem !important;
  }
  .sm\:pb-15 {
    padding-bottom: 8rem !important;
  }
  .sm\:pb-16 {
    padding-bottom: 8.5rem !important;
  }
  .sm\:pb-17 {
    padding-bottom: 9rem !important;
  }
  .sm\:pb-18 {
    padding-bottom: 9.5rem !important;
  }
  .sm\:pb-19 {
    padding-bottom: 10rem !important;
  }
  .sm\:pl-0 {
    padding-left: 0 !important;
  }
  .sm\:pl-0_5 {
    padding-left: 0.5rem !important;
  }
  .sm\:pl-1 {
    padding-left: 1rem !important;
  }
  .sm\:pl-2 {
    padding-left: 1.5rem !important;
  }
  .sm\:pl-3 {
    padding-left: 2rem !important;
  }
  .sm\:pl-4 {
    padding-left: 2.5rem !important;
  }
  .sm\:pl-5 {
    padding-left: 3rem !important;
  }
  .sm\:pl-6 {
    padding-left: 3.5rem !important;
  }
  .sm\:pl-7 {
    padding-left: 4rem !important;
  }
  .sm\:pl-8 {
    padding-left: 4.5rem !important;
  }
  .sm\:pl-9 {
    padding-left: 5rem !important;
  }
  .sm\:pl-10 {
    padding-left: 5.5rem !important;
  }
  .sm\:pl-11 {
    padding-left: 6rem !important;
  }
  .sm\:pl-12 {
    padding-left: 6.5rem !important;
  }
  .sm\:pl-13 {
    padding-left: 7rem !important;
  }
  .sm\:pl-14 {
    padding-left: 7.5rem !important;
  }
  .sm\:pl-15 {
    padding-left: 8rem !important;
  }
  .sm\:pl-16 {
    padding-left: 8.5rem !important;
  }
  .sm\:pl-17 {
    padding-left: 9rem !important;
  }
  .sm\:pl-18 {
    padding-left: 9.5rem !important;
  }
  .sm\:pl-19 {
    padding-left: 10rem !important;
  }
  .sm\:pr-0 {
    padding-right: 0 !important;
  }
  .sm\:pr-0_5 {
    padding-right: 0.5rem !important;
  }
  .sm\:pr-1 {
    padding-right: 1rem !important;
  }
  .sm\:pr-2 {
    padding-right: 1.5rem !important;
  }
  .sm\:pr-3 {
    padding-right: 2rem !important;
  }
  .sm\:pr-4 {
    padding-right: 2.5rem !important;
  }
  .sm\:pr-5 {
    padding-right: 3rem !important;
  }
  .sm\:pr-6 {
    padding-right: 3.5rem !important;
  }
  .sm\:pr-7 {
    padding-right: 4rem !important;
  }
  .sm\:pr-8 {
    padding-right: 4.5rem !important;
  }
  .sm\:pr-9 {
    padding-right: 5rem !important;
  }
  .sm\:pr-10 {
    padding-right: 5.5rem !important;
  }
  .sm\:pr-11 {
    padding-right: 6rem !important;
  }
  .sm\:pr-12 {
    padding-right: 6.5rem !important;
  }
  .sm\:pr-13 {
    padding-right: 7rem !important;
  }
  .sm\:pr-14 {
    padding-right: 7.5rem !important;
  }
  .sm\:pr-15 {
    padding-right: 8rem !important;
  }
  .sm\:pr-16 {
    padding-right: 8.5rem !important;
  }
  .sm\:pr-17 {
    padding-right: 9rem !important;
  }
  .sm\:pr-18 {
    padding-right: 9.5rem !important;
  }
  .sm\:pr-19 {
    padding-right: 10rem !important;
  }
  .sm\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .sm\:px-0_5 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm\:px-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm\:px-2 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .sm\:px-3 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .sm\:px-4 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .sm\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .sm\:px-6 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .sm\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .sm\:px-8 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .sm\:px-9 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .sm\:px-10 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .sm\:px-11 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .sm\:px-12 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .sm\:px-13 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .sm\:px-14 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .sm\:px-15 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .sm\:px-16 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .sm\:px-17 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .sm\:px-18 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .sm\:px-19 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .sm\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .sm\:py-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .sm\:py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm\:py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .sm\:py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .sm\:py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .sm\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm\:py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .sm\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .sm\:py-8 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .sm\:py-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .sm\:py-10 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .sm\:py-11 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .sm\:py-12 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .sm\:py-13 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .sm\:py-14 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .sm\:py-15 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .sm\:py-16 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .sm\:py-17 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .sm\:py-18 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .sm\:py-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 64rem) {
  .md\:p-0 {
    padding: 0 !important;
  }
  .md\:p-0_5 {
    padding: 0.5rem !important;
  }
  .md\:p-1 {
    padding: 1rem !important;
  }
  .md\:p-2 {
    padding: 1.5rem !important;
  }
  .md\:p-3 {
    padding: 2rem !important;
  }
  .md\:p-4 {
    padding: 2.5rem !important;
  }
  .md\:p-5 {
    padding: 3rem !important;
  }
  .md\:p-6 {
    padding: 3.5rem !important;
  }
  .md\:p-7 {
    padding: 4rem !important;
  }
  .md\:p-8 {
    padding: 4.5rem !important;
  }
  .md\:p-9 {
    padding: 5rem !important;
  }
  .md\:p-10 {
    padding: 5.5rem !important;
  }
  .md\:p-11 {
    padding: 6rem !important;
  }
  .md\:p-12 {
    padding: 6.5rem !important;
  }
  .md\:p-13 {
    padding: 7rem !important;
  }
  .md\:p-14 {
    padding: 7.5rem !important;
  }
  .md\:p-15 {
    padding: 8rem !important;
  }
  .md\:p-16 {
    padding: 8.5rem !important;
  }
  .md\:p-17 {
    padding: 9rem !important;
  }
  .md\:p-18 {
    padding: 9.5rem !important;
  }
  .md\:p-19 {
    padding: 10rem !important;
  }
  .md\:pt-0 {
    padding-top: 0 !important;
  }
  .md\:pt-0_5 {
    padding-top: 0.5rem !important;
  }
  .md\:pt-1 {
    padding-top: 1rem !important;
  }
  .md\:pt-2 {
    padding-top: 1.5rem !important;
  }
  .md\:pt-3 {
    padding-top: 2rem !important;
  }
  .md\:pt-4 {
    padding-top: 2.5rem !important;
  }
  .md\:pt-5 {
    padding-top: 3rem !important;
  }
  .md\:pt-6 {
    padding-top: 3.5rem !important;
  }
  .md\:pt-7 {
    padding-top: 4rem !important;
  }
  .md\:pt-8 {
    padding-top: 4.5rem !important;
  }
  .md\:pt-9 {
    padding-top: 5rem !important;
  }
  .md\:pt-10 {
    padding-top: 5.5rem !important;
  }
  .md\:pt-11 {
    padding-top: 6rem !important;
  }
  .md\:pt-12 {
    padding-top: 6.5rem !important;
  }
  .md\:pt-13 {
    padding-top: 7rem !important;
  }
  .md\:pt-14 {
    padding-top: 7.5rem !important;
  }
  .md\:pt-15 {
    padding-top: 8rem !important;
  }
  .md\:pt-16 {
    padding-top: 8.5rem !important;
  }
  .md\:pt-17 {
    padding-top: 9rem !important;
  }
  .md\:pt-18 {
    padding-top: 9.5rem !important;
  }
  .md\:pt-19 {
    padding-top: 10rem !important;
  }
  .md\:pb-0 {
    padding-bottom: 0 !important;
  }
  .md\:pb-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .md\:pb-1 {
    padding-bottom: 1rem !important;
  }
  .md\:pb-2 {
    padding-bottom: 1.5rem !important;
  }
  .md\:pb-3 {
    padding-bottom: 2rem !important;
  }
  .md\:pb-4 {
    padding-bottom: 2.5rem !important;
  }
  .md\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .md\:pb-6 {
    padding-bottom: 3.5rem !important;
  }
  .md\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .md\:pb-8 {
    padding-bottom: 4.5rem !important;
  }
  .md\:pb-9 {
    padding-bottom: 5rem !important;
  }
  .md\:pb-10 {
    padding-bottom: 5.5rem !important;
  }
  .md\:pb-11 {
    padding-bottom: 6rem !important;
  }
  .md\:pb-12 {
    padding-bottom: 6.5rem !important;
  }
  .md\:pb-13 {
    padding-bottom: 7rem !important;
  }
  .md\:pb-14 {
    padding-bottom: 7.5rem !important;
  }
  .md\:pb-15 {
    padding-bottom: 8rem !important;
  }
  .md\:pb-16 {
    padding-bottom: 8.5rem !important;
  }
  .md\:pb-17 {
    padding-bottom: 9rem !important;
  }
  .md\:pb-18 {
    padding-bottom: 9.5rem !important;
  }
  .md\:pb-19 {
    padding-bottom: 10rem !important;
  }
  .md\:pl-0 {
    padding-left: 0 !important;
  }
  .md\:pl-0_5 {
    padding-left: 0.5rem !important;
  }
  .md\:pl-1 {
    padding-left: 1rem !important;
  }
  .md\:pl-2 {
    padding-left: 1.5rem !important;
  }
  .md\:pl-3 {
    padding-left: 2rem !important;
  }
  .md\:pl-4 {
    padding-left: 2.5rem !important;
  }
  .md\:pl-5 {
    padding-left: 3rem !important;
  }
  .md\:pl-6 {
    padding-left: 3.5rem !important;
  }
  .md\:pl-7 {
    padding-left: 4rem !important;
  }
  .md\:pl-8 {
    padding-left: 4.5rem !important;
  }
  .md\:pl-9 {
    padding-left: 5rem !important;
  }
  .md\:pl-10 {
    padding-left: 5.5rem !important;
  }
  .md\:pl-11 {
    padding-left: 6rem !important;
  }
  .md\:pl-12 {
    padding-left: 6.5rem !important;
  }
  .md\:pl-13 {
    padding-left: 7rem !important;
  }
  .md\:pl-14 {
    padding-left: 7.5rem !important;
  }
  .md\:pl-15 {
    padding-left: 8rem !important;
  }
  .md\:pl-16 {
    padding-left: 8.5rem !important;
  }
  .md\:pl-17 {
    padding-left: 9rem !important;
  }
  .md\:pl-18 {
    padding-left: 9.5rem !important;
  }
  .md\:pl-19 {
    padding-left: 10rem !important;
  }
  .md\:pr-0 {
    padding-right: 0 !important;
  }
  .md\:pr-0_5 {
    padding-right: 0.5rem !important;
  }
  .md\:pr-1 {
    padding-right: 1rem !important;
  }
  .md\:pr-2 {
    padding-right: 1.5rem !important;
  }
  .md\:pr-3 {
    padding-right: 2rem !important;
  }
  .md\:pr-4 {
    padding-right: 2.5rem !important;
  }
  .md\:pr-5 {
    padding-right: 3rem !important;
  }
  .md\:pr-6 {
    padding-right: 3.5rem !important;
  }
  .md\:pr-7 {
    padding-right: 4rem !important;
  }
  .md\:pr-8 {
    padding-right: 4.5rem !important;
  }
  .md\:pr-9 {
    padding-right: 5rem !important;
  }
  .md\:pr-10 {
    padding-right: 5.5rem !important;
  }
  .md\:pr-11 {
    padding-right: 6rem !important;
  }
  .md\:pr-12 {
    padding-right: 6.5rem !important;
  }
  .md\:pr-13 {
    padding-right: 7rem !important;
  }
  .md\:pr-14 {
    padding-right: 7.5rem !important;
  }
  .md\:pr-15 {
    padding-right: 8rem !important;
  }
  .md\:pr-16 {
    padding-right: 8.5rem !important;
  }
  .md\:pr-17 {
    padding-right: 9rem !important;
  }
  .md\:pr-18 {
    padding-right: 9.5rem !important;
  }
  .md\:pr-19 {
    padding-right: 10rem !important;
  }
  .md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .md\:px-0_5 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md\:px-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md\:px-2 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .md\:px-3 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md\:px-4 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .md\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md\:px-6 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .md\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .md\:px-8 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .md\:px-9 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .md\:px-10 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .md\:px-11 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .md\:px-12 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .md\:px-13 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .md\:px-14 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .md\:px-15 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .md\:px-16 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .md\:px-17 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .md\:px-18 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .md\:px-19 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .md\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .md\:py-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .md\:py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md\:py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .md\:py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .md\:py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .md\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md\:py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .md\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md\:py-8 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .md\:py-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .md\:py-10 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .md\:py-11 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .md\:py-12 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .md\:py-13 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .md\:py-14 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .md\:py-15 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .md\:py-16 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .md\:py-17 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .md\:py-18 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .md\:py-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 75rem) {
  .lg\:p-0 {
    padding: 0 !important;
  }
  .lg\:p-0_5 {
    padding: 0.5rem !important;
  }
  .lg\:p-1 {
    padding: 1rem !important;
  }
  .lg\:p-2 {
    padding: 1.5rem !important;
  }
  .lg\:p-3 {
    padding: 2rem !important;
  }
  .lg\:p-4 {
    padding: 2.5rem !important;
  }
  .lg\:p-5 {
    padding: 3rem !important;
  }
  .lg\:p-6 {
    padding: 3.5rem !important;
  }
  .lg\:p-7 {
    padding: 4rem !important;
  }
  .lg\:p-8 {
    padding: 4.5rem !important;
  }
  .lg\:p-9 {
    padding: 5rem !important;
  }
  .lg\:p-10 {
    padding: 5.5rem !important;
  }
  .lg\:p-11 {
    padding: 6rem !important;
  }
  .lg\:p-12 {
    padding: 6.5rem !important;
  }
  .lg\:p-13 {
    padding: 7rem !important;
  }
  .lg\:p-14 {
    padding: 7.5rem !important;
  }
  .lg\:p-15 {
    padding: 8rem !important;
  }
  .lg\:p-16 {
    padding: 8.5rem !important;
  }
  .lg\:p-17 {
    padding: 9rem !important;
  }
  .lg\:p-18 {
    padding: 9.5rem !important;
  }
  .lg\:p-19 {
    padding: 10rem !important;
  }
  .lg\:pt-0 {
    padding-top: 0 !important;
  }
  .lg\:pt-0_5 {
    padding-top: 0.5rem !important;
  }
  .lg\:pt-1 {
    padding-top: 1rem !important;
  }
  .lg\:pt-2 {
    padding-top: 1.5rem !important;
  }
  .lg\:pt-3 {
    padding-top: 2rem !important;
  }
  .lg\:pt-4 {
    padding-top: 2.5rem !important;
  }
  .lg\:pt-5 {
    padding-top: 3rem !important;
  }
  .lg\:pt-6 {
    padding-top: 3.5rem !important;
  }
  .lg\:pt-7 {
    padding-top: 4rem !important;
  }
  .lg\:pt-8 {
    padding-top: 4.5rem !important;
  }
  .lg\:pt-9 {
    padding-top: 5rem !important;
  }
  .lg\:pt-10 {
    padding-top: 5.5rem !important;
  }
  .lg\:pt-11 {
    padding-top: 6rem !important;
  }
  .lg\:pt-12 {
    padding-top: 6.5rem !important;
  }
  .lg\:pt-13 {
    padding-top: 7rem !important;
  }
  .lg\:pt-14 {
    padding-top: 7.5rem !important;
  }
  .lg\:pt-15 {
    padding-top: 8rem !important;
  }
  .lg\:pt-16 {
    padding-top: 8.5rem !important;
  }
  .lg\:pt-17 {
    padding-top: 9rem !important;
  }
  .lg\:pt-18 {
    padding-top: 9.5rem !important;
  }
  .lg\:pt-19 {
    padding-top: 10rem !important;
  }
  .lg\:pb-0 {
    padding-bottom: 0 !important;
  }
  .lg\:pb-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .lg\:pb-1 {
    padding-bottom: 1rem !important;
  }
  .lg\:pb-2 {
    padding-bottom: 1.5rem !important;
  }
  .lg\:pb-3 {
    padding-bottom: 2rem !important;
  }
  .lg\:pb-4 {
    padding-bottom: 2.5rem !important;
  }
  .lg\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .lg\:pb-6 {
    padding-bottom: 3.5rem !important;
  }
  .lg\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .lg\:pb-8 {
    padding-bottom: 4.5rem !important;
  }
  .lg\:pb-9 {
    padding-bottom: 5rem !important;
  }
  .lg\:pb-10 {
    padding-bottom: 5.5rem !important;
  }
  .lg\:pb-11 {
    padding-bottom: 6rem !important;
  }
  .lg\:pb-12 {
    padding-bottom: 6.5rem !important;
  }
  .lg\:pb-13 {
    padding-bottom: 7rem !important;
  }
  .lg\:pb-14 {
    padding-bottom: 7.5rem !important;
  }
  .lg\:pb-15 {
    padding-bottom: 8rem !important;
  }
  .lg\:pb-16 {
    padding-bottom: 8.5rem !important;
  }
  .lg\:pb-17 {
    padding-bottom: 9rem !important;
  }
  .lg\:pb-18 {
    padding-bottom: 9.5rem !important;
  }
  .lg\:pb-19 {
    padding-bottom: 10rem !important;
  }
  .lg\:pl-0 {
    padding-left: 0 !important;
  }
  .lg\:pl-0_5 {
    padding-left: 0.5rem !important;
  }
  .lg\:pl-1 {
    padding-left: 1rem !important;
  }
  .lg\:pl-2 {
    padding-left: 1.5rem !important;
  }
  .lg\:pl-3 {
    padding-left: 2rem !important;
  }
  .lg\:pl-4 {
    padding-left: 2.5rem !important;
  }
  .lg\:pl-5 {
    padding-left: 3rem !important;
  }
  .lg\:pl-6 {
    padding-left: 3.5rem !important;
  }
  .lg\:pl-7 {
    padding-left: 4rem !important;
  }
  .lg\:pl-8 {
    padding-left: 4.5rem !important;
  }
  .lg\:pl-9 {
    padding-left: 5rem !important;
  }
  .lg\:pl-10 {
    padding-left: 5.5rem !important;
  }
  .lg\:pl-11 {
    padding-left: 6rem !important;
  }
  .lg\:pl-12 {
    padding-left: 6.5rem !important;
  }
  .lg\:pl-13 {
    padding-left: 7rem !important;
  }
  .lg\:pl-14 {
    padding-left: 7.5rem !important;
  }
  .lg\:pl-15 {
    padding-left: 8rem !important;
  }
  .lg\:pl-16 {
    padding-left: 8.5rem !important;
  }
  .lg\:pl-17 {
    padding-left: 9rem !important;
  }
  .lg\:pl-18 {
    padding-left: 9.5rem !important;
  }
  .lg\:pl-19 {
    padding-left: 10rem !important;
  }
  .lg\:pr-0 {
    padding-right: 0 !important;
  }
  .lg\:pr-0_5 {
    padding-right: 0.5rem !important;
  }
  .lg\:pr-1 {
    padding-right: 1rem !important;
  }
  .lg\:pr-2 {
    padding-right: 1.5rem !important;
  }
  .lg\:pr-3 {
    padding-right: 2rem !important;
  }
  .lg\:pr-4 {
    padding-right: 2.5rem !important;
  }
  .lg\:pr-5 {
    padding-right: 3rem !important;
  }
  .lg\:pr-6 {
    padding-right: 3.5rem !important;
  }
  .lg\:pr-7 {
    padding-right: 4rem !important;
  }
  .lg\:pr-8 {
    padding-right: 4.5rem !important;
  }
  .lg\:pr-9 {
    padding-right: 5rem !important;
  }
  .lg\:pr-10 {
    padding-right: 5.5rem !important;
  }
  .lg\:pr-11 {
    padding-right: 6rem !important;
  }
  .lg\:pr-12 {
    padding-right: 6.5rem !important;
  }
  .lg\:pr-13 {
    padding-right: 7rem !important;
  }
  .lg\:pr-14 {
    padding-right: 7.5rem !important;
  }
  .lg\:pr-15 {
    padding-right: 8rem !important;
  }
  .lg\:pr-16 {
    padding-right: 8.5rem !important;
  }
  .lg\:pr-17 {
    padding-right: 9rem !important;
  }
  .lg\:pr-18 {
    padding-right: 9.5rem !important;
  }
  .lg\:pr-19 {
    padding-right: 10rem !important;
  }
  .lg\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .lg\:px-0_5 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg\:px-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg\:px-2 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .lg\:px-3 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .lg\:px-4 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .lg\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .lg\:px-6 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .lg\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .lg\:px-8 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .lg\:px-9 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .lg\:px-10 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .lg\:px-11 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .lg\:px-12 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .lg\:px-13 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .lg\:px-14 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .lg\:px-15 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .lg\:px-16 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .lg\:px-17 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .lg\:px-18 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .lg\:px-19 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .lg\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .lg\:py-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .lg\:py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg\:py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .lg\:py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg\:py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .lg\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg\:py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .lg\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .lg\:py-8 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .lg\:py-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .lg\:py-10 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .lg\:py-11 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .lg\:py-12 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .lg\:py-13 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .lg\:py-14 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .lg\:py-15 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .lg\:py-16 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .lg\:py-17 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .lg\:py-18 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .lg\:py-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 90rem) {
  .xl\:p-0 {
    padding: 0 !important;
  }
  .xl\:p-0_5 {
    padding: 0.5rem !important;
  }
  .xl\:p-1 {
    padding: 1rem !important;
  }
  .xl\:p-2 {
    padding: 1.5rem !important;
  }
  .xl\:p-3 {
    padding: 2rem !important;
  }
  .xl\:p-4 {
    padding: 2.5rem !important;
  }
  .xl\:p-5 {
    padding: 3rem !important;
  }
  .xl\:p-6 {
    padding: 3.5rem !important;
  }
  .xl\:p-7 {
    padding: 4rem !important;
  }
  .xl\:p-8 {
    padding: 4.5rem !important;
  }
  .xl\:p-9 {
    padding: 5rem !important;
  }
  .xl\:p-10 {
    padding: 5.5rem !important;
  }
  .xl\:p-11 {
    padding: 6rem !important;
  }
  .xl\:p-12 {
    padding: 6.5rem !important;
  }
  .xl\:p-13 {
    padding: 7rem !important;
  }
  .xl\:p-14 {
    padding: 7.5rem !important;
  }
  .xl\:p-15 {
    padding: 8rem !important;
  }
  .xl\:p-16 {
    padding: 8.5rem !important;
  }
  .xl\:p-17 {
    padding: 9rem !important;
  }
  .xl\:p-18 {
    padding: 9.5rem !important;
  }
  .xl\:p-19 {
    padding: 10rem !important;
  }
  .xl\:pt-0 {
    padding-top: 0 !important;
  }
  .xl\:pt-0_5 {
    padding-top: 0.5rem !important;
  }
  .xl\:pt-1 {
    padding-top: 1rem !important;
  }
  .xl\:pt-2 {
    padding-top: 1.5rem !important;
  }
  .xl\:pt-3 {
    padding-top: 2rem !important;
  }
  .xl\:pt-4 {
    padding-top: 2.5rem !important;
  }
  .xl\:pt-5 {
    padding-top: 3rem !important;
  }
  .xl\:pt-6 {
    padding-top: 3.5rem !important;
  }
  .xl\:pt-7 {
    padding-top: 4rem !important;
  }
  .xl\:pt-8 {
    padding-top: 4.5rem !important;
  }
  .xl\:pt-9 {
    padding-top: 5rem !important;
  }
  .xl\:pt-10 {
    padding-top: 5.5rem !important;
  }
  .xl\:pt-11 {
    padding-top: 6rem !important;
  }
  .xl\:pt-12 {
    padding-top: 6.5rem !important;
  }
  .xl\:pt-13 {
    padding-top: 7rem !important;
  }
  .xl\:pt-14 {
    padding-top: 7.5rem !important;
  }
  .xl\:pt-15 {
    padding-top: 8rem !important;
  }
  .xl\:pt-16 {
    padding-top: 8.5rem !important;
  }
  .xl\:pt-17 {
    padding-top: 9rem !important;
  }
  .xl\:pt-18 {
    padding-top: 9.5rem !important;
  }
  .xl\:pt-19 {
    padding-top: 10rem !important;
  }
  .xl\:pb-0 {
    padding-bottom: 0 !important;
  }
  .xl\:pb-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .xl\:pb-1 {
    padding-bottom: 1rem !important;
  }
  .xl\:pb-2 {
    padding-bottom: 1.5rem !important;
  }
  .xl\:pb-3 {
    padding-bottom: 2rem !important;
  }
  .xl\:pb-4 {
    padding-bottom: 2.5rem !important;
  }
  .xl\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .xl\:pb-6 {
    padding-bottom: 3.5rem !important;
  }
  .xl\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .xl\:pb-8 {
    padding-bottom: 4.5rem !important;
  }
  .xl\:pb-9 {
    padding-bottom: 5rem !important;
  }
  .xl\:pb-10 {
    padding-bottom: 5.5rem !important;
  }
  .xl\:pb-11 {
    padding-bottom: 6rem !important;
  }
  .xl\:pb-12 {
    padding-bottom: 6.5rem !important;
  }
  .xl\:pb-13 {
    padding-bottom: 7rem !important;
  }
  .xl\:pb-14 {
    padding-bottom: 7.5rem !important;
  }
  .xl\:pb-15 {
    padding-bottom: 8rem !important;
  }
  .xl\:pb-16 {
    padding-bottom: 8.5rem !important;
  }
  .xl\:pb-17 {
    padding-bottom: 9rem !important;
  }
  .xl\:pb-18 {
    padding-bottom: 9.5rem !important;
  }
  .xl\:pb-19 {
    padding-bottom: 10rem !important;
  }
  .xl\:pl-0 {
    padding-left: 0 !important;
  }
  .xl\:pl-0_5 {
    padding-left: 0.5rem !important;
  }
  .xl\:pl-1 {
    padding-left: 1rem !important;
  }
  .xl\:pl-2 {
    padding-left: 1.5rem !important;
  }
  .xl\:pl-3 {
    padding-left: 2rem !important;
  }
  .xl\:pl-4 {
    padding-left: 2.5rem !important;
  }
  .xl\:pl-5 {
    padding-left: 3rem !important;
  }
  .xl\:pl-6 {
    padding-left: 3.5rem !important;
  }
  .xl\:pl-7 {
    padding-left: 4rem !important;
  }
  .xl\:pl-8 {
    padding-left: 4.5rem !important;
  }
  .xl\:pl-9 {
    padding-left: 5rem !important;
  }
  .xl\:pl-10 {
    padding-left: 5.5rem !important;
  }
  .xl\:pl-11 {
    padding-left: 6rem !important;
  }
  .xl\:pl-12 {
    padding-left: 6.5rem !important;
  }
  .xl\:pl-13 {
    padding-left: 7rem !important;
  }
  .xl\:pl-14 {
    padding-left: 7.5rem !important;
  }
  .xl\:pl-15 {
    padding-left: 8rem !important;
  }
  .xl\:pl-16 {
    padding-left: 8.5rem !important;
  }
  .xl\:pl-17 {
    padding-left: 9rem !important;
  }
  .xl\:pl-18 {
    padding-left: 9.5rem !important;
  }
  .xl\:pl-19 {
    padding-left: 10rem !important;
  }
  .xl\:pr-0 {
    padding-right: 0 !important;
  }
  .xl\:pr-0_5 {
    padding-right: 0.5rem !important;
  }
  .xl\:pr-1 {
    padding-right: 1rem !important;
  }
  .xl\:pr-2 {
    padding-right: 1.5rem !important;
  }
  .xl\:pr-3 {
    padding-right: 2rem !important;
  }
  .xl\:pr-4 {
    padding-right: 2.5rem !important;
  }
  .xl\:pr-5 {
    padding-right: 3rem !important;
  }
  .xl\:pr-6 {
    padding-right: 3.5rem !important;
  }
  .xl\:pr-7 {
    padding-right: 4rem !important;
  }
  .xl\:pr-8 {
    padding-right: 4.5rem !important;
  }
  .xl\:pr-9 {
    padding-right: 5rem !important;
  }
  .xl\:pr-10 {
    padding-right: 5.5rem !important;
  }
  .xl\:pr-11 {
    padding-right: 6rem !important;
  }
  .xl\:pr-12 {
    padding-right: 6.5rem !important;
  }
  .xl\:pr-13 {
    padding-right: 7rem !important;
  }
  .xl\:pr-14 {
    padding-right: 7.5rem !important;
  }
  .xl\:pr-15 {
    padding-right: 8rem !important;
  }
  .xl\:pr-16 {
    padding-right: 8.5rem !important;
  }
  .xl\:pr-17 {
    padding-right: 9rem !important;
  }
  .xl\:pr-18 {
    padding-right: 9.5rem !important;
  }
  .xl\:pr-19 {
    padding-right: 10rem !important;
  }
  .xl\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xl\:px-0_5 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl\:px-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xl\:px-2 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xl\:px-3 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xl\:px-4 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xl\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xl\:px-6 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xl\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xl\:px-8 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .xl\:px-9 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xl\:px-10 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .xl\:px-11 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xl\:px-12 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .xl\:px-13 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xl\:px-14 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .xl\:px-15 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xl\:px-16 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .xl\:px-17 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xl\:px-18 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .xl\:px-19 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xl\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xl\:py-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xl\:py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xl\:py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xl\:py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xl\:py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xl\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xl\:py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xl\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl\:py-8 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .xl\:py-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xl\:py-10 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .xl\:py-11 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xl\:py-12 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .xl\:py-13 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xl\:py-14 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .xl\:py-15 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xl\:py-16 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .xl\:py-17 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .xl\:py-18 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .xl\:py-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 105rem) {
  .xxl\:p-0 {
    padding: 0 !important;
  }
  .xxl\:p-0_5 {
    padding: 0.5rem !important;
  }
  .xxl\:p-1 {
    padding: 1rem !important;
  }
  .xxl\:p-2 {
    padding: 1.5rem !important;
  }
  .xxl\:p-3 {
    padding: 2rem !important;
  }
  .xxl\:p-4 {
    padding: 2.5rem !important;
  }
  .xxl\:p-5 {
    padding: 3rem !important;
  }
  .xxl\:p-6 {
    padding: 3.5rem !important;
  }
  .xxl\:p-7 {
    padding: 4rem !important;
  }
  .xxl\:p-8 {
    padding: 4.5rem !important;
  }
  .xxl\:p-9 {
    padding: 5rem !important;
  }
  .xxl\:p-10 {
    padding: 5.5rem !important;
  }
  .xxl\:p-11 {
    padding: 6rem !important;
  }
  .xxl\:p-12 {
    padding: 6.5rem !important;
  }
  .xxl\:p-13 {
    padding: 7rem !important;
  }
  .xxl\:p-14 {
    padding: 7.5rem !important;
  }
  .xxl\:p-15 {
    padding: 8rem !important;
  }
  .xxl\:p-16 {
    padding: 8.5rem !important;
  }
  .xxl\:p-17 {
    padding: 9rem !important;
  }
  .xxl\:p-18 {
    padding: 9.5rem !important;
  }
  .xxl\:p-19 {
    padding: 10rem !important;
  }
  .xxl\:pt-0 {
    padding-top: 0 !important;
  }
  .xxl\:pt-0_5 {
    padding-top: 0.5rem !important;
  }
  .xxl\:pt-1 {
    padding-top: 1rem !important;
  }
  .xxl\:pt-2 {
    padding-top: 1.5rem !important;
  }
  .xxl\:pt-3 {
    padding-top: 2rem !important;
  }
  .xxl\:pt-4 {
    padding-top: 2.5rem !important;
  }
  .xxl\:pt-5 {
    padding-top: 3rem !important;
  }
  .xxl\:pt-6 {
    padding-top: 3.5rem !important;
  }
  .xxl\:pt-7 {
    padding-top: 4rem !important;
  }
  .xxl\:pt-8 {
    padding-top: 4.5rem !important;
  }
  .xxl\:pt-9 {
    padding-top: 5rem !important;
  }
  .xxl\:pt-10 {
    padding-top: 5.5rem !important;
  }
  .xxl\:pt-11 {
    padding-top: 6rem !important;
  }
  .xxl\:pt-12 {
    padding-top: 6.5rem !important;
  }
  .xxl\:pt-13 {
    padding-top: 7rem !important;
  }
  .xxl\:pt-14 {
    padding-top: 7.5rem !important;
  }
  .xxl\:pt-15 {
    padding-top: 8rem !important;
  }
  .xxl\:pt-16 {
    padding-top: 8.5rem !important;
  }
  .xxl\:pt-17 {
    padding-top: 9rem !important;
  }
  .xxl\:pt-18 {
    padding-top: 9.5rem !important;
  }
  .xxl\:pt-19 {
    padding-top: 10rem !important;
  }
  .xxl\:pb-0 {
    padding-bottom: 0 !important;
  }
  .xxl\:pb-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .xxl\:pb-1 {
    padding-bottom: 1rem !important;
  }
  .xxl\:pb-2 {
    padding-bottom: 1.5rem !important;
  }
  .xxl\:pb-3 {
    padding-bottom: 2rem !important;
  }
  .xxl\:pb-4 {
    padding-bottom: 2.5rem !important;
  }
  .xxl\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .xxl\:pb-6 {
    padding-bottom: 3.5rem !important;
  }
  .xxl\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .xxl\:pb-8 {
    padding-bottom: 4.5rem !important;
  }
  .xxl\:pb-9 {
    padding-bottom: 5rem !important;
  }
  .xxl\:pb-10 {
    padding-bottom: 5.5rem !important;
  }
  .xxl\:pb-11 {
    padding-bottom: 6rem !important;
  }
  .xxl\:pb-12 {
    padding-bottom: 6.5rem !important;
  }
  .xxl\:pb-13 {
    padding-bottom: 7rem !important;
  }
  .xxl\:pb-14 {
    padding-bottom: 7.5rem !important;
  }
  .xxl\:pb-15 {
    padding-bottom: 8rem !important;
  }
  .xxl\:pb-16 {
    padding-bottom: 8.5rem !important;
  }
  .xxl\:pb-17 {
    padding-bottom: 9rem !important;
  }
  .xxl\:pb-18 {
    padding-bottom: 9.5rem !important;
  }
  .xxl\:pb-19 {
    padding-bottom: 10rem !important;
  }
  .xxl\:pl-0 {
    padding-left: 0 !important;
  }
  .xxl\:pl-0_5 {
    padding-left: 0.5rem !important;
  }
  .xxl\:pl-1 {
    padding-left: 1rem !important;
  }
  .xxl\:pl-2 {
    padding-left: 1.5rem !important;
  }
  .xxl\:pl-3 {
    padding-left: 2rem !important;
  }
  .xxl\:pl-4 {
    padding-left: 2.5rem !important;
  }
  .xxl\:pl-5 {
    padding-left: 3rem !important;
  }
  .xxl\:pl-6 {
    padding-left: 3.5rem !important;
  }
  .xxl\:pl-7 {
    padding-left: 4rem !important;
  }
  .xxl\:pl-8 {
    padding-left: 4.5rem !important;
  }
  .xxl\:pl-9 {
    padding-left: 5rem !important;
  }
  .xxl\:pl-10 {
    padding-left: 5.5rem !important;
  }
  .xxl\:pl-11 {
    padding-left: 6rem !important;
  }
  .xxl\:pl-12 {
    padding-left: 6.5rem !important;
  }
  .xxl\:pl-13 {
    padding-left: 7rem !important;
  }
  .xxl\:pl-14 {
    padding-left: 7.5rem !important;
  }
  .xxl\:pl-15 {
    padding-left: 8rem !important;
  }
  .xxl\:pl-16 {
    padding-left: 8.5rem !important;
  }
  .xxl\:pl-17 {
    padding-left: 9rem !important;
  }
  .xxl\:pl-18 {
    padding-left: 9.5rem !important;
  }
  .xxl\:pl-19 {
    padding-left: 10rem !important;
  }
  .xxl\:pr-0 {
    padding-right: 0 !important;
  }
  .xxl\:pr-0_5 {
    padding-right: 0.5rem !important;
  }
  .xxl\:pr-1 {
    padding-right: 1rem !important;
  }
  .xxl\:pr-2 {
    padding-right: 1.5rem !important;
  }
  .xxl\:pr-3 {
    padding-right: 2rem !important;
  }
  .xxl\:pr-4 {
    padding-right: 2.5rem !important;
  }
  .xxl\:pr-5 {
    padding-right: 3rem !important;
  }
  .xxl\:pr-6 {
    padding-right: 3.5rem !important;
  }
  .xxl\:pr-7 {
    padding-right: 4rem !important;
  }
  .xxl\:pr-8 {
    padding-right: 4.5rem !important;
  }
  .xxl\:pr-9 {
    padding-right: 5rem !important;
  }
  .xxl\:pr-10 {
    padding-right: 5.5rem !important;
  }
  .xxl\:pr-11 {
    padding-right: 6rem !important;
  }
  .xxl\:pr-12 {
    padding-right: 6.5rem !important;
  }
  .xxl\:pr-13 {
    padding-right: 7rem !important;
  }
  .xxl\:pr-14 {
    padding-right: 7.5rem !important;
  }
  .xxl\:pr-15 {
    padding-right: 8rem !important;
  }
  .xxl\:pr-16 {
    padding-right: 8.5rem !important;
  }
  .xxl\:pr-17 {
    padding-right: 9rem !important;
  }
  .xxl\:pr-18 {
    padding-right: 9.5rem !important;
  }
  .xxl\:pr-19 {
    padding-right: 10rem !important;
  }
  .xxl\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xxl\:px-0_5 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xxl\:px-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xxl\:px-2 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xxl\:px-3 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xxl\:px-4 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xxl\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xxl\:px-6 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xxl\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xxl\:px-8 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .xxl\:px-9 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xxl\:px-10 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .xxl\:px-11 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xxl\:px-12 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .xxl\:px-13 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xxl\:px-14 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .xxl\:px-15 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xxl\:px-16 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .xxl\:px-17 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xxl\:px-18 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .xxl\:px-19 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xxl\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xxl\:py-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xxl\:py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xxl\:py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xxl\:py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xxl\:py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xxl\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xxl\:py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xxl\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xxl\:py-8 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .xxl\:py-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xxl\:py-10 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .xxl\:py-11 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xxl\:py-12 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .xxl\:py-13 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xxl\:py-14 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .xxl\:py-15 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xxl\:py-16 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .xxl\:py-17 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .xxl\:py-18 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .xxl\:py-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
/* Spacing */
.space-x-0 {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.space-y-0 > *:not(:last-child) {
  margin-bottom: 0 !important;
}

.space-x-0_5 {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.space-y-0_5 > *:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

.space-x-1 {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.space-y-1 > *:not(:last-child) {
  margin-bottom: 1rem !important;
}

.space-x-2 {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.space-y-2 > *:not(:last-child) {
  margin-bottom: 1.5rem !important;
}

.space-x-3 {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.space-y-3 > *:not(:last-child) {
  margin-bottom: 2rem !important;
}

.space-x-4 {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}

.space-y-4 > *:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

.space-x-5 {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.space-y-5 > *:not(:last-child) {
  margin-bottom: 3rem !important;
}

.space-x-6 {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
}

.space-y-6 > *:not(:last-child) {
  margin-bottom: 3.5rem !important;
}

.space-x-7 {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.space-y-7 > *:not(:last-child) {
  margin-bottom: 4rem !important;
}

.space-x-8 {
  display: flex;
  flex-direction: row;
  gap: 4.5rem;
}

.space-y-8 > *:not(:last-child) {
  margin-bottom: 4.5rem !important;
}

.space-x-9 {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}

.space-y-9 > *:not(:last-child) {
  margin-bottom: 5rem !important;
}

.space-x-10 {
  display: flex;
  flex-direction: row;
  gap: 5.5rem;
}

.space-y-10 > *:not(:last-child) {
  margin-bottom: 5.5rem !important;
}

.space-x-11 {
  display: flex;
  flex-direction: row;
  gap: 6rem;
}

.space-y-11 > *:not(:last-child) {
  margin-bottom: 6rem !important;
}

.space-x-12 {
  display: flex;
  flex-direction: row;
  gap: 6.5rem;
}

.space-y-12 > *:not(:last-child) {
  margin-bottom: 6.5rem !important;
}

.space-x-13 {
  display: flex;
  flex-direction: row;
  gap: 7rem;
}

.space-y-13 > *:not(:last-child) {
  margin-bottom: 7rem !important;
}

.space-x-14 {
  display: flex;
  flex-direction: row;
  gap: 7.5rem;
}

.space-y-14 > *:not(:last-child) {
  margin-bottom: 7.5rem !important;
}

.space-x-15 {
  display: flex;
  flex-direction: row;
  gap: 8rem;
}

.space-y-15 > *:not(:last-child) {
  margin-bottom: 8rem !important;
}

.space-x-16 {
  display: flex;
  flex-direction: row;
  gap: 8.5rem;
}

.space-y-16 > *:not(:last-child) {
  margin-bottom: 8.5rem !important;
}

.space-x-17 {
  display: flex;
  flex-direction: row;
  gap: 9rem;
}

.space-y-17 > *:not(:last-child) {
  margin-bottom: 9rem !important;
}

.space-x-18 {
  display: flex;
  flex-direction: row;
  gap: 9.5rem;
}

.space-y-18 > *:not(:last-child) {
  margin-bottom: 9.5rem !important;
}

.space-x-19 {
  display: flex;
  flex-direction: row;
  gap: 10rem;
}

.space-y-19 > *:not(:last-child) {
  margin-bottom: 10rem !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:space-x-0 {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .xs\:space-y-0 > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .xs\:space-x-0_5 {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .xs\:space-y-0_5 > *:not(:last-child) {
    margin-bottom: 0.5rem !important;
  }
  .xs\:space-x-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .xs\:space-y-1 > *:not(:last-child) {
    margin-bottom: 1rem !important;
  }
  .xs\:space-x-2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .xs\:space-y-2 > *:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  .xs\:space-x-3 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .xs\:space-y-3 > *:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  .xs\:space-x-4 {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }
  .xs\:space-y-4 > *:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .xs\:space-x-5 {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
  .xs\:space-y-5 > *:not(:last-child) {
    margin-bottom: 3rem !important;
  }
  .xs\:space-x-6 {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
  }
  .xs\:space-y-6 > *:not(:last-child) {
    margin-bottom: 3.5rem !important;
  }
  .xs\:space-x-7 {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }
  .xs\:space-y-7 > *:not(:last-child) {
    margin-bottom: 4rem !important;
  }
  .xs\:space-x-8 {
    display: flex;
    flex-direction: row;
    gap: 4.5rem;
  }
  .xs\:space-y-8 > *:not(:last-child) {
    margin-bottom: 4.5rem !important;
  }
  .xs\:space-x-9 {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .xs\:space-y-9 > *:not(:last-child) {
    margin-bottom: 5rem !important;
  }
  .xs\:space-x-10 {
    display: flex;
    flex-direction: row;
    gap: 5.5rem;
  }
  .xs\:space-y-10 > *:not(:last-child) {
    margin-bottom: 5.5rem !important;
  }
  .xs\:space-x-11 {
    display: flex;
    flex-direction: row;
    gap: 6rem;
  }
  .xs\:space-y-11 > *:not(:last-child) {
    margin-bottom: 6rem !important;
  }
  .xs\:space-x-12 {
    display: flex;
    flex-direction: row;
    gap: 6.5rem;
  }
  .xs\:space-y-12 > *:not(:last-child) {
    margin-bottom: 6.5rem !important;
  }
  .xs\:space-x-13 {
    display: flex;
    flex-direction: row;
    gap: 7rem;
  }
  .xs\:space-y-13 > *:not(:last-child) {
    margin-bottom: 7rem !important;
  }
  .xs\:space-x-14 {
    display: flex;
    flex-direction: row;
    gap: 7.5rem;
  }
  .xs\:space-y-14 > *:not(:last-child) {
    margin-bottom: 7.5rem !important;
  }
  .xs\:space-x-15 {
    display: flex;
    flex-direction: row;
    gap: 8rem;
  }
  .xs\:space-y-15 > *:not(:last-child) {
    margin-bottom: 8rem !important;
  }
  .xs\:space-x-16 {
    display: flex;
    flex-direction: row;
    gap: 8.5rem;
  }
  .xs\:space-y-16 > *:not(:last-child) {
    margin-bottom: 8.5rem !important;
  }
  .xs\:space-x-17 {
    display: flex;
    flex-direction: row;
    gap: 9rem;
  }
  .xs\:space-y-17 > *:not(:last-child) {
    margin-bottom: 9rem !important;
  }
  .xs\:space-x-18 {
    display: flex;
    flex-direction: row;
    gap: 9.5rem;
  }
  .xs\:space-y-18 > *:not(:last-child) {
    margin-bottom: 9.5rem !important;
  }
  .xs\:space-x-19 {
    display: flex;
    flex-direction: row;
    gap: 10rem;
  }
  .xs\:space-y-19 > *:not(:last-child) {
    margin-bottom: 10rem !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:space-x-0 {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .sm\:space-y-0 > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .sm\:space-x-0_5 {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .sm\:space-y-0_5 > *:not(:last-child) {
    margin-bottom: 0.5rem !important;
  }
  .sm\:space-x-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .sm\:space-y-1 > *:not(:last-child) {
    margin-bottom: 1rem !important;
  }
  .sm\:space-x-2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .sm\:space-y-2 > *:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  .sm\:space-x-3 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .sm\:space-y-3 > *:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  .sm\:space-x-4 {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }
  .sm\:space-y-4 > *:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .sm\:space-x-5 {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
  .sm\:space-y-5 > *:not(:last-child) {
    margin-bottom: 3rem !important;
  }
  .sm\:space-x-6 {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
  }
  .sm\:space-y-6 > *:not(:last-child) {
    margin-bottom: 3.5rem !important;
  }
  .sm\:space-x-7 {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }
  .sm\:space-y-7 > *:not(:last-child) {
    margin-bottom: 4rem !important;
  }
  .sm\:space-x-8 {
    display: flex;
    flex-direction: row;
    gap: 4.5rem;
  }
  .sm\:space-y-8 > *:not(:last-child) {
    margin-bottom: 4.5rem !important;
  }
  .sm\:space-x-9 {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .sm\:space-y-9 > *:not(:last-child) {
    margin-bottom: 5rem !important;
  }
  .sm\:space-x-10 {
    display: flex;
    flex-direction: row;
    gap: 5.5rem;
  }
  .sm\:space-y-10 > *:not(:last-child) {
    margin-bottom: 5.5rem !important;
  }
  .sm\:space-x-11 {
    display: flex;
    flex-direction: row;
    gap: 6rem;
  }
  .sm\:space-y-11 > *:not(:last-child) {
    margin-bottom: 6rem !important;
  }
  .sm\:space-x-12 {
    display: flex;
    flex-direction: row;
    gap: 6.5rem;
  }
  .sm\:space-y-12 > *:not(:last-child) {
    margin-bottom: 6.5rem !important;
  }
  .sm\:space-x-13 {
    display: flex;
    flex-direction: row;
    gap: 7rem;
  }
  .sm\:space-y-13 > *:not(:last-child) {
    margin-bottom: 7rem !important;
  }
  .sm\:space-x-14 {
    display: flex;
    flex-direction: row;
    gap: 7.5rem;
  }
  .sm\:space-y-14 > *:not(:last-child) {
    margin-bottom: 7.5rem !important;
  }
  .sm\:space-x-15 {
    display: flex;
    flex-direction: row;
    gap: 8rem;
  }
  .sm\:space-y-15 > *:not(:last-child) {
    margin-bottom: 8rem !important;
  }
  .sm\:space-x-16 {
    display: flex;
    flex-direction: row;
    gap: 8.5rem;
  }
  .sm\:space-y-16 > *:not(:last-child) {
    margin-bottom: 8.5rem !important;
  }
  .sm\:space-x-17 {
    display: flex;
    flex-direction: row;
    gap: 9rem;
  }
  .sm\:space-y-17 > *:not(:last-child) {
    margin-bottom: 9rem !important;
  }
  .sm\:space-x-18 {
    display: flex;
    flex-direction: row;
    gap: 9.5rem;
  }
  .sm\:space-y-18 > *:not(:last-child) {
    margin-bottom: 9.5rem !important;
  }
  .sm\:space-x-19 {
    display: flex;
    flex-direction: row;
    gap: 10rem;
  }
  .sm\:space-y-19 > *:not(:last-child) {
    margin-bottom: 10rem !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:space-x-0 {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .md\:space-y-0 > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .md\:space-x-0_5 {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .md\:space-y-0_5 > *:not(:last-child) {
    margin-bottom: 0.5rem !important;
  }
  .md\:space-x-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .md\:space-y-1 > *:not(:last-child) {
    margin-bottom: 1rem !important;
  }
  .md\:space-x-2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .md\:space-y-2 > *:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  .md\:space-x-3 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .md\:space-y-3 > *:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  .md\:space-x-4 {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }
  .md\:space-y-4 > *:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .md\:space-x-5 {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
  .md\:space-y-5 > *:not(:last-child) {
    margin-bottom: 3rem !important;
  }
  .md\:space-x-6 {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
  }
  .md\:space-y-6 > *:not(:last-child) {
    margin-bottom: 3.5rem !important;
  }
  .md\:space-x-7 {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }
  .md\:space-y-7 > *:not(:last-child) {
    margin-bottom: 4rem !important;
  }
  .md\:space-x-8 {
    display: flex;
    flex-direction: row;
    gap: 4.5rem;
  }
  .md\:space-y-8 > *:not(:last-child) {
    margin-bottom: 4.5rem !important;
  }
  .md\:space-x-9 {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .md\:space-y-9 > *:not(:last-child) {
    margin-bottom: 5rem !important;
  }
  .md\:space-x-10 {
    display: flex;
    flex-direction: row;
    gap: 5.5rem;
  }
  .md\:space-y-10 > *:not(:last-child) {
    margin-bottom: 5.5rem !important;
  }
  .md\:space-x-11 {
    display: flex;
    flex-direction: row;
    gap: 6rem;
  }
  .md\:space-y-11 > *:not(:last-child) {
    margin-bottom: 6rem !important;
  }
  .md\:space-x-12 {
    display: flex;
    flex-direction: row;
    gap: 6.5rem;
  }
  .md\:space-y-12 > *:not(:last-child) {
    margin-bottom: 6.5rem !important;
  }
  .md\:space-x-13 {
    display: flex;
    flex-direction: row;
    gap: 7rem;
  }
  .md\:space-y-13 > *:not(:last-child) {
    margin-bottom: 7rem !important;
  }
  .md\:space-x-14 {
    display: flex;
    flex-direction: row;
    gap: 7.5rem;
  }
  .md\:space-y-14 > *:not(:last-child) {
    margin-bottom: 7.5rem !important;
  }
  .md\:space-x-15 {
    display: flex;
    flex-direction: row;
    gap: 8rem;
  }
  .md\:space-y-15 > *:not(:last-child) {
    margin-bottom: 8rem !important;
  }
  .md\:space-x-16 {
    display: flex;
    flex-direction: row;
    gap: 8.5rem;
  }
  .md\:space-y-16 > *:not(:last-child) {
    margin-bottom: 8.5rem !important;
  }
  .md\:space-x-17 {
    display: flex;
    flex-direction: row;
    gap: 9rem;
  }
  .md\:space-y-17 > *:not(:last-child) {
    margin-bottom: 9rem !important;
  }
  .md\:space-x-18 {
    display: flex;
    flex-direction: row;
    gap: 9.5rem;
  }
  .md\:space-y-18 > *:not(:last-child) {
    margin-bottom: 9.5rem !important;
  }
  .md\:space-x-19 {
    display: flex;
    flex-direction: row;
    gap: 10rem;
  }
  .md\:space-y-19 > *:not(:last-child) {
    margin-bottom: 10rem !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:space-x-0 {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .lg\:space-y-0 > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .lg\:space-x-0_5 {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .lg\:space-y-0_5 > *:not(:last-child) {
    margin-bottom: 0.5rem !important;
  }
  .lg\:space-x-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .lg\:space-y-1 > *:not(:last-child) {
    margin-bottom: 1rem !important;
  }
  .lg\:space-x-2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .lg\:space-y-2 > *:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  .lg\:space-x-3 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .lg\:space-y-3 > *:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  .lg\:space-x-4 {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }
  .lg\:space-y-4 > *:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .lg\:space-x-5 {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
  .lg\:space-y-5 > *:not(:last-child) {
    margin-bottom: 3rem !important;
  }
  .lg\:space-x-6 {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
  }
  .lg\:space-y-6 > *:not(:last-child) {
    margin-bottom: 3.5rem !important;
  }
  .lg\:space-x-7 {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }
  .lg\:space-y-7 > *:not(:last-child) {
    margin-bottom: 4rem !important;
  }
  .lg\:space-x-8 {
    display: flex;
    flex-direction: row;
    gap: 4.5rem;
  }
  .lg\:space-y-8 > *:not(:last-child) {
    margin-bottom: 4.5rem !important;
  }
  .lg\:space-x-9 {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .lg\:space-y-9 > *:not(:last-child) {
    margin-bottom: 5rem !important;
  }
  .lg\:space-x-10 {
    display: flex;
    flex-direction: row;
    gap: 5.5rem;
  }
  .lg\:space-y-10 > *:not(:last-child) {
    margin-bottom: 5.5rem !important;
  }
  .lg\:space-x-11 {
    display: flex;
    flex-direction: row;
    gap: 6rem;
  }
  .lg\:space-y-11 > *:not(:last-child) {
    margin-bottom: 6rem !important;
  }
  .lg\:space-x-12 {
    display: flex;
    flex-direction: row;
    gap: 6.5rem;
  }
  .lg\:space-y-12 > *:not(:last-child) {
    margin-bottom: 6.5rem !important;
  }
  .lg\:space-x-13 {
    display: flex;
    flex-direction: row;
    gap: 7rem;
  }
  .lg\:space-y-13 > *:not(:last-child) {
    margin-bottom: 7rem !important;
  }
  .lg\:space-x-14 {
    display: flex;
    flex-direction: row;
    gap: 7.5rem;
  }
  .lg\:space-y-14 > *:not(:last-child) {
    margin-bottom: 7.5rem !important;
  }
  .lg\:space-x-15 {
    display: flex;
    flex-direction: row;
    gap: 8rem;
  }
  .lg\:space-y-15 > *:not(:last-child) {
    margin-bottom: 8rem !important;
  }
  .lg\:space-x-16 {
    display: flex;
    flex-direction: row;
    gap: 8.5rem;
  }
  .lg\:space-y-16 > *:not(:last-child) {
    margin-bottom: 8.5rem !important;
  }
  .lg\:space-x-17 {
    display: flex;
    flex-direction: row;
    gap: 9rem;
  }
  .lg\:space-y-17 > *:not(:last-child) {
    margin-bottom: 9rem !important;
  }
  .lg\:space-x-18 {
    display: flex;
    flex-direction: row;
    gap: 9.5rem;
  }
  .lg\:space-y-18 > *:not(:last-child) {
    margin-bottom: 9.5rem !important;
  }
  .lg\:space-x-19 {
    display: flex;
    flex-direction: row;
    gap: 10rem;
  }
  .lg\:space-y-19 > *:not(:last-child) {
    margin-bottom: 10rem !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:space-x-0 {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .xl\:space-y-0 > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .xl\:space-x-0_5 {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .xl\:space-y-0_5 > *:not(:last-child) {
    margin-bottom: 0.5rem !important;
  }
  .xl\:space-x-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .xl\:space-y-1 > *:not(:last-child) {
    margin-bottom: 1rem !important;
  }
  .xl\:space-x-2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .xl\:space-y-2 > *:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  .xl\:space-x-3 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .xl\:space-y-3 > *:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  .xl\:space-x-4 {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }
  .xl\:space-y-4 > *:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .xl\:space-x-5 {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
  .xl\:space-y-5 > *:not(:last-child) {
    margin-bottom: 3rem !important;
  }
  .xl\:space-x-6 {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
  }
  .xl\:space-y-6 > *:not(:last-child) {
    margin-bottom: 3.5rem !important;
  }
  .xl\:space-x-7 {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }
  .xl\:space-y-7 > *:not(:last-child) {
    margin-bottom: 4rem !important;
  }
  .xl\:space-x-8 {
    display: flex;
    flex-direction: row;
    gap: 4.5rem;
  }
  .xl\:space-y-8 > *:not(:last-child) {
    margin-bottom: 4.5rem !important;
  }
  .xl\:space-x-9 {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .xl\:space-y-9 > *:not(:last-child) {
    margin-bottom: 5rem !important;
  }
  .xl\:space-x-10 {
    display: flex;
    flex-direction: row;
    gap: 5.5rem;
  }
  .xl\:space-y-10 > *:not(:last-child) {
    margin-bottom: 5.5rem !important;
  }
  .xl\:space-x-11 {
    display: flex;
    flex-direction: row;
    gap: 6rem;
  }
  .xl\:space-y-11 > *:not(:last-child) {
    margin-bottom: 6rem !important;
  }
  .xl\:space-x-12 {
    display: flex;
    flex-direction: row;
    gap: 6.5rem;
  }
  .xl\:space-y-12 > *:not(:last-child) {
    margin-bottom: 6.5rem !important;
  }
  .xl\:space-x-13 {
    display: flex;
    flex-direction: row;
    gap: 7rem;
  }
  .xl\:space-y-13 > *:not(:last-child) {
    margin-bottom: 7rem !important;
  }
  .xl\:space-x-14 {
    display: flex;
    flex-direction: row;
    gap: 7.5rem;
  }
  .xl\:space-y-14 > *:not(:last-child) {
    margin-bottom: 7.5rem !important;
  }
  .xl\:space-x-15 {
    display: flex;
    flex-direction: row;
    gap: 8rem;
  }
  .xl\:space-y-15 > *:not(:last-child) {
    margin-bottom: 8rem !important;
  }
  .xl\:space-x-16 {
    display: flex;
    flex-direction: row;
    gap: 8.5rem;
  }
  .xl\:space-y-16 > *:not(:last-child) {
    margin-bottom: 8.5rem !important;
  }
  .xl\:space-x-17 {
    display: flex;
    flex-direction: row;
    gap: 9rem;
  }
  .xl\:space-y-17 > *:not(:last-child) {
    margin-bottom: 9rem !important;
  }
  .xl\:space-x-18 {
    display: flex;
    flex-direction: row;
    gap: 9.5rem;
  }
  .xl\:space-y-18 > *:not(:last-child) {
    margin-bottom: 9.5rem !important;
  }
  .xl\:space-x-19 {
    display: flex;
    flex-direction: row;
    gap: 10rem;
  }
  .xl\:space-y-19 > *:not(:last-child) {
    margin-bottom: 10rem !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:space-x-0 {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .xxl\:space-y-0 > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .xxl\:space-x-0_5 {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .xxl\:space-y-0_5 > *:not(:last-child) {
    margin-bottom: 0.5rem !important;
  }
  .xxl\:space-x-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .xxl\:space-y-1 > *:not(:last-child) {
    margin-bottom: 1rem !important;
  }
  .xxl\:space-x-2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .xxl\:space-y-2 > *:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  .xxl\:space-x-3 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .xxl\:space-y-3 > *:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  .xxl\:space-x-4 {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }
  .xxl\:space-y-4 > *:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .xxl\:space-x-5 {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
  .xxl\:space-y-5 > *:not(:last-child) {
    margin-bottom: 3rem !important;
  }
  .xxl\:space-x-6 {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
  }
  .xxl\:space-y-6 > *:not(:last-child) {
    margin-bottom: 3.5rem !important;
  }
  .xxl\:space-x-7 {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }
  .xxl\:space-y-7 > *:not(:last-child) {
    margin-bottom: 4rem !important;
  }
  .xxl\:space-x-8 {
    display: flex;
    flex-direction: row;
    gap: 4.5rem;
  }
  .xxl\:space-y-8 > *:not(:last-child) {
    margin-bottom: 4.5rem !important;
  }
  .xxl\:space-x-9 {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .xxl\:space-y-9 > *:not(:last-child) {
    margin-bottom: 5rem !important;
  }
  .xxl\:space-x-10 {
    display: flex;
    flex-direction: row;
    gap: 5.5rem;
  }
  .xxl\:space-y-10 > *:not(:last-child) {
    margin-bottom: 5.5rem !important;
  }
  .xxl\:space-x-11 {
    display: flex;
    flex-direction: row;
    gap: 6rem;
  }
  .xxl\:space-y-11 > *:not(:last-child) {
    margin-bottom: 6rem !important;
  }
  .xxl\:space-x-12 {
    display: flex;
    flex-direction: row;
    gap: 6.5rem;
  }
  .xxl\:space-y-12 > *:not(:last-child) {
    margin-bottom: 6.5rem !important;
  }
  .xxl\:space-x-13 {
    display: flex;
    flex-direction: row;
    gap: 7rem;
  }
  .xxl\:space-y-13 > *:not(:last-child) {
    margin-bottom: 7rem !important;
  }
  .xxl\:space-x-14 {
    display: flex;
    flex-direction: row;
    gap: 7.5rem;
  }
  .xxl\:space-y-14 > *:not(:last-child) {
    margin-bottom: 7.5rem !important;
  }
  .xxl\:space-x-15 {
    display: flex;
    flex-direction: row;
    gap: 8rem;
  }
  .xxl\:space-y-15 > *:not(:last-child) {
    margin-bottom: 8rem !important;
  }
  .xxl\:space-x-16 {
    display: flex;
    flex-direction: row;
    gap: 8.5rem;
  }
  .xxl\:space-y-16 > *:not(:last-child) {
    margin-bottom: 8.5rem !important;
  }
  .xxl\:space-x-17 {
    display: flex;
    flex-direction: row;
    gap: 9rem;
  }
  .xxl\:space-y-17 > *:not(:last-child) {
    margin-bottom: 9rem !important;
  }
  .xxl\:space-x-18 {
    display: flex;
    flex-direction: row;
    gap: 9.5rem;
  }
  .xxl\:space-y-18 > *:not(:last-child) {
    margin-bottom: 9.5rem !important;
  }
  .xxl\:space-x-19 {
    display: flex;
    flex-direction: row;
    gap: 10rem;
  }
  .xxl\:space-y-19 > *:not(:last-child) {
    margin-bottom: 10rem !important;
  }
}
.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline;
}

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

@media only screen and (min-width: 36rem) {
  .xs\:text-left {
    text-align: left !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:text-left {
    text-align: left !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:text-left {
    text-align: left !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:text-left {
    text-align: left !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:text-left {
    text-align: left !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:text-left {
    text-align: left !important;
  }
}
.text-right {
  text-align: right !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:text-right {
    text-align: right !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:text-right {
    text-align: right !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:text-right {
    text-align: right !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:text-right {
    text-align: right !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:text-right {
    text-align: right !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:text-right {
    text-align: right !important;
  }
}
.text-center {
  text-align: center !important;
}

@media only screen and (min-width: 36rem) {
  .xs\:text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 48rem) {
  .sm\:text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 64rem) {
  .md\:text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 75rem) {
  .lg\:text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 90rem) {
  .xl\:text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 105rem) {
  .xxl\:text-center {
    text-align: center !important;
  }
}
.letter-spacing {
  letter-spacing: 0;
}
.letter-spacing--tight {
  letter-spacing: -0.75px;
}
.letter-spacing--wide {
  letter-spacing: 1px;
}
.letter-spacing--wider {
  letter-spacing: 2px;
}

.line-height {
  line-height: 1.4 !important;
}
.line-height-xs {
  line-height: 1 !important;
}
.line-height-sm {
  line-height: 1.2 !important;
}
.line-height-md {
  line-height: 1.6 !important;
}
.line-height-lg {
  line-height: 1.8 !important;
}

.ff-heading {
  font-family: "Adagio-Slab", "Roboto", BlinkMacSystemFont, sans-serif !important;
}
.ff-base {
  font-family: "Roboto", BlinkMacSystemFont, sans-serif !important;
}

.font-light {
  font-weight: 300 !important;
}
.font-regular {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-extrabold {
  font-weight: 800 !important;
}
.font-black {
  font-weight: 900 !important;
}
.font-base {
  font-family: "Roboto", BlinkMacSystemFont, sans-serif !important;
}
.font-heading {
  font-family: "Adagio-Slab", "Roboto", BlinkMacSystemFont, sans-serif !important;
}
.font-decorative {
  font-family: "Kelso", "Roboto", BlinkMacSystemFont, sans-serif !important;
}

.fs-xxs {
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem) !important;
}

.fs-xs {
  font-size: clamp(0.75rem, 0.688rem + 0.208vw, 0.875rem) !important;
}

.fs-sm {
  font-size: 1rem !important;
}

.fs-base {
  font-size: clamp(1rem, 0.938rem + 0.208vw, 1.125rem) !important;
}

.fs-md {
  font-size: clamp(1.125rem, 1.063rem + 0.208vw, 1.25rem) !important;
}

.fs-lg {
  font-size: clamp(1.25rem, 1.125rem + 0.417vw, 1.5rem) !important;
}

.fs-xl {
  font-size: clamp(1.5rem, 1.25rem + 0.833vw, 2rem) !important;
}

.fs-2xl {
  font-size: clamp(2rem, 1.25rem + 2.5vw, 3.5rem) !important;
}

.fs-3xl {
  font-size: clamp(2rem, 0.75rem + 4.167vw, 4.5rem) !important;
}

.fs-4xl {
  font-size: clamp(8.75rem, 6.875rem + 6.25vw, 12.5rem) !important;
}

[class*=lead] {
  font-weight: 300;
}
[class*=lead] b {
  font-weight: 600;
}

.border {
  border-width: 1px !important;
  border-style: solid !important;
}
.border-blue {
  border: 1px solid #00acc8 !important;
}
.border-grey {
  border: 1px solid #e9e9e8 !important;
}
.border-top {
  border-top: 1px solid #fd620d !important;
}
.border-bottom {
  border-bottom: 1px solid #62cbe8;
}
.border-left {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1rem;
}
.border-left::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  min-height: 1.5rem;
  width: 2px;
  background-color: #fd620d;
}
@media only screen and (min-width: 48rem) {
  .border-left {
    padding-left: 1.25rem;
  }
}

.border-radius-xs {
  border-radius: 0.125rem !important;
}
@media only screen and (min-width: 48rem) {
  .border-radius-xs {
    border-radius: 0.25rem !important;
  }
}

.border-radius-sm {
  border-radius: 0.25rem !important;
}
@media only screen and (min-width: 48rem) {
  .border-radius-sm {
    border-radius: 0.5rem !important;
  }
}

.border-radius-md {
  border-radius: 0.5rem !important;
}
@media only screen and (min-width: 48rem) {
  .border-radius-md {
    border-radius: 0.75rem !important;
  }
}

.border-radius-lg {
  border-radius: 0.75rem !important;
}
@media only screen and (min-width: 48rem) {
  .border-radius-lg {
    border-radius: 1rem !important;
  }
}

.border-radius-xl {
  border-radius: 1.5rem !important;
}
@media only screen and (min-width: 48rem) {
  .border-radius-xl {
    border-radius: 2rem !important;
  }
}

.border-radius-full {
  border-radius: 50rem !important;
}
@media only screen and (min-width: 48rem) {
  .border-radius-full {
    border-radius: 50rem !important;
  }
}

.br-xs {
  border-radius: clamp(
        0.125rem,
        calc(0.125rem + 0.0023148148 * (100vw - 36rem)),
        0.25rem
    ) !important;
}

.br-sm {
  border-radius: clamp(
        0.25rem,
        calc(0.25rem + 0.0046296296 * (100vw - 36rem)),
        0.5rem
    ) !important;
}

.br-md {
  border-radius: clamp(
        0.5rem,
        calc(0.5rem + 0.0046296296 * (100vw - 36rem)),
        0.75rem
    ) !important;
}

.br-lg {
  border-radius: clamp(
        0.75rem,
        calc(0.75rem + 0.0046296296 * (100vw - 36rem)),
        1rem
    ) !important;
}

.br-xl {
  border-radius: clamp(
        1.5rem,
        calc(1.5rem + 0.0092592593 * (100vw - 36rem)),
        2rem
    ) !important;
}

.br-full {
  border-radius: clamp(
        50rem,
        calc(50rem + 0 * (100vw - 36rem)),
        50rem
    ) !important;
}

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