/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*:where(#modify-root,#modify-root *),
:where(#modify-root,#modify-root *)::before,
:where(#modify-root,#modify-root *)::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

:where(#modify-root,#modify-root *)::before,
:where(#modify-root,#modify-root *)::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

#modify-root {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

#modify-root {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
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)
3. Ensure horizontal rules are visible by default.
*/

hr:where(#modify-root,#modify-root *) {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]):where(#modify-root,#modify-root *) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1:where(#modify-root,#modify-root *),
h2:where(#modify-root,#modify-root *),
h3:where(#modify-root,#modify-root *),
h4:where(#modify-root,#modify-root *),
h5:where(#modify-root,#modify-root *),
h6:where(#modify-root,#modify-root *) {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a:where(#modify-root,#modify-root *) {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b:where(#modify-root,#modify-root *),
strong:where(#modify-root,#modify-root *) {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code:where(#modify-root,#modify-root *),
kbd:where(#modify-root,#modify-root *),
samp:where(#modify-root,#modify-root *),
pre:where(#modify-root,#modify-root *) {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small:where(#modify-root,#modify-root *) {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub:where(#modify-root,#modify-root *),
sup:where(#modify-root,#modify-root *) {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub:where(#modify-root,#modify-root *) {
  bottom: -0.25em;
}

sup:where(#modify-root,#modify-root *) {
  top: -0.5em;
}

/*
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)
3. Remove gaps between table borders by default.
*/

table:where(#modify-root,#modify-root *) {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button:where(#modify-root,#modify-root *),
input:where(#modify-root,#modify-root *),
optgroup:where(#modify-root,#modify-root *),
select:where(#modify-root,#modify-root *),
textarea:where(#modify-root,#modify-root *) {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button:where(#modify-root,#modify-root *),
select:where(#modify-root,#modify-root *) {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button:where(#modify-root,#modify-root *),
input:where([type='button']):where(#modify-root,#modify-root *),
input:where([type='reset']):where(#modify-root,#modify-root *),
input:where([type='submit']):where(#modify-root,#modify-root *) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring:where(#modify-root,#modify-root *) {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid:where(#modify-root,#modify-root *) {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress:where(#modify-root,#modify-root *) {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

:where(#modify-root,#modify-root *) ::-webkit-inner-spin-button,
:where(#modify-root,#modify-root *) ::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search']:where(#modify-root,#modify-root *) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

:where(#modify-root,#modify-root *) ::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

:where(#modify-root,#modify-root *) ::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary:where(#modify-root,#modify-root *) {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote:where(#modify-root,#modify-root *),
dl:where(#modify-root,#modify-root *),
dd:where(#modify-root,#modify-root *),
h1:where(#modify-root,#modify-root *),
h2:where(#modify-root,#modify-root *),
h3:where(#modify-root,#modify-root *),
h4:where(#modify-root,#modify-root *),
h5:where(#modify-root,#modify-root *),
h6:where(#modify-root,#modify-root *),
hr:where(#modify-root,#modify-root *),
figure:where(#modify-root,#modify-root *),
p:where(#modify-root,#modify-root *),
pre:where(#modify-root,#modify-root *) {
  margin: 0;
}

fieldset:where(#modify-root,#modify-root *) {
  margin: 0;
  padding: 0;
}

legend:where(#modify-root,#modify-root *) {
  padding: 0;
}

ol:where(#modify-root,#modify-root *),
ul:where(#modify-root,#modify-root *),
menu:where(#modify-root,#modify-root *) {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog:where(#modify-root,#modify-root *) {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea:where(#modify-root,#modify-root *) {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

:where(#modify-root,#modify-root *) input::-moz-placeholder, :where(#modify-root,#modify-root *) textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

:where(#modify-root,#modify-root *) input::placeholder,
:where(#modify-root,#modify-root *) textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button:where(#modify-root,#modify-root *),
[role="button"]:where(#modify-root,#modify-root *) {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled:where(#modify-root,#modify-root *) {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img:where(#modify-root,#modify-root *),
svg:where(#modify-root,#modify-root *),
video:where(#modify-root,#modify-root *),
canvas:where(#modify-root,#modify-root *),
audio:where(#modify-root,#modify-root *),
iframe:where(#modify-root,#modify-root *),
embed:where(#modify-root,#modify-root *),
object:where(#modify-root,#modify-root *) {
  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:where(#modify-root,#modify-root *),
video:where(#modify-root,#modify-root *) {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(#modify-root,#modify-root *) {
  display: none;
}
  #modify-root,
  .ReactModal__Overlay {
    font-family: brother-1816, sans-serif;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    flex: 1;

    p {
      line-height: normal;
      margin: 0;
    }

    .react-calendar {
    width: 100%;
  }

    .react-calendar {
    width: 100%;
  }

    .react-calendar {
    border-width: 1px;
  }

    .react-calendar {
    --tw-border-opacity: 1;
    border-color: rgb(224 224 224 / var(--tw-border-opacity));
  }

    .react-calendar {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 249 / var(--tw-bg-opacity));
  }

    .react-calendar {
    padding: 0.75rem;
  }

    .react-calendar {
      .react-calendar__navigation {
      margin-bottom: 0px;
    }
      .react-calendar__navigation__arrow {
      --tw-bg-opacity: 1;
      background-color: rgb(254 252 249 / var(--tw-bg-opacity));
    }
      .react-calendar__navigation__arrow:disabled {
      --tw-bg-opacity: 1;
      background-color: rgb(254 252 249 / var(--tw-bg-opacity));
    }
      .react-calendar__navigation__arrow:disabled {
      opacity: 0.5;
    }
      .react-calendar__navigation__arrow {
        &:focus {
          outline: auto 2px -webkit-focus-ring-color;
        }
      }
      .react-calendar__navigation__label {
      --tw-bg-opacity: 1;
      background-color: rgb(254 252 249 / var(--tw-bg-opacity));
    }
      .react-calendar__navigation__label {
      font-family: romie;
    }
      .react-calendar__navigation__label {
      font-size: 21px;
    }
      .react-calendar__navigation__label {
      font-weight: 300;
    }
      .react-calendar__navigation__label {
      --tw-text-opacity: 1;
      color: rgb(69 2 6 / var(--tw-text-opacity));
    }
      .react-calendar__navigation__label:disabled {
      --tw-bg-opacity: 1;
      background-color: rgb(254 252 249 / var(--tw-bg-opacity));
    }
      .react-calendar__navigation__prev-button,
      .react-calendar__navigation__next-button {
      display: flex;
    }
      .react-calendar__navigation__prev-button,
      .react-calendar__navigation__next-button {
      align-items: center;
    }
      .react-calendar__navigation__prev-button,
      .react-calendar__navigation__next-button {
      justify-content: center;
    }
      .react-calendar__navigation__prev2-button,
      .react-calendar__navigation__next2-button {
      display: none;
    }
      .react-calendar__month-view__weekdays__weekday {
      font-family: brother-1816;
    }
      .react-calendar__month-view__weekdays__weekday {
      font-size: 10px;
    }
      .react-calendar__month-view__weekdays__weekday {
      font-weight: 400;
    }
      .react-calendar__month-view__weekdays__weekday {
      text-transform: uppercase;
    }
      .react-calendar__month-view__weekdays__weekday {
      line-height: .75rem;
    }
      .react-calendar__month-view__weekdays__weekday {
      --tw-text-opacity: 1;
      color: rgb(69 2 6 / var(--tw-text-opacity));
    }
      .react-calendar__month-view__weekdays__weekday {
        abbr {
        text-decoration-line: none;
      }
      }
      .react-calendar__month-view__days {
      border-width: 0.5px;
    }
      .react-calendar__month-view__days {
      --tw-border-opacity: 1;
      border-color: rgb(251 240 223 / var(--tw-border-opacity));
    }
      .react-calendar__tile,
      .disabled-tile {
      --tw-bg-opacity: 1;
      background-color: rgb(251 245 234 / var(--tw-bg-opacity));
    }
      .react-calendar__tile,
      .disabled-tile {
      padding: 0px;
    }
      .react-calendar__tile,
      .disabled-tile {
      font-family: brother-1816;
    }
      .react-calendar__tile,
      .disabled-tile {
      --tw-text-opacity: 1;
      color: rgb(69 2 6 / var(--tw-text-opacity));
    }
      .react-calendar__tile:hover,
      .disabled-tile:hover {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile:hover,
      .disabled-tile:hover {
      --tw-text-opacity: 1;
      color: rgb(254 252 249 / var(--tw-text-opacity));
    }
      .react-calendar__tile:focus,
      .disabled-tile:focus {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile:focus,
      .disabled-tile:focus {
      --tw-text-opacity: 1;
      color: rgb(254 252 249 / var(--tw-text-opacity));
    }
      .react-calendar__tile:disabled,
      .disabled-tile:disabled {
      --tw-bg-opacity: 1;
      background-color: rgb(252 248 240 / var(--tw-bg-opacity));
    }
      .react-calendar__tile:disabled,
      .disabled-tile:disabled {
      opacity: 0.45;
    }
      .react-calendar__tile:hover:disabled,
      .disabled-tile:hover:disabled {
      --tw-bg-opacity: 1;
      background-color: rgb(252 248 240 / var(--tw-bg-opacity));
    }
      .react-calendar__tile:hover:disabled,
      .disabled-tile:hover:disabled {
      --tw-text-opacity: 1 !important;
      color: rgb(69 2 6 / var(--tw-text-opacity)) !important;
    }
      @media (min-width: 1024px) {

      .react-calendar__tile,
      .disabled-tile {
        height: 60px;
      }
    }
      .react-calendar__tile,
      .disabled-tile {
        abbr {
        display: none;
      }
        abbr {
        font-size: 10px;
      }
        p {
        font-size: 11px;
      }
        p {
        font-weight: 500;
      }
      }
      .disabled-tile {
      --tw-bg-opacity: 1;
      background-color: rgb(252 248 240 / var(--tw-bg-opacity));
    }
      .disabled-tile {
      padding: 0px;
    }
      .disabled-tile {
      font-family: brother-1816;
    }
      .disabled-tile {
      --tw-text-opacity: 1;
      color: rgb(69 2 6 / var(--tw-text-opacity));
    }
      .disabled-tile {
      opacity: 0.45;
    }
      .disabled-tile:hover {
      --tw-bg-opacity: 1;
      background-color: rgb(252 248 240 / var(--tw-bg-opacity));
    }
      .disabled-tile:hover {
      --tw-text-opacity: 1 !important;
      color: rgb(69 2 6 / var(--tw-text-opacity)) !important;
    }
      .disabled-tile:focus {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .disabled-tile:focus {
      --tw-text-opacity: 1;
      color: rgb(254 252 249 / var(--tw-text-opacity));
    }
      .disabled-tile {
        abbr {
        display: none;
      }
        abbr {
        font-size: 10px;
      }
        p {
        font-size: 11px;
      }
        p {
        font-weight: 500;
      }
      }
      .react-calendar__tile--range.react-calendar__tile--active,
      .react-calendar__tile--range.react-calendar__tile--hasActive {
      --tw-bg-opacity: 1;
      background-color: rgb(69 2 6 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--range.react-calendar__tile--active,
      .react-calendar__tile--range.react-calendar__tile--hasActive {
      --tw-text-opacity: 1;
      color: rgb(254 252 249 / var(--tw-text-opacity));
    }
      .react-calendar__tile--range.react-calendar__tile--active:hover,
      .react-calendar__tile--range.react-calendar__tile--hasActive:hover {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--range.react-calendar__tile--active:focus,
      .react-calendar__tile--range.react-calendar__tile--hasActive:focus {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--range.react-calendar__tile--active,
      .react-calendar__tile--range.react-calendar__tile--hasActive {
        abbr,
        .calendar-day-price {
        --tw-text-opacity: 1;
        color: rgb(254 252 249 / var(--tw-text-opacity));
      }
      }
      .react-calendar__tile--range {
      --tw-bg-opacity: 1;
      background-color: rgb(69 2 6 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--range {
      --tw-text-opacity: 1;
      color: rgb(254 252 249 / var(--tw-text-opacity));
    }
      .react-calendar__tile--range:hover {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--range:focus {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--range {
        abbr {
        font-size: 12px;
      }
        .calendar-day-price {
        font-size: 12px;
      }
        .calendar-day-price {
        font-weight: 700;
      }
      }
      .react-calendar__tile--rangeEnd {
      --tw-bg-opacity: 1;
      background-color: rgb(69 2 6 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--rangeEnd:hover {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--rangeEnd:focus {
      --tw-bg-opacity: 1;
      background-color: rgb(164 4 4 / var(--tw-bg-opacity));
    }
      .react-calendar__tile--rangeEnd .calendar-day-price {
      --tw-text-opacity: 1 !important;
      color: rgb(69 2 6 / var(--tw-text-opacity)) !important;
    }
      .react-calendar__tile--rangeEnd:hover .calendar-day-price {
      --tw-text-opacity: 1 !important;
      color: rgb(254 252 249 / var(--tw-text-opacity)) !important;
    }
      .react-calendar__tile--rangeEnd:focus .calendar-day-price {
      --tw-text-opacity: 1 !important;
      color: rgb(254 252 249 / var(--tw-text-opacity)) !important;
    }
      .react-calendar__tile--rangeEnd {
        abbr {
        font-size: 12px;
      }
        .calendar-day-price {
        font-size: 12px;
      }
        .calendar-day-price {
        font-weight: 700;
      }
      }
    }
  }

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --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;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --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;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.-left-\[82px\] {
  left: -82px;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-4 {
  bottom: 1rem;
}
.left-1\.5 {
  left: 0.375rem;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.left-4 {
  left: 1rem;
}
.right-\[8px\] {
  right: 8px;
}
.top-0 {
  top: 0px;
}
.top-1\.5 {
  top: 0.375rem;
}
.top-1\/2 {
  top: 50%;
}
.top-\[15px\] {
  top: 15px;
}
.z-10 {
  z-index: 10;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[1000\] {
  z-index: 1000;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.-my-1 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
.mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.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-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.-mb-6 {
  margin-bottom: -1.5rem;
}
.-ml-0\.5 {
  margin-left: -0.125rem;
}
.-ml-2 {
  margin-left: -0.5rem;
}
.-mt-0\.5 {
  margin-top: -0.125rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-2\.5 {
  margin-bottom: 0.625rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.ml-0\.5 {
  margin-left: 0.125rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-\[5px\] {
  margin-left: 5px;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-\[3px\] {
  margin-right: 3px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[3px\] {
  margin-top: 3px;
}
.mt-auto {
  margin-top: auto;
}
.\!block {
  display: block !important;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.size-2\.5 {
  width: 0.625rem;
  height: 0.625rem;
}
.size-3 {
  width: 0.75rem;
  height: 0.75rem;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.size-8 {
  width: 2rem;
  height: 2rem;
}
.size-\[10\.5px\] {
  width: 10.5px;
  height: 10.5px;
}
.size-\[10px\] {
  width: 10px;
  height: 10px;
}
.size-\[15px\] {
  width: 15px;
  height: 15px;
}
.size-\[16px\] {
  width: 16px;
  height: 16px;
}
.size-\[17px\] {
  width: 17px;
  height: 17px;
}
.size-\[18px\] {
  width: 18px;
  height: 18px;
}
.size-\[19px\] {
  width: 19px;
  height: 19px;
}
.size-\[22px\] {
  width: 22px;
  height: 22px;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-8 {
  height: 2rem;
}
.h-\[15px\] {
  height: 15px;
}
.h-\[16px\] {
  height: 16px;
}
.h-\[18px\] {
  height: 18px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[242px\] {
  height: 242px;
}
.h-\[250px\] {
  height: 250px;
}
.h-\[284px\] {
  height: 284px;
}
.h-\[300px\] {
  height: 300px;
}
.h-\[38px\] {
  height: 38px;
}
.h-\[52px\] {
  height: 52px;
}
.h-\[6\.5px\] {
  height: 6.5px;
}
.h-\[7px\] {
  height: 7px;
}
.h-\[8px\] {
  height: 8px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.max-h-\[100\%\] {
  max-height: 100%;
}
.max-h-\[200px\] {
  max-height: 200px;
}
.max-h-\[95vh\] {
  max-height: 95vh;
}
.min-h-\[24px\] {
  min-height: 24px;
}
.w-10 {
  width: 2.5rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-\[10\.5px\] {
  width: 10.5px;
}
.w-\[11\.5px\] {
  width: 11.5px;
}
.w-\[135px\] {
  width: 135px;
}
.w-\[15px\] {
  width: 15px;
}
.w-\[18px\] {
  width: 18px;
}
.w-\[19px\] {
  width: 19px;
}
.w-\[1px\] {
  width: 1px;
}
.w-\[240px\] {
  width: 240px;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[36px\] {
  width: 36px;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[90px\] {
  width: 90px;
}
.w-full {
  width: 100%;
}
.min-w-\[205px\] {
  min-width: 205px;
}
.max-w-\[1240px\] {
  max-width: 1240px;
}
.max-w-\[260px\] {
  max-width: 260px;
}
.max-w-\[350px\] {
  max-width: 350px;
}
.max-w-\[360px\] {
  max-width: 360px;
}
.max-w-\[370px\] {
  max-width: 370px;
}
.max-w-\[480px\] {
  max-width: 480px;
}
.max-w-\[525px\] {
  max-width: 525px;
}
.max-w-\[785px\] {
  max-width: 785px;
}
.max-w-\[960px\] {
  max-width: 960px;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-\[0\.8\] {
  flex: 0.8;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), 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));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), 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));
}
.translate-x-\[21px\] {
  --tw-translate-x: 21px;
  transform: translate(var(--tw-translate-x), 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));
}
.translate-x-\[2px\] {
  --tw-translate-x: 2px;
  transform: translate(var(--tw-translate-x), 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));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), 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));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), 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));
}
.rotate-\[270deg\] {
  --tw-rotate: 270deg;
  transform: translate(var(--tw-translate-x), 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));
}
.transform {
  transform: translate(var(--tw-translate-x), 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));
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.resize {
  resize: both;
}
.list-disc {
  list-style-type: disc;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.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-1\.5 {
  gap: 0.375rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-\[30px\] {
  gap: 30px;
}
.gap-\[3px\] {
  gap: 3px;
}
.gap-\[8px\] {
  gap: 8px;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.self-start {
  align-self: flex-start;
}
.self-center {
  align-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.\!rounded-sm {
  border-radius: 0.125rem !important;
}
.rounded-\[32px\] {
  border-radius: 32px;
}
.rounded-\[3px\] {
  border-radius: 3px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-\[0\.5px\] {
  border-width: 0.5px;
}
.border-x {
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-0 {
  border-bottom-width: 0px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-\[\#B9B8B8\] {
  --tw-border-opacity: 1;
  border-color: rgb(185 184 184 / var(--tw-border-opacity));
}
.border-blue {
  --tw-border-opacity: 1;
  border-color: rgb(10 17 90 / var(--tw-border-opacity));
}
.border-blue2 {
  --tw-border-opacity: 1;
  border-color: rgb(69 76 123 / var(--tw-border-opacity));
}
.border-border-brown {
  border-color: rgba(226, 200, 159, 0.40);
}
.border-burgundy {
  --tw-border-opacity: 1;
  border-color: rgb(69 2 6 / var(--tw-border-opacity));
}
.border-crema {
  --tw-border-opacity: 1;
  border-color: rgb(226 200 159 / var(--tw-border-opacity));
}
.border-crema\/40 {
  border-color: rgb(226 200 159 / 0.4);
}
.border-gray5 {
  --tw-border-opacity: 1;
  border-color: rgb(224 224 224 / var(--tw-border-opacity));
}
.border-red {
  --tw-border-opacity: 1;
  border-color: rgb(164 4 4 / var(--tw-border-opacity));
}
.border-stone {
  --tw-border-opacity: 1;
  border-color: rgb(251 240 223 / var(--tw-border-opacity));
}
.\!bg-\[rgb\(55\2c 2\2c 5\2c 0\.95\)\] {
  background-color: rgb(55,2,5,0.95) !important;
}
.\!bg-crema {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(226 200 159 / var(--tw-bg-opacity)) !important;
}
.\!bg-gray1 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(254 252 249 / var(--tw-bg-opacity)) !important;
}
.\!bg-white {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#F3E5D0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(243 229 208 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(45 42 38 / var(--tw-bg-opacity));
}
.bg-black\/75 {
  background-color: rgb(45 42 38 / 0.75);
}
.bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(10 17 90 / var(--tw-bg-opacity));
}
.bg-burgundy {
  --tw-bg-opacity: 1;
  background-color: rgb(69 2 6 / var(--tw-bg-opacity));
}
.bg-crema {
  --tw-bg-opacity: 1;
  background-color: rgb(226 200 159 / var(--tw-bg-opacity));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.bg-gray1 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 249 / var(--tw-bg-opacity));
}
.bg-gray4 {
  --tw-bg-opacity: 1;
  background-color: rgb(79 79 79 / var(--tw-bg-opacity));
}
.bg-green {
  --tw-bg-opacity: 1;
  background-color: rgb(27 134 83 / var(--tw-bg-opacity));
}
.bg-light-yellow {
  --tw-bg-opacity: 1;
  background-color: rgb(252 245 233 / var(--tw-bg-opacity));
}
.bg-red {
  --tw-bg-opacity: 1;
  background-color: rgb(164 4 4 / var(--tw-bg-opacity));
}
.bg-stone {
  --tw-bg-opacity: 1;
  background-color: rgb(251 240 223 / var(--tw-bg-opacity));
}
.bg-stone100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 253 251 / var(--tw-bg-opacity));
}
.bg-stone30 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 245 234 / var(--tw-bg-opacity));
}
.bg-stone300 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 241 227 / var(--tw-bg-opacity));
}
.bg-stone80 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 249 / var(--tw-bg-opacity));
}
.bg-surface-background {
  --tw-bg-opacity: 1;
  background-color: rgb(253 247 239 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-opacity-60 {
  --tw-bg-opacity: 0.6;
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-gradient-from: rgba(0,0,0,0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[rgba\(0\2c 0\2c 0\2c 1\)\] {
  --tw-gradient-from: rgba(0,0,0,1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[rgba\(0\2c 0\2c 0\2c 0\)\] {
  --tw-gradient-to: rgba(0,0,0,0) var(--tw-gradient-to-position);
}
.fill-burgundy {
  fill: #450206;
}
.fill-gray-400 {
  fill: #9ca3af;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.\!p-0 {
  padding: 0px !important;
}
.p-0\.5 {
  padding: 0.125rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-3\.5 {
  padding: 0.875rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[3px\] {
  padding: 3px;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.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-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-\[18px\] {
  padding-left: 18px;
  padding-right: 18px;
}
.px-\[23px\] {
  padding-left: 23px;
  padding-right: 23px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.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-\[11px\] {
  padding-top: 11px;
  padding-bottom: 11px;
}
.py-\[9\.5px\] {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-\[18px\] {
  padding-bottom: 18px;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-\[18px\] {
  padding-left: 18px;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-body {
  font-family: brother-1816;
}
.font-heading {
  font-family: romie;
}
.\!text-\[10px\] {
  font-size: 10px !important;
}
.\!text-\[12px\] {
  font-size: 12px !important;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[20px\] {
  font-size: 20px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[26px\] {
  font-size: 26px;
}
.text-\[32px\] {
  font-size: 32px;
}
.text-\[9px\] {
  font-size: 9px;
}
.\!font-medium {
  font-weight: 500 !important;
}
.\!font-normal {
  font-weight: 400 !important;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-4 {
  line-height: 1rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-\[12px\] {
  line-height: 12px;
}
.leading-\[13px\] {
  line-height: 13px;
}
.leading-\[14px\] {
  line-height: 14px;
}
.leading-\[15px\] {
  line-height: 15px;
}
.leading-\[17\.5px\] {
  line-height: 17.5px;
}
.leading-\[18px\] {
  line-height: 18px;
}
.leading-\[21px\] {
  line-height: 21px;
}
.leading-\[26px\] {
  line-height: 26px;
}
.leading-\[32px\] {
  line-height: 32px;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[\.24px\] {
  letter-spacing: .24px;
}
.tracking-\[\.25px\] {
  letter-spacing: .25px;
}
.tracking-\[\.28px\] {
  letter-spacing: .28px;
}
.tracking-\[\.2px\] {
  letter-spacing: .2px;
}
.tracking-\[\.32px\] {
  letter-spacing: .32px;
}
.tracking-\[\.36px\] {
  letter-spacing: .36px;
}
.tracking-\[\.3px\] {
  letter-spacing: .3px;
}
.tracking-\[\.42px\] {
  letter-spacing: .42px;
}
.tracking-\[\.45px\] {
  letter-spacing: .45px;
}
.tracking-\[\.54px\] {
  letter-spacing: .54px;
}
.tracking-\[\.55px\] {
  letter-spacing: .55px;
}
.tracking-\[\.5px\] {
  letter-spacing: .5px;
}
.tracking-\[\.6px\] {
  letter-spacing: .6px;
}
.tracking-\[\.7px\] {
  letter-spacing: .7px;
}
.tracking-\[1\.1px\] {
  letter-spacing: 1.1px;
}
.tracking-\[1\.2px\] {
  letter-spacing: 1.2px;
}
.tracking-\[1\.44px\] {
  letter-spacing: 1.44px;
}
.tracking-\[1\.8px\] {
  letter-spacing: 1.8px;
}
.tracking-\[1px\] {
  letter-spacing: 1px;
}
.tracking-\[3px\] {
  letter-spacing: 3px;
}
.\!text-burgundy {
  --tw-text-opacity: 1 !important;
  color: rgb(69 2 6 / var(--tw-text-opacity)) !important;
}
.\!text-palazzo-blue {
  --tw-text-opacity: 1 !important;
  color: rgb(7 31 54 / var(--tw-text-opacity)) !important;
}
.\!text-red {
  --tw-text-opacity: 1 !important;
  color: rgb(164 4 4 / var(--tw-text-opacity)) !important;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(45 42 38 / var(--tw-text-opacity));
}
.text-blue {
  --tw-text-opacity: 1;
  color: rgb(10 17 90 / var(--tw-text-opacity));
}
.text-blue1 {
  --tw-text-opacity: 1;
  color: rgb(34 43 69 / var(--tw-text-opacity));
}
.text-burgundy {
  --tw-text-opacity: 1;
  color: rgb(69 2 6 / var(--tw-text-opacity));
}
.text-crema {
  --tw-text-opacity: 1;
  color: rgb(226 200 159 / var(--tw-text-opacity));
}
.text-dark-gray {
  --tw-text-opacity: 1;
  color: rgb(44 44 44 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray2 {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.text-gray4 {
  --tw-text-opacity: 1;
  color: rgb(79 79 79 / var(--tw-text-opacity));
}
.text-gray5 {
  --tw-text-opacity: 1;
  color: rgb(224 224 224 / var(--tw-text-opacity));
}
.text-grayAda {
  --tw-text-opacity: 1;
  color: rgb(68 68 68 / var(--tw-text-opacity));
}
.text-palazzo-blue {
  --tw-text-opacity: 1;
  color: rgb(7 31 54 / var(--tw-text-opacity));
}
.text-red {
  --tw-text-opacity: 1;
  color: rgb(164 4 4 / var(--tw-text-opacity));
}
.text-stone {
  --tw-text-opacity: 1;
  color: rgb(251 240 223 / var(--tw-text-opacity));
}
.text-stone80 {
  --tw-text-opacity: 1;
  color: rgb(254 252 249 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.\!opacity-100 {
  opacity: 1 !important;
}
.opacity-50 {
  opacity: 0.5;
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.blur {
  --tw-blur: blur(8px);
  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-sm {
  --tw-blur: blur(4px);
  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);
}
.filter {
  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);
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.\@container {
  container-type: inline-size;
}
.bold-shift::before {
    /* @apply before:invisible before:block before:h-0 before:overflow-hidden before:font-bold; */
    content: attr(data-bold-shift-text);
    display: block;
    font-weight: 700;
    height: 0px;
    overflow: hidden;
    visibility: hidden;
  }
.image-mask-palazzo {
  --tw-bg-opacity: 1;
  background-color: rgb(7 31 54 / var(--tw-bg-opacity));
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.image-mask-venetian {
  --tw-bg-opacity: 1;
  background-color: rgb(164 4 4 / var(--tw-bg-opacity));
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
  }
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@font-face {
  font-family: 'Romie';
  font-style: normal;
  font-weight: 400;
  src: url('../../../etc.clientlibs/venetianbooking/clientlibs/clientlib-booking-upgrades/resources/Romie-Regular.BInAClj5.otf') format('opentype');
}

@font-face {
  font-family: 'Romie';
  font-style: normal;
  font-weight: 500;
  src: url('../../../etc.clientlibs/venetianbooking/clientlibs/clientlib-booking-upgrades/resources/Romie-Medium.BFLLIBzp.otf') format('opentype');
}

@font-face {
  font-family: 'Romie';
  font-style: normal;
  font-weight: 700;
  src: url('../../../etc.clientlibs/venetianbooking/clientlibs/clientlib-booking-upgrades/resources/Romie-Bold.DwsQJIEo.otf') format('opentype');
}

.cmp-venetian-footer {
  background-color: #450206;
  color: #fbf0df;

  .cmp-venetian-footer--content {
    padding: 80px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    a {
      color: #fbf0df;
    }

    > div {
      display: inline-flex;
      align-content: center;
      justify-content: center;
      align-self: center;
      margin-bottom: 63px;
      &:last-child {
        margin-bottom: 0px;
      }
    }

    .cmp-venetian-footer--logo-container {
      margin-bottom: 48px;
      img {
        max-height: 80px;
        max-width: 100%;
      }
    }

    .cmp-venetian-footer--links,
    .cmp-venetian-footer--social-links,
    .cmp-venetian-footer__drop-area {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 32px;
    }

    .cmp-venetian-footer__drop-area {
      p {
        font-weight: 300;
      }
      a {
        text-decoration: underline;
        &:hover {
          text-decoration: none;
        }
      }
    }

    .cmp-venetian-footer--contact-links {
      gap: 48px;

      .cmp-venetian-footer--contact-links-title {
        font-family: 'brother-1816';
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: 34px;
        letter-spacing: 0.36px;
      }

      .cmp-venetian-footer--contact-links-link {
        font-family: 'Romie';
        font-size: 27px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;
        letter-spacing: 0.54px;
        text-transform: capitalize;
      }
    }

    .cmp-venetian-footer--social-links {
      a {
        background-color: #fbf0df;
        border-radius: 100%;
        height: 22px;
        width: 22px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-size: 0px 0px;
        .cmp-venetian-footer--social-links__icon {
          width: 12px;
          height: 12px;
          -webkit-mask-image: inherit;
          mask-image: inherit;
          -webkit-mask-size: 100%;
          mask-size: 100%;
          -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
          -webkit-mask-position: center;
          mask-position: center;
          background-color: #a40404;
        }
      }
    }

    .cmp-venetian-footer--links {
      gap: 48px;

      .cmp-venetian-footer--links-link {
        font-family: 'brother-1816';
        font-size: 15px;
        font-style: normal;
        font-weight: 300;
        line-height: 24px; /* 160% */
        letter-spacing: 0.3px;
      }
    }

    @media screen and (max-width: 1279px) {
      padding: 64px 32px;

      > div {
        margin-bottom: 56px;
      }

      .cmp-venetian-footer--logo-container {
        img {
          max-height: 72px;
        }
      }
    }

    @media screen and (max-width: 767px) {
      .cmp-venetian-footer--contact-links {
        gap: 32px;
      }
    }

    @media screen and (max-width: 374px) {
      padding: 48px 35px;
      .cmp-venetian-footer--contact-links,
      .cmp-venetian-footer--links {
        gap: 18px;
      }

      .cmp-venetian-footer--social-links {
        gap: 16px;
        img {
          max-width: 22px;
          max-height: 22px;
        }
      }

      > div {
        margin-bottom: 35px;
      }

      .cmp-venetian-footer--logo-container {
        margin-bottom: 32px;
        img {
          max-height: 47px;
        }
      }
    }
  }

  .cmp-venetian-footer--legal {
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    padding: 24px;
    justify-content: center;
    gap: 32px;
    > .cmp-venetian-footer--legal-link,
    > .cmp-venetian-footer--legal-pipe {
      color: white;
      font-family: 'brother-1816';
      font-size: 12px;
      font-style: normal;
      font-weight: 300;
      letter-spacing: 0.24px;
      line-height: 16px;

      &:last-child {
        display: none;
      }
    }

    @media screen and (max-width: 374px) {
      gap: 14px;
    }
  }
}

.react-calendar__tile > abbr {
  font-size: 10px;
  display: none;
}

@media screen and (max-width: 768px) {
  .calendar-day {
    border-width: 0px !important;
  }
}

@media screen and (max-width: 480px) {
  .line-clamp-4,
  .line-clamp-2 {
    display: block !important;
  }
}

.custom-grid-panel > p:first-of-type {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .custom-grid-panel {
    grid-template-columns: 1fr 1fr;
  }

  .custom-grid-panel > p:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .custom-grid-panel > ul:nth-of-type(1) {
    grid-column: 1;
    grid-row: 3;
  }

  .custom-grid-panel > p:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .custom-grid-panel > ul:nth-of-type(2) {
    grid-column: 2;
    grid-row: 3;
  }
}

.hover\:\!bg-red:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(164 4 4 / var(--tw-bg-opacity)) !important;
}

.disabled\:bg-\[\#DFDFDF\]:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(223 223 223 / var(--tw-bg-opacity));
}

.disabled\:text-\[\#7E7D7D\]:disabled {
  --tw-text-opacity: 1;
  color: rgb(126 125 125 / var(--tw-text-opacity));
}

.disabled\:text-gray4:disabled {
  --tw-text-opacity: 1;
  color: rgb(79 79 79 / var(--tw-text-opacity));
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.group:focus .group-focus\:\!bg-red {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(164 4 4 / var(--tw-bg-opacity)) !important;
}

.peer:checked ~ .peer-checked\:justify-end {
  justify-content: flex-end;
}

.peer:checked ~ .peer-checked\:border-red-light {
  --tw-border-opacity: 1;
  border-color: rgb(195 61 50 / var(--tw-border-opacity));
}

.peer:checked ~ .peer-checked\:bg-red-light {
  --tw-bg-opacity: 1;
  background-color: rgb(195 61 50 / var(--tw-bg-opacity));
}

.peer:focus ~ .peer-focus\:focus-outline {
    outline: auto 2px -webkit-focus-ring-color;
  }

@container (min-width: 500px) {

  .\@\[500px\]\:max-w-none {
    max-width: none;
  }
}

@media not all and (min-width: 768px) {

  .max-md\:flex-1 {
    flex: 1 1 0%;
  }
}

@media (min-width: 440px) {

  .min-\[440px\]\:gap-4 {
    gap: 1rem;
  }

  .min-\[440px\]\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .min-\[440px\]\:tracking-\[1\.44px\] {
    letter-spacing: 1.44px;
  }
}

@media (min-width: 475px) {

  .min-\[475px\]\:max-w-\[200px\] {
    max-width: 200px;
  }
}

@media (min-width: 768px) {

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:-mt-4 {
    margin-top: -1rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[348px\] {
    height: 348px;
  }

  .md\:w-\[38\.8\%\] {
    width: 38.8%;
  }

  .md\:w-\[45\%\] {
    width: 45%;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:min-w-\[300px\] {
    min-width: 300px;
  }

  .md\:max-w-\[1080px\] {
    max-width: 1080px;
  }

  .md\:max-w-\[359px\] {
    max-width: 359px;
  }

  .md\:max-w-\[375px\] {
    max-width: 375px;
  }

  .md\:max-w-\[380\.5px\] {
    max-width: 380.5px;
  }

  .md\:max-w-\[420px\] {
    max-width: 420px;
  }

  .md\:max-w-\[424px\] {
    max-width: 424px;
  }

  .md\:max-w-\[440px\] {
    max-width: 440px;
  }

  .md\:max-w-\[628px\] {
    max-width: 628px;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

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

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-\[120px\] {
    gap: 120px;
  }

  .md\:gap-\[40px\] {
    gap: 40px;
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:pt-4 {
    padding-top: 1rem;
  }

  .md\:text-\[12px\] {
    font-size: 12px;
  }

  .md\:text-\[16px\] {
    font-size: 16px;
  }

  .md\:text-\[32px\] {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {

  .lg\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:h-\[390px\] {
    height: 390px;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:min-w-\[420px\] {
    min-width: 420px;
  }

  .lg\:max-w-\[200px\] {
    max-width: 200px;
  }

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

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-6 {
    gap: 1.5rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-\[80px\] {
    gap: 80px;
  }

  .lg\:self-start {
    align-self: flex-start;
  }

  .lg\:border {
    border-width: 1px;
  }

  .lg\:border-crema {
    --tw-border-opacity: 1;
    border-color: rgb(226 200 159 / var(--tw-border-opacity));
  }

  .lg\:bg-gray1 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 249 / var(--tw-bg-opacity));
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem;
  }

  .lg\:text-\[12px\] {
    font-size: 12px;
  }

  .lg\:text-\[14px\] {
    font-size: 14px;
  }

  .lg\:text-\[15px\] {
    font-size: 15px;
  }

  .lg\:text-\[16px\] {
    font-size: 16px;
  }

  .lg\:text-\[24px\] {
    font-size: 24px;
  }

  .lg\:text-\[40px\] {
    font-size: 40px;
  }

  .lg\:font-medium {
    font-weight: 500;
  }

  .lg\:leading-\[15\.5px\] {
    line-height: 15.5px;
  }

  .lg\:leading-tight {
    line-height: 1.25;
  }

  .lg\:tracking-\[\.6px\] {
    letter-spacing: .6px;
  }

  .lg\:tracking-\[2\.1px\] {
    letter-spacing: 2.1px;
  }
}

@media (min-width: 1120px) {

  .min-\[1120px\]\:p-0 {
    padding: 0px;
  }
}

@media (min-width: 1280px) {

  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .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\:gap-4 {
    gap: 1rem;
  }
}

.group:hover .\[\&\>abbr\]\:group-hover\:\!text-stone80>abbr {
  --tw-text-opacity: 1 !important;
  color: rgb(254 252 249 / var(--tw-text-opacity)) !important;
}

.group:focus .\[\&\>abbr\]\:group-focus\:\!text-stone80>abbr {
  --tw-text-opacity: 1 !important;
  color: rgb(254 252 249 / var(--tw-text-opacity)) !important;
}

.\[\&\>p\]\:\!text-burgundy>p {
  --tw-text-opacity: 1 !important;
  color: rgb(69 2 6 / var(--tw-text-opacity)) !important;
}

.group:hover .\[\&\>p\]\:group-hover\:\!text-stone80>p {
  --tw-text-opacity: 1 !important;
  color: rgb(254 252 249 / var(--tw-text-opacity)) !important;
}

.group:focus .\[\&\>p\]\:group-focus\:\!text-stone80>p {
  --tw-text-opacity: 1 !important;
  color: rgb(254 252 249 / var(--tw-text-opacity)) !important;
}

.\[\&\>ul\]\:grid>ul {
  display: grid;
}

.\[\&\>ul\]\:grid-flow-col>ul {
  grid-auto-flow: column;
}

.\[\&\>ul\]\:grid-rows-2>ul {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.\[\&\>ul\]\:gap-x-4>ul {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.\[\&\>ul\]\:text-left>ul {
  text-align: left;
}

@media not all and (min-width: 1024px) {

  .\[\&\>ul\]\:max-lg\:gap-y-2>ul {
    row-gap: 0.5rem;
  }
}

.\[\&_\.react-tooltip-arrow\]\:bg-burgundy .react-tooltip-arrow {
  --tw-bg-opacity: 1;
  background-color: rgb(69 2 6 / var(--tw-bg-opacity));
}

.\[\&_a\]\:text-red a {
  --tw-text-opacity: 1;
  color: rgb(164 4 4 / var(--tw-text-opacity));
}

.\[\&_a\]\:underline a {
  text-decoration-line: underline;
}

.\[\&_li\]\:ml-4 li {
  margin-left: 1rem;
}

.\[\&_ol\]\:ml-4 ol {
  margin-left: 1rem;
}

.\[\&_ol\]\:list-decimal ol {
  list-style-type: decimal;
}

.\[\&_ul\]\:ml-4 ul {
  margin-left: 1rem;
}

.\[\&_ul\]\:grid ul {
  display: grid;
}

.\[\&_ul\]\:list-disc ul {
  list-style-type: disc;
}

.\[\&_ul\]\:grid-cols-1 ul {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.\[\&_ul\]\:gap-y-2 ul {
  row-gap: 0.5rem;
}

.\[\&_ul\]\:text-left ul {
  text-align: left;
}

.\[\&_li\]\:\[\&_ul\]\:ml-4 ul li {
  margin-left: 1rem;
}
