/*
 *master.css
 *	This file just serves to bring all of the other Tailwind reliant
 *		files together. At build time, it'll make sure these files
 *		make it into the final build.
*/

/*
 ! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com
*/

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
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;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		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;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
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 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
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.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
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.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Open Sans, Sans-Serif; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

body {
  font-family: Open Sans, Sans-Serif;
  line-height: 1.625;
  letter-spacing: 0.025em;
}

html{
  scroll-behavior: smooth;
}

h1 {
  font-family: Playfair Display, Serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

h2 {
  font-family: Playfair Display, Serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

h3 {
  font-family: Playfair Display, Serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

h6 {
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 2;
}

a {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(73, 73, 73, var(--tw-text-opacity));
}

a:hover {
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
}

a {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Layout */

.container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Buttons */

.btn {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.btn:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(46, 46, 46, var(--tw-bg-opacity));
}

.btn {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.btn:hover {
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.btn {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  display: inline-block;
}

.btn:disabled {
  cursor: default;
  --tw-border-opacity: 1;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity));
}

.btn:disabled:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity));
}

.btn.btn--secondary {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.btn.btn--secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.btn.btn--secondary {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

a.btn:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

a.btn.btn--secondary:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.arrow-btn {
  padding:9px 10px 9px 10px;
  font-size: .9rem;
  position:relative;
  line-height: 18px;
  height: 36px;
  border: none;
  text-align: center;
}

.arrow-btn-back {
  padding:9px 10px 9px 10px;
  font-size: .9rem;
  position:relative;
  line-height: 18px;
  height: 36px;
  border: none;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.arrow-btn-back:hover {
  background-color: #ebebeb;
  color: #000000;
}

.arrow-btn:hover::after {
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-left: 18px solid rgba(46, 46, 46, var(--tw-bg-opacity));
}

.arrow-btn:after{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid black;
}

/*
	* Div with background image
	*
	* To use: 
	* 1. Give div `background-image` class
	* 2. Give div `style="--bgImg: url('path/to/image.jpg');"`
	*/

.background-image {
  background: var(--bgImg) no-repeat center center;
  background-size: cover;
}

.content-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.content-container > * {
  margin-bottom: 3rem;
}

.title-block > .flavor-text {
  font-size: 1rem;
  margin-bottom: .2rem;
}

.title-block > .title {
  font-size: 2rem;
  margin-bottom: 1.3rem;
}

.title-block > hr {
  width: 50%;
  margin-bottom: 1.5rem;
}

/**
    * TABLES
    */

.dlm-table {
  margin-top: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.dlm-table table {
  width: 100%;
  table-layout: auto;
}

.dlm-table table thead tr th {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.dlm-table.dlm-table-hover table tbody tr:hover td {
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgba(232, 232, 232, var(--tw-bg-opacity));
}

.dlm-table table tbody tr td {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  position: relative;
}

.dlm-table table body tr td > a:not(.row-link) {
  position: relative;
  z-index: 1;
}

.dlm-table table tr:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.dlm-table table tr:nth-child(odd) {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

/**
     * Mobile nav style
     */

#content-container.js-mobile-menu-open {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  position: relative;
}

#mobileNav::-webkit-scrollbar {
  height: 16px;
  overflow: visible;
  width: 16px;
  display: none;
}

/**
     * Print styles
     */

@media screen {
  .print-only {
    display: none;
  }
}

@media print {
  .print-only {
    display: block;
  }

  .page-break {
    page-break-before: always;
  }

  @page 
         {
    size:  auto;   /* auto is the initial value */

    margin: 8mm;  /* this affects the margin in the printer settings */
  }
}

/**
      * Swiper UI styles
      */

.swiper-pagination-bullet-active {
  background-color: #000;
}

/**
     * Datepicker styles
     */

/* DatePicker Container */

.ui-datepicker {
  width: 100%;
  height: auto;
  margin: 5px auto 0;
  font: 9pt Arial, sans-serif;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
  cursor: pointer;
}

.ui-datepicker a {
  text-decoration: none;
}

/* DatePicker Table */

.ui-datepicker table {
  width: 100%;
}

.ui-datepicker-header {
  background: #000;
  color: #ffffff;
  font-weight: bold;
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
  text-shadow: 1px -1px 0px #000;
  filter: dropshadow(color=#000, offx=1, offy=-1);
  line-height: 30px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.ui-datepicker thead {
  background-color: #f7f7f7;
  /* background-image: -moz-linear-gradient(top,  #f7f7f7 0%, #f1f1f1 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#f1f1f1));
        background-image: -webkit-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
        background-image: -o-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
        background-image: -ms-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
        background-image: linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%); */
  border-bottom: 1px solid #bbb;
}

.ui-datepicker th {
  text-transform: uppercase;
  font-size: 6pt;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  filter: dropshadow(color=#fff, offx=1, offy=0);
}

.ui-datepicker tbody td {
  padding: 0;
  border-right: 1px solid #bbb;
}

.ui-datepicker tbody td:last-child {
  border-right: 0px;
}

.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb;
}

.ui-datepicker tbody tr:last-child {
  border-bottom: 0px;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0px #fff;
}

input {
  margin-top: 0.25rem;
  display: inline-block;
  --tw-border-opacity: 1;
  border-color: rgba(164, 164, 164, var(--tw-border-opacity));
}

input:focus {
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
}

input {
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

input:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(232, 232, 232, var(--tw-ring-opacity));
  --tw-ring-opacity: 0.5;
}

input:disabled, textarea:disabled {
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(232, 232, 232, var(--tw-bg-opacity));
}

label {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(73, 73, 73, var(--tw-text-opacity));
}

[type='text'], [type='email'], [type='url'], [type='password'], [type='number'], [type='date'], [type='month'], [type='search'], [type='tel'], [type='time'], [type='week'], [multiple], textarea, select {
  margin-top: 0.25rem;
  width: auto;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgba(73, 73, 73, var(--tw-text-opacity));
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

[type='text'],
	[type='email'],
	[type='url'],
	[type='password'],
	[type='number'],
	[type='date'],
	[type='month'],
	[type='search'],
	[type='tel'],
	[type='time'],
	[type='week'],
	[multiple],
	textarea,
	select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea
	{
  display: block;
  width: 100%;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #6b6b6b;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
  opacity: 1;
}

input::placeholder, textarea::placeholder {
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
  opacity: 1;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

[multiple] {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
  color-adjust: unset;
}

[type='checkbox'],
	[type='radio']
	{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2b3b46;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
}

[type='checkbox'] {
  margin-right: 0.25rem;
  border-radius: 0px;
}

[type='radio'] {
  margin-right: 0.25rem;
  border-radius: 100%;
}

[type='checkbox']:focus,
	[type='radio']:focus
	{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #6b6b6b;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

[type='checkbox']:disabled, [type='radio']:disabled {
  --tw-border-opacity: 1;
  border-color: rgba(164, 164, 164, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(232, 232, 232, var(--tw-bg-opacity));
}

[type='checkbox']:checked,
	[type='radio']:checked
	{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type='checkbox']:checked:hover,
	[type='checkbox']:checked:focus,
	[type='radio']:checked:hover,
	[type='radio']:checked:focus
	{
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:indeterminate:hover,
	[type='checkbox']:indeterminate:focus
	{
  border-color: transparent;
  background-color: currentColor;
}

.radio--button {
  display: inline-block;
}

.radio--button > input {
  display: none;
}

.radio--button > input + label {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(164, 164, 164, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(232, 232, 232, var(--tw-bg-opacity));
}

.radio--button > input + label:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.radio--button > input + label {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.radio--button > input:checked + label {
  --tw-bg-opacity: 1;
  background-color: rgba(46, 46, 46, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.radio--button > input:checked + label::before {
  content: "\2713  ";
  width: 20px;
}

.radio--img {
  display: inline-block;
}

.radio--img > input {
  display: none;
}

.radio--img > input + label {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
  border-width: 1px;
  border-color: transparent;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.radio--img > input:checked + label {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

/* NAV BAR */

.nav-list > li {
  cursor: pointer;
  text-transform: uppercase;
}

.nav-list > li > span {
  border-bottom-width: 2px;
  border-color: transparent;
}

.nav-list > li > span:hover {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.nav-list > li > span {
  padding-bottom: 1rem;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#mainNav > li {
  margin-right: 3.5rem;
  text-transform: uppercase;
}

#rightNav > li:first-child {
  padding-right: 1.25rem;
  border-right: 1px solid #dddddd;
}

#rightNav > li:last-child {
  padding-left: 1.25rem;
}

.mobile-nav-list {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  margin-bottom: 2rem;
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.mobile-nav-list-item {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#searchBar:focus-visible,
    #searchBar:focus {
  border: none;
  outline: 0 !important;
  box-shadow:none;
}

.alert {
  border-width: 1px;
  padding: 1.25rem;
}

.alert-error {
  --tw-border-opacity: 1;
  border-color: rgba(239, 88, 84, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(252, 222, 221, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(167, 62, 59, var(--tw-text-opacity));
}

.alert-info {
  --tw-border-opacity: 1;
  border-color: rgba(144, 139, 163, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(210, 209, 218, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(32, 23, 71, var(--tw-text-opacity));
}

.alert-success {
  --tw-border-opacity: 1;
  border-color: rgba(104, 180, 149, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(195, 225, 213, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(62, 108, 89, var(--tw-text-opacity));
}

.homepage--magazine {
  width: 250px;
  height: 340px;
}

@media screen and (max-width: 1536px) {
  .homepage--magazine {
    width: 220px;
    height: 280px;
  }
}

.homepage--swiper-wrapper {
  height: 76vh;
  max-height: 600px;
  min-height: 420px;
}

.homepage--slide-container {
  height: 76vh;
  max-height: 600px;
  min-height: 420px;
}

.homepage--slide-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-position: 77% center;
     object-position: 77% center;
}

.homepage--slide-text-container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: rgba(256, 256, 256, 0.8);
  padding: 2rem;
  width: 45%;
  margin-left: 3rem;
}

.homepage--slide-subtitle {
  font-family: 'Playfair Display', serif;
}

.homepage--slide-title {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  line-height: 3rem;
}

.homepage--slide-p {
  margin-bottom: 1rem;
  font-weight: 800;
}

@media screen and (max-width: 1200px) {
  .homepage--slide-text-container {
    width: 55%;
  }
}

@media screen and (max-width: 768px) {
  .homepage--swiper-wrapper {
    max-height: 600px;
  }

  .homepage--slide-container {
    max-height: 550px;
  }

  .homepage--slide-text-container {
    top: 55%;
    transform: translateY(-55%);
    padding: 1rem;
    width: 55%;
    margin-left: 0;
  }

  .homepage--slide-subtitle {
    font-size: .9rem;
  }

  .homepage--slide-btn {
    font-size: .9rem;
  }

  .homepage--slide-title {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    line-height: normal;
  }

  .homepage--slide-p {
    font-size: .8rem;
  }
}

@media screen and (max-width:425px) {
  .homepage--slide-text-container {
    width: 65%;
  }

  .homepage--slide-hr {
    display: none;
  }

  .homepage--slide-p {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .homepage--slide-text-container {
    width: 80%;
  }
}

/*  ECOMMERCE CATEGORY PAGE */

.item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Regular Size Item */

.item-image {
  position: relative;
  margin-bottom: 0.5rem;
  height: 250px;
  width: 250px;
}

@media screen and (max-width: 1279px) {
  .item-image {
    height: 200px;
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .item-image {
    height: 250px;
    width: 250px;
  }
}

@media screen and (max-width: 550px) {
  .item-image {
    height: 200px;
    width: 200px;
  }
}

@media screen and (max-width: 425px) {
  .item-image {
    height: 180px;
    width: 180px;
  }
}

@media screen and (max-width: 375px) {
  .item-image {
    height: 130px;
    width: 130px;
  }
}

/* Large Item */

.item-image.item-image--lg {
  position: relative;
  margin-bottom: 0.5rem;
  height: 300px;
  width: 300px;
}

@media screen and (max-width: 1279px) {
  .item-image.item-image--lg {
    height: 200px;
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .item-image.item-image--lg {
    height: 250px;
    width: 250px;
  }
}

@media screen and (max-width: 550px) {
  .item-image.item-image--lg {
    height: 200px;
    width: 200px;
  }
}

@media screen and (max-width: 425px) {
  .item-image.item-image--lg {
    height: 180px;
    width: 180px;
  }
}

@media screen and (max-width: 375px) {
  .item-image.item-image--lg {
    height: 130px;
    width: 130px;
  }
}

.item-add-to-cart {
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  background-color: rgba(0,0,0, .7);
}

.item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (hover: hover)
    {
  .item-content:hover .item-add-to-cart {
    display: block;
  }
}

.item-link {
  display: block;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media screen and (max-width: 1279px) {
  .item-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .item-link {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.item-image-link {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  height: 100%;
}

#optionsButtons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  #optionsButtons {
    margin-bottom: 0.5rem;
  }
}

.category-sidebar-link {
  margin-right: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  text-align: left;
  font-weight: 700;
}

.subcategory-list.closed {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-button {
  padding: 0.75rem;
}

.pagination-button.active {
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  font-weight: 700;
}

#shopSidebar {
  display: none;
}

@media (min-width: 1024px) {
  #shopSidebar {
    display: block;
  }
}

.category-sidebar-title {
  margin-bottom: 0.75rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  font-weight: 700;
}

/* Product Image */

#product-image {
  --square-length: 400px;
  --bullet-length: 50px;
  --container-height: calc(var(--square-length) + var(--bullet-length) + 2rem);
  top: 7rem;
}

@media screen and (max-height: 850px) {
  #product-image {
    top: 5.5rem;
  }
}

@media screen and (max-height: 768px) {
  #product-image {
    --square-length: 350px;
    --bullet-length: 45px;
    top: 5rem;
  }
}

@media screen and (max-height: 720px) {
  #product-image {
    --square-length: 300px;
    --bullet-length: 45px;
    top: 3rem;
  }
}

@media screen and (max-height: 630px) {
  #product-image {
    --square-length: 250px;
    --bullet-length: 40px;
    top: 2rem;
  }
}

#product-image-container {
  width: var(--square-length);
  height: var(--container-height);
}

#product-image-bullet-container {
  width: var(--square-length);
  height: var(--bullet-length);
}

#mobile-product-image-bullet-container {
  width: var(--square-length);
  height: var(--bullet-length);
}

#mobile-product-image {
  --square-length: 400px;
  --bullet-length: 50px;
  --container-height: calc(var(--square-length) + var(--bullet-length) + 2rem);
}

@media screen and (max-width: 450px) {
  #mobile-product-image {
    --square-length: 300px;
    --bullet-length: 40px;
  }
}

#mobile-product-image-container {
  width: var(--square-length);
  height: var(--container-height);
}

.swiper-wrapper-top {
  width: var(--square-length);
  height: var(--square-length);
}

.secondary-add-to-cart {
  width: var(--square-length);
}

.secondary-add-to-cart > .secondary-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.secondary-add-to-cart > .secondary-price {
  margin-bottom: 0.5rem;
  font-family: Open Sans, Sans-Serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Product Info */

.product-title {
  margin-bottom: 1rem;
  display: none;
}

@media (min-width: 1024px) {
  .product-title {
    display: block;
  }
}

.product-price {
  font-family: Open Sans, Sans-Serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

@media (min-width: 1024px) {
  .product-price {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.product-quantity-container {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-description-title {
  margin-bottom: 0.25rem;
  font-family: Playfair Display, Serif;
}

/* 3 related items content block */

/* You might also like... section */

/* Reviews & ratings */

.rating-header {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating-date {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
}

.rating-content {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
}

/* CONTENT BLOCKS */

.content-story-module {
  margin-bottom: 1rem;
}

.content-story-module > h1,
    .content-story-module > h2,
    .content-story-module > h3,
    .content-story-module > h4,
    .content-story-module > h5,
    .content-story-module > h6 {
  font-family: Playfair Display, Serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.content-story-module > p {
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.content-story-module > * {
  width: 100%;
  list-style-position: inside;
}

.content-image-module {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.content-image-module > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 300px;
}

.content-story-module > p+ul,
    .content-story-module > p+ol {
  margin-top: -2rem;
}

.content-story-module > ul {
  list-style-type: disc;
  margin-top: -.5rem;
}

.content-story-module > ol {
  list-style-type: decimal;
  margin-top: -.5rem;
}

/* Item image for carousel */

.item-image.item-image--carousel {
  position: relative;
  margin-bottom: 0.5rem;
  height: 300px;
  width: 300px;
}

@media screen and (max-width: 1279px) {
  .item-image.item-image--carousel {
    height: 200px;
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .item-image.item-image--carousel {
    height: 240px;
    width: 240px;
  }
}

@media screen and (max-width: 650px) {
  .item-image.item-image--carousel {
    height: 260px;
    width: 260px;
  }
}

@media screen and (max-width: 550px) {
  .item-image.item-image--carousel {
    height: 280px;
    width: 280px;
  }
}

@media screen and (max-width: 425px) {
  .item-image.item-image--carousel {
    height: 250px;
    width: 250px;
  }
}

@media screen and (max-width: 375px) {
  .item-image.item-image--carousel {
    height: 230px;
    width: 230px;
  }
}

.receipt--top-container {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: rgba(245, 245, 245);
  color-adjust: exact;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

.receipt--items-table {
  width: 600px;
}

.receipt--items-table thead tr th {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(232, 232, 232, var(--tw-text-opacity));
}

.receipt--items-table thead tr th:first {
  padding-right: 0.5rem;
}

.receipt--items-table thead tr th:last {
  padding-left: 0.5rem;
}

.receipt--items-table tbody tr td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.receipt--items-table tbody tr td:first {
  padding-right: 0.5rem;
}

.receipt--items-table tbody tr td:last {
  padding-left: 0.5rem;
}

.receipt--total-table tbody tr td {
  width: 5rem;
  text-align: right;
}

.cc-seating-chart--container {
  margin-right: 1rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 500px;
  height: 510px;
}

@media screen and (max-width: 550px) {
  .cc-seating-chart--container {
    width: 350px;
    height: 360px;
  }
}

.cc-seating--table-container {
  width: 6rem;
}

@media screen and (max-width: 550px) {
  .cc-seating--table-container {
    width: 4rem;
  }
}

.cc-seating--front-container {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 6rem;
  padding-right: 6rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.cc-seating--grid {
  grid-column: span 2 / span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9rem;
}

@media screen and (max-width: 550px) {
  .cc-seating--table-container {
    gap: 5rem;
  }
}

.cc-seating--left-table {
  transform: rotate(45deg);
}

.cc-seating--right-table {
  transform: rotate(315deg);
}

.cc-seating--table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

@media screen and (max-width: 550px) {
  .cc-seating--table-grid {
    gap: 4px;
  }
}

.cc-seating--seat {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.cc-seating--seat:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(46, 46, 46, var(--tw-bg-opacity));
}

.cc-seating--seat {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media screen and (max-width: 550px) {
  .cc-seating--seat {
    height: 1.75rem;
    width: 1.75rem;
  }
}

.cc-seating--seat.seat-taken {
  cursor: default;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(164, 164, 164, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(232, 232, 232, var(--tw-bg-opacity));
}

.cc-seating--seat.user-selected-seat {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(62, 108, 89, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(104, 180, 149, var(--tw-bg-opacity));
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(62, 108, 89, var(--tw-text-opacity));
}

.cc-seating--seat.seat-taken > * {
  display: none;
}

.cc-seating--left-seat-number {
  transform: rotate(315deg);
}

.cc-seating--right-seat-number {
  transform: rotate(45deg);
}

/* Site-wide components */

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-dots {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #000000;
  color: #000000;
  box-shadow: 9999px 0 0 0 #000000;
  -webkit-animation: dotFalling 1s infinite linear;
          animation: dotFalling 1s infinite linear;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.loading-dots::before, .loading-dots::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.loading-dots::before {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #000000;
  color: #000000;
  -webkit-animation: dotFallingBefore 1s infinite linear;
          animation: dotFallingBefore 1s infinite linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.loading-dots::after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #000000;
  color: #000000;
  -webkit-animation: dotFallingAfter 1s infinite linear;
          animation: dotFallingAfter 1s infinite linear;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

@-webkit-keyframes dotFalling {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%,
  50%,
  75% {
    box-shadow: 9999px 0 0 0 #000000;
  }

  100% {
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dotFalling {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%,
  50%,
  75% {
    box-shadow: 9999px 0 0 0 #000000;
  }

  100% {
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@-webkit-keyframes dotFallingBefore {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%,
  50%,
  75% {
    box-shadow: 9984px 0 0 0 #000000;
  }

  100% {
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dotFallingBefore {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%,
  50%,
  75% {
    box-shadow: 9984px 0 0 0 #000000;
  }

  100% {
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@-webkit-keyframes dotFallingAfter {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%,
  50%,
  75% {
    box-shadow: 10014px 0 0 0 #000000;
  }

  100% {
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dotFallingAfter {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%,
  50%,
  75% {
    box-shadow: 10014px 0 0 0 #000000;
  }

  100% {
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

.ratings {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  color: #e6e6e6;
  overflow: hidden;
  font-size: 18px;
}

.full-stars {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #000000;
}

.empty-stars {
  -webkit-text-stroke: 1px #848484;
}

.full-stars {
  -webkit-text-stroke: 1px #000000;
}

.rating-star {
  cursor: pointer;
  font-size: 28px;
}

.full-star {
  color: #000000;
  -webkit-text-stroke: 1px #000000;
}

.empty-star {
  color: #e6e6e6;
  -webkit-text-stroke: 1px #848484;
}

/* Firefox */

@-moz-document url-prefix() {
  .full-stars {
    color: #000000;
  }
}

/* Homepage */

/* Shop */

/* checkout */

/* Component containers
----------------------------------*/

.ui-widget {
  font-family: Open Sans, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Open Sans, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #000000;
}

.ui-widget-content a {
  color: #000000;
}

.ui-widget-header {
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  font-weight: bold;
}

.ui-widget-header a {
  color: #ffffff;
}

/* Interaction states
----------------------------------*/

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #000000;
  background: #000000;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #000000;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #a6a6a6;
  background: #dddddd;
  color: #000000;
}

.ui-state-checked {
  border: 1px solid #a6a6a6;
  background: #dddddd;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #000000;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter:Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter:Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_000000_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_000000_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

.ui-datepicker .ui-datepicker-prev .ui-icon { background-image:none !important;
}

.ui-datepicker .ui-datepicker-next .ui-icon { background-image:none !important;
}

.ui-datepicker .ui-datepicker-prev .ui-icon:before { content:"<";
}

.ui-datepicker .ui-datepicker-next .ui-icon:before { content:">";
}

/* positioning */

.ui-icon-blank { background-position: 16px 16px;
}

.ui-icon-caret-1-n { background-position: 0 0;
}

.ui-icon-caret-1-ne { background-position: -16px 0;
}

.ui-icon-caret-1-e { background-position: -32px 0;
}

.ui-icon-caret-1-se { background-position: -48px 0;
}

.ui-icon-caret-1-s { background-position: -65px 0;
}

.ui-icon-caret-1-sw { background-position: -80px 0;
}

.ui-icon-caret-1-w { background-position: -96px 0;
}

.ui-icon-caret-1-nw { background-position: -112px 0;
}

.ui-icon-caret-2-n-s { background-position: -128px 0;
}

.ui-icon-caret-2-e-w { background-position: -144px 0;
}

.ui-icon-triangle-1-n { background-position: 0 -16px;
}

.ui-icon-triangle-1-ne { background-position: -16px -16px;
}

.ui-icon-triangle-1-e { background-position: -32px -16px;
}

.ui-icon-triangle-1-se { background-position: -48px -16px;
}

.ui-icon-triangle-1-s { background-position: -65px -16px;
}

.ui-icon-triangle-1-sw { background-position: -80px -16px;
}

.ui-icon-triangle-1-w { background-position: -96px -16px;
}

.ui-icon-triangle-1-nw { background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s { background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w { background-position: -144px -16px;
}

.ui-icon-arrow-1-n { background-position: 0 -32px;
}

.ui-icon-arrow-1-ne { background-position: -16px -32px;
}

.ui-icon-arrow-1-e { background-position: -32px -32px;
}

.ui-icon-arrow-1-se { background-position: -48px -32px;
}

.ui-icon-arrow-1-s { background-position: -65px -32px;
}

.ui-icon-arrow-1-sw { background-position: -80px -32px;
}

.ui-icon-arrow-1-w { background-position: -96px -32px;
}

.ui-icon-arrow-1-nw { background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s { background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw { background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w { background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw { background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n { background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e { background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s { background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w { background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n { background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne { background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e { background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se { background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s { background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw { background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w { background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw { background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s { background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w { background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n { background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e { background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s { background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w { background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w { background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n { background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e { background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s { background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w { background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n { background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e { background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s { background-position: -176px -64px;
}

.ui-icon-arrow-4 { background-position: 0 -80px;
}

.ui-icon-arrow-4-diag { background-position: -16px -80px;
}

.ui-icon-extlink { background-position: -32px -80px;
}

.ui-icon-newwin { background-position: -48px -80px;
}

.ui-icon-refresh { background-position: -64px -80px;
}

.ui-icon-shuffle { background-position: -80px -80px;
}

.ui-icon-transfer-e-w { background-position: -96px -80px;
}

.ui-icon-transferthick-e-w { background-position: -112px -80px;
}

.ui-icon-folder-collapsed { background-position: 0 -96px;
}

.ui-icon-folder-open { background-position: -16px -96px;
}

.ui-icon-document { background-position: -32px -96px;
}

.ui-icon-document-b { background-position: -48px -96px;
}

.ui-icon-note { background-position: -64px -96px;
}

.ui-icon-mail-closed { background-position: -80px -96px;
}

.ui-icon-mail-open { background-position: -96px -96px;
}

.ui-icon-suitcase { background-position: -112px -96px;
}

.ui-icon-comment { background-position: -128px -96px;
}

.ui-icon-person { background-position: -144px -96px;
}

.ui-icon-print { background-position: -160px -96px;
}

.ui-icon-trash { background-position: -176px -96px;
}

.ui-icon-locked { background-position: -192px -96px;
}

.ui-icon-unlocked { background-position: -208px -96px;
}

.ui-icon-bookmark { background-position: -224px -96px;
}

.ui-icon-tag { background-position: -240px -96px;
}

.ui-icon-home { background-position: 0 -112px;
}

.ui-icon-flag { background-position: -16px -112px;
}

.ui-icon-calendar { background-position: -32px -112px;
}

.ui-icon-cart { background-position: -48px -112px;
}

.ui-icon-pencil { background-position: -64px -112px;
}

.ui-icon-clock { background-position: -80px -112px;
}

.ui-icon-disk { background-position: -96px -112px;
}

.ui-icon-calculator { background-position: -112px -112px;
}

.ui-icon-zoomin { background-position: -128px -112px;
}

.ui-icon-zoomout { background-position: -144px -112px;
}

.ui-icon-search { background-position: -160px -112px;
}

.ui-icon-wrench { background-position: -176px -112px;
}

.ui-icon-gear { background-position: -192px -112px;
}

.ui-icon-heart { background-position: -208px -112px;
}

.ui-icon-star { background-position: -224px -112px;
}

.ui-icon-link { background-position: -240px -112px;
}

.ui-icon-cancel { background-position: 0 -128px;
}

.ui-icon-plus { background-position: -16px -128px;
}

.ui-icon-plusthick { background-position: -32px -128px;
}

.ui-icon-minus { background-position: -48px -128px;
}

.ui-icon-minusthick { background-position: -64px -128px;
}

.ui-icon-close { background-position: -80px -128px;
}

.ui-icon-closethick { background-position: -96px -128px;
}

.ui-icon-key { background-position: -112px -128px;
}

.ui-icon-lightbulb { background-position: -128px -128px;
}

.ui-icon-scissors { background-position: -144px -128px;
}

.ui-icon-clipboard { background-position: -160px -128px;
}

.ui-icon-copy { background-position: -176px -128px;
}

.ui-icon-contact { background-position: -192px -128px;
}

.ui-icon-image { background-position: -208px -128px;
}

.ui-icon-video { background-position: -224px -128px;
}

.ui-icon-script { background-position: -240px -128px;
}

.ui-icon-alert { background-position: 0 -144px;
}

.ui-icon-info { background-position: -16px -144px;
}

.ui-icon-notice { background-position: -32px -144px;
}

.ui-icon-help { background-position: -48px -144px;
}

.ui-icon-check { background-position: -64px -144px;
}

.ui-icon-bullet { background-position: -80px -144px;
}

.ui-icon-radio-on { background-position: -96px -144px;
}

.ui-icon-radio-off { background-position: -112px -144px;
}

.ui-icon-pin-w { background-position: -128px -144px;
}

.ui-icon-pin-s { background-position: -144px -144px;
}

.ui-icon-play { background-position: 0 -160px;
}

.ui-icon-pause { background-position: -16px -160px;
}

.ui-icon-seek-next { background-position: -32px -160px;
}

.ui-icon-seek-prev { background-position: -48px -160px;
}

.ui-icon-seek-end { background-position: -64px -160px;
}

.ui-icon-seek-start { background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */

.ui-icon-seek-first { background-position: -80px -160px;
}

.ui-icon-stop { background-position: -96px -160px;
}

.ui-icon-eject { background-position: -112px -160px;
}

.ui-icon-volume-off { background-position: -128px -160px;
}

.ui-icon-volume-on { background-position: -144px -160px;
}

.ui-icon-power { background-position: 0 -176px;
}

.ui-icon-signal-diag { background-position: -16px -176px;
}

.ui-icon-signal { background-position: -32px -176px;
}

.ui-icon-battery-0 { background-position: -48px -176px;
}

.ui-icon-battery-1 { background-position: -64px -176px;
}

.ui-icon-battery-2 { background-position: -80px -176px;
}

.ui-icon-battery-3 { background-position: -96px -176px;
}

.ui-icon-circle-plus { background-position: 0 -192px;
}

.ui-icon-circle-minus { background-position: -16px -192px;
}

.ui-icon-circle-close { background-position: -32px -192px;
}

.ui-icon-circle-triangle-e { background-position: -48px -192px;
}

.ui-icon-circle-triangle-s { background-position: -64px -192px;
}

.ui-icon-circle-triangle-w { background-position: -80px -192px;
}

.ui-icon-circle-triangle-n { background-position: -96px -192px;
}

.ui-icon-circle-arrow-e { background-position: -112px -192px;
}

.ui-icon-circle-arrow-s { background-position: -128px -192px;
}

.ui-icon-circle-arrow-w { background-position: -144px -192px;
}

.ui-icon-circle-arrow-n { background-position: -160px -192px;
}

.ui-icon-circle-zoomin { background-position: -176px -192px;
}

.ui-icon-circle-zoomout { background-position: -192px -192px;
}

.ui-icon-circle-check { background-position: -208px -192px;
}

.ui-icon-circlesmall-plus { background-position: 0 -208px;
}

.ui-icon-circlesmall-minus { background-position: -16px -208px;
}

.ui-icon-circlesmall-close { background-position: -32px -208px;
}

.ui-icon-squaresmall-plus { background-position: -48px -208px;
}

.ui-icon-squaresmall-minus { background-position: -64px -208px;
}

.ui-icon-squaresmall-close { background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical { background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal { background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical { background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal { background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se { background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/

/* Corner radius */

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 0;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 0;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 0;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 0;
}

/* Overlays */

.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}

.ui-widget-shadow {
  box-shadow: 0px 0px 0px #666666;
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker-calendar td a[data-cost] {
  position: relative;
}

.ui-datepicker-calendar td a[data-cost]::after {
  content: '\$' attr(data-cost);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}

.ui-datepicker {
  width: 100%;
}

.ui-datepicker-calendar td {
  height: 65px;
  vertical-align: text-top;
  background-color: #000000;
}

.ui-datepicker-calendar td.ui-datepicker-other-month {
  background-color: #dddddd;
}

.ui-datepicker-calendar td a {
  color: #ffffff !important;
  text-shadow: none !important;
}

.ui-datepicker-calendar td.ui-datepicker-unselectable span {
  text-shadow: none !important;
}

#divAuthorizeNetPopup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.82);
  z-index: 99;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupOuter {
  border-width: 1px;
  border-style: solid;
  border-color: #eeeeee;
  position: relative;
  background-color: #fafafa;
  max-width: 680px;
  width: 95%;
  max-height: 350px;
  height: 70%;
  border-radius: 4px;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupTop {
  padding: 15px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupClose a {
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: inline-block;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupInner {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #eeeeee transparent transparent transparent;
  height: calc(100% - 56px);
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupBottom {
  height: 30px;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupLogo {
  position: absolute;
  right: 9px;
  bottom: 4px;
  width: 200px;
  height: 25px;
  background-image: url('content/powered_simple.png');
}

.AuthorizeNetPopupSimpleTheme .AuthorizeNetPopupOuter {
  border: 1px solid #585858;
  background-color: #ffffff;
}

#iframeAuthorizeNet {
  height: 100%;
  width: 100%;
}

/* Culinary Center */

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0px;
}

.top-2 {
  top: 0.5rem;
}

.top-10 {
  top: 2.5rem;
}

.top-24 {
  top: 6rem;
}

.right-0 {
  right: 0px;
}

.right-5 {
  right: 1.25rem;
}

.right-10 {
  right: 2.5rem;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-span-7 {
  grid-column: span 7 / span 7;
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

.col-span-9 {
  grid-column: span 9 / span 9;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.row-start-2 {
  grid-row-start: 2;
}

.m-0 {
  margin: 0px;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mt-44 {
  margin-top: 11rem;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.-mt-3 {
  margin-top: -0.75rem;
}

.-mt-12 {
  margin-top: -3rem;
}

.-mt-14 {
  margin-top: -3.5rem;
}

.-mt-20 {
  margin-top: -5rem;
}

.-mt-48 {
  margin-top: -12rem;
}

.mr-0 {
  margin-right: 0px;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.-mr-1 {
  margin-right: -0.25rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-36 {
  margin-bottom: 9rem;
}

.-mb-6 {
  margin-bottom: -1.5rem;
}

.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-auto {
  margin-left: auto;
}

.-ml-10 {
  margin-left: -2.5rem;
}

.-ml-20 {
  margin-left: -5rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.h-0 {
  height: 0px;
}

.h-12 {
  height: 3rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-36 {
  height: 9rem;
}

.h-44 {
  height: 11rem;
}

.h-48 {
  height: 12rem;
}

.h-56 {
  height: 14rem;
}

.h-60 {
  height: 15rem;
}

.h-64 {
  height: 16rem;
}

.h-80 {
  height: 20rem;
}

.h-96 {
  height: 24rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.w-0 {
  width: 0px;
}

.w-12 {
  width: 3rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-28 {
  width: 7rem;
}

.w-36 {
  width: 9rem;
}

.w-40 {
  width: 10rem;
}

.w-48 {
  width: 12rem;
}

.w-52 {
  width: 13rem;
}

.w-56 {
  width: 14rem;
}

.w-72 {
  width: 18rem;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w-min {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-full {
  max-width: 100%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.resize {
  resize: both;
}

.list-inside {
  list-style-position: inside;
}

.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-56 {
  gap: 14rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--tw-space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}

.space-y-20 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(5rem * var(--tw-space-y-reverse));
}

.divide-x > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-black > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-divide-opacity));
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.break-words {
  overflow-wrap: break-word;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.border-dotted {
  border-style: dotted;
}

.border-none {
  border-style: none;
}

.border-transparent {
  border-color: transparent;
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.border-gray-darkest {
  --tw-border-opacity: 1;
  border-color: rgba(46, 46, 46, var(--tw-border-opacity));
}

.border-gray-base {
  --tw-border-opacity: 1;
  border-color: rgba(164, 164, 164, var(--tw-border-opacity));
}

.border-gray-light {
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
}

.border-gray-lightest {
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity));
}

.border-internal-eggplant-darkest {
  --tw-border-opacity: 1;
  border-color: rgba(32, 23, 71, var(--tw-border-opacity));
}

.border-internal-eggplant {
  --tw-border-opacity: 1;
  border-color: rgba(121, 116, 145, var(--tw-border-opacity));
}

.border-internal-eggplant-lightest {
  --tw-border-opacity: 1;
  border-color: rgba(210, 209, 221, var(--tw-border-opacity));
}

.border-error {
  --tw-border-opacity: 1;
  border-color: rgba(239, 88, 84, var(--tw-border-opacity));
}

.hover\:border-black:hover {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.hover\:border-internal-eggplant-dark:hover {
  --tw-border-opacity: 1;
  border-color: rgba(77, 69, 108, var(--tw-border-opacity));
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity));
}

.bg-gray-lightest {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.bg-internal-eggplant-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(77, 69, 108, var(--tw-bg-opacity));
}

.bg-internal-eggplant-lightest {
  --tw-bg-opacity: 1;
  background-color: rgba(210, 209, 221, var(--tw-bg-opacity));
}

.bg-internal-eggplant-offwhite {
  --tw-bg-opacity: 1;
  background-color: rgba(241, 241, 248, var(--tw-bg-opacity));
}

.bg-success-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(62, 108, 89, var(--tw-bg-opacity));
}

.bg-success {
  --tw-bg-opacity: 1;
  background-color: rgba(104, 180, 149, var(--tw-bg-opacity));
}

.bg-warning-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 118, 0, var(--tw-bg-opacity));
}

.bg-error-light {
  --tw-bg-opacity: 1;
  background-color: rgba(252, 222, 221, var(--tw-bg-opacity));
}

.hover\:bg-internal-eggplant:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(121, 116, 145, var(--tw-bg-opacity));
}

.bg-none {
  background-image: none;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-14 {
  padding: 3.5rem;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-20 {
  padding-right: 5rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.align-top {
  vertical-align: top;
}

.font-serif {
  font-family: Playfair Display, Serif;
}

.font-sans {
  font-family: Open Sans, Sans-Serif;
}

.font-lato {
  font-family: Lato, Sans-Serif;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.{
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.leading-8 {
  line-height: 2rem;
}

.leading-9 {
  line-height: 2.25rem;
}

.leading-10 {
  line-height: 2.5rem;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-dark {
  --tw-text-opacity: 1;
  color: rgba(73, 73, 73, var(--tw-text-opacity));
}

.text-gray-base {
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
}

.text-gray-light {
  --tw-text-opacity: 1;
  color: rgba(232, 232, 232, var(--tw-text-opacity));
}

.text-internal-eggplant-dark {
  --tw-text-opacity: 1;
  color: rgba(77, 69, 108, var(--tw-text-opacity));
}

.text-success {
  --tw-text-opacity: 1;
  color: rgba(104, 180, 149, var(--tw-text-opacity));
}

.text-warning {
  --tw-text-opacity: 1;
  color: rgba(249, 218, 117, var(--tw-text-opacity));
}

.text-error-dark {
  --tw-text-opacity: 1;
  color: rgba(167, 62, 59, var(--tw-text-opacity));
}

.text-error {
  --tw-text-opacity: 1;
  color: rgba(239, 88, 84, var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.hover\:text-gray-600:hover {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.hover\:text-gray-dark:hover {
  --tw-text-opacity: 1;
  color: rgba(73, 73, 73, var(--tw-text-opacity));
}

.hover\:text-gray-base:hover {
  --tw-text-opacity: 1;
  color: rgba(164, 164, 164, var(--tw-text-opacity));
}

.hover\:text-internal-eggplant:hover {
  --tw-text-opacity: 1;
  color: rgba(121, 116, 145, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.opacity-0 {
  opacity: 0;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-100 {
  opacity: 1;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

.shadow-sm {
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-sm:hover {
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.filter {
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur {
  --tw-blur: blur(8px);
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media (min-width: 640px) {
  .sm\:order-first {
    order: -9999;
  }

  .sm\:order-last {
    order: 9999;
  }

  .sm\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .sm\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .sm\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .sm\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:mt-36 {
    margin-top: 9rem;
  }

  .sm\:mb-0 {
    margin-bottom: 0px;
  }

  .sm\:ml-2 {
    margin-left: 0.5rem;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline-block {
    display: inline-block;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-20 {
    height: 5rem;
  }

  .sm\:h-96 {
    height: 24rem;
  }

  .sm\:w-20 {
    width: 5rem;
  }

  .sm\:w-96 {
    width: 24rem;
  }

  .sm\:w-8\/12 {
    width: 66.666667%;
  }

  .sm\:w-9\/12 {
    width: 75%;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:gap-10 {
    gap: 2.5rem;
  }

  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:col-span-11 {
    grid-column: span 11 / span 11;
  }

  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .md\:row-start-1 {
    grid-row-start: 1;
  }

  .md\:float-right {
    float: right;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mt-40 {
    margin-top: 10rem;
  }

  .md\:mr-4 {
    margin-right: 1rem;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-36 {
    height: 9rem;
  }

  .md\:h-48 {
    height: 12rem;
  }

  .md\:w-28 {
    width: 7rem;
  }

  .md\:w-36 {
    width: 9rem;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:w-7\/12 {
    width: 58.333333%;
  }

  .md\:w-8\/12 {
    width: 66.666667%;
  }

  .md\:max-w-md {
    max-width: 28rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-10 {
    gap: 2.5rem;
  }

  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:border-2 {
    border-width: 2px;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-16 {
    padding: 4rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:shadow-sm {
    --tw-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:order-3 {
    order: 3;
  }

  .lg\:order-first {
    order: -9999;
  }

  .lg\:order-last {
    order: 9999;
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .lg\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .lg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem;
  }

  .lg\:mt-32 {
    margin-top: 8rem;
  }

  .lg\:mt-52 {
    margin-top: 13rem;
  }

  .lg\:mr-8 {
    margin-right: 2rem;
  }

  .lg\:mr-20 {
    margin-right: 5rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem;
  }

  .lg\:ml-20 {
    margin-left: 5rem;
  }

  .lg\:-ml-20 {
    margin-left: -5rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-44 {
    height: 11rem;
  }

  .lg\:h-56 {
    height: 14rem;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:w-56 {
    width: 14rem;
  }

  .lg\:w-5\/12 {
    width: 41.666667%;
  }

  .lg\:w-6\/12 {
    width: 50%;
  }

  .lg\:w-7\/12 {
    width: 58.333333%;
  }

  .lg\:w-10\/12 {
    width: 83.333333%;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-20 {
    gap: 5rem;
  }

  .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse));
  }

  .lg\:border-r {
    border-right-width: 1px;
  }

  .lg\:border-l {
    border-left-width: 1px;
  }

  .lg\:border-black {
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:bg-gray-lightest {
    --tw-bg-opacity: 1;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:p-14 {
    padding: 3.5rem;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:pr-14 {
    padding-right: 3.5rem;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem;
  }

  .lg\:pl-14 {
    padding-left: 3.5rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:leading-loose {
    line-height: 2;
  }
}

@media (min-width: 1280px) {
  .xl\:right-8 {
    right: 2rem;
  }

  .xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .xl\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .xl\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .xl\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xl\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .xl\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .xl\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .xl\:ml-36 {
    margin-left: 9rem;
  }

  .xl\:block {
    display: block;
  }

  .xl\:inline {
    display: inline;
  }

  .xl\:grid {
    display: grid;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:h-56 {
    height: 14rem;
  }

  .xl\:h-72 {
    height: 18rem;
  }

  .xl\:h-80 {
    height: 20rem;
  }

  .xl\:h-full {
    height: 100%;
  }

  .xl\:w-56 {
    width: 14rem;
  }

  .xl\:w-96 {
    width: 24rem;
  }

  .xl\:w-5\/12 {
    width: 41.666667%;
  }

  .xl\:max-w-5xl {
    max-width: 64rem;
  }

  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xl\:items-center {
    align-items: center;
  }

  .xl\:gap-10 {
    gap: 2.5rem;
  }

  .xl\:gap-20 {
    gap: 5rem;
  }

  .xl\:gap-56 {
    gap: 14rem;
  }

  .xl\:p-10 {
    padding: 2.5rem;
  }

  .xl\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
}