@charset "UTF-8";
/*
 * Theme Name: Zamaya
 * 
 * ANAGRAMA 2024
 */
/* ===== [ IMPORTANT NOTE ] ======
 * Please do not edit the compiled style.min.css file
 * (Those changes are going to be overwritten when compiled again).
 */
/* ===== [ HOW TO COMPILE ] ======
 * Prerequisites: Sass
 * 
 * [RUN COMMAND INSIDE _root_ FOLDER]
 * The following command will compile scss assets to css
 *
 → sass --watch assets/scss/style.scss:style.min.css --style compressed
 */
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: black;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend {
  line-height: inherit;
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 720px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 720px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 720px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1500px) {
  .col-xxxl {
    flex: 1 0 0%;
  }
  .row-cols-xxxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxxl-0,
  .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxxl-0,
  .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxxl-1,
  .gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxxl-1,
  .gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxxl-2,
  .gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxxl-2,
  .gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxxl-3,
  .gx-xxxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxxl-3,
  .gy-xxxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxxl-4,
  .gx-xxxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxxl-4,
  .gy-xxxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxxl-5,
  .gx-xxxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxxl-5,
  .gy-xxxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: rgb(221.35, 224.2, 227.05);
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: rgb(221.35, 224.2, 227.05);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select {
  appearance: none;
}
.form-select:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb {
  appearance: none;
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb {
  appearance: none;
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 720px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1500px) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(29.7, 33.3, 36.9);
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #000;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: black;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
  .navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 720px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
  .navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
  .navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
  .navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
  .navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1500px) {
  .navbar-expand-xxxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxxl .offcanvas-top,
  .navbar-expand-xxxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 695px;
    margin: 0 0 0 auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 719.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1499.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxxl-down .modal-footer {
    border-radius: 0;
  }
}
.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(239.7, 239.7, 239.7);
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(239.7, 239.7, 239.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: rgb(10.4, 88, 202.4);
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: rgb(86.4, 93.6, 100);
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: rgb(20, 108, 67.2);
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: rgb(61.4, 212.6, 243);
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: rgb(255, 205.4, 56.6);
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: rgb(176, 42.4, 55.2);
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: rgb(249.4, 250.2, 251);
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: rgb(26.4, 29.6, 32.8);
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 720px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1500px) {
  .sticky-xxxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

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

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

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

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

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

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

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

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

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

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

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

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

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

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

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

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

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

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

.gap-0 {
  gap: 0 !important;
}

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

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

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

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

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

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

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

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

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

.align-items-start {
  align-items: flex-start !important;
}

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

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

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

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

.align-content-start {
  align-content: flex-start !important;
}

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

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

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

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

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

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

.align-self-start {
  align-self: flex-start !important;
}

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

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

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

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

.order-first {
  order: -1 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-2 {
  margin-right: 0.5rem !important;
}

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

.me-4 {
  margin-right: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

.ms-2 {
  margin-left: 0.5rem !important;
}

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

.ms-4 {
  margin-left: 1.5rem !important;
}

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

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

.p-0 {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-2 {
  padding-right: 0.5rem !important;
}

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

.pe-4 {
  padding-right: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

.ps-2 {
  padding-left: 0.5rem !important;
}

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

.ps-4 {
  padding-left: 1.5rem !important;
}

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

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

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

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

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

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

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 720px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1500px) {
  .float-xxxl-start {
    float: left !important;
  }
  .float-xxxl-end {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-grid {
    display: grid !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxxl-0 {
    gap: 0 !important;
  }
  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxxl-3 {
    gap: 1rem !important;
  }
  .gap-xxxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    justify-content: center !important;
  }
  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    align-items: center !important;
  }
  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    align-content: center !important;
  }
  .align-content-xxxl-between {
    align-content: space-between !important;
  }
  .align-content-xxxl-around {
    align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    align-self: auto !important;
  }
  .align-self-xxxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    align-self: center !important;
  }
  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }
  .order-xxxl-first {
    order: -1 !important;
  }
  .order-xxxl-0 {
    order: 0 !important;
  }
  .order-xxxl-1 {
    order: 1 !important;
  }
  .order-xxxl-2 {
    order: 2 !important;
  }
  .order-xxxl-3 {
    order: 3 !important;
  }
  .order-xxxl-4 {
    order: 4 !important;
  }
  .order-xxxl-5 {
    order: 5 !important;
  }
  .order-xxxl-last {
    order: 6 !important;
  }
  .m-xxxl-0 {
    margin: 0 !important;
  }
  .m-xxxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxxl-3 {
    margin: 1rem !important;
  }
  .m-xxxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxxl-5 {
    margin: 3rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
  .me-xxxl-0 {
    margin-right: 0 !important;
  }
  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxxl-auto {
    margin-left: auto !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .p-xxxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxxl-3 {
    padding: 1rem !important;
  }
  .p-xxxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxxl-5 {
    padding: 3rem !important;
  }
  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxxl-start {
    text-align: left !important;
  }
  .text-xxxl-end {
    text-align: right !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/**
 * Swiper 11.2.8
 * 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: May 23, 2025
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
: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: 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  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);
  -webkit-backface-visibility: hidden;
  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-3d .swiper-slide,
.swiper-3d .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 */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .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-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .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-lazy-preloader,
.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 */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

/* Navigation font start */
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  padding-top: 7px;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #DBDBDB;
  opacity: 1;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: #90EFFA;
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 1.75px;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.c-black {
  color: #070708;
}

.bg-black {
  background-color: #070708;
}

.border-black {
  border: 1px solid #070708;
}

.c-white-400 {
  color: #6a6a6a;
}

.c-gray {
  color: #DBDBDB;
}

.bg-blue {
  background-color: #90EFFA;
}

.bg-gray {
  background-color: #DBDBDB;
}

.z-2 {
  z-index: 2;
}

/* 1rem = 10px */
body {
  font-family: "PP Neue Montreal";
  font-weight: normal;
  font-style: normal;
}

@-webkit-keyframes before-btn-animation-close {
  0% {
    transform: translateY(-8px) rotate(0deg);
  }
  55% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes before-btn-animation-close {
  0% {
    transform: translateY(-8px) rotate(0deg);
  }
  55% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@-webkit-keyframes after-btn-animation-close {
  0% {
    transform: translateY(7px) rotate(0deg);
  }
  55% {
    transform: translateY(-1px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(135deg);
  }
}
@keyframes after-btn-animation-close {
  0% {
    transform: translateY(7px) rotate(0deg);
  }
  55% {
    transform: translateY(-1px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(135deg);
  }
}
@-webkit-keyframes before-btn-animation-open {
  0% {
    transform: translateY(0px) rotate(45deg);
  }
  55% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-8px) rotate(0deg);
  }
}
@keyframes before-btn-animation-open {
  0% {
    transform: translateY(0px) rotate(45deg);
  }
  55% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-8px) rotate(0deg);
  }
}
@-webkit-keyframes after-btn-animation-open {
  0% {
    transform: translateY(px) rotate(135deg);
  }
  55% {
    transform: translateY(-1px) rotate(0deg);
  }
  100% {
    transform: translateY(7px) rotate(0deg);
  }
}
@keyframes after-btn-animation-open {
  0% {
    transform: translateY(-1px) rotate(135deg);
  }
  55% {
    transform: translateY(-1px) rotate(0deg);
  }
  100% {
    transform: translateY(7px) rotate(0deg);
  }
}
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
h1,
.h1 {
  font-family: "Monument Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.01em;
}
@media (min-width: 720px) {
  h1,
  .h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 50px;
    line-height: 52px;
  }
}

h2,
.h2 {
  font-family: "Monument Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: normal;
}
@media (min-width: 720px) {
  h2,
  .h2 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 24px;
    line-height: 26px;
  }
}

h3,
.h3 {
  font-family: "Monument Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
@media (min-width: 720px) {
  h3,
  .h3 {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 16px;
    line-height: 18px;
  }
}

h4,
.h4 {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  h4,
  .h4 {
    font-size: 14px;
    line-height: 16px;
  }
}

.body-text,
p {
  font-family: "Monument Grotesk";
  font-size: 14px;
  line-height: 16px;
  letter-spacing: normal;
}
@media (min-width: 720px) {
  .body-text,
  p {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 992px) {
  .body-text,
  p {
    font-size: 18px;
    line-height: 20px;
  }
}

ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

ol {
  counter-reset: item;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
ol li {
  display: block;
  padding-left: 1.6rem;
  position: relative;
}

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

.list-styled li {
  position: relative;
  padding-left: 2rem;
}
.list-styled li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 50%;
}
@media (max-width: 575.98px) {
  .list-styled li {
    padding-left: 1.4rem;
  }
  .list-styled li::before {
    content: "";
    width: 8px;
    height: 8px;
  }
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.thumb-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.ps-0 {
  padding-left: 0;
}

.pe-0 {
  padding-right: 0;
}

@media (max-width: 719.98px) {
  .aspect-sm-square {
    aspect-ratio: 1/1;
  }
}

.mt-8 {
  margin-top: 8px;
}

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

@media (min-width: 720px) {
  .h-md-100 {
    height: 100%;
  }
}

.pt-14 {
  padding-top: 14px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

@media (min-width: 992px) {
  .py-form {
    padding-top: 58px;
    padding-bottom: 121px;
  }
}

@media (min-width: 720px) {
  .pt-md-0 {
    padding-top: 0;
  }
}

.pl-20 {
  padding-left: 20px;
}

.gap-7 {
  gap: 7px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.c-gap-15 {
  column-gap: 15px !important;
}

.r-gap-10 {
  row-gap: 10px;
}

.r-gap-7 {
  row-gap: 7px;
}

@media (min-width: 720px) and (max-width: 991.98px) {
  .mx-mdo-auto {
    margin: auto;
  }
}

.ml-15 {
  margin-left: 15px;
}

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

.pt-custom-p {
  padding-top: 8px;
}
@media (min-width: 720px) {
  .pt-custom-p {
    padding-top: 10px;
  }
}

.r-gap-3 {
  row-gap: 10px;
}

.mr-20 {
  margin-right: 20px;
}

@media (min-width: 720px) and (max-width: 991.98px) {
  .margin-x-md-auto {
    margin-left: auto;
    margin-right: auto;
  }
}

.pt-date {
  padding-top: 20px;
}
@media (min-width: 720px) {
  .pt-date {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .pt-date {
    padding-top: 43px;
  }
}

.pt-guests {
  padding-top: 15px;
}
@media (min-width: 720px) {
  .pt-guests {
    padding-top: 20px;
  }
}

@font-face {
  font-family: "Monument Grotesk Mono";
  src: url("./assets/fonts/ABCMonumentGroteskMono-Regular.woff2") format("woff2"), url("./assets/fonts/ABCMonumentGroteskMono-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monument Grotesk";
  src: url("./assets/fonts/ABCMonumentGrotesk-Regular.woff2") format("woff2"), url("./assets/fonts/ABCMonumentGrotesk-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* 
 * Anagrama [root] 2021
 * https://www.anagrama.com/
 */
/* ===== [ I.NDEX ] ======
 * i. 1. Normalize
 * i. 2. General
 * i. 3. Pages
 *    -- Facilities
 *    -- Blog 
 *    -- Legals
 *    -- Contact
 */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #fff;
}

body {
  background: #fff;
  color: #070708;
  font-family: "Monument Grotesk";
  font-size: 14px;
  line-height: 16px;
  letter-spacing: normal;
}
@media (min-width: 720px) {
  body {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 18px;
    line-height: 20px;
  }
}

main {
  opacity: 0;
}

.body-no-scroll {
  overflow: hidden;
}

a:not([href]):not([tabindex]) {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.hidden {
  opacity: 0;
}

.overflow-x-hidden {
  overflow-x: clip;
}

.scroll-button {
  cursor: pointer;
}

.w-fit {
  width: fit-content;
}

input {
  appearance: none;
  background-color: transparent;
  outline: none;
  border: none;
}

.cursor-pointer {
  cursor: pointer;
}

*::selection {
  background: #070708;
  color: #fff;
}

*::-moz-selection {
  background: #070708;
  color: #fff;
}

*::-webkit-selection {
  background: #070708;
  color: #fff;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
}

.b-bottom {
  border-bottom: 1px solid #DBDBDB !important;
}

.amenities-icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 992px) {
  .amenities-icon {
    width: 20px;
    height: 20px;
  }
}

.facilities-title {
  padding-top: 79.5px;
}
@media (min-width: 720px) {
  .facilities-title {
    padding-top: 99.5px;
  }
}
@media (min-width: 992px) {
  .facilities-title {
    padding-top: 136.5px;
  }
}

.book-now-cta {
  z-index: 99;
  width: fit-content;
  padding: 20px;
  display: none;
}

.blog-featured {
  background-color: #90EFFA;
  margin-top: 56px;
}
@media (min-width: 720px) {
  .blog-featured {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .blog-featured {
    margin-top: 106px;
  }
}
.blog-content {
  border: 0;
  border-bottom: 1px solid #DBDBDB;
}
.blog-content .content {
  padding-top: 21px;
}
.blog-content .content p {
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .blog-content .content p {
    padding-bottom: 29px;
  }
}
@media (min-width: 992px) {
  .blog-content .content p {
    padding-bottom: 38px;
  }
}
.blog-content .content h2 {
  padding-bottom: 7px;
}
@media (min-width: 992px) {
  .blog-content .content h2 {
    padding-bottom: 5px;
  }
}
@media (min-width: 720px) {
  .blog-content .content {
    padding-top: 29px;
  }
}
@media (min-width: 992px) {
  .blog-content .content {
    padding-left: 36px;
    padding-top: 35px;
  }
  .blog-content .content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #DBDBDB;
  }
}
.blog-content .share {
  padding-bottom: 19px;
  padding-top: 1px;
  gap: 14px;
}
@media (min-width: 720px) {
  .blog-content .share {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog-content .share {
    padding-bottom: 40px;
    padding-top: 4px;
  }
}
.blog-content .share .socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-content .share .socials .copy-link {
  padding: 10px;
}
.blog-content .share .socials .copy-link,
.blog-content .share .socials a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #070708;
  background-color: #90EFFA;
  color: #070708;
}
.blog-content .share .socials .copy-link svg,
.blog-content .share .socials a svg {
  max-height: 14px;
}
@media (min-width: 992px) {
  .blog-content .share .socials .copy-link,
  .blog-content .share .socials a {
    width: 40px;
    height: 40px;
  }
  .blog-content .share .socials .copy-link svg,
  .blog-content .share .socials a svg {
    max-height: 18px;
  }
}
@media (hover: hover) {
  .blog-content .share .socials .copy-link:hover,
  .blog-content .share .socials a:hover {
    background-color: #070708;
    color: #fff;
  }
}

#single-blog,
#legals-content {
  position: sticky;
  top: 90px;
  transition: top 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#single-blog .nav-pills .nav-link,
#legals-content .nav-pills .nav-link {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  #single-blog .nav-pills .nav-link,
  #legals-content .nav-pills .nav-link {
    font-size: 14px;
    line-height: 16px;
  }
}
#single-blog .nav-pills .nav-link,
#legals-content .nav-pills .nav-link {
  padding: 15px 20px;
  position: relative;
}
#single-blog .nav-pills .nav-link::after,
#legals-content .nav-pills .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: #DBDBDB;
  left: -20px;
  width: calc(100% + 26px);
}
#single-blog .nav-pills .nav-link.active,
#legals-content .nav-pills .nav-link.active {
  background-color: transparent;
  color: #070708;
}
#single-blog .nav-pills .nav-link.active::before,
#legals-content .nav-pills .nav-link.active::before {
  position: relative;
  display: inline-flex;
  content: "";
  width: 8px;
  height: 10px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('data:image/svg+xml,<svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.42428 0H2.79021L5.8565 2.93045H0V4.01908L5.86612 4.02362L2.75176 7H4.38584L7.31847 4.19729C7.73134 3.80271 7.73047 3.14308 7.31656 2.74959L4.42428 0Z" fill="%23070708"/></svg>');
}

.legals {
  padding-top: 107px;
}
@media (min-width: 720px) {
  .legals {
    padding-top: 119px;
  }
}
@media (min-width: 992px) {
  .legals {
    padding-top: 183px;
  }
}
.legals h1 {
  padding-left: 5px;
}
@media (min-width: 720px) {
  .legals h1 {
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .legals h1 {
    padding-left: 20px;
  }
}
.legals-content {
  border: 0;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  margin-top: 20px;
}
@media (min-width: 720px) {
  .legals-content {
    margin-top: 31px;
  }
}
@media (min-width: 992px) {
  .legals-content {
    margin-top: 43px;
  }
}
.legals-content .content {
  padding-top: 19px;
}
.legals-content .content p {
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .legals-content .content p {
    padding-bottom: 29px;
  }
}
@media (min-width: 992px) {
  .legals-content .content p {
    padding-bottom: 38px;
  }
}
.legals-content .content h2 {
  padding-bottom: 4px;
}
@media (min-width: 720px) {
  .legals-content .content h2 {
    padding-bottom: 7px;
  }
}
@media (min-width: 992px) {
  .legals-content .content h2 {
    padding-bottom: 8px;
  }
}
@media (min-width: 720px) {
  .legals-content .content {
    padding-top: 29px;
  }
}
@media (min-width: 992px) {
  .legals-content .content {
    padding-left: 36px;
    padding-top: 37px;
  }
  .legals-content .content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #DBDBDB;
  }
}

.contact-title {
  padding-top: 107px;
}
@media (min-width: 720px) {
  .contact-title {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .contact-title {
    padding-top: 185px;
  }
}
@media (min-width: 992px) {
  .contact-title .title {
    padding-left: 22px;
  }
}
.contact-main {
  border: 0;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  margin-top: 20px;
  padding: 19px 0;
}
@media (min-width: 720px) {
  .contact-main {
    margin-top: 30px;
    padding: 28px 0;
  }
}
@media (min-width: 992px) {
  .contact-main {
    margin-top: 40px;
    padding: 39px 22px;
  }
}
@media (hover: hover) {
  .contact-main a:hover {
    color: #DBDBDB;
  }
}
.contact-main .item {
  padding-bottom: 19px;
}
@media (min-width: 720px) {
  .contact-main .item {
    padding-bottom: 28px;
  }
}
@media (min-width: 992px) {
  .contact-main .item {
    padding-bottom: 39px;
  }
}
@media (min-width: 720px) {
  .contact-main .item .h4 {
    padding-bottom: 5px;
  }
}
.contact-main .socials {
  padding-top: 4px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 720px) {
  .contact-main .socials {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .contact-main .socials {
    padding-top: 38px;
    padding-bottom: 0;
  }
}
.contact-main .socials ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-main .socials a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #070708;
  background-color: #90EFFA;
  color: #070708;
}
.contact-main .socials a svg {
  max-height: 14px;
}
@media (min-width: 992px) {
  .contact-main .socials a {
    width: 40px;
    height: 40px;
  }
  .contact-main .socials a svg {
    max-height: 18px;
  }
}
@media (hover: hover) {
  .contact-main .socials a:hover {
    background-color: #070708;
    color: #fff;
  }
}
.contact-main .form {
  padding-top: 21px;
}
@media (min-width: 720px) {
  .contact-main .form {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .contact-main .form {
    padding-top: 42px;
  }
}
.contact-main .form .input-group {
  margin-bottom: 14px;
}
@media (min-width: 720px) {
  .contact-main .form .input-group {
    margin-bottom: 19px;
  }
}
.contact-main .form .submit {
  padding-top: 19px;
}

.page-404 {
  background-color: #90EFFA;
  height: 100dvh;
  padding: 20px 15px;
}
@media (min-width: 720px) {
  .page-404 {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) {
  .page-404 {
    padding: 40px 20px;
  }
}

@media (min-width: 992px) {
  .container-host .title-host {
    margin-left: 20px;
  }
}

.fade-on-scroll,
.animate-on-scroll,
.stagger-on-scroll,
.stagger-fast-on-scroll,
.blast-on-scroll {
  opacity: 0;
  will-change: scroll-position;
}

.stagger-on-scroll.animate,
.stagger-fast-on-scroll.animate,
.blast-on-scroll.animate {
  opacity: 1;
}
.stagger-on-scroll.animate .blast,
.stagger-fast-on-scroll.animate .blast,
.blast-on-scroll.animate .blast {
  display: inline-block;
}

.fade-on-scroll.animate {
  animation-name: d;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

.animate-on-scroll.animate {
  animation-name: a;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

@keyframes a {
  0% {
    opacity: 0;
    -webkit-backface-visibility: hidden;
  }
  to {
    opacity: 1;
    -webkit-backface-visibility: hidden;
  }
}
@keyframes d {
  0% {
    opacity: 0;
    transform: translateY(20px);
    -webkit-backface-visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-backface-visibility: hidden;
  }
}
@keyframes shine {
  to {
    opacity: 1;
    left: 210%;
  }
}
.bounce {
  animation-name: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
svg:not(:root) {
  overflow: hidden;
}

svg[role=icon] {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle;
}

.icon-caret {
  width: 11px;
  height: 6px;
}

.visibility-hidden {
  visibility: hidden;
  position: absolute;
}

.nowrapwhite {
  white-space: nowrap;
}

@media (min-width: 992px) {
  .h-lg-100 {
    height: 100%;
  }
}

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

.room-selection-form {
  margin-block-end: 0px;
}

.w-r83 {
  width: 83px !important;
}

.position-fixed-absolute {
  position: fixed;
}
@media (min-width: 720px) {
  .position-fixed-absolute {
    position: absolute;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.responsive-img {
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
}
.responsive-img.has-loaded {
  opacity: 1;
}
.responsive-img-container:has(:not(.has-loaded)) {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #DBDBDB;
}

footer {
  margin-top: 80px;
  padding-top: 4px;
  border: 0;
  border-top: 1px solid #DBDBDB;
}
@media (min-width: 720px) {
  footer {
    margin-top: 99px;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  footer {
    margin-top: 139px;
  }
}
footer .footer-nav {
  padding-top: 15px;
  padding-bottom: 14px;
  border: 0;
}
footer .footer-nav .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .footer-nav:not(:first-of-type) {
  border-left: 1px solid #DBDBDB;
}
footer .footer-nav:not(:first-of-type) .inner {
  padding-left: 15px;
}
@media (min-width: 720px) {
  footer .footer-nav {
    padding-bottom: 20px;
    padding-top: 19px;
  }
}
@media (min-width: 992px) {
  footer .footer-nav {
    padding-bottom: 21px;
    padding-top: 18px;
  }
}
footer .footer-socials {
  padding-top: 18px;
  padding-bottom: 20px;
}
footer .legals {
  padding-top: 14px;
  padding-bottom: 12px;
}
@media (min-width: 720px) {
  footer .legals {
    padding-top: 19px;
    padding-bottom: 17px;
  }
}
footer a {
  text-decoration: none;
  display: flex;
  font-family: "Monument Grotesk";
  font-size: 14px;
  line-height: 16px;
  letter-spacing: normal;
}
@media (min-width: 720px) {
  footer a {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 992px) {
  footer a {
    font-size: 18px;
    line-height: 20px;
  }
}
footer a .mask {
  position: relative;
  padding: 0;
  height: 17px;
}
@media (min-width: 992px) {
  footer a .mask {
    height: 20px;
  }
}
footer a .mask {
  overflow: hidden;
}
footer a .mask .link-container {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer a .mask .title {
  display: block;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer a .mask .link-title1 {
  transform-origin: right center;
}
footer a .mask .link-title2 {
  transform-origin: left center;
  transform: rotate(20deg);
}
footer a:hover .link-container {
  transform: translateY(-20px);
}
footer a:hover .link-title1 {
  transform: rotate(20deg);
}
footer a:hover .link-title2 {
  transform: rotate(0);
}
@media (max-width: 719.98px) {
  footer a {
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  footer ul {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  footer ul {
    padding-top: 41px;
  }
}
footer form {
  display: flex;
  border: 0;
  border-bottom: 1px solid #070708;
  padding-bottom: 11px;
  padding-top: 17px;
}
@media (min-width: 720px) {
  footer form {
    padding-top: 0;
    padding-bottom: 9px;
  }
}
@media (min-width: 992px) {
  footer form {
    margin-right: 15px;
    margin-top: 90px;
  }
}
footer form input {
  width: 100%;
  border: 0;
  padding: 0;
}
footer form input::placeholder {
  opacity: 1;
}
footer form.invalid, footer form.sent {
  margin-bottom: 54px;
  position: relative;
}
footer form.invalid .wpcf7-response-output, footer form.sent .wpcf7-response-output {
  position: absolute;
  top: 50px;
  transform: translateY(-17px);
}
@media (min-width: 720px) {
  footer form.invalid .wpcf7-response-output, footer form.sent .wpcf7-response-output {
    top: 31px;
    transform: translateY(-10px);
  }
}
@media (min-width: 992px) {
  footer form.invalid .wpcf7-response-output, footer form.sent .wpcf7-response-output {
    top: 33px;
  }
}
footer .footer-divider {
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  position: absolute;
  left: 0;
}
footer.no-padding {
  margin-top: 0 !important;
}
footer.footer-wizard {
  margin-top: 0;
}
@media (min-width: 720px) {
  footer.footer-wizard {
    margin-top: 0;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  footer.footer-wizard {
    margin-top: 0;
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  transition: border 0.4s ease-in-out;
  padding: 14px 0;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
}
@media (min-width: 720px) {
  header {
    padding: 15px 0px 14px;
  }
}
@media (min-width: 992px) {
  header {
    padding: 15px 0px 0px;
  }
}
header.headroom {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header.headroom--pinned {
  transform: translateY(0);
}
@media (min-width: 992px) {
  header.headroom--unpinned {
    transform: translateY(-56%);
  }
}
header .header-location {
  gap: 12px;
  background-color: #90EFFA;
  padding: 9.5px 14px;
}
header .header-location .h4 {
  transform: translateY(-2px);
}
@media (min-width: 992px) {
  header .header-location .h4 {
    transform: translateY(-1px);
  }
}
@media (min-width: 720px) {
  header .header-location {
    padding: 15px 20px;
  }
}
@media (min-width: 992px) {
  header .header-location {
    background-color: transparent;
    padding: 3px 0 0 3px;
  }
}
header .header-location .d-flex {
  gap: 2px;
}
@media (min-width: 720px) {
  header .header-location .d-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  header .header-location .d-flex {
    gap: 0;
  }
}
@media (max-width: 719.98px) {
  header .header-location svg {
    height: 20px;
  }
}
header .header-account {
  gap: 5px;
}
header .header-divider {
  height: 1px;
  margin: 14px -20px 0;
  background-color: #DBDBDB;
}
@media (max-width: 719.98px) {
  header .header-lang {
    height: 100%;
  }
}
header .header-lang .btn-lang {
  background-color: transparent;
  padding: 0;
  height: 100%;
  border-radius: 2px;
  border: 1px solid rgba(7, 7, 8, 0.2) !important;
  padding: 0px 27px 2px 11px;
  position: relative;
}
header .header-lang .btn-lang::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 51%;
  transform: translateY(-50%);
  width: 10px;
  height: 15px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L4.82158 4.5L8.64192 1" stroke="%23070708" stroke-linecap="square" stroke-linejoin="round"/></svg>');
}
@media (hover: hover) {
  header .header-lang .btn-lang:hover {
    background-color: #070708;
    color: #fff;
  }
  header .header-lang .btn-lang:hover::after {
    filter: invert(1);
  }
}
header .header-lang .btn-lang {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  header .header-lang .btn-lang {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  header .header-lang .btn-lang {
    border: 1px solid #DBDBDB !important;
  }
}
@media (min-width: 992px) {
  header .header-lang .btn-lang {
    padding: 1px 27px 2px 12px;
  }
}
header .header-lang .dropdown-menu {
  margin-top: -3px !important;
  border: 1px solid #DBDBDB !important;
  border-radius: 0;
  min-width: 62px;
  width: 62px;
  padding: 0;
  text-align: center;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  header .header-lang .dropdown-menu {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  header .header-lang .dropdown-menu {
    width: 100%;
  }
}
header .header-lang .dropdown-menu a {
  text-align: start;
  padding: 6px 5px 6px 12px;
}
header .navbar {
  padding: 0;
}
header .navbar-nav {
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 0;
}
@media (min-width: 992px) {
  header .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1500px) {
  header .navbar-nav {
    justify-content: space-between;
  }
}
header .navbar-nav .dropdown-menu {
  position: absolute;
  left: 0;
  width: 100%;
  border: 0;
  padding: 0;
  margin-top: 0;
  border-top: 1px solid #DBDBDB;
}
header .navbar-nav .dropdown-menu li {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  header .navbar-nav .dropdown-menu li {
    font-size: 14px;
    line-height: 16px;
  }
}
header .navbar-nav .dropdown-menu li {
  text-align: center;
  border: 0;
  padding: 0;
}
header .navbar-nav .dropdown-menu li:not(:first-of-type) {
  border-top: 1px solid #DBDBDB;
}
header .navbar-nav .dropdown-menu li a {
  padding: 14px 0 15px;
}
header .navbar-nav .dropdown-menu li a:hover {
  background-color: rgba(219, 219, 219, 0.5);
}
@media (max-width: 991.98px) {
  header .navbar-nav .dropdown-menu {
    position: relative !important;
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
@media (min-width: 992px) {
  header .navbar-nav .dropdown-menu {
    border-bottom: 1px solid #DBDBDB;
  }
}
@media (max-width: 991.98px) {
  header .navbar-nav .dropdown-toggle {
    position: relative;
  }
  header .navbar-nav .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 19px;
    width: 12px;
    height: 13px;
    background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 7H14" stroke="%23070708"/><path d="M6.995 14.005L6.99499 0.00500482" stroke="%23070708"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  header .navbar-nav .dropdown-toggle.show::after {
    background-image: url('data:image/svg+xml,<svg width="14" height="2" viewBox="0 0 14 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 1H14" stroke="%23070708"/></svg>');
  }
}
header .nav-link {
  color: #070708;
  padding: 13px 15px 16px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  header .nav-link {
    font-size: 14px;
    line-height: 16px;
  }
}
header .nav-link:focus {
  outline: 0;
}
@media (min-width: 992px) {
  header .nav-link {
    padding: 13px 0 16px;
    white-space: nowrap;
  }
}
header .nav-item {
  border: 0;
  border-top: 1px solid #DBDBDB;
}
@media (min-width: 992px) {
  header .nav-item {
    padding: 0 25px;
    border-top: 0;
  }
  header .nav-item:not(:last-of-type) {
    border-right: 1px solid #DBDBDB;
  }
}
@media (min-width: 1400px) {
  header .nav-item {
    padding: 0 50px;
  }
}
@media (min-width: 1500px) {
  header .nav-item {
    width: 100%;
    text-align: center;
  }
}
@media (hover: hover) {
  header .nav-item:hover {
    background-color: rgba(219, 219, 219, 0.5);
  }
}
header .logo svg {
  transform: translate(9px, -2px);
  width: 119px;
  height: 16px;
}
@media (min-width: 720px) {
  header .logo svg {
    width: 152px;
    height: 20px;
    transform: translate(-12.5px, 0px);
  }
}
@media (min-width: 992px) {
  header .logo svg {
    transform: translate(0px, -2px);
    width: 136px;
    height: 18px;
  }
}
@media (min-width: 992px) {
  header .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

#burger-menu,
.burger-sub-menu {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 27px;
  z-index: 99;
  cursor: pointer;
}
#burger-menu span,
.burger-sub-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0b0b0b;
  transition: background-color 0.25s, transform 0.25s, width 0.25s;
  -webkit-transition: background-color 0.25s, -webkit-transform 0.25s;
}
#burger-menu span:nth-of-type(1),
.burger-sub-menu span:nth-of-type(1) {
  top: 21%;
}
#burger-menu span:nth-of-type(2),
.burger-sub-menu span:nth-of-type(2) {
  top: 48%;
}
@media (min-width: 720px) {
  #burger-menu span:nth-of-type(2),
  .burger-sub-menu span:nth-of-type(2) {
    top: 49%;
  }
}
#burger-menu span:nth-of-type(3),
.burger-sub-menu span:nth-of-type(3) {
  top: 74%;
}
@media (min-width: 720px) {
  #burger-menu span:nth-of-type(3),
  .burger-sub-menu span:nth-of-type(3) {
    top: 75%;
  }
}
@media (min-width: 720px) {
  #burger-menu,
  .burger-sub-menu {
    width: 30px;
    height: 30px;
  }
}
#burger-menu.show span,
.burger-sub-menu.show span {
  background-color: #0b0b0b;
  width: 76%;
}
#burger-menu.show span:nth-of-type(2), #burger-menu.show span:nth-of-type(4),
.burger-sub-menu.show span:nth-of-type(2),
.burger-sub-menu.show span:nth-of-type(4) {
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
}
#burger-menu.show span:nth-of-type(3),
.burger-sub-menu.show span:nth-of-type(3) {
  transform: rotate(-45deg);
  -webkit-transform: scaleX(-45deg);
  top: 45%;
}
#burger-menu.show span:nth-of-type(1),
.burger-sub-menu.show span:nth-of-type(1) {
  transform: rotate(45deg);
  -webkit-transform: scaleX(45deg);
  top: 46%;
}

.burger-sub-menu {
  right: auto;
  left: 15px;
}

.header-menu {
  pointer-events: none;
  opacity: 0;
  width: 100%;
  position: fixed;
  top: 47px;
  right: 0;
  background: white;
  transition: top 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 720px) {
  .header-menu {
    top: 50px;
  }
}
.header-menu.show {
  pointer-events: all;
  top: 58px;
  opacity: 1;
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 720px) {
  .header-menu.show {
    top: 60px;
  }
}

.nav-mobile-menu .nav-item {
  margin-right: 15px;
  margin-left: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #DBDBDB;
}
.nav-mobile-menu .nav-item:last-child {
  border-bottom: 0px;
}
.nav-mobile-menu .nav-item:first-child {
  padding-top: 0px;
}
.nav-mobile-menu .nav-item .nav-link {
  padding: 0.5rem 0rem;
}
.nav-mobile-menu .nav-item .nav-link .icon-caret {
  transform: rotate(90deg);
}

.fade-nav {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.loader-component {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  z-index: 2090;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

label {
  display: block;
  padding-bottom: 6px;
}
@media (min-width: 720px) {
  label {
    padding-bottom: 11px;
  }
}

textarea {
  min-height: 100px;
}
textarea:focus {
  outline: 0;
}

input,
textarea {
  width: 100%;
}
@media (max-width: 719.98px) {
  input,
  textarea {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) {
  input,
  textarea {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) and (min-width: 992px) {
  input,
  textarea {
    font-size: 14px;
    line-height: 16px;
  }
}
input.icon,
textarea.icon {
  padding-left: 26px;
}

input::-webkit-input-placeholder {
  opacity: 0.5;
}
@media (max-width: 719.98px) {
  input::-webkit-input-placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) {
  input::-webkit-input-placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) and (min-width: 992px) {
  input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 16px;
  }
}

input::-moz-placeholder {
  opacity: 0.5;
}
@media (max-width: 719.98px) {
  input::-moz-placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) {
  input::-moz-placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) and (min-width: 992px) {
  input::-moz-placeholder {
    font-size: 14px;
    line-height: 16px;
  }
}

input::placeholder {
  opacity: 0.5;
}
@media (max-width: 719.98px) {
  input::placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) {
  input::placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) and (min-width: 992px) {
  input::placeholder {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 719.98px) {
  input[type=text],
  input[type=email],
  input[type=password],
  textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 719.98px) {
  input[type=number],
  textarea {
    font-size: 14px !important;
  }
}

.iti {
  width: 100%;
}

.input-row:not(:last-of-type) {
  padding-bottom: 20px;
}
.input-single {
  width: 100%;
}
.input-single input,
.input-single textarea {
  border: 1px solid #DBDBDB;
  padding: 8px 8px 10px 9px;
  width: 100%;
}
.input-single ::placeholder {
  opacity: 0.5;
}
@media (max-width: 719.98px) {
  .input-single ::placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) {
  .input-single ::placeholder {
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    font-variant-numeric: slashed-zero;
  }
}
@media (min-width: 720px) and (min-width: 992px) {
  .input-single ::placeholder {
    font-size: 14px;
    line-height: 16px;
  }
}
.input-group .grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
@media (min-width: 992px) {
  .input-group .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.input-group.grid {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media (min-width: 720px) {
  .input-group.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
}
.input-group.grid input {
  border: 1px solid #DBDBDB;
  padding: 8px 8px 10px 9px;
}
@media (min-width: 992px) {
  .input-group.grid input {
    padding: 7px 8px 11px 9px;
  }
}
.input-group.grid input {
  width: 100%;
}
.input-group.grid:not(:last-of-type) {
  padding-bottom: 8px;
}
@media (min-width: 720px) {
  .input-group.grid:not(:last-of-type) {
    padding-bottom: 11px;
  }
}
@media (min-width: 992px) {
  .input-group.grid:not(:last-of-type) {
    padding-bottom: 10px;
  }
}
.input-container {
  position: relative;
  display: inline-block;
  border: 1px solid #DBDBDB;
  padding: 11px 12px 11px 11.5px;
}
@media (min-width: 720px) {
  .input-container {
    padding: 7px 12px 11px 11.5px;
  }
}
@media (min-width: 992px) {
  .input-container {
    padding: 7px 12px 11px 11.5px;
  }
}
.input-container.booking-dates {
  padding: 6px 12px 8px 11.5px;
}
@media (min-width: 720px) {
  .input-container.booking-dates {
    padding: 7px 12px 11px 11.5px;
  }
}
@media (min-width: 992px) {
  .input-container.booking-dates {
    padding: 7px 12px 11px 11.5px;
  }
}
.input-container span {
  padding-right: 9px;
}
.input-container div.double:first-child::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  height: calc(100% - 6px);
  top: 56%;
  transform: translateY(-50%);
  background-color: #DBDBDB;
  width: 1px;
}
.input-container div.double:nth-of-type(2) input {
  transform: translateX(20px);
}
.input-container div.double:nth-of-type(2) .datepicker-icon {
  left: 20px;
}
.input-container .qty-btn-minus,
.input-container .qty-btn-plus {
  background-color: transparent;
  border: 0;
  padding: 0;
  height: 5px;
}
.input-container .qty-btn-minus.disabled,
.input-container .qty-btn-plus.disabled {
  opacity: 0.3;
}

.number-container {
  position: relative;
  display: inline-block;
  border: 1px solid #DBDBDB;
  padding: 1px 16px 1px 11.5px;
}
@media (min-width: 720px) {
  .number-container {
    padding: 3px 16px 3px 11.5px;
  }
}
@media (min-width: 992px) {
  .number-container {
    padding: 3px 12px 3px 11.5px;
  }
}
.number-container span {
  padding-right: 9px;
}
.number-container .qty-btn-minus {
  background-color: transparent;
  border: 0;
  padding: 0;
  padding-top: 3px;
  height: 18px;
  display: flex;
  align-items: start;
}
.number-container .qty-btn-minus.disabled {
  opacity: 0.3;
}
.number-container .qty-btn-plus {
  background-color: transparent;
  border: 0;
  padding: 0;
  padding-bottom: 3px;
  height: 18px;
  display: flex;
  align-items: end;
}
.number-container .qty-btn-plus.disabled {
  opacity: 0.3;
}

/* The radios */
.radios {
  display: block;
  position: relative;
  padding-left: 33px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Monument Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
@media (min-width: 720px) {
  .radios {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  .radios {
    font-size: 16px;
    line-height: 18px;
  }
}
.radios:not(:last-of-type) {
  margin-bottom: 8px;
}
@media (min-width: 720px) {
  .radios:not(:last-of-type) {
    margin-bottom: -5px;
  }
}
.radios:hover input ~ .checkmark {
  background-color: #DBDBDB;
}
.radios:hover input:checked ~ .checkmark {
  background-color: #fff;
  pointer-events: none;
  cursor: auto;
}
.radios input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radios input:checked ~ .checkmark::after {
  display: block;
}
.radios .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #070708;
  border-radius: 50%;
}
.radios .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #90EFFA;
}

.datepicker-icon {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  pointer-events: none;
  background-image: url('data:image/svg+xml,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.2992 1V3.8M4.69922 1V3.8M1.19922 6.6H13.7992M2.59922 2.4H12.3992C13.1724 2.4 13.7992 3.0268 13.7992 3.8V13.6C13.7992 14.3732 13.1724 15 12.3992 15H2.59922C1.82602 15 1.19922 14.3732 1.19922 13.6V3.8C1.19922 3.0268 1.82602 2.4 2.59922 2.4Z" stroke="%23070708" stroke-width="1.2" stroke-linecap="square"/></svg>');
}

.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #070708;
  background: #fff;
  border: 1px solid #DBDBDB;
  border-radius: 0px;
  margin-top: 13px;
  margin-left: -13px;
}
.pika-single::before, .pika-single::after {
  content: " ";
  display: table;
}
.pika-single::after {
  clear: both;
}
.pika-single.is-hidden {
  display: none;
}
.pika-single.is-hidden {
  display: none;
}
.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}
.pika-title {
  position: relative;
  text-align: center;
}
.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  opacity: 0;
}
.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  background: #fff;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .pika-label {
    font-size: 14px;
    line-height: 16px;
  }
}
.pika-button {
  color: rgba(0, 0, 0, 0.5);
  background: #fff;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  text-align: right;
  height: initial;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .pika-button {
    font-size: 14px;
    line-height: 16px;
  }
}
.pika-button:hover {
  background-color: #90EFFA !important;
  color: #070708;
}
.pika-prev, .pika-next {
  width: 15px;
  height: 14px;
  background-size: 100% 100%;
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  /* hide text using text-indent trick, using width value (it's enough) */
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.pika-prev:hover, .pika-next:hover {
  opacity: 1;
}
.pika-prev.is-disabled, .pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}
.pika-select {
  display: inline-block;
}
.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.pika-table th,
.pika-table td {
  width: 14.2857142857%;
  padding: 0;
}
.pika-table th {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .pika-table th {
    font-size: 14px;
    line-height: 16px;
  }
}
.pika-table th {
  color: #070708;
  text-align: center;
  text-decoration: none;
}
.pika-table th abbr[title],
.pika-table th abbr[data-bs-original-title] {
  text-decoration: none !important;
}

.is-disabled .pika-button {
  background-color: #fff !important;
  opacity: 0.5;
  pointer-events: none;
}

.pika-button {
  color: #070708;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
  background-color: rgba(144, 239, 250, 0.5);
  color: #070708;
}

.is-startrange .pika-button {
  background-color: #90EFFA;
  color: #070708;
}

.is-endrange .pika-button {
  background-color: #90EFFA;
  color: #070708;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  top: 5px;
  left: 15px;
  background-image: url('data:image/svg+xml,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.56641 0.928955L1.06641 4.75054L4.56641 8.57088" stroke="%23070708" stroke-linecap="square" stroke-linejoin="round"/></svg>');
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  top: 5px;
  right: 15px;
  background-image: url('data:image/svg+xml,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.06641 8.57092L4.56641 4.74934L1.06641 0.929001" stroke="%23070708" stroke-linecap="square" stroke-linejoin="round"/></svg>');
}

.is-today .pika-button {
  background-color: #DBDBDB;
  color: #070708;
}

.is-selected .pika-button,
.has-event .pika-button {
  color: #070708;
  font-weight: normal;
  background: #90EFFA;
  border-radius: 0px;
}

.selectize-control {
  margin: 0 !important;
  width: 100%;
  position: relative;
  cursor: pointer;
  border: 0;
}
.selectize-control .selectize-input {
  position: relative;
  color: #070708;
  padding-right: 29px;
  display: flex;
  align-items: center;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .selectize-control .selectize-input {
    font-size: 14px;
    line-height: 16px;
  }
}
.selectize-control .selectize-input input {
  margin: 0px;
  padding: 0;
  pointer-events: none;
  caret-color: transparent;
  position: relative !important;
}
.selectize-control .selectize-input input::placeholder {
  color: #070708;
  opacity: 1;
}
.selectize-control .selectize-input.dropdown-active::after {
  background-image: url('data:image/svg+xml,<svg width="14" height="2" viewBox="0 0 14 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 1L0.999999 0.999999" stroke="%23070708" stroke-linecap="square"/></svg>');
}
.selectize-control .selectize-input::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 7.5L1.5 7.5M7.5 1.5L7.5 13.5" stroke="%23070708" stroke-width="1.2" stroke-linecap="square"/></svg>');
}
@media (max-width: 719.98px) {
  .selectize-control .selectize-input {
    font-size: 16px;
  }
}
.selectize-control .selectize-dropdown {
  padding: 18px 20px 20px;
  top: calc(100% + 25px) !important;
  z-index: 100;
  left: unset !important;
  right: 0;
  width: 212px !important;
  position: absolute;
  background-color: #90EFFA;
  border: 0;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .selectize-control .selectize-dropdown {
    font-size: 14px;
    line-height: 16px;
  }
}
.selectize-control .selectize-dropdown .option {
  color: #070708;
}
.selectize-control .selectize-dropdown .option.selected span::after {
  opacity: 1;
}
@media (hover: hover) {
  .selectize-control .selectize-dropdown .option:hover span::after {
    opacity: 1;
  }
}
.selectize-control .selectize-dropdown .option span {
  position: relative;
}
.selectize-control .selectize-dropdown .option span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: transparent;
  transform: translate(-50%, -50%);
}
.selectize-control .selectize-dropdown .option span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 57%;
  width: 3px;
  height: 3px;
  background-color: #070708;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (min-width: 720px) {
  .selectize-control .selectize-dropdown .option span::after {
    width: 4px;
    height: 4px;
  }
}

.country-select {
  border: 1px solid #DBDBDB;
  width: 100% !important;
  padding: 7px 10px 9px 10px;
}

.country-select .selectize-input input {
  border-color: transparent;
}

.country-select .selectize-input {
  padding-right: 0 !important;
}

.country-select .selectize-dropdown {
  background-color: #fff;
  border: 1px solid #DBDBDB;
  left: -1px !important;
  max-height: 200px;
  overflow: scroll;
  width: auto !important;
  top: 40px !important;
  right: -1px;
}
.country-select .selectize-dropdown .option span {
  position: relative;
}
.country-select .selectize-dropdown .option span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: transparent;
  transform: translate(-50%, -50%);
}
.country-select .selectize-dropdown .option span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 57%;
  width: 3px;
  height: 3px;
  background-color: transparent;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (min-width: 720px) {
  .country-select .selectize-dropdown .option span::after {
    width: 4px;
    height: 4px;
  }
}

.code-select {
  position: absolute !important;
  border: none;
  border-left: 1px solid #DBDBDB;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  width: 100% !important;
  padding: 7px 10px 9px 10px;
}
.code-select .selectize-input input {
  border-color: transparent !important;
}
.code-select .selectize-input::after {
  display: none;
}
.code-select .selectize-dropdown {
  top: 40px !important;
  background-color: #fff;
  border: 1px solid #DBDBDB;
  left: -1px !important;
  max-height: 200px;
  overflow: scroll;
  width: auto !important;
  top: 40px !important;
  right: 0px;
}

.guest-phone {
  margin-left: 59px;
  z-index: 2;
}

.checkbox-wrapper {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .checkbox-wrapper {
    font-size: 14px;
    line-height: 16px;
  }
}
.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  display: none;
  width: 0 !important;
  height: 0 !important;
  cursor: pointer;
}
.checkbox-wrapper.active .checkmark:after {
  opacity: 1;
}
.checkbox-wrapper .checkmark {
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #070708;
}
.checkbox-wrapper .checkmark::after {
  content: "";
  position: absolute;
}
.checkbox-wrapper input:checked ~ .checkmark:after {
  opacity: 1;
}
.checkbox-wrapper .checkmark:after {
  content: "";
  width: 8px;
  height: 6px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3L3 5L7 1" stroke="%23070708" stroke-width="1.2" stroke-linecap="square" stroke-linejoin="round"/></svg>');
  opacity: 0;
}
.checkbox-wrapper.radio {
  padding-left: 30px;
}
.checkbox-wrapper.radio .checkmark {
  border-radius: 100%;
  width: 20px;
  height: 20px;
}
.checkbox-wrapper.radio .checkmark::after {
  background-color: #070708;
  background-image: none;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}

.copy-feedback {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px 9px;
  border-radius: 2px;
  z-index: 4;
  background-color: #90EFFA;
  border: 1px solid #070708;
  color: #070708;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-family: "Monument Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
@media (min-width: 720px) {
  .copy-feedback {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  .copy-feedback {
    font-size: 16px;
    line-height: 18px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output,
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 14px;
    line-height: 16px;
  }
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #070708 !important;
  margin: 2em 0;
  border: 1px solid;
  border-radius: 50px;
  text-align: center;
  padding: 0.6em 1em;
  color: #070708;
  background-color: #90EFFA;
}

#form-submitted,
#footer-form-submitted {
  pointer-events: none;
  position: fixed;
  z-index: 100;
  left: 5%;
  top: 90%;
  padding: 10px 14px 11px;
  border-radius: 50px;
  background-color: #90EFFA;
  border: 1px solid #070708;
  color: #070708;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  #form-submitted,
  #footer-form-submitted {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  #form-submitted,
  #footer-form-submitted {
    left: 20px;
    top: 100px;
  }
}
@media (min-width: 992px) {
  #form-submitted,
  #footer-form-submitted {
    top: auto;
    bottom: 20px;
  }
}
#form-submitted.show,
#footer-form-submitted.show {
  opacity: 1;
}

#invalid-login,
#general-errors,
#general-error,
#email-error,
#password-error {
  color: red;
}
#invalid-login p,
#general-errors p,
#general-error p,
#email-error p,
#password-error p {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  #invalid-login p,
  #general-errors p,
  #general-error p,
  #email-error p,
  #password-error p {
    font-size: 14px;
    line-height: 16px;
  }
}

#general-errors p,
#general-error p,
#email-error p {
  margin-bottom: 20px;
}

.qty-days {
  border-radius: 50px;
  border: 1px solid #070708;
  padding: 4.5px 10px 4.5px;
}
@media (min-width: 720px) {
  .qty-days {
    padding: 5px 10px 6px;
  }
}
@media (min-width: 992px) {
  .qty-days {
    padding: 8px 10px 9px;
  }
}
.qty-days .day-btn-minus,
.qty-days .day-btn-plus {
  background-color: transparent;
  border: 0;
  width: 25px;
}
.qty-days .day-btn-plus {
  justify-content: end;
}
.qty-days .day-qty {
  -moz-appearance: textfield;
}
.qty-days .day-qty::-webkit-outer-spin-button, .qty-days .day-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.modal-rooms .modal-header {
  padding: 15px 25px;
}
@media (min-width: 992px) {
  .modal-rooms .modal-header {
    padding: 19px 25px;
  }
}
.modal-rooms .modal-header button {
  background-color: transparent;
  border: 0;
}
.modal-rooms .modal-header .zamaya-link {
  gap: 7px;
}
.modal-rooms .modal-body {
  padding: 14px 15px 9px;
}
@media (min-width: 720px) {
  .modal-rooms .modal-body {
    padding: 14px 20px 9px;
  }
}
@media (min-width: 992px) {
  .modal-rooms .modal-body {
    padding: 20px 20px 9px;
  }
}
.modal-rooms .modal-body .title {
  padding-bottom: 15px;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .modal-rooms .modal-body .title {
    margin-bottom: 29px;
    padding-bottom: 21px;
  }
}
@media (min-width: 992px) {
  .modal-rooms .modal-body .title {
    margin-bottom: 40px;
  }
}
.modal-rooms .modal-body .swiper {
  margin-bottom: 15px;
}
@media (min-width: 720px) {
  .modal-rooms .modal-body .swiper {
    margin-bottom: 19px;
  }
}
.modal-rooms .modal-body .swiper-slide .image-inner {
  aspect-ratio: 2/1;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 720px) {
  .modal-rooms .modal-body .swiper-slide .image-inner {
    aspect-ratio: 2/1;
  }
}
.modal-rooms .modal-body .swiper-pagination {
  padding-bottom: 8px;
}
@media (min-width: 720px) {
  .modal-rooms .modal-body .swiper-pagination {
    padding-bottom: 5px;
  }
}
.modal-rooms .modal-body .swiper-pagination-bullet {
  opacity: 0.5;
  background-color: #fff;
}
@media (max-width: 719.98px) {
  .modal-rooms .modal-body .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
}
.modal-rooms .modal-body .swiper-pagination-bullet-active {
  background-color: #90EFFA;
  opacity: 1;
}
.modal-rooms .modal-body .ammenities {
  padding-top: 40px;
}
@media (min-width: 720px) {
  .modal-rooms .modal-body .ammenities {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .modal-rooms .modal-body .ammenities {
    padding-top: 61px;
  }
}
.modal-rooms .modal-body .ammenities ul {
  padding-top: 15px;
}
@media (min-width: 720px) {
  .modal-rooms .modal-body .ammenities ul {
    padding-top: 19px;
  }
}
.modal-rooms .modal-body .ammenities ul li {
  border: 0;
  border-top: 1px solid #DBDBDB;
  padding: 8px 0 7px;
  gap: 9px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .modal-rooms .modal-body .ammenities ul li {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  .modal-rooms .modal-body .ammenities ul li {
    padding: 10px 0 9px;
  }
}
.modal-rooms .modal-dialog {
  max-width: none;
  margin: 0;
  display: flex;
  align-items: end;
  height: 100%;
}
@media (min-width: 720px) {
  .modal-rooms .modal-dialog {
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .modal-rooms .modal-dialog {
    max-width: 695px;
    justify-content: end;
    margin-left: auto;
  }
}
.modal-blue {
  padding: 0;
}
.modal-blue .modal-dialog {
  margin: 0 auto 0 0;
  height: 100%;
  display: flex;
  align-items: start;
  transform: translate(0px, -20px) !important;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}
@media (max-width: 991.98px) {
  .modal-blue .modal-dialog {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .modal-blue .modal-dialog {
    transform: translate(-20px, 0px) !important;
  }
}
.modal-blue .modal-content {
  background-color: #90EFFA;
}
.modal-blue .modal-header {
  padding: 0 15px;
}
@media (min-width: 720px) {
  .modal-blue .modal-header {
    padding: 0 20px;
  }
}
.modal-blue .modal-header .title {
  border: 0;
  border-bottom: 1px solid rgba(7, 7, 8, 0.1);
  padding: 16px 0 15px;
}
@media (min-width: 720px) {
  .modal-blue .modal-header .title {
    padding: 19px 0 20px;
  }
}
.modal-blue .modal-header .mobile-drag {
  padding: 2px 0 0;
}
@media (min-width: 720px) {
  .modal-blue .modal-header .mobile-drag {
    padding: 7px 0;
  }
}
.modal-blue .modal-body {
  padding: 20px 15px 15px;
}
@media (min-width: 720px) {
  .modal-blue .modal-body {
    padding: 30px 20px 21px;
  }
}
@media (min-width: 992px) {
  .modal-blue .modal-body {
    padding: 40px 20px 20px;
  }
}
.modal-blue .modal-body .zamaya-buttons {
  margin-top: 21px;
}
@media (min-width: 720px) {
  .modal-blue .modal-body .zamaya-buttons {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .modal-blue .modal-body .zamaya-buttons {
    margin-top: 41px;
  }
}
.modal-blue .modal-image {
  margin-bottom: 15px;
  aspect-ratio: 2.87;
}
@media (min-width: 720px) {
  .modal-blue .modal-image {
    aspect-ratio: 1/0.502;
    margin-bottom: 19px;
  }
}
.modal-blue .modal-image.trainers-modal-image img {
  object-position: top;
}
.modal-blue.show .modal-dialog {
  transform: none !important;
}
.modal-blue.team .modal-dialog {
  max-width: 925px;
}
.modal-blue.team .modal-header {
  border: 0;
  border-bottom: 1px solid;
  border-color: rgba(7, 7, 8, 0.2);
  padding: 1px 0 16px;
}
@media (min-width: 720px) {
  .modal-blue.team .modal-header {
    padding: 1px 0 20px;
  }
}
.modal-blue.team .modal-image {
  padding: 0 0 16px 0;
  margin-bottom: 13px;
  position: relative;
}
@media (min-width: 720px) {
  .modal-blue.team .modal-image {
    aspect-ratio: 1/0.802;
  }
}
.modal-blue.team .modal-image::after {
  content: "";
  position: absolute;
  background-color: rgba(7, 7, 8, 0.2);
  width: calc(100% + 30px);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 1px;
}
@media (min-width: 720px) {
  .modal-blue.team .modal-image::after {
    bottom: auto;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    height: calc(100% + 40px);
    width: 1px;
  }
}
@media (max-width: 719.98px) {
  .modal-blue.team .modal-image img {
    width: 31.5%;
  }
}
@media (max-width: 719.98px) {
  .modal-blue.team .modal-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 720px) {
  .modal-blue.team .modal-image {
    margin-bottom: 0;
    padding: 0 20px 0 0;
  }
}
.modal-blue.team .modal-body {
  padding: 15px;
  position: relative;
}
@media (min-width: 720px) {
  .modal-blue.team .modal-body {
    padding: 20px;
  }
}
.modal-blue.team .modal-body .col-06 {
  width: 100%;
}
@media (min-width: 720px) {
  .modal-blue.team .modal-body .col-06 {
    width: 34.2%;
  }
}
@media (min-width: 992px) {
  .modal-blue.team .modal-body .col-06 {
    width: 45.3%;
  }
}
.modal-blue.team .modal-body .col-07 {
  padding: 0px 6px 1px;
  width: 100%;
}
@media (min-width: 720px) {
  .modal-blue.team .modal-body .col-07 {
    width: 65.8%;
    padding: 0px 15px 1px;
  }
}
@media (min-width: 992px) {
  .modal-blue.team .modal-body .col-07 {
    width: 54.7%;
    padding: 0px 5px 1px 15px;
  }
}
@media (max-width: 719.98px) {
  .modal-blue.team .modal-body .description {
    padding-top: 5px;
  }
}
.modal-blue.blog .modal-dialog {
  max-width: 925px;
  transform: translateY(20%) !important;
  transition: transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.modal-blue.blog .modal-header {
  border: 0;
  border-bottom: 0;
  padding: 1px 0 16px;
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-header {
    padding: 1px 20px 8px;
  }
}
.modal-blue.blog .modal-header .divider {
  background-color: rgba(7, 7, 8, 0.2);
}
.modal-blue.blog .modal-header .h1 {
  padding-bottom: 15px;
  padding-top: 16px;
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-header .h1 {
    padding-bottom: 22px;
    padding-top: 17px;
  }
}
.modal-blue.blog .modal-footer {
  padding: 12px 13px;
  border-color: rgba(7, 7, 8, 0.1);
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-footer {
    padding: 18px 18px;
  }
}
.modal-blue.blog .modal-body {
  padding: 3px 15px 23px;
  position: relative;
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-body {
    padding: 20px 20px 33px;
  }
}
.modal-blue.blog .modal-body .row {
  gap: 21px;
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-body .row {
    gap: 31px;
  }
}
.modal-blue.blog .modal-body .h4 {
  padding-bottom: 6px;
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-body .h4 {
    padding-bottom: 7px;
  }
}
.modal-blue.blog .modal-body .sortby {
  gap: 11px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-body .sortby {
    gap: 20px;
  }
}
.modal-blue.blog .modal-body .topics {
  gap: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .modal-blue.blog .modal-body .topics {
    gap: 16px;
  }
}
.modal-blue.blog.show .modal-dialog {
  transform: none !important;
}
.modal-packages .modal-header {
  padding: 19px 11px;
}
@media (min-width: 720px) {
  .modal-packages .modal-header {
    padding: 19px 25px;
  }
}
.modal-packages .modal-header button {
  background-color: transparent;
  border: 0;
  color: #070708;
}
@media (hover: hover) {
  .modal-packages .modal-header button.zamaya-link:hover, .modal-packages .modal-header button.btn-close:hover {
    color: #DBDBDB;
  }
}
.modal-packages .modal-header .zamaya-link {
  gap: 7px;
}
.modal-packages .modal-content {
  height: 100svh;
  overflow: hidden;
}
.modal-packages .modal-body {
  padding: 20px 15px 154px;
  position: static;
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
  touch-action: pan-y;
  max-width: 100vw;
}
@media (min-width: 720px) {
  .modal-packages .modal-body {
    padding: 20px 20px 154px;
  }
}
@media (min-width: 992px) {
  .modal-packages .modal-body {
    padding: 17px 20px 132px;
  }
}
.modal-packages .modal-body .title {
  padding-bottom: 21px;
  border: 0;
}
@media (min-width: 720px) {
  .modal-packages .modal-body .title {
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .modal-packages .modal-body .title {
    margin-bottom: 33px;
  }
}
@media (max-width: 719.98px) {
  .modal-packages .modal-dialog {
    margin: 0;
  }
}
.modal-package {
  padding: 0;
}
.modal-package .modal-header {
  border: 0;
}
.modal-package .modal-header .h1 {
  padding-top: 39px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(7, 7, 8, 0.1);
}
@media (min-width: 992px) {
  .modal-package .modal-header .h1 {
    padding-top: 48px;
    padding-bottom: 23px;
  }
}
.modal-package .modal-content {
  background-color: #90EFFA;
}
.modal-package .img {
  aspect-ratio: 1.99/1;
  background-color: #DBDBDB;
}
@media (min-width: 992px) {
  .modal-package .img {
    margin-top: 3px;
  }
}
.modal-package .desc {
  padding-top: 18px;
  padding-bottom: 14px;
}
@media (min-width: 992px) {
  .modal-cart .modal-dialog {
    max-width: 581px;
  }
}
.modal-cart .modal-header {
  padding: 19px 11px;
  border-bottom: 1px solid #DBDBDB;
}
@media (min-width: 720px) {
  .modal-cart .modal-header {
    padding: 19px 25px;
  }
}
.modal-cart .modal-header button {
  background-color: transparent;
  border: 0;
}
.modal-cart .modal-header .zamaya-link {
  gap: 7px;
}
.modal-cart .modal-content {
  height: 100vh;
  overflow: hidden;
}
.modal-cart .modal-body {
  padding: 0;
  position: static;
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
}
.modal-cart .modal-body .products-list {
  padding-bottom: 131px;
}
.modal-cart .modal-body .products-list .product-item {
  gap: 20px;
  padding: 20px 15px;
}
@media (min-width: 720px) {
  .modal-cart .modal-body .products-list .product-item {
    padding: 20px 20px;
  }
}
@media (min-width: 992px) {
  .modal-cart .modal-body .products-list .product-item {
    padding: 17px 20px;
  }
}
.modal-cart .modal-body .products-list .product-item {
  border-top: 1px solid #DBDBDB;
}
.modal-cart .modal-body .products-list .product-item:last-of-type {
  border-bottom: 1px solid #DBDBDB;
}
.modal-cart .modal-body .products-list .product-item .product-img {
  width: -webkit-fill-available;
  aspect-ratio: 1/1;
  max-width: 108px;
}
@media (min-width: 720px) {
  .modal-cart .modal-body .products-list .product-item .product-img {
    max-width: 167px;
  }
}
.modal-cart .modal-body .products-list .product-item .qty-input-wrap {
  border-radius: 50px;
  border: 1px solid #070708;
  padding: 4.5px 10px 4.5px;
  width: max-content;
}
@media (min-width: 720px) {
  .modal-cart .modal-body .products-list .product-item .qty-input-wrap {
    padding: 5px 10px 6px;
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  .modal-cart .modal-body .products-list .product-item .qty-input-wrap {
    padding: 9px 10px 10px;
  }
}
.modal-cart .modal-body .products-list .product-item .qty-input-wrap input {
  max-width: 21px;
}
.modal-cart .modal-body .products-list .product-item .qty-input-wrap .qty-btn-minus,
.modal-cart .modal-body .products-list .product-item .qty-input-wrap .qty-btn-plus {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
}
.modal-cart .modal-body .title {
  padding-bottom: 21px;
  border: 0;
}
@media (min-width: 720px) {
  .modal-cart .modal-body .title {
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .modal-cart .modal-body .title {
    margin-bottom: 33px;
  }
}
.modal-cart .buttons {
  padding: 20px 15px;
  border-top: 1px solid #DBDBDB;
}
@media (min-width: 720px) {
  .modal-cart .buttons {
    padding: 20px 20px;
  }
}
@media (min-width: 992px) {
  .modal-cart .buttons {
    padding: 17px 20px;
  }
}
.modal-cart .buttons {
  background-color: #fff;
}
.modal-cart .buttons .zamaya-buttons {
  margin-top: 20px;
}
@media (max-width: 719.98px) {
  .modal-cart .modal-dialog {
    margin: 0;
  }
}
.modal-variant {
  position: absolute;
  bottom: 0;
  opacity: 0;
  width: 100%;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-variant .modal-body {
  border: 1px solid #DBDBDB;
  padding: 0px;
}
.modal-variant.show {
  opacity: 1;
  z-index: 0;
  transform: translateY(0); /* Slide up into view */
}
.modal-variant .variants-buttons .add-to-cart {
  padding: 20px;
  border-bottom: 1px solid #DBDBDB;
  background-color: #fff;
  cursor: pointer;
}
.modal-variant .variants-buttons .add-to-cart:hover {
  filter: brightness(0.89); /* 90% brightness → darker */
}
.modal-variant .variants-buttons .add-to-cart:last-of-type {
  border-bottom: 0;
}

.zamaya-buttons {
  border-radius: 50px;
  border: 1px solid #070708;
  padding: 5px 11px 6px;
  display: flex;
  color: #212529;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .zamaya-buttons {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  .zamaya-buttons {
    padding: 5px 15px 8px;
  }
}
@media (min-width: 992px) {
  .zamaya-buttons {
    padding: 9px 19px 10px;
  }
}
.zamaya-buttons.header {
  background-color: #90EFFA;
  padding: 5px 11px 6px;
  margin-top: 1px;
}
@media (min-width: 720px) {
  .zamaya-buttons.header {
    margin-top: 0px;
  }
}
@media (min-width: 992px) {
  .zamaya-buttons.header {
    padding: 5px 11px 7px;
  }
}
@media (hover: hover) {
  .zamaya-buttons.header:hover {
    background-color: #070708;
    color: #fff;
  }
}
.zamaya-buttons.primary {
  width: fit-content;
  border-radius: 2px;
  border: 1px solid #DBDBDB;
  background-color: #fff;
  color: #212529;
  padding: 0;
}
.zamaya-buttons.primary span {
  padding: 6px 11px 8px;
  height: 100%;
}
.zamaya-buttons.primary .icon {
  height: 100%;
  width: 34px;
  border: 0;
  border-left: 1px solid #DBDBDB;
}
@media (hover: hover) {
  .zamaya-buttons.primary:hover {
    background-color: #070708;
    color: #fff;
  }
}
@media (min-width: 720px) {
  .zamaya-buttons.primary span {
    padding: 8px 11px 9px;
  }
}
@media (min-width: 992px) {
  .zamaya-buttons.primary span {
    padding: 7px 11px;
  }
}
.zamaya-buttons.blue {
  background-color: #90EFFA;
  height: fit-content;
}
@media (hover: hover) {
  .zamaya-buttons.blue:hover {
    background-color: #070708;
    color: #fff;
  }
  .zamaya-buttons.blue:disabled {
    background-color: #90EFFA;
    color: #212529;
    opacity: 0.5;
  }
}
.zamaya-buttons.blue.checkout {
  width: 100%;
}
@media (min-width: 720px) {
  .zamaya-buttons.blue.checkout {
    width: auto;
  }
}
.zamaya-buttons.white {
  background-color: #fff;
}
@media (hover: hover) {
  .zamaya-buttons.white:hover {
    background-color: #070708;
    color: #fff;
  }
}
.zamaya-buttons.circle {
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #212529;
  border: 1px solid #DBDBDB;
  padding: 7px;
}
@media (hover: hover) {
  .zamaya-buttons.circle:hover {
    background-color: #070708;
    color: #fff;
  }
}
.zamaya-buttons.square {
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #212529;
  border: 1px solid #DBDBDB;
  border-radius: 2px;
  padding: 0px;
}
.zamaya-buttons.square svg {
  transform: translateY(1px);
}
@media (hover: hover) {
  .zamaya-buttons.square:hover {
    background-color: #070708;
    color: #fff;
  }
}
@media (max-width: 719.98px) {
  .zamaya-buttons.square {
    background-color: #90EFFA;
    border-color: rgba(7, 7, 8, 0.2);
  }
}
.zamaya-buttons.audio {
  aspect-ratio: 1/1;
  height: 30px;
  width: 30px;
  background-color: #fff;
  color: #212529;
  border: 1px solid #DBDBDB;
  padding: 7px;
  gap: 7px;
  will-change: width;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: none;
}
.zamaya-buttons.audio .hover {
  opacity: 0;
  display: none;
}
.zamaya-buttons.audio .hover span {
  display: inline-block;
  transform: translateY(-2px);
}
@media (hover: hover) {
  .zamaya-buttons.audio:hover {
    aspect-ratio: auto;
    width: fit-content;
    background-color: #070708;
    color: #fff;
  }
  .zamaya-buttons.audio:hover svg {
    display: none;
  }
  .zamaya-buttons.audio:hover .hover {
    opacity: 1;
    display: contents;
  }
  .zamaya-buttons.audio:hover .hover svg {
    display: inline-flex;
  }
}
.zamaya-buttons.play-toggle-button {
  height: 30px;
  background-color: #fff;
  color: #212529;
  border: 1px solid #DBDBDB;
  padding: 7px 15px;
  gap: 7px;
  will-change: width;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  margin-right: 5px;
}
.zamaya-buttons.play-toggle-button .hover {
  opacity: 0;
  display: none;
}
@media (hover: hover) {
  .zamaya-buttons.play-toggle-button:hover {
    width: fit-content;
    background-color: #070708;
    color: #fff;
  }
  .zamaya-buttons.play-toggle-button:hover .hover {
    opacity: 1;
    display: contents;
  }
  .zamaya-buttons.play-toggle-button:hover .hover svg {
    display: inline-flex;
  }
}
.zamaya-buttons[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.zamaya-buttons.wizard {
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .zamaya-buttons.wizard {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .zamaya-buttons.wizard {
    margin-bottom: 60px;
  }
}

.zamaya-link {
  transition: color 0.1s ease-in-out;
}
@media (hover: hover) {
  .zamaya-link:hover {
    color: #DBDBDB;
  }
  .zamaya-link:hover svg {
    color: #DBDBDB;
  }
}
@media (hover: hover) {
  .zamaya-link.white:hover {
    color: #fff;
  }
  .zamaya-link.white:hover svg {
    color: #fff;
  }
}
.zamaya-link.brackets {
  background-color: transparent;
  border: 0;
  position: relative;
  padding: 0 9px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .zamaya-link.brackets {
    font-size: 14px;
    line-height: 16px;
  }
}
.zamaya-link.brackets::before {
  content: "[";
  position: absolute;
  left: 0;
}
@media (min-width: 720px) {
  .zamaya-link.brackets::before {
    left: 0;
  }
}
@media (min-width: 992px) {
  .zamaya-link.brackets::before {
    left: 0;
  }
}
.zamaya-link.brackets::after {
  content: "]";
  position: absolute;
  right: 0;
}
@media (min-width: 720px) {
  .zamaya-link.brackets::after {
    right: 0;
  }
}
@media (min-width: 992px) {
  .zamaya-link.brackets::after {
    right: 0;
  }
}
.zamaya-link.brackets-package {
  background-color: transparent;
  border: 0;
  position: relative;
  padding: 0 5px;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .zamaya-link.brackets-package {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 18px;
  }
}
.zamaya-link.brackets-package::before {
  content: "[";
  position: absolute;
  left: 0;
}
@media (min-width: 720px) {
  .zamaya-link.brackets-package::before {
    left: 0;
  }
}
@media (min-width: 992px) {
  .zamaya-link.brackets-package::before {
    left: 0;
  }
}
.zamaya-link.brackets-package::after {
  content: "]";
  position: absolute;
  right: 0;
}
@media (min-width: 720px) {
  .zamaya-link.brackets-package::after {
    right: 0;
  }
}
@media (min-width: 992px) {
  .zamaya-link.brackets-package::after {
    right: 0;
  }
}

.show-muted .zamaya-buttons.audio.is-muted {
  display: flex;
}

.show-unmuted .zamaya-buttons.audio.is-unmuted {
  display: flex;
}

.is-muted svg {
  vertical-align: baseline;
}

.hero {
  height: 458px;
  width: 100vw;
  padding-top: 56px;
}
@media (min-width: 720px) {
  .hero {
    height: 560px;
    padding-top: 58px;
  }
}
@media (min-width: 992px) {
  .hero {
    height: 731px;
    padding-top: 100px;
  }
}
.hero figure,
.hero figcaption {
  margin: 0;
}
.hero figcaption {
  bottom: 19px;
  z-index: 1;
}
@media (min-width: 720px) {
  .hero figcaption {
    bottom: 30px;
  }
}
@media (min-width: 992px) {
  .hero figcaption {
    bottom: 38px;
  }
}
.hero figcaption .row {
  padding: 0 6px;
}
@media (min-width: 720px) {
  .hero figcaption .row {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .hero figcaption .row {
    padding: 0 20px;
  }
}
.hero video {
  object-position: top;
}
.hero.stay {
  color: #fff;
}
.hero.stay figcaption {
  bottom: 20px;
}
.hero.stay figcaption .zamaya-buttons {
  margin-top: 15px;
}
@media (min-width: 720px) and (max-width: 991.98px) {
  .hero.stay figcaption .zamaya-buttons.primary {
    position: relative;
    bottom: 4px;
  }
}
@media (min-width: 720px) {
  .hero.stay figcaption {
    bottom: 25px;
  }
  .hero.stay figcaption .zamaya-buttons {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .hero.stay figcaption {
    bottom: 43px;
  }
}
.hero.stay figcaption h1 {
  padding-right: 5px;
}
.hero.nutrition {
  color: #fff;
}
.hero.nutrition figcaption {
  bottom: 22px;
}
.hero.nutrition figcaption .zamaya-buttons {
  margin-top: 15px;
}
@media (min-width: 720px) {
  .hero.nutrition figcaption {
    bottom: 32px;
  }
  .hero.nutrition figcaption .zamaya-buttons {
    margin-top: 0px;
  }
}
@media (min-width: 992px) {
  .hero.nutrition figcaption {
    bottom: 43px;
  }
}
.hero.nutrition figcaption h1 {
  padding-right: 5px;
}
.hero.blog {
  aspect-ratio: 1/1.1;
  height: auto;
  color: #fff;
}
@media (min-width: 720px) {
  .hero.blog {
    aspect-ratio: 1.5/1;
  }
}
@media (min-width: 992px) {
  .hero.blog {
    aspect-ratio: 2.096/1;
  }
}
.hero.blog .title {
  padding-bottom: 11px;
}
@media (min-width: 720px) {
  .hero.blog .title {
    padding-bottom: 5px;
  }
}
@media (min-width: 992px) {
  .hero.blog .title {
    padding-left: 26px;
  }
}
.hero.blog .tags {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .hero.blog .tags {
    font-size: 14px;
    line-height: 16px;
  }
}
.hero.blog .author-circle svg {
  transform: translateY(-1px);
}

.display-text {
  padding-top: 80px;
  padding-bottom: 81px;
}
.display-text .h4 {
  padding-bottom: 15px;
}
@media (min-width: 720px) {
  .display-text {
    padding-top: 99px;
    padding-bottom: 100px;
  }
  .display-text .h4 {
    padding-bottom: 21px;
  }
}
@media (min-width: 992px) {
  .display-text {
    padding-top: 215px;
    padding-bottom: 215px;
  }
  .display-text .h4 {
    padding-bottom: 19px;
  }
}
.display-text.experience {
  padding-top: 80px;
  padding-bottom: 0px;
}
.display-text.experience .h4 {
  padding-bottom: 15px;
}
.display-text.experience .zamaya-buttons {
  margin-top: 21px;
}
@media (min-width: 720px) {
  .display-text.experience {
    padding-top: 99px;
    padding-bottom: 1px;
  }
  .display-text.experience .h4 {
    padding-bottom: 21px;
  }
  .display-text.experience .zamaya-buttons {
    margin-top: 31px;
  }
}
@media (min-width: 992px) {
  .display-text.experience {
    padding-top: 202px;
    padding-bottom: 65px;
  }
  .display-text.experience .h4 {
    padding-bottom: 19px;
  }
  .display-text.experience .zamaya-buttons {
    margin-top: 42px;
  }
}
.display-text.location {
  padding-top: 80px;
  padding-bottom: 80px;
}
.display-text.location .h4 {
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .display-text.location .h4 {
    padding-bottom: 17px;
  }
}
.display-text.location .zamaya-buttons {
  margin-top: 21px;
}
@media (min-width: 720px) {
  .display-text.location {
    padding-top: 99px;
    padding-bottom: 101px;
  }
  .display-text.location .h4 {
    padding-bottom: 21px;
  }
  .display-text.location .zamaya-buttons {
    margin-top: 31px;
  }
}
@media (min-width: 992px) {
  .display-text.location {
    padding-top: 227px;
    padding-bottom: 230px;
  }
  .display-text.location .h4 {
    padding-bottom: 19px;
  }
  .display-text.location .zamaya-buttons {
    margin-top: 42px;
  }
}

.accordion.footer .accordion-button {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .accordion.footer .accordion-button {
    font-size: 14px;
    line-height: 16px;
  }
}
.accordion.footer .accordion-button {
  padding: 14px 15px 15px;
}
.accordion.footer .accordion-button:focus {
  box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
}
.accordion.footer .accordion-button::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 8.68897L1 8.68896M8.5 1.18896V16.189" stroke="%23070708" stroke-linecap="square"/></svg>');
  transform-origin: center;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  top: 17px;
  right: 22px;
  width: 14px;
  height: 14px;
}
@media (min-width: 720px) {
  .accordion.footer .accordion-button::after {
    top: 22px;
    right: 26px;
    width: 17px;
    height: 17px;
  }
}
.accordion.footer .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg width="14" height="2" viewBox="0 0 14 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 1H14" stroke="%23070708"/></svg>');
}
.accordion.footer .accordion-item {
  border-radius: 0;
}
.accordion.footer .accordion-item:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}
.accordion.footer .accordion-body {
  padding: 0 15px 15px;
}
.accordion.faq {
  border: 1px solid #DBDBDB;
  overflow: hidden;
  cursor: pointer;
}
.accordion.faq .accordion-header {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .accordion.faq .accordion-header {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  .accordion.faq .accordion-header {
    padding-bottom: 6.5px;
    padding-top: 2px;
  }
}
@media (min-width: 992px) {
  .accordion.faq .accordion-header {
    padding-top: 4.5px;
    padding-bottom: 4.5px;
  }
}
.accordion.faq .accordion-item {
  padding: 16px 0;
}
@media (min-width: 720px) {
  .accordion.faq .accordion-item {
    padding: 21px 0 18px;
  }
}
@media (min-width: 992px) {
  .accordion.faq .accordion-item {
    padding: 18.5px 0 20px;
  }
}
.accordion.faq .accordion-item:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}
.accordion.faq .accordion-item .number {
  padding-left: 25px;
}
.accordion.faq .accordion-item::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.00043 10H16.0004" stroke="currentColor"/><path d="M9.9962 16.0039L9.9962 4.00391" stroke="currentColor"/></svg>');
  transform-origin: center;
  width: 20px;
  height: 20px;
  right: 35px;
  transform: rotate(0);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 720px) {
  .accordion.faq .accordion-item::after {
    background-image: url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 8.68897L1 8.68896M8.5 1.18896V16.189" stroke="currentColor" stroke-linecap="square"/></svg>');
    width: 17px;
    height: 17px;
    right: 43px;
  }
}
@media (min-width: 992px) {
  .accordion.faq .accordion-item::after {
    margin-top: 4.5px;
  }
}
.accordion.faq .accordion-item.active .accordion-body {
  grid-template-rows: 1fr;
  padding-top: 10px;
}
@media (min-width: 992px) {
  .accordion.faq .accordion-item.active .accordion-body {
    padding: 0;
  }
}
.accordion.faq .accordion-item.active::after {
  transform: rotate(45deg);
}
.accordion.faq .accordion-body {
  padding: 0px 0px 0px 20px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding-top 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 992px) {
  .accordion.faq .accordion-body {
    padding: 0;
  }
}

video {
  object-fit: cover !important;
}

.video-js {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.vjs-svg-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  fill: currentColor;
  height: 1.8em;
  width: 1.8em;
}

.vjs-svg-icon:before {
  content: none !important;
}

.vjs-svg-icon:hover,
.vjs-control:focus .vjs-svg-icon {
  filter: drop-shadow(0 0 0.25em #fff);
}

.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABTsAAsAAAAAIpAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV32Y21hcAAAAYQAAAEJAAAD5p42+VxnbHlmAAACkAAADtIAABckI4l972hlYWQAABFkAAAAKwAAADYsvIjpaGhlYQAAEZAAAAAdAAAAJA+RCL1obXR4AAARsAAAABcAAAC8Q2YAAGxvY2EAABHIAAAAYAAAAGB7CIGGbWF4cAAAEigAAAAfAAAAIAFAAI9uYW1lAAASSAAAASUAAAIK1cf1oHBvc3QAABNwAAABfAAAAnXdFqh1eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGR7yDiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGPHcRdyA4RZgQRADaGCyYAAHic7dPXbcMwAEXRK1vuvffem749XAbKV3bjBA6fXsaIgMMLEWoQJaAEFKNnlELyQ4K27zib5PNF6vl8yld+TKr5kH0+cUw0xv00Hwvx2DResUyFKrV4XoMmLdp06NKjz4AhI8ZMmDJjzoIlK9Zs2LJjz4EjJ85cuHLjziPe/0UWL17mf2tqKLz/9jK9f8tXpGCoRdPKhtS0RqFkWvVQNtSKoVYNtWaoddPXEBqG2jQ9XWgZattQO4baNdSeofYNdWCoQ0MdGerYUCeGOjXUmaHODXVhqEtDXRnq2lA3hro11J2h7g31YKhHQz0Z6tlQL4Z6NdSbod4N9WGoT9MfHF6GmhnZLxyDcRMAAAB4nJ1YC1hU17U+a5/HMA4iA3NmVBDmoQwP5TFnHlFeA4gYiUFRQINoSCBAyK3G2yi+0aipYtFcHYo2xsb4NiY3+VrNxSaX5uvt495ozNdoYoxmem2/L8HGpLc+InB279pnhlGr5mvL4eyz99nrrL32eu1/DQcc/okdYgdHOA6MQKp4r9gx0EcMHMezOalVasW5BM7NcXoSb9fFgE6KtSSBxWz1FYDPG+vMBGcKb9cebu2VS5s2aaTkCvRSf6C7Y+Ppibm5E09v7IDs2/3uZQtbD0zIyppwoHXh/93ukmyYgdePNRp65p5v+3v/9otQl2O7wP34cT88p8Md2YxpYLQZoRcy6FlSBRnwnGAe6BPMSCZo+7NJVqS0cE4uHendzhSnbPH6TDqL1+Nme5LZXkCHnGyoH0kne30WH+gswhm3q+pt/mTas9NLS64GnjmSlTPw0wVQT/ewRaBgxtydy3cuUB9/6SW+vb5yRvr+t0eOfPKJZ/9t3+4tL7xj32Xd3thCxi+ge6ifdsAN+l5+wi5HQ/cCoeull1AszS7CUfEcJzK7sKWJAdJhCd0sPM4+EY7QDm5ov08hXRQXE5bf6PV5Q5+IjW7X7Nku92Ask4l2hCRRD6TPqISiCJeQna3SCFwrhrNzXHzo4yFevBwxpzxk8WCIIfkvVEKVy32SbT8n68gzgaslpaiO2zIGIyuSb7RNf9HSuN26y/7OC1tgEmpiyA6aD4qcgTOiLThwGG0eB694FI8NHLLN6OBlRVaMxNAFS4JdXUG6mW8PwpKuYLCLXKGbu8iwYNdgO06Sn3Th+/vyZAxs8Ro30DjHe9gy8Fywi24OMm7Qyzh3MTZVOMYhLBnoC+J79lpTUyQmorjhnMwlcQ5uPEYGpDjsOkkH49BjQLQBqs3jFtFdJNlksYmoQFDArLh8Xh+Qd6Ghcsb6FUuehDi+U/lqD71K/qiegeV1imcwjl7ExwiSrf4BZyCujV6cVcFo6VX+G9IcPyFjJnUufbU/jzrL1X99as36reXl8K32nFaOr+E8jWJEcJ55DpMVfSMe95/AJaOsGBH2GJCNpiRQbK4C8BjdmQA22QY2j03Em13i2YHqtNLU1NI04Yj2HJgA6fQc6VPNpA/D+Ryks554NnVy2mB72uRUfPLsqR4N0LOBQKArwJYO+5W2fgZX8oC1HR6HjNaQTVIG2FPwnTcXXGZZfNB7TE6pTKZUwaw91XWLAoFFGcnB5PHjsckgBjbWutrL+0h5Y1xw3DRGDumsnXb3MJwXrJIN5U7m0rgJ3yG5w4he5ckFG4pmNEkOm0/xOO4r4yL87wqtQM+hiJIVp+6iG2wPBKD35ElGkDx+UfC2v1mFG1o+M3AjNFty8biKMXwzyxnZLds8wYD2BxmCPHAldPOeLsy/0BugftYhVYFAhO8SqQ0j3oK7dHJZnI/jxmUS4onlxskSF8thmvNZjIrRZwEPxr0lBuLRuz3oy/FOHCsxwOPYh2M+e9u3J5pgPYz9gp6G7C9m0A11F9ddqKMfV+4sbq45/YspOysXvT+3pdFdYNg2fHbW8Dz301MqDVuGrz0Fuh0YMW8mddrpqzST7rV9BcvqPoNvadRndWp0p8HvbiqrFj5yFQ/vNFSXDpxpLEFWp+DcrF3FT1afWshFcmCfeAMjEvO65i0Y6XijQfSRPWx3TV/Df7Km3E1l+kLt56s/rwVzuRusNMhudznkwdLaS+QNdeal2jDPP4l9qHc98vTYZOSkxzD+njBWVWjFPKgipx6DkWvXQiW8OYcewVHE5yukinDMcfGgc0opDltYKDxIGBedkzc6jSfE7tlvESCDFUw0Hx0opS+U0lHCxNottbNWSxX9zZVvEhKWUSyBpaXwBc2a98M6UqPeXAs/GDon8Ax7hsthO8cM5HU7Ad0UvRR9lHmtyQKZ4MAe814X5h9MSUkQmhf96eVJ6p90OjIiqSIjvykvr2l5U55O/fPQKD+jIomYpNyGJQ25uQ2kIikRfAmuBHCPsWqkSDEqgZ5KDI2sifS/R43MbZg0idFHbCPNxXxZws1ACVE6hAhOdJwRkJLFBLPZpRGYJ50pko6XzMkgmSx40ljik6AQcKhFnLcQE6rF7PXFe1Ocoj0T3AXgSgJTDIhHRfHlYZKuSzc6uievOJGXY+i5GJkkTp7UM3y0LqATDbtFcbdBxO7o4T25JYlEjoH0uynUh8rapkxp62QN70svSF+hT4gGPlovlmcm/ComLi7mV4kTykV9NFWjE/QrwgQ4uIcAP0rQF4VZYRP2o3PhHHzfPMJj9Ir+uzKUlrH49ntT18AVvj1sc3YGjUT/Mt2Dxawa8ArcA7bCQIpvfwAYu22vEG/No/5RvPdA7g+AelLrPwzy+LtkLPhnpIxH14m4EYq8eeMHbPEPNm6G7Nv9B4jcFPZ8bJj0SEjP3MPgQdKTqqEoy2v6G32P/Y6dxOv04AxnoAeq+GILvUavtYCBXm+BaIhuodcfrN5B/V2EYMCPh+SxavjGyPwV0x4CJgUPGT0mQaODGBACIJZGsMXwAD0LGXx7l3CdAcKMIKI+f5CepWeD0BvyU/GcdBxPF8SwejC6LGZmAURFdsSWKR5HyHld2kbdIZO1Ixx+bnnzU7n5+blPNV9jnUDWhP2tC68tbN3PVIldsQPxSAcSpjOav7Q05uXn5zW2LLvDXn9B6syscPy9iDLEMmSrJz6nYuWMipukjM0AH8JkGS+XFyMRkzSCH7KD/hwm172SAyZYumHlefr5AddrtA0O0TnwaVZxcRY9Bfukn9Gf05N1r9DV9MoBsJ1f+ZrqUvtPHizJAntWybv7hmqLt6QLuK6ZS9Fqi1jO5rDoWPZXXII5Tgajg53cIXCjDCGIcYrRIY2n6+mXOa/W0bdhau3ryiEYe2FV/5oeaIYK/5w5frCyll6/cYO8DiNhw6t1MBWmznt91QX62UF1N7l0eHBZTRGpKaqpKVIPF9UcIzmReud9TSY75+K899GHbBu6wjoR7RKKZVYiYxSPf5/2wJT5e3NAhmUbVn5KLx1Ujg0+BGvpAIh0DezInTkzF37KVocxrKU3r1+XLtAe2lO3l66kfQfB/unKY+q8N375Ru8bc4pJXfEcESU95q+p8ZNZRTWH1d9FzvUdYXk5rLkcdkEisoKKVHQW/b3GEx6tPaYcoJfOr9wAbSBnv1IHpep0OExr4LPMkpJM+j7sly7UHkOzXjoAZljHCGiyegtNlwljM0v+c19ET9Pvst09a2Mtgcf5/ZSzYO5h1156+eyydfAsxGa9XAuF6vzjh6CssLq6ECysperXX0sX5h5ZdpZe3guxsGIPEtHk/aqXX1hVqP5HYVVVISkrrNqvXorIc+5Ou91Hnr/LcD2afi6eX7UBloOcs7cOpqgGaNfs1g7bNbs9z6wASaylN69d0/TFTIz6Ws8+oGV3mE2612wRTHKcVUbhjKadebloMc+dyXgMVtVK6BwMB/+mVW09igdRBWaRtNQX59d/VD//xdQ0TCiYNj1KT9sq6Wdu5WTbqk3qDXyDaLa1fv621LS01G3z61sD6lH8lAxDLicV921s6Bf92JOYvzNYCL1khbqBXEFUzC521N5NyzNaQIWhjyFyDoBIVrAjmv2UEaLlI+c6zw1jmVIPLLLZZUTj6GxGHW+mq1tgHXR2D85p4Q934+jLbtjVLcyCdS10NVzpHqxp4Q/hK7WopY/NRGx9HGsPGdFjOjcpjBnGYMVqY/4eqT5khWEHWUup2A/pTw7pdWgsWft7ETUERL96nRg0HNFPmCYba6pylECaExX89A9WLUOVB4oKLu/o1oqSYHCgLzBUlAz8hNFDRpeSU1XT+LRmDUgPaKbYdHDn9suF/tu13nHJij0N97LfS0QmqONuyONk7zvUI6Qa0pF9f2+oABL92AT6e0U//z9YqAiWtJLU1JK0gS+1aacwamiNqK067u9ZQ8f1d4qLodMzz3uL89Z68V/Hnr++hXWUuHgw8dfi972PeTyPefu3aNNucemQ74qFuIaJnVkOu4Q+yjuwmmC1FqZpl1i4uzoPxjkpPf3Xv545tl26Rr+dOvUd+omqJzch9dOeU7f10Y64nMcKK137DccIZq2WdXtdZjbEoLSzHwiMtrjYLDxpHQW8gjMX6XFYAE2zSWVD04EGYSs9MbO6sEo20BMEAB4mpvSypsKjZ4Stgzb+c3A9/MQT2+vrBy+qvyFxLUtLlSRF/Ri2wjfZ2dus2Q8lXx4608/jnqK5OOap6NY2PSjYYnECCjiEeLJll/pbmqfeIK+ps3+MxrlEhqmTPipVP7kqlF4VhpEb6r+Q7YOJg38kJ9SHBf3NBl6+9YchfbUjb5ahLSzUM3kPHmwFAsZ5rpai0S7E5xWzZ1j+fW7zsUWP2g5NXTw52ySCTrgG0+lbw60l2Y/CB185CoA8NK+tbRKxfjy6pm5hzQRRR+cMqv1Jbiw6STivtEvt3DRcy0QEh92JlUGo2PG4tSKHl00YD6xc8CK+YPYyy3io2lN8BcSjKRzrIV6ypOAobqxViJPaT9M9Hy5szY33mp7OX/Zu89L/7Ww5vqY2Y8b0pKgoiUhG5cPDPzq8qTV/WkzUOIvXVVA96kmjcBrr3HrYC/Wn+fYP6Z7T1rqy3zknbvqma/FvVk96fNXGkuaXrdHW5JGSxZT/2I/O73v+yNWafMdzc5NdxYurHs6h86e01sLKLz9EBrg+x36rxAaED7hRnAMx7Vzu+9wabh3zG8XLQjx0ablUJzmxdErxYT3kzQSd0SSafVqF5PXgpp0OyYJ1EyNHpGUZmvK575ySzd85JSqF7IBzSAbMM04+MbE58xF3/njXOGecSaermlw2y9PsSQdytLJVr8t+wg+rR8cZYoeNxVIzNdk3Bngi8U5LAlgTFoQnzJCa5EsCgYhCaGL+qPj7TdhG31p9tej3R04N//PXxNwJvyUqwaJqRPJY98TJ5TPndmflRAkAhBfe46sfKW5wizSge08Xb7Ca/GUVs55trngkKkrUS2WPzKttaaqq+idmahugkY+W6fN0I6i3gPt/x88U4wAAeJxjYGRgYADiGU9YXsXz23xl4GZnAIFH7fO+IdMc/WBxDgYmEAUASbMKwAB4nGNgZGBgZwABjj4Ghv//OfoZGBlQgT4ARicDZAAAAHicY2BgYGAfxJijD8Fmu4EqBwCSpgKpAAAAAAAADgBoAH4AzADgAQIBQgFsAZgB7gIuAooC0AL8A2IDjAOoA+AEMASwBNoFCAVaBcAGCAYuBnAGrAb2B04HigfSCCoIcAiGCJwIyAkkCVYJiAmsCfIKIApWCsQLknicY2BkYGDQZ2hmYGcAASYg5gJCBob/YD4DABqrAdAAeJxdkE1qg0AYhl8Tk9AIoVDaVSmzahcF87PMARLIMoFAl0ZHY1BHdBJIT9AT9AQ9RQ9Qeqy+yteNMzDzfM+88w0K4BY/cNAMB6N2bUaPPBLukybCLvleeAAPj8JD+hfhMV7hC3u4wxs7OO4NzQSZcI/8Ltwnfwi75E/hAR7wJTyk/xYeY49fYQ/PztM+jbTZ7LY6OWdBJdX/pqs6NYWa+zMxa13oKrA6Uoerqi/JwtpYxZXJ1coUVmeZUWVlTjq0/tHacjmdxuL90OR8O0UEDYMNdtiSEpz5XQGqzlm30kzUdAYFFOb8R7NOZk0q2lwAyz1i7oAr1xoXvrOgtYhZx8wY5KRV269JZ5yGpmzPTjQhvY9je6vEElPOuJP3mWKnP5M3V+YAAAB4nG2ReVPbMBDF/ULi2EkDBFqO3gdHLxUzDB9IkdexBllydRD49ihO3Ckz7B/a31utZnafkkGyiXnyclxhgB0MMUKKMTLkmGCKV5hhF3vYxxwHOMRrvMERjnGCU7zFO7zHB3zEJ3zGF3zFN5zhHBe4xHf8wE/8wm8w/MEVimTYKv44XR9MSCsUjVoeHE3vjQoNsSZ4mmxZmVWPjSz7jlou6/0qKOWEJdKMtCe793/hQfqxa6XWZHMXFl56RS4TvPXSaDeoy0zUUZB109KstDK8lHo5q6Qi1hcOnqkImubPS6aqRq7mlnaEWabub4iYblba3SRmgldS0+FWdhNtt04F14JUaqkl7tcpOpJtErvNt3Bd9HRT5JWxK25Ldjvp6br4hzfFiIdSmlzTg2fSUzNrLd1LE1ynxq4OVaVoKLjzJ60UPtj1RKzHzsbjly6inVnFBS2MucviPncU7Rr7lfTxRepDs1A2j3ZHRc7PuzFYSfE3ZOd4kjwBy227hA==) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10a";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10b";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-downloading {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-downloading:before {
  content: "\f10f";
}

.vjs-icon-file-download {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download:before {
  content: "\f110";
}

.vjs-icon-file-download-done {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download-done:before {
  content: "\f111";
}

.vjs-icon-file-download-off {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download-off:before {
  content: "\f112";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f113";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f114";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f115";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f116";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f117";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f118";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f119";
}

.vjs-icon-repeat {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-repeat:before {
  content: "\f11a";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f11b";
}

.vjs-icon-replay-5, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-5:before, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder:before {
  content: "\f11c";
}

.vjs-icon-replay-10, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-10:before, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-replay-30, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-30:before, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-forward-5, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-5:before, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder:before {
  content: "\f11f";
}

.vjs-icon-forward-10, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-10:before, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder:before {
  content: "\f120";
}

.vjs-icon-forward-30, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-30:before, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f122";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f123";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f124";
}

.vjs-icon-shuffle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-shuffle:before {
  content: "\f125";
}

.vjs-icon-cast {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cast:before {
  content: "\f126";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f127";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f128";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f129";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f12a";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f12b";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f12c";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f12d";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f12e";
}

.video-js {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window,
body.vjs-pip-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen,
body.vjs-pip-window .video-js {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs),
body.vjs-pip-window .video-js {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  display: block;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-pip-container .vjs-pip-text {
  position: absolute;
  bottom: 10%;
  font-size: 2em;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5em;
  text-align: center;
  width: 100%;
}

.vjs-layout-tiny.vjs-pip-container .vjs-pip-text,
.vjs-layout-x-small.vjs-pip-container .vjs-pip-text,
.vjs-layout-small.vjs-pip-container .vjs-pip-text {
  bottom: 0;
  font-size: 1.4em;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin-top: -0.81666em;
  margin-left: -1.5em;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}

.vjs-big-play-button .vjs-svg-icon {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause:not(.vjs-seeking, .vjs-scrubbing, .vjs-error) .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: #212529;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.video-js.vjs-spatial-navigation-enabled .vjs-button:focus {
  outline: 0.0625em solid white;
  box-shadow: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.vjs-menu li.vjs-selected .vjs-svg-icon,
.vjs-menu li.vjs-selected:focus .vjs-svg-icon,
.vjs-menu li.vjs-selected:hover .vjs-svg-icon,
.js-focus-visible .vjs-menu li.vjs-selected:hover .vjs-svg-icon {
  fill: #000000;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-pip-window .vjs-menu-button-popup .vjs-menu {
  left: unset;
  right: 1em;
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  width: 96%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  margin: 20px auto;
  border-radius: 30px;
}

.video-js.vjs-spatial-navigation-enabled .vjs-control-bar {
  gap: 1px;
}

.video-js:not(.vjs-controls-disabled, .vjs-using-native-controls, .vjs-error) .vjs-control-bar.vjs-lock-showing {
  display: flex !important;
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.vjs-button > .vjs-svg-icon {
  display: inline-block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder,
.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  line-height: 0.35em;
  z-index: 1;
}

.vjs-svg-icons-enabled .vjs-play-progress:before {
  content: none !important;
}

.vjs-play-progress .vjs-svg-icon {
  position: absolute;
  top: -0.35em;
  right: -0.4em;
  width: 0.9em;
  height: 0.9em;
  pointer-events: none;
  line-height: 0.15em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display,
.video-js.vjs-touch-enabled:not(.vjs-scrubbing) .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari, and Chrome 53 */
  -webkit-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  -moz-user-select: none;
  user-select: none;
  background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js.vjs-spatial-navigation-enabled .vjs-slider:focus {
  outline: 0.0625em solid white;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-svg-icons-enabled .vjs-volume-level:before {
  content: none;
}

.vjs-volume-level .vjs-svg-icon {
  position: absolute;
  width: 0.9em;
  height: 0.9em;
  pointer-events: none;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  line-height: 0.35em;
  right: -0.5em;
}

.vjs-slider-horizontal .vjs-volume-level .vjs-svg-icon {
  right: -0.3em;
  transform: translateY(-50%);
}

.vjs-slider-vertical .vjs-volume-level .vjs-svg-icon {
  top: -0.55em;
  transform: translateX(-50%);
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster,
.vjs-pip-container.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-svg-icons-enabled .vjs-seek-to-live-control {
  line-height: 0;
}

.vjs-seek-to-live-control .vjs-svg-icon {
  width: 1em;
  height: 1em;
  pointer-events: none;
  fill: #888888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-svg-icon {
  fill: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control,
.vjs-live .vjs-time-divider,
.video-js .vjs-current-time,
.video-js .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-normalise-time-controls:not(.vjs-live) .vjs-time-control {
  display: flex;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.vjs-error .vjs-text-track-display {
  display: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js.vjs-force-center-align-cues .vjs-text-track-cue {
  text-align: center !important;
  width: 80% !important;
}

@supports not (inset: 10px) {
  .video-js .vjs-text-track-display > div {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control,
.vjs-pip-window .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-fullscreen-control,
.vjs-pip-window .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  text-align: left;
  border: 0.6em solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-error .vjs-loading-spinner {
  display: none;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: rgb(255, 255, 255);
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: rgb(255, 255, 255);
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
  20% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
  100% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-svg-icon {
  width: 1.5em;
  height: 1.5em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10c";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-descriptions-menu-item .vjs-menu-item-text .vjs-icon-placeholder,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-descriptions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f12e";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}

.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-spatial-navigation-enabled .vjs-modal-dialog.vjs-text-track-settings {
  height: 80%;
}

.vjs-error .vjs-text-track-settings {
  display: none;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-text-track-settings select {
  font-size: inherit;
}

.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 10px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
  padding: 0 0.6em 0.8em;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}

.vjs-text-track-settings .vjs-label {
  margin: 0 0.5em 0.5em 0;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, rgb(114.9141509434, 132.7028301887, 159.3858490566) 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, rgb(114.9141509434, 132.7028301887, 159.3858490566) 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

.vjs-title-bar {
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  font-size: 1.2em;
  line-height: 1.5;
  transition: opacity 0.1s;
  padding: 0.666em 1.333em 4em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.vjs-error .vjs-title-bar {
  display: none;
}

.vjs-title-bar-title,
.vjs-title-bar-description {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vjs-title-bar-title {
  font-weight: bold;
  margin-bottom: 0.333em;
}

.vjs-playing.vjs-user-inactive .vjs-title-bar {
  opacity: 0;
  transition: opacity 1s;
}

.video-js .vjs-skip-forward-5 {
  cursor: pointer;
}

.video-js .vjs-skip-forward-10 {
  cursor: pointer;
}

.video-js .vjs-skip-forward-30 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-5 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-10 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-30 {
  cursor: pointer;
}

.video-js .vjs-transient-button {
  position: absolute;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(50, 50, 50, 0.5);
  cursor: pointer;
  opacity: 1;
  transition: opacity 1s;
}

.video-js:not(.vjs-has-started) .vjs-transient-button {
  display: none;
}

.video-js.not-hover .vjs-transient-button:not(.force-display),
.video-js.vjs-user-inactive .vjs-transient-button:not(.force-display) {
  opacity: 0;
}

.video-js .vjs-transient-button span {
  padding: 0 0.5em;
}

.video-js .vjs-transient-button.vjs-left {
  left: 1em;
}

.video-js .vjs-transient-button.vjs-right {
  right: 1em;
}

.video-js .vjs-transient-button.vjs-top {
  top: 1em;
}

.video-js .vjs-transient-button.vjs-near-top {
  top: 4em;
}

.video-js .vjs-transient-button.vjs-bottom {
  bottom: 4em;
}

.video-js .vjs-transient-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

.zamaya-wizard {
  height: 100%;
  margin-bottom: 0;
}
.zamaya-wizard .step {
  display: none;
}
.zamaya-wizard .step.active {
  display: block;
}
.zamaya-wizard .buttons {
  gap: 5px;
  padding: 15px 20px;
  border-top: 1px solid #DBDBDB;
  width: -webkit-fill-available;
  background-color: white;
}
.zamaya-wizard .card {
  user-select: none;
  border: 1px solid #DBDBDB;
  margin-bottom: -1px;
  transition: all 0.2s ease;
}
.zamaya-wizard .card_input {
  position: absolute;
  display: block;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
.zamaya-wizard .card_body {
  position: relative;
}
.zamaya-wizard .card_body .img-wrapper {
  padding: 15px;
  border-bottom: 1px solid #DBDBDB;
}
@media (min-width: 720px) {
  .zamaya-wizard .card_body .img-wrapper {
    padding: 19px;
    border-right: 1px solid #DBDBDB;
    border-bottom: 0;
  }
}
.zamaya-wizard .card_body .card-info {
  padding: 13px 14px 15px 14px;
  height: 100%;
}
@media (min-width: 720px) {
  .zamaya-wizard .card_body .card-info {
    padding: 16px 20px 20px 10px;
  }
}
.zamaya-wizard .card_body .card-info h4 {
  margin-bottom: 5px;
}
@media (min-width: 720px) {
  .zamaya-wizard .card_body .card-info h4 {
    margin-bottom: 6px;
  }
}
.zamaya-wizard .card .img {
  width: 100%;
  background-color: #DBDBDB;
  aspect-ratio: 1.77/1;
}
@media (min-width: 720px) {
  .zamaya-wizard .card .img {
    aspect-ratio: 1.9/1;
  }
}
@media (min-width: 992px) {
  .zamaya-wizard .card .img {
    aspect-ratio: 1.7/1;
  }
}
.zamaya-wizard .card .img-small {
  aspect-ratio: 1.77/1;
}
@media (min-width: 720px) {
  .zamaya-wizard .card .img-small {
    aspect-ratio: auto;
  }
}
.zamaya-wizard .card .add-package {
  cursor: pointer;
  padding-bottom: 0;
}
.zamaya-wizard .card .open-package-modal {
  width: fit-content;
}

.three-lines-only {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 14px;
}
@media (min-width: 720px) {
  .three-lines-only {
    font-size: 16px;
    line-height: 18px;
  }
}

.active .loading-state {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1002;
  pointer-events: none;
  opacity: 1;
}
.active .loading-state.hide {
  opacity: 0;
}
.active .loading-state .dots {
  position: absolute;
  right: 0;
  transform: translateX(100%);
  top: 0;
}

.trash-or-edit .edit {
  display: block;
}
.trash-or-edit .trash {
  display: none;
}
.trash-or-edit.active .edit {
  display: none;
}
.trash-or-edit.active .trash {
  display: block;
}

.loading-state {
  opacity: 0;
}

.image_with_text {
  aspect-ratio: 1/1;
}
@media (min-width: 1400px) {
  .image_with_text {
    height: 100%;
  }
}
.image_with_text .zamaya-buttons {
  margin-top: 17px;
}
@media (min-width: 720px) {
  .image_with_text .zamaya-buttons {
    margin-top: 21px;
  }
}
@media (min-width: 992px) {
  .image_with_text .zamaya-buttons {
    margin-top: 22px;
  }
}
.image_with_text.right {
  padding: 19px 0 20px;
}
@media (min-width: 720px) {
  .image_with_text.right {
    padding: 28px 0 30px;
  }
}
@media (min-width: 992px) {
  .image_with_text.right {
    padding: 39px 0 40.5px;
  }
}
.image_with_text.right .h1 {
  transform: translateY(11px);
}
@media (min-width: 992px) {
  .image_with_text.right .h1 {
    transform: translateY(10px);
  }
}

.image_in_grid {
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  overflow: hidden;
}
.image_in_grid_item {
  margin-bottom: 80px;
}
@media (min-width: 720px) {
  .image_in_grid_item {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .image_in_grid_item {
    margin-bottom: 139px;
  }
}
.image_in_grid_item.single {
  border: 0;
  border-top: 1px solid #DBDBDB;
  margin-top: 80px;
}
@media (min-width: 720px) {
  .image_in_grid_item.single {
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .image_in_grid_item.single {
    margin-top: 139px;
  }
}
.image_in_grid_item.stay {
  border: 0;
  border-bottom: 1px solid #DBDBDB;
}
.image_in_grid_item.stay .content-wrapper {
  padding: 18.5px 0 20px;
}
@media (min-width: 720px) {
  .image_in_grid_item.stay .content-wrapper {
    padding: 28.5px 0 30px;
  }
}
@media (min-width: 992px) {
  .image_in_grid_item.stay .content-wrapper {
    padding: 39px 0 41px;
  }
}
@media (max-width: 719.98px) {
  .image_in_grid_item.stay .aspect-sm-square {
    aspect-ratio: 1/0.97;
  }
}
.image_in_grid_item.stay .info {
  padding-top: 19px;
}
@media (min-width: 992px) {
  .image_in_grid_item.stay .info {
    padding-top: 18px;
  }
}
.image_in_grid_item.stay .content {
  padding-top: 10px;
}
@media (min-width: 992px) {
  .image_in_grid_item.stay .content {
    padding-top: 17px;
  }
}
@media (hover: hover) {
  .image_in_grid_item.stay .image_in_grid:hover .zamaya-buttons {
    background-color: #070708;
    color: #fff;
  }
}
.image_in_grid_item.stay .image_in_grid:nth-of-type(even) .row {
  flex-direction: row-reverse;
}
.image_in_grid_item.stay .image_in_grid:nth-of-type(even) .image {
  outline: 0;
  border-right: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  border-top: 1px solid #DBDBDB;
}
.image_in_grid .content {
  padding-top: 10px;
}
@media (min-width: 720px) {
  .image_in_grid .content {
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  .image_in_grid .content {
    padding-top: 15px;
  }
}
.image_in_grid .image {
  border: 0;
  outline: 1px solid #DBDBDB;
  padding: 15px;
  aspect-ratio: 1/1;
  width: 100%;
}
@media (min-width: 720px) {
  .image_in_grid .image {
    padding: 19px;
  }
}
@media (min-width: 1400px) {
  .image_in_grid .image {
    height: 700px;
  }
}
.image_in_grid .zamaya-buttons {
  margin: 16px auto 0;
}
@media (min-width: 720px) {
  .image_in_grid .zamaya-buttons {
    margin: 21px auto 0;
  }
}
@media (min-width: 992px) {
  .image_in_grid .zamaya-buttons {
    margin: 22px auto 0;
  }
}

.full-grid {
  padding-top: 77px;
}
@media (min-width: 720px) {
  .full-grid {
    padding-top: 98px;
  }
}
@media (min-width: 992px) {
  .full-grid {
    padding-top: 136px;
  }
}
.full-grid .divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 40px);
  height: 1px;
  background-color: #DBDBDB;
}
.full-grid .title {
  padding-left: 5px;
  padding-bottom: 21px;
}
@media (min-width: 720px) {
  .full-grid .title {
    padding-left: 10px;
    padding-bottom: 31px;
  }
}
@media (min-width: 992px) {
  .full-grid .title {
    padding-left: 20px;
    padding-bottom: 42px;
  }
}
.full-grid .image {
  padding-top: 20px;
}
@media (min-width: 720px) {
  .full-grid .image {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .full-grid .image {
    padding-top: 40px;
  }
}
.full-grid .content {
  padding-top: 19px;
}
.full-grid .content p:not(:last-of-type) {
  padding-bottom: 16px;
}
@media (min-width: 720px) {
  .full-grid .content p:not(:last-of-type) {
    padding-bottom: 17px;
  }
}
@media (min-width: 992px) {
  .full-grid .content p:not(:last-of-type) {
    padding-bottom: 20px;
  }
}
@media (min-width: 720px) {
  .full-grid .content {
    padding-top: 28px;
  }
}
@media (min-width: 992px) {
  .full-grid .content {
    padding-top: 39px;
  }
}
.full-grid .link {
  padding-top: 16px;
}
@media (min-width: 720px) {
  .full-grid .link {
    padding-top: 22px;
  }
}

.stay-room-grid {
  padding-top: 80px;
  border: 0;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
}
.stay-room-grid .title {
  padding: 0 6px 21.5px;
}
@media (min-width: 720px) {
  .stay-room-grid .title {
    padding: 0 10px 31px;
  }
}
@media (min-width: 992px) {
  .stay-room-grid .title {
    padding: 0 19px 42px;
  }
}
.stay-room-grid .details {
  padding-left: 11px;
  padding-top: 19px;
}
.stay-room-grid .details .info {
  width: 82.6%;
}
@media (min-width: 992px) {
  .stay-room-grid .details .info {
    width: 100%;
  }
}
.stay-room-grid .details ul {
  padding-top: 20px;
  padding-bottom: 11px;
}
.stay-room-grid .details ul li {
  border-top: 1px solid #DBDBDB;
  padding: 5px 0 5.5px;
  gap: 10px;
}
.stay-room-grid .details ul li .h4 {
  transform: translateY(-1px);
}
@media (max-width: 719.98px) {
  .stay-room-grid .details ul li .h4 {
    width: 75%;
  }
}
.stay-room-grid .details ul li svg {
  width: 16px;
}
@media (min-width: 992px) {
  .stay-room-grid .details ul li svg {
    width: 20px;
  }
}
@media (min-width: 992px) {
  .stay-room-grid .details ul li {
    padding: 9.5px 0 10px;
  }
}
@media (min-width: 720px) {
  .stay-room-grid .details ul {
    padding-top: 30px;
    padding-bottom: 22px;
  }
}
@media (min-width: 992px) {
  .stay-room-grid .details ul {
    padding-top: 41px;
    padding-bottom: 29px;
  }
}
@media (min-width: 720px) {
  .stay-room-grid .details {
    padding-left: 15px;
    padding-top: 29px;
  }
}
@media (min-width: 992px) {
  .stay-room-grid .details {
    padding-left: 25px;
    padding-top: 5px;
  }
}
.stay-room-grid .image {
  border: 0;
  padding: 16px 0 15px 0px;
  aspect-ratio: 1/1.09;
  width: 100%;
}
.stay-room-grid .image::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: calc(100% + 40px);
  height: 1px;
  background-color: #DBDBDB;
  top: 0;
}
@media (min-width: 992px) {
  .stay-room-grid .image::after {
    background-color: transparent;
    width: 0;
  }
}
@media (min-width: 720px) {
  .stay-room-grid .image {
    padding: 20px 0 19px 0px;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 992px) {
  .stay-room-grid .image {
    padding: 19px 0 19px 19px;
    border-left: 1px solid #DBDBDB;
  }
}
@media (min-width: 720px) {
  .stay-room-grid .image.single {
    aspect-ratio: auto;
    height: 100%;
  }
}
@media (min-width: 720px) {
  .stay-room-grid {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .stay-room-grid {
    padding-top: 137px;
  }
}

.nutrition-grid {
  padding-top: 77px;
  border: 0;
  border-top: 1px solid #DBDBDB;
}
.nutrition-grid .title {
  padding: 0 5px 21.5px;
}
@media (min-width: 720px) {
  .nutrition-grid .title {
    padding: 0 10px 31px;
  }
}
@media (min-width: 992px) {
  .nutrition-grid .title {
    padding: 0 19px 42px;
  }
}
.nutrition-grid .details {
  padding: 18px 0 16px 11px;
}
.nutrition-grid .details .link {
  padding-top: 20.5px;
}
.nutrition-grid .details .info {
  width: 95.5%;
}
@media (min-width: 720px) and (max-width: 991.98px) {
  .nutrition-grid .details .info {
    width: 93.5%;
  }
}
.nutrition-grid .details p:not(:last-of-type) {
  padding-bottom: 16px;
}
@media (min-width: 720px) {
  .nutrition-grid .details p:not(:last-of-type) {
    padding-bottom: 17px;
  }
}
@media (min-width: 992px) {
  .nutrition-grid .details p:not(:last-of-type) {
    padding-bottom: 20px;
  }
}
@media (min-width: 720px) {
  .nutrition-grid .details {
    padding: 29px 0 20px 15px;
  }
}
@media (min-width: 992px) {
  .nutrition-grid .details {
    padding: 5px 0 20px 25px;
  }
}
.nutrition-grid .image {
  border: 0;
  padding: 16px 0 15px 0px;
  aspect-ratio: 1/1.09;
  width: 100%;
}
.nutrition-grid .image::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: calc(100% + 40px);
  height: 1px;
  background-color: #DBDBDB;
  top: 0;
}
@media (min-width: 720px) {
  .nutrition-grid .image::after {
    background-color: transparent;
    width: 0;
  }
}
@media (min-width: 720px) {
  .nutrition-grid .image {
    padding: 20px 0 19px 20px;
    border-left: 1px solid #DBDBDB;
    aspect-ratio: 1/1.05;
  }
}
@media (min-width: 992px) {
  .nutrition-grid .image {
    padding: 19px 0 19px 19px;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 720px) {
  .nutrition-grid {
    padding-top: 97px;
  }
}
@media (min-width: 992px) {
  .nutrition-grid {
    padding-top: 137px;
  }
}
.nutrition-grid:nth-of-type(odd) .item .row {
  flex-direction: row-reverse;
}
.nutrition-grid:nth-of-type(odd) .item .row .details {
  margin-right: auto;
}
@media (min-width: 720px) and (max-width: 991.98px) {
  .nutrition-grid:nth-of-type(odd) .item .row .details {
    padding-left: 24px;
  }
}
.nutrition-grid:nth-of-type(odd) .item .row .image {
  padding: 19px 19px 19px 0px;
  border-left: 0;
  border-right: 1px solid #DBDBDB;
}

.memories {
  padding-top: 80px;
}
@media (min-width: 720px) {
  .memories {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .memories {
    padding-top: 138px;
  }
}
.memories .title {
  padding: 0 10px;
}
@media (min-width: 720px) {
  .memories .title {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .memories .title {
    padding: 0 25px;
  }
}
.memories .title .zamaya-buttons {
  margin-bottom: 7px;
}
.memories_wrapper {
  margin-top: 16px;
  border: 0;
  border-top: 1px solid #DBDBDB;
}
@media (min-width: 720px) {
  .memories_wrapper {
    margin-top: 27px;
  }
}
@media (min-width: 992px) {
  .memories_wrapper {
    margin-top: 42px;
  }
}
.memories_slider .item {
  background-color: #fff;
  padding: 15px;
  border: 1px solid #DBDBDB;
  box-sizing: border-box;
  height: fit-content;
  margin: -1px -1px 0 0px;
}
.memories_slider .item img {
  height: auto;
}
@media (max-width: 719.98px) {
  .memories_slider .item {
    flex: 0 0 50%;
  }
}
@media (min-width: 720px) {
  .memories_slider .item {
    padding: 20px;
  }
}
.memories_slider .swiper-slide {
  height: auto;
}
.memories_slider .swiper-slide:first-of-type .item {
  border-left: 0;
}
.memories_slider .swiper-slide:last-of-type .item {
  border-right: 0;
}
.memories_slider .swiper-navigation .swiper-button-next {
  right: 21px;
}
.memories_slider .swiper-navigation .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.memories_slider .swiper-navigation .swiper-button-prev {
  left: 20px;
}
.memories_slider .swiper-navigation .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
@media (max-width: 719.98px) {
  .memories_slider .swiper {
    padding-bottom: 30px;
  }
}
@media (max-width: 719.98px) {
  .memories_slider .swiper-pagination {
    position: absolute;
    bottom: 0px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #90EFFA;
  border: 1px solid #070708;
  border-radius: 100%;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  max-width: 15px;
}
@media (min-width: 992px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.swiper-button-next {
  right: 11px;
  transform: translateY(7px);
}
@media (min-width: 992px) {
  .swiper-button-next {
    right: 17px;
    transform: translateY(2px);
  }
}

.swiper-button-prev {
  left: 11px;
  transform: translateY(7px);
}
@media (min-width: 992px) {
  .swiper-button-prev {
    left: 17px;
    transform: translateY(1px);
  }
}

.logos {
  margin-top: -2px;
}
.logos .title {
  padding: 0 20px 0 20px;
}
@media (min-width: 720px) {
  .logos .title {
    padding: 0 30px 0 30px;
  }
}
@media (min-width: 992px) {
  .logos .title {
    padding: 0 39px 0 42px;
  }
}
@media (max-width: 719.98px) {
  .logos .title .zamaya-buttons {
    margin-top: 16.5px;
  }
}
.logos .footer {
  padding-top: 18px;
}
@media (min-width: 720px) {
  .logos .footer {
    padding-top: 31px;
  }
}
@media (min-width: 992px) {
  .logos .footer {
    padding-top: 38px;
  }
}
@media (hover: hover) {
  .logos .footer a:hover {
    color: #90EFFA;
  }
}
.logos .swiper {
  margin-top: 20px;
  padding-right: 7px;
}
@media (min-width: 720px) {
  .logos .swiper {
    margin-top: 32px;
  }
}
.logos .swiper-slide {
  border: 1px solid #DBDBDB;
  background: #fff;
  margin: 0 0 0 -1px;
  height: 139px;
}
.logos .swiper-slide img {
  object-fit: contain;
}
@media (min-width: 720px) {
  .logos .swiper-slide {
    height: 186px;
  }
}
@media (min-width: 992px) {
  .logos .swiper-slide {
    height: 250px;
  }
}
@media (min-width: 992px) {
  .logos .swiper {
    margin-top: 43px;
    padding-right: 7px;
  }
}

.stay-gallery .title {
  color: #fff;
}
.stay-gallery .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 458px;
}
@media (min-width: 720px) {
  .stay-gallery .swiper-slide {
    height: 560px;
  }
}
@media (min-width: 992px) {
  .stay-gallery .swiper-slide {
    height: 731px;
  }
}
.stay-gallery .swiper-slide .responsive-img-container {
  height: 100%;
}
.stay-gallery .gallery-title {
  position: absolute;
  left: 0;
  right: 0;
  padding: 10.5px 15px 17.5px 11px;
  bottom: 0px;
  z-index: 2;
}
.stay-gallery .gallery-title .title {
  padding-bottom: 20px;
  padding-left: 5px;
}
@media (min-width: 720px) {
  .stay-gallery .gallery-title .title {
    padding-bottom: 4px;
  }
}
@media (min-width: 992px) {
  .stay-gallery .gallery-title .title {
    transform: translateY(-4px);
    padding-bottom: 3px;
    padding-left: 16px;
  }
}
@media (min-width: 720px) {
  .stay-gallery .gallery-title {
    padding: 27.5px 25px;
  }
}
@media (min-width: 992px) {
  .stay-gallery .gallery-title {
    padding: 37.5px 23px;
  }
}
.stay-gallery .gallery-pagination {
  color: #fff;
}
.stay-gallery .gallery-pagination .subtitle {
  padding-bottom: 7px;
  padding-left: 6px;
}
@media (min-width: 720px) {
  .stay-gallery .gallery-pagination .subtitle {
    padding-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .stay-gallery .gallery-pagination .subtitle {
    padding-bottom: 12px;
    padding-left: 39px;
  }
}
.stay-gallery .gallery-pagination .swiper-pagination {
  text-align: left;
}
.stay-gallery .gallery-pagination .swiper-pagination-horizontal {
  margin: 0 2px;
}
@media (min-width: 992px) {
  .stay-gallery .gallery-pagination .swiper-pagination-horizontal {
    padding-left: 34px;
  }
}
.stay-gallery .gallery-pagination .swiper-pagination-bullet {
  margin: 2.5px !important;
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  border: 1px solid #070708;
  color: #070708;
  border-radius: 50px;
  padding: 5px 12px 6px;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .stay-gallery .gallery-pagination .swiper-pagination-bullet {
    font-size: 14px;
    line-height: 16px;
  }
}
.stay-gallery .gallery-pagination .swiper-pagination-bullet-active {
  background-color: #90EFFA;
  border-color: #070708;
  color: #070708;
}
@media (min-width: 720px) {
  .stay-gallery .gallery-pagination .swiper-pagination-bullet {
    padding: 5px 13px 8px;
  }
}
@media (min-width: 992px) {
  .stay-gallery .gallery-pagination .swiper-pagination-bullet {
    padding: 9px 19.5px 10px;
  }
}
@media (min-width: 992px) {
  .stay-gallery .gallery-pagination {
    bottom: 38px;
    right: 21px;
  }
}
.stay-gallery .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  color: #fff;
  border-color: #fff;
}

.location-gallery .gallery-pagination {
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 17.5px 14px;
  z-index: 2;
}
@media (min-width: 720px) {
  .location-gallery .gallery-pagination {
    padding: 21px 14px 20px 0px;
  }
}
@media (min-width: 992px) {
  .location-gallery .gallery-pagination {
    top: 0;
    right: 0;
    padding: 32.5px 40px 32.5px 2px;
  }
}
.location-gallery .swiper-pagination {
  text-align: left;
}
@media (min-width: 720px) {
  .location-gallery .swiper-pagination-horizontal {
    margin: 0 6px;
  }
}
@media (min-width: 992px) {
  .location-gallery .swiper-pagination-horizontal {
    margin: 0 2px;
  }
}
.location-gallery .swiper-pagination-bullet {
  margin: 2.5px !important;
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  border: 1px solid #070708;
  color: #070708;
  border-radius: 50px;
  padding: 5px 12px 6px;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .location-gallery .swiper-pagination-bullet {
    font-size: 14px;
    line-height: 16px;
  }
}
.location-gallery .swiper-pagination-bullet-active {
  background-color: #90EFFA;
  border-color: #070708;
  color: #070708;
}
@media (min-width: 720px) {
  .location-gallery .swiper-pagination-bullet {
    padding: 5px 13px 8px;
  }
}
@media (min-width: 992px) {
  .location-gallery .swiper-pagination-bullet {
    padding: 9px 19.5px 10px;
  }
}
.location-gallery .swiper-pagination-bullet {
  border: 1px solid #070708;
  color: #070708;
}
.location-gallery .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: rgba(255, 255, 255, 0.6);
}
.location-gallery .swiper-slide {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.location-gallery .swiper-slide .responsive-img-container {
  height: 100%;
}
.location-gallery .swiper-slide figcaption {
  z-index: 2;
  color: #fff;
  right: 0;
  padding-bottom: 20px;
}
.location-gallery .swiper-slide figcaption p {
  padding-top: 11px;
}
@media (min-width: 992px) {
  .location-gallery .swiper-slide figcaption p {
    padding-top: 20px;
  }
}
@media (min-width: 720px) {
  .location-gallery .swiper-slide figcaption {
    padding-bottom: 34px;
  }
}
@media (min-width: 992px) {
  .location-gallery .swiper-slide figcaption {
    padding-bottom: 41px;
  }
}
@media (min-width: 720px) {
  .location-gallery .swiper-slide {
    height: 560px;
  }
}
@media (min-width: 992px) {
  .location-gallery .swiper-slide {
    height: 700px;
  }
}

.blog-swiper .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 0;
}
@media (min-width: 720px) {
  .blog-swiper .inner .title {
    transform: translateY(-15px);
  }
}
@media (min-width: 992px) {
  .blog-swiper .inner .title {
    transform: translateY(-22px);
  }
}
.blog-swiper .inner .title .zamaya-buttons {
  margin-top: 21px;
  margin-bottom: 30px;
}
@media (min-width: 720px) {
  .blog-swiper .inner .title .zamaya-buttons {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .blog-swiper .inner .title .zamaya-buttons {
    margin-top: 25px;
  }
}
@media (max-width: 719.98px) {
  .blog-swiper .inner .title .h1 {
    padding-top: 16px;
  }
}
@media (min-width: 720px) {
  .blog-swiper .inner {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .blog-swiper .inner {
    padding: 39px 0;
  }
}
@media (min-width: 720px) {
  .blog-swiper .swiper-slide {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .blog-swiper .swiper-slide {
    height: 594px;
  }
}
.blog-swiper .swiper-pagination {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .blog-swiper .swiper-pagination {
    font-size: 14px;
    line-height: 16px;
  }
}
.blog-swiper .swiper-pagination {
  padding-top: 0;
}
@media (max-width: 719.98px) {
  .blog-swiper .swiper-pagination {
    position: relative;
  }
}
.blog-swiper .blog-navigation {
  z-index: 3;
  padding-bottom: 10px;
}
@media (min-width: 720px) {
  .blog-swiper .blog-navigation {
    padding-bottom: 37px;
  }
}
@media (min-width: 992px) {
  .blog-swiper .blog-navigation {
    padding-bottom: 52px;
  }
}
.blog-swiper .blog-navigation .swiper-pagination-bullet {
  background-color: rgba(7, 7, 8, 0.5);
}
.blog-swiper .blog-navigation .swiper-pagination-bullet-active {
  background-color: #212529;
}
.blog-swiper .blog-navigation .swiper-button-next {
  right: 27px;
}
.blog-swiper .blog-navigation .swiper-button-prev {
  left: 27px;
}
.blog-swiper .image {
  width: 100%;
  aspect-ratio: 1.8/1;
}
@media (min-width: 992px) {
  .blog-swiper .image {
    height: 100%;
    aspect-ratio: auto;
  }
}

.room-recommended {
  padding-top: 79px;
}
.room-recommended img {
  aspect-ratio: 1.03/1;
}
@media (min-width: 992px) {
  .room-recommended img {
    aspect-ratio: 1.014/1;
  }
}
.room-recommended figcaption {
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.43%, rgba(0, 0, 0, 0.4) 76.46%);
}
.room-recommended .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
.room-recommended .link {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 720px) {
  .room-recommended .link {
    bottom: 31px;
  }
}
@media (min-width: 992px) {
  .room-recommended .link {
    bottom: 42px;
  }
}
@media (min-width: 720px) {
  .room-recommended {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .room-recommended {
    padding-top: 139px;
  }
}

.main-grid .grid {
  position: relative;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .main-grid .grid {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .main-grid .grid {
    margin-top: 62px;
  }
}
.main-grid .grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 40px);
  height: 1px;
  background-color: #DBDBDB;
}
.main-grid .grid .item {
  padding: 16px 15px 11px 15px;
  border: 0;
  border-left: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  margin: 0 -1px 0 0px;
  position: relative;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
@media (min-width: 720px) {
  .main-grid .grid .item {
    padding: 20px 20px 20px 20px;
  }
}
@media (min-width: 992px) {
  .main-grid .grid .item {
    padding: 20px 20px 16px 20px;
  }
}
.main-grid .grid .item .image {
  aspect-ratio: 1/1.005;
  background-color: rgba(219, 219, 219, 0.2);
}
@media (min-width: 992px) {
  .main-grid .grid .item .image {
    aspect-ratio: 1/1.05;
  }
}
.main-grid .grid .item .info-btn {
  flex: 1;
}
.main-grid .grid .item .content {
  padding-top: 9px;
}
@media (min-width: 720px) {
  .main-grid .grid .item .content {
    padding-top: 14px;
  }
}
@media (hover: hover) {
  .main-grid .grid .item:hover {
    background-color: #f8f9fa;
  }
}
.main-grid .grid .col-lg-4:nth-child(3n+1) > .item {
  border-left: 0;
}
.main-grid .grid .col-lg-4:only-of-type > .item {
  border-left: 0;
  border-right: 1px solid #DBDBDB;
}
.main-grid .grid .shop-item {
  position: relative;
}
.main-grid.team {
  padding-top: 79.5px;
}
@media (min-width: 720px) {
  .main-grid.team {
    padding-top: 98.5px;
  }
}
@media (min-width: 992px) {
  .main-grid.team {
    padding-top: 136.5px;
  }
}
.main-grid.team .team-title {
  padding-left: 20px;
}
@media (min-width: 720px) {
  .main-grid.team .team-title {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .main-grid.team .team-title {
    padding-left: 41px;
  }
}
.main-grid.team .grid {
  margin-top: 21px;
}
@media (min-width: 720px) {
  .main-grid.team .grid {
    margin-top: 31px;
  }
}
@media (min-width: 992px) {
  .main-grid.team .grid {
    margin-top: 43px;
  }
}
.main-grid.blog {
  padding-top: 85px;
}
@media (min-width: 720px) {
  .main-grid.blog {
    padding-top: 78px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog {
    padding-top: 138px;
  }
}
.main-grid.blog .title {
  padding-left: 5px;
}
@media (min-width: 720px) {
  .main-grid.blog .title {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog .title {
    padding-left: 19px;
  }
}
.main-grid.blog .grid {
  margin-top: 20px;
}
@media (min-width: 720px) {
  .main-grid.blog .grid {
    margin-top: 34px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog .grid {
    margin-top: 16px;
  }
}
@media (min-width: 720px) {
  .main-grid.blog .grid .tags {
    padding-bottom: 5px;
  }
}
.main-grid.blog .grid .item {
  flex-direction: column;
  height: 100%;
}
.main-grid.blog .grid .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.main-grid.blog .grid .author {
  padding-top: 21px;
}
@media (min-width: 720px) {
  .main-grid.blog .grid .author {
    padding-top: 29px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog .grid .author {
    padding-top: 40px;
  }
}
.main-grid.blog-recommended {
  padding-top: 79px;
}
@media (min-width: 720px) {
  .main-grid.blog-recommended {
    padding-top: 98px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog-recommended {
    padding-top: 138px;
  }
}
.main-grid.blog-recommended .title {
  padding-left: 5px;
}
@media (min-width: 720px) {
  .main-grid.blog-recommended .title {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog-recommended .title {
    padding-left: 19px;
    padding-right: 21px;
  }
}
@media (max-width: 719.98px) {
  .main-grid.blog-recommended .title .zamaya-buttons {
    margin-top: 16.5px;
  }
}
@media (max-width: 719.98px) {
  .main-grid.blog-recommended .button {
    padding-top: 16px;
  }
}
.main-grid.blog-recommended .grid {
  flex-wrap: nowrap;
  overflow: hidden;
  margin-top: 19px;
}
@media (min-width: 720px) {
  .main-grid.blog-recommended .grid {
    margin-top: 31px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog-recommended .grid {
    margin-top: 41px;
  }
}
@media (min-width: 720px) {
  .main-grid.blog-recommended .grid .tags {
    padding-bottom: 5px;
  }
}
.main-grid.blog-recommended .grid .item {
  flex-direction: column;
  height: 100%;
}
.main-grid.blog-recommended .grid .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.main-grid.blog-recommended .grid .author {
  padding-top: 21px;
}
@media (min-width: 720px) {
  .main-grid.blog-recommended .grid .author {
    padding-top: 29px;
  }
}
@media (min-width: 992px) {
  .main-grid.blog-recommended .grid .author {
    padding-top: 40px;
  }
}
.main-grid.shop {
  padding-top: 79.5px;
}
@media (min-width: 720px) {
  .main-grid.shop {
    padding-top: 98.5px;
  }
}
@media (min-width: 992px) {
  .main-grid.shop {
    padding-top: 136.5px;
  }
}
.main-grid.shop .shop-title {
  padding-left: 20px;
}
@media (min-width: 720px) {
  .main-grid.shop .shop-title {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .main-grid.shop .shop-title {
    padding-left: 41px;
  }
}
.main-grid.shop .grid {
  margin-top: 21px;
}
@media (min-width: 720px) {
  .main-grid.shop .grid {
    margin-top: 31px;
  }
}
@media (min-width: 992px) {
  .main-grid.shop .grid {
    margin-top: 43px;
  }
}
@media (hover: hover) {
  .main-grid.shop .grid .item:hover .image .zamaya-buttons {
    opacity: 1;
  }
}
.main-grid.shop .grid .image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.main-grid.shop .grid .image .zamaya-buttons {
  margin: 18px 21px;
  opacity: 0;
}
.main-grid.shop .grid .product-description {
  padding-top: 6px;
}
.main-grid.shop .grid .product-description .zamaya-buttons {
  margin-top: 14px;
}
@media (min-width: 992px) {
  .main-grid.shop .grid .product-description .zamaya-buttons {
    margin-top: 12px;
  }
}

.map-location {
  padding-top: 79px;
  padding-bottom: 15px;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
}
.map-location .title {
  padding-left: 5px;
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .map-location .title {
    padding-left: 10px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .map-location .title {
    padding-left: 20px;
    padding-bottom: 42px;
  }
}
.map-location .subtitle {
  padding: 19px 5px;
}
@media (min-width: 720px) {
  .map-location .subtitle {
    padding: 29px 10px;
  }
}
@media (min-width: 992px) {
  .map-location .subtitle {
    padding: 39px 20px;
  }
}
.map-location .content {
  padding-top: 21px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 720px) {
  .map-location .content {
    padding-top: 28px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 992px) {
  .map-location .content {
    padding-top: 38px;
  }
}
.map-location .content .h4 {
  padding-bottom: 3px;
}
@media (min-width: 720px) {
  .map-location .content .h4 {
    padding-bottom: 6px;
  }
}
@media (min-width: 992px) {
  .map-location .content .h4 {
    padding-bottom: 5px;
  }
}
.map-location .content p {
  padding-bottom: 24px;
}
@media (min-width: 720px) {
  .map-location .content p {
    padding-bottom: 29px;
  }
}
@media (min-width: 992px) {
  .map-location .content p {
    padding-bottom: 40px;
  }
}
@media (min-width: 720px) {
  .map-location {
    padding-top: 99px;
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .map-location {
    padding-top: 137px;
    padding-bottom: 20px;
  }
}

.mapboxgl-ctrl-logo {
  display: none !important;
}

.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
  display: none;
}

.mapboxgl-map {
  height: 345px;
  border-radius: 0;
}
@media (min-width: 720px) {
  .mapboxgl-map {
    height: 450px;
  }
}

.marker-m {
  width: 35px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml,<svg width="25" height="30" viewBox="0 0 25 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.3729 20.3702L12.1514 28.5917L3.93056 20.3709C-0.607395 15.833 -0.607395 8.46588 3.93056 3.92792C8.46855 -0.609726 15.835 -0.609246 20.3729 3.92861C24.9104 8.46649 24.9104 15.8323 20.3729 20.3702Z" fill="%2390EFFA" stroke="%23070708"/><mask id="mask0_0_1" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="14" height="14"><path d="M11.2896 7.81884C11.6334 7.30315 11.9825 6.08649 11.9825 5.39355L13.0219 8.16531L16.4866 10.9371L18.5655 12.3229L17.526 13.3623C16.4866 14.1708 14.3385 15.8569 14.0614 16.1341C13.7842 16.4113 12.6755 17.8664 11.9825 18.5594L10.9431 17.1735L9.90372 14.4018L6.43903 12.6694L5.74609 12.3229L6.09256 11.63C7.70942 10.7061 10.5967 8.85825 11.2896 7.81884Z" fill="%23070708"/></mask><g mask="url(%23mask0_0_1)"><circle cx="11.9825" cy="12.3226" r="6.23645" fill="%23070708"/><path d="M18.2227 12.2722C18.2227 15.7421 15.4501 18.5593 12.0354 18.5593C12.0354 15.0895 14.8079 12.2722 18.2227 12.2722Z" fill="%2390EFFA"/><path d="M12.0391 18.5588C8.56922 18.5588 5.75197 15.7416 5.75197 12.2717C9.22182 12.2717 12.0391 15.089 12.0391 18.5588Z" fill="%2390EFFA"/><path d="M18.2227 12.2722C14.8079 12.2722 12.0354 9.49969 12.0354 6.08493C15.4501 6.08493 18.2227 8.85745 18.2227 12.2722Z" fill="%2390EFFA"/><path d="M5.74609 12.2727C5.74609 8.85794 8.56334 6.08541 12.0332 6.08541C12.0332 9.50018 9.21594 12.2727 5.74609 12.2727Z" fill="%2390EFFA"/></g></svg>');
  cursor: pointer;
}

.team-filters, .shop-filters {
  padding-left: 20px;
  padding-top: 13px;
  gap: 21px;
}
@media (min-width: 720px) {
  .team-filters, .shop-filters {
    padding-right: 30px;
    padding-left: 0;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .team-filters, .shop-filters {
    padding-right: 40px;
  }
}

.blog-params {
  padding: 44px 20px 10px;
}
.blog-filters {
  gap: 21px;
}
@media (max-width: 991.98px) {
  .blog-filters {
    margin-left: auto;
    width: fit-content;
    padding-right: 11px;
    transform: translateY(3px);
    font-family: "Monument Grotesk Mono";
    letter-spacing: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    font-variant-numeric: slashed-zero;
  }
}
@media (max-width: 991.98px) and (min-width: 992px) {
  .blog-filters {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 991.98px) {
  .blog-filters .button {
    gap: 7px;
  }
}
@media (max-width: 991.98px) and (min-width: 720px) {
  .blog-filters .button {
    gap: 4px;
  }
}
@media (max-width: 991.98px) {
  .blog-filters .button svg {
    max-width: 20px;
    max-height: 20px;
  }
}
@media (max-width: 991.98px) and (min-width: 720px) {
  .blog-filters .button svg {
    max-width: 24px;
    max-height: 24px;
  }
}
@media (max-width: 719.98px) {
  .blog-filters {
    padding-right: 5px;
  }
}

.filter-off {
  display: none !important;
}

.chip {
  background-color: transparent;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 5.5px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .chip {
    font-size: 14px;
    line-height: 16px;
  }
}
.chip span {
  position: relative;
}
.chip span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: transparent;
  transform: translate(-50%, -50%);
}
.chip span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 57%;
  width: 3px;
  height: 3px;
  background-color: #070708;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (min-width: 720px) {
  .chip span::after {
    width: 4px;
    height: 4px;
  }
}
.chip.active span::after {
  opacity: 1;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination-prev, .pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  background-color: #90EFFA;
  border: 1px solid #070708;
}
@media (min-width: 992px) {
  .pagination-prev, .pagination-next {
    width: 40px;
    height: 40px;
  }
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .pagination .page-numbers {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  .pagination .page-numbers {
    width: 40px;
    height: 40px;
  }
}
.pagination .page-numbers.current {
  border: 1px solid transparent;
  border-radius: 100%;
  border-color: #070708;
  pointer-events: none;
  background-color: transparent;
  padding-bottom: 2px;
}
@media (min-width: 720px) {
  .pagination .page-numbers.current {
    padding-bottom: 1px;
  }
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  background-color: #90EFFA;
  border: 1px solid #070708;
}
@media (min-width: 992px) {
  .pagination .page-numbers.next, .pagination .page-numbers.prev {
    width: 40px;
    height: 40px;
  }
}
.pagination .pagination-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.pagination .pagination-numbers li {
  border: 1px solid transparent;
  border-radius: 100%;
}
.pagination .pagination-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .pagination .pagination-numbers li a {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  .pagination .pagination-numbers li a {
    width: 38px;
    height: 38px;
  }
}
.pagination .pagination-numbers li.current {
  border-color: #070708;
  pointer-events: none;
}
.pagination .pagination-numbers li.current a {
  background-color: transparent;
}
.pagination.blog {
  padding-top: 39px;
}
@media (min-width: 720px) {
  .pagination.blog {
    padding-top: 49px;
  }
}
@media (min-width: 992px) {
  .pagination.blog {
    padding-top: 60px;
  }
}

.quantity {
  background-color: #90EFFA;
  border-radius: 100%;
  position: absolute;
  right: 0;
  top: 4px;
  aspect-ratio: 1/1;
  min-width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
  font-family: "Monument Grotesk Mono";
  font-size: 14px;
  line-height: 16px;
  letter-spacing: normal;
}
@media (min-width: 720px) {
  .quantity {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 992px) {
  .quantity {
    font-size: 8px;
    line-height: 7px;
  }
}

.page-home {
  overflow-x: hidden;
}

.faq-experience {
  padding-top: 80px;
}
@media (min-width: 720px) {
  .faq-experience {
    padding-top: 99px;
  }
}
@media (min-width: 992px) {
  .faq-experience {
    padding-top: 140px;
  }
}
.faq-experience .h1 {
  padding-left: 5px;
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .faq-experience .h1 {
    padding-left: 11px;
    padding-bottom: 31px;
  }
}
@media (min-width: 992px) {
  .faq-experience .h1 {
    padding-left: 20px;
    padding-bottom: 42px;
  }
}

.zamaya-booking .hero-booking {
  width: 100vw;
  margin-left: -15px;
  max-height: 245px;
}
.zamaya-booking .hero-booking img {
  object-fit: cover;
  object-position: left 20%;
}
@media (min-width: 992px) {
  .zamaya-booking .hero-booking img {
    object-position: center;
  }
}
@media (min-width: 720px) {
  .zamaya-booking .hero-booking {
    margin-left: -20px;
    max-height: 500px;
  }
}
@media (min-width: 992px) {
  .zamaya-booking .hero-booking {
    max-height: none;
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
.zamaya-booking .breadcrumbs {
  padding-top: 15px;
  padding-bottom: 50px;
}
@media (min-width: 720px) {
  .zamaya-booking .breadcrumbs {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .zamaya-booking .breadcrumbs {
    padding-bottom: 16px;
    padding-bottom: 20px;
    padding-left: 4px;
  }
}
.zamaya-booking form {
  padding-top: 20px;
  padding-bottom: 74px;
  margin-bottom: 0;
}
@media (min-width: 720px) {
  .zamaya-booking form {
    padding-top: 29px;
    padding-bottom: 113px;
  }
}
@media (min-width: 992px) {
  .zamaya-booking form {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.zamaya-booking form .notes {
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .zamaya-booking form .notes {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .zamaya-booking form .notes {
    padding-bottom: 40px;
  }
}
.zamaya-booking form .data-container {
  padding-bottom: 14px;
}
@media (min-width: 720px) {
  .zamaya-booking form .data-container {
    padding-bottom: 19px;
  }
}
@media (max-width: 719.98px) {
  .zamaya-booking form .input-row {
    padding-bottom: 15px;
  }
}
.zamaya-booking .container-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zamaya-booking.no-padding .data-container {
  padding-bottom: 0;
}
@media (min-width: 720px) {
  .zamaya-booking.no-padding form {
    padding-top: 0;
  }
}

.room-selection-form {
  margin-block-end: 0px;
}

.zamaya-rooms.no-padding .wizard-body {
  padding-top: 0;
}
.zamaya-rooms.no-padding .listing {
  padding-top: 0 !important;
}
.zamaya-rooms .thumb {
  aspect-ratio: 1.41/1;
}

@media (min-width: 720px) {
  .wizard-header .breadcrumbs {
    padding-left: 5px;
    padding-top: 2px;
  }
  .wizard-header .breadcrumbs svg {
    transform: translateY(-0.5px);
  }
}
.wizard-body {
  padding-top: 83px;
}
@media (min-width: 720px) {
  .wizard-body {
    padding-top: 109px;
  }
}
@media (min-width: 992px) {
  .wizard-body {
    padding-top: 122px;
  }
}
.wizard-body .form {
  display: flex;
  align-items: end;
  gap: 15px;
}
@media (max-width: 719.98px) {
  .wizard-body .form {
    flex-wrap: wrap;
  }
}
@media (min-width: 720px) {
  .wizard-body .form {
    gap: 9px;
  }
}
@media (min-width: 992px) {
  .wizard-body .form {
    gap: 14px;
  }
}
@media (min-width: 720px) and (max-width: 991.98px) {
  .wizard-body .form .data-mobile {
    margin-left: 0 !important;
    margin-right: 2px;
  }
}
.wizard-body .form .zamaya-buttons {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.wizard-body .form .input-container {
  padding: 13px 9px 14px;
}
@media (min-width: 720px) {
  .wizard-body .form .input-container {
    padding: 7px 9px 11px;
  }
}
@media (min-width: 992px) {
  .wizard-body .form .input-container {
    padding: 7px 12px 11px;
  }
}
.wizard-body .form .input-container span {
  top: 55%;
}
@media (max-width: 991.98px) {
  .wizard-body .form .input-container div.double:nth-of-type(2) input {
    transform: translateX(0);
  }
}
@media (min-width: 720px) and (max-width: 991.98px) {
  .wizard-body .form .dates-group {
    width: 76.5% !important;
  }
}
.wizard-body .form .guests {
  width: 43.8%;
}
@media (max-width: 719.98px) {
  .wizard-body .form .guests {
    flex: 1;
  }
}
.wizard-body .summary-info {
  border: 1px solid #DBDBDB;
  padding: 22px 21px 23px;
  margin-top: 21px;
}
.wizard-body .summary-info .item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wizard-body .summary-info .item:not(:last-of-type) {
  padding-bottom: 9px;
}
.wizard-body .summary-info.rooms {
  padding: 22px 21px 21px;
}
.wizard-body .summary-info.rooms .title {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 14px;
  margin-bottom: 12px;
}
.wizard-body .summary-info.rooms .room {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wizard-body .summary-info.rooms li:not(:last-of-type) {
  padding-bottom: 6px;
}
.wizard-body .summary-info.rooms .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid #DBDBDB;
  margin-top: 13.5px;
  padding-top: 8px;
}
.wizard-body .summary-info.totals {
  padding: 17px 21px 21px;
}
.wizard-body .summary-info.totals .title {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 11px;
}
.wizard-body .summary-info.totals li {
  padding-top: 8px;
}
.wizard-body .summary-info.totals li:not(:last-of-type) {
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 11px;
}
.wizard-body .continue {
  padding-top: 38px;
}
.wizard-body .sticky {
  position: sticky;
  top: 100px;
  padding-bottom: 60px;
}
.wizard-body .listing {
  padding-top: 6px;
}
@media (min-width: 720px) {
  .wizard-body .listing {
    padding-bottom: 60px;
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .wizard-body .listing {
    padding-top: 22px;
    padding-top: 6px;
  }
}
.wizard-body .listing-wrapper {
  border-left: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
}
.wizard-body .listing-wrapper:first-child {
  border-top: 1px solid #DBDBDB;
}
.wizard-body .listing-wrapper .image {
  padding-right: 5px;
}
@media (min-width: 720px) {
  .wizard-body .listing-wrapper .image {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .wizard-body .listing-wrapper .image {
    padding-right: 5px;
  }
}
.wizard-body .listing-wrapper .image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.wizard-body .listing-wrapper .image img,
.wizard-body .listing-wrapper .image .bg-gray {
  height: auto;
  flex: 1;
}
.wizard-body .listing-wrapper .image .container-image {
  padding: 20px;
}
.wizard-body .listing-wrapper .image .container-image img {
  width: 100%;
}
.wizard-body .listing-wrapper .image .swiper,
.wizard-body .listing-wrapper .image .placeholder {
  margin-right: 0;
  border: 0;
  height: 100%;
  border-bottom: 1px solid #DBDBDB;
}
@media (min-width: 720px) and (max-width: 991.98px) {
  .wizard-body .listing-wrapper .image .swiper,
  .wizard-body .listing-wrapper .image .placeholder {
    margin-right: -6px;
  }
}
@media (min-width: 720px) {
  .wizard-body .listing-wrapper .image .swiper,
  .wizard-body .listing-wrapper .image .placeholder {
    border-bottom: 0;
    border-right: 1px solid #DBDBDB;
  }
}
.wizard-body .listing-wrapper .image .swiper-wrapper,
.wizard-body .listing-wrapper .image .placeholder-wrapper {
  height: 100%;
}
.wizard-body .listing-wrapper .image .swiper-slide,
.wizard-body .listing-wrapper .image .placeholder-slide {
  padding: 14.5px;
}
@media (min-width: 720px) {
  .wizard-body .listing-wrapper .image .swiper-slide,
  .wizard-body .listing-wrapper .image .placeholder-slide {
    padding: 19.5px 19.5px 19.5px 13.5px;
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .wizard-body .listing-wrapper .image .swiper-slide,
  .wizard-body .listing-wrapper .image .placeholder-slide {
    padding: 19.5px;
  }
}
.wizard-body .listing-wrapper .image .swiper-pagination,
.wizard-body .listing-wrapper .image .placeholder-pagination {
  bottom: 34px;
}
.wizard-body .listing-wrapper .image .swiper-pagination-bullet,
.wizard-body .listing-wrapper .image .placeholder-pagination-bullet {
  width: 6px;
  height: 6px;
}
.wizard-body .listing-wrapper .information {
  padding: 13px 14.5px 14.5px 14.5px;
}
@media (min-width: 720px) {
  .wizard-body .listing-wrapper .information {
    padding: 18px 19.5px 18px 24px;
  }
}
@media (min-width: 992px) {
  .wizard-body .listing-wrapper .information {
    padding: 18px 19.5px 18px 8px;
  }
}
.wizard-body .listing-wrapper .ammenities {
  padding-top: 6px;
}
@media (min-width: 720px) {
  .wizard-body .listing-wrapper .ammenities {
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  .wizard-body .listing-wrapper .ammenities {
    padding-top: 10px;
  }
}
.wizard-body .listing-wrapper .ammenities ul {
  gap: 0 13px;
}
.wizard-body .listing-wrapper .ammenities ul li {
  gap: 9px;
}
@media (min-width: 720px) {
  .wizard-body .listing-wrapper .ammenities ul li {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .wizard-body .listing-wrapper .ammenities ul li {
    gap: 9px;
  }
}
.wizard-body .listing-wrapper .ammenities ul li:not(:last-of-type)::after {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="5" height="5" viewBox="0 0 5 5" xmlns="http://www.w3.org/2000/svg"><circle cx="2.5" cy="2.5" r="2.5" fill="%23070708"/></svg>');
  background-repeat: repeat;
  width: 5px;
  height: 5px;
}
.wizard-body .listing-wrapper .ammenities.no-after {
  margin-top: auto;
}
.wizard-body .listing-wrapper .ammenities.no-after ul li:not(:last-of-type) {
  padding-right: 0;
}
.wizard-body .listing-wrapper .ammenities.no-after ul li:not(:last-of-type)::after {
  content: none;
}
.wizard-body .listing-wrapper .ammenities p {
  white-space: nowrap;
}
.wizard-body .listing-wrapper .options {
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .wizard-body .listing-wrapper .options {
    padding-top: 40px;
    display: block;
  }
}
@media (min-width: 992px) {
  .wizard-body .listing-wrapper .options {
    padding-top: 40px;
  }
}
@media (max-width: 719.98px) {
  .wizard-body .listing-wrapper .options .radios {
    padding-bottom: 0;
    padding-top: 3px;
  }
}
.wizard-body .listing-wrapper .options .radios .checkmark {
  width: 20px;
  height: 20px;
}
.wizard-body .listing-wrapper .options .radios .checkmark::after {
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wizard-body .listing-wrapper .desc {
  padding-top: 31px;
  padding-bottom: 5.5px;
}

.quick-add {
  padding-top: 11px;
  column-gap: 10px;
  row-gap: 15px;
  flex-wrap: wrap;
}
@media (min-width: 720px) {
  .quick-add {
    padding-top: 20px;
    row-gap: 17px;
  }
}
.quick-add.extra {
  padding-top: 18px;
}
@media (max-width: 719.98px) {
  .quick-add .add-button {
    width: 100%;
  }
}
.quick-add .add-button .add {
  display: inline;
}
.quick-add .add-button .selected {
  display: none;
}
.quick-add .add-button button {
  width: max-content;
}
.quick-add .add-button button.apparel {
  width: 100%;
  padding: 9px 17px 10px;
  white-space: normal;
}
.quick-add .add-button .added {
  background-color: #90EFFA;
}
.quick-add .add-button .added .add {
  display: none;
}
.quick-add .add-button .added .selected {
  display: inline;
}
.quick-add .add-button .added:hover {
  color: #070708;
}
.quick-add #rooms input {
  max-width: 24px;
  padding-left: 0;
  padding-right: 0;
}
.quick-add #rooms input::-webkit-outer-spin-button,
.quick-add #rooms input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quick-add #rooms input[type=number] {
  -moz-appearance: textfield;
  transform: translateY(-2px);
}
.quick-add .qty-rooms.added {
  background-color: #90EFFA;
}
.quick-add .qty-rooms {
  border-radius: 50px;
  border: 1px solid #070708;
  padding: 3.5px 10px 1.5px;
}
@media (min-width: 720px) {
  .quick-add .qty-rooms {
    padding: 5.5px 10px 5.5px;
  }
}
@media (min-width: 992px) {
  .quick-add .qty-rooms {
    padding: 9px 7.5px 9px;
  }
}
.quick-add .qty-rooms .qty-btn-minus,
.quick-add .qty-rooms .qty-btn-plus {
  background-color: transparent;
  border: 0;
}

.zamaya-guests .wizard-header,
.zamaya-checkout .wizard-header,
.zamaya-success .wizard-header {
  position: fixed;
  padding-top: 15px;
  padding-bottom: 14px;
  z-index: 5;
  background-color: #fff;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-header,
  .zamaya-checkout .wizard-header,
  .zamaya-success .wizard-header {
    font-size: 14px;
    line-height: 16px;
  }
}
.zamaya-guests .wizard-header,
.zamaya-checkout .wizard-header,
.zamaya-success .wizard-header {
  border: 0;
  border-bottom: 1px solid #DBDBDB;
}
@media (min-width: 720px) {
  .zamaya-guests .wizard-header,
  .zamaya-checkout .wizard-header,
  .zamaya-success .wizard-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-header,
  .zamaya-checkout .wizard-header,
  .zamaya-success .wizard-header {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}
.zamaya-guests .wizard-header .breadcrumbs,
.zamaya-checkout .wizard-header .breadcrumbs,
.zamaya-success .wizard-header .breadcrumbs {
  gap: 8px;
  transform: translateY(-1px);
}
@media (min-width: 720px) {
  .zamaya-guests .wizard-header .breadcrumbs,
  .zamaya-checkout .wizard-header .breadcrumbs,
  .zamaya-success .wizard-header .breadcrumbs {
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-header .breadcrumbs,
  .zamaya-checkout .wizard-header .breadcrumbs,
  .zamaya-success .wizard-header .breadcrumbs {
    gap: 10px;
  }
}
.zamaya-guests .wizard-header .breadcrumbs svg,
.zamaya-checkout .wizard-header .breadcrumbs svg,
.zamaya-success .wizard-header .breadcrumbs svg {
  margin-top: 3px;
}
.zamaya-guests .wizard-header .breadcrumbs-wrapper,
.zamaya-checkout .wizard-header .breadcrumbs-wrapper,
.zamaya-success .wizard-header .breadcrumbs-wrapper {
  gap: 15px;
}
.zamaya-guests .wizard-header .breadcrumbs a,
.zamaya-checkout .wizard-header .breadcrumbs a,
.zamaya-success .wizard-header .breadcrumbs a {
  opacity: 0.5;
}
.zamaya-guests .wizard-header .breadcrumbs a.zamaya-link,
.zamaya-checkout .wizard-header .breadcrumbs a.zamaya-link,
.zamaya-success .wizard-header .breadcrumbs a.zamaya-link {
  opacity: 1;
}
.zamaya-guests .wizard-body,
.zamaya-checkout .wizard-body,
.zamaya-success .wizard-body {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.zamaya-guests .wizard-body .title h1,
.zamaya-checkout .wizard-body .title h1,
.zamaya-success .wizard-body .title h1 {
  padding-bottom: 11px;
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-body .title h1,
  .zamaya-checkout .wizard-body .title h1,
  .zamaya-success .wizard-body .title h1 {
    padding-bottom: 19px;
  }
}
.zamaya-guests .wizard-body .guestlist,
.zamaya-checkout .wizard-body .guestlist,
.zamaya-success .wizard-body .guestlist {
  padding-top: 20px;
}
@media (min-width: 720px) {
  .zamaya-guests .wizard-body .guestlist,
  .zamaya-checkout .wizard-body .guestlist,
  .zamaya-success .wizard-body .guestlist {
    padding-top: 31px;
  }
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-body .guestlist,
  .zamaya-checkout .wizard-body .guestlist,
  .zamaya-success .wizard-body .guestlist {
    padding-top: 40px;
  }
}
.zamaya-guests .wizard-body .guestlist,
.zamaya-checkout .wizard-body .guestlist,
.zamaya-success .wizard-body .guestlist {
  padding-bottom: 60px;
}
.zamaya-guests .wizard-body .guestlist .guest,
.zamaya-checkout .wizard-body .guestlist .guest,
.zamaya-success .wizard-body .guestlist .guest {
  border: 1px solid #DBDBDB;
  padding: 13.5px 14.5px 14.5px;
}
@media (min-width: 720px) {
  .zamaya-guests .wizard-body .guestlist .guest,
  .zamaya-checkout .wizard-body .guestlist .guest,
  .zamaya-success .wizard-body .guestlist .guest {
    padding: 18.5px 18px 19px;
  }
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-body .guestlist .guest,
  .zamaya-checkout .wizard-body .guestlist .guest,
  .zamaya-success .wizard-body .guestlist .guest {
    padding: 17.5px 18px 20px;
  }
}
.zamaya-guests .wizard-body .guestlist .guest:not(:last-of-type),
.zamaya-checkout .wizard-body .guestlist .guest:not(:last-of-type),
.zamaya-success .wizard-body .guestlist .guest:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 720px) {
  .zamaya-guests .wizard-body .guestlist .guest:not(:last-of-type),
  .zamaya-checkout .wizard-body .guestlist .guest:not(:last-of-type),
  .zamaya-success .wizard-body .guestlist .guest:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.zamaya-guests .wizard-body .guestlist .guest h3,
.zamaya-checkout .wizard-body .guestlist .guest h3,
.zamaya-success .wizard-body .guestlist .guest h3 {
  padding-bottom: 10.5px;
}
@media (min-width: 720px) {
  .zamaya-guests .wizard-body .guestlist .guest h3,
  .zamaya-checkout .wizard-body .guestlist .guest h3,
  .zamaya-success .wizard-body .guestlist .guest h3 {
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-body .guestlist .guest h3,
  .zamaya-checkout .wizard-body .guestlist .guest h3,
  .zamaya-success .wizard-body .guestlist .guest h3 {
    padding-bottom: 16px;
  }
}
.zamaya-guests .wizard-body .guestlist .guest .package,
.zamaya-checkout .wizard-body .guestlist .guest .package,
.zamaya-success .wizard-body .guestlist .guest .package {
  padding-top: 14.5px;
}
@media (min-width: 720px) {
  .zamaya-guests .wizard-body .guestlist .guest .package,
  .zamaya-checkout .wizard-body .guestlist .guest .package,
  .zamaya-success .wizard-body .guestlist .guest .package {
    padding-top: 19.5px;
  }
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-body .guestlist .guest .package,
  .zamaya-checkout .wizard-body .guestlist .guest .package,
  .zamaya-success .wizard-body .guestlist .guest .package {
    padding-top: 20px;
  }
}
.zamaya-guests .wizard-body .guestlist .guest .package-check,
.zamaya-checkout .wizard-body .guestlist .guest .package-check,
.zamaya-success .wizard-body .guestlist .guest .package-check {
  background-color: #90EFFA;
  padding: 5px 5px 4.5px;
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-body .guestlist .guest .package-check,
  .zamaya-checkout .wizard-body .guestlist .guest .package-check,
  .zamaya-success .wizard-body .guestlist .guest .package-check {
    padding: 3px 5px 4.5px;
  }
}
@media (min-width: 992px) {
  .zamaya-guests .wizard-body .guestlist .guest .package-check svg,
  .zamaya-checkout .wizard-body .guestlist .guest .package-check svg,
  .zamaya-success .wizard-body .guestlist .guest .package-check svg {
    margin-top: 2px;
  }
}
.zamaya-guests .wizard-body .guestlist .guest .package-check,
.zamaya-checkout .wizard-body .guestlist .guest .package-check,
.zamaya-success .wizard-body .guestlist .guest .package-check {
  gap: 7px;
  margin-bottom: 12px;
}
.zamaya-guests .wizard-body .summary-info,
.zamaya-checkout .wizard-body .summary-info,
.zamaya-success .wizard-body .summary-info {
  border: 1px solid #DBDBDB;
  padding: 22px 21px 23px;
  margin-top: 21px;
}
.zamaya-guests .wizard-body .summary-info .item,
.zamaya-checkout .wizard-body .summary-info .item,
.zamaya-success .wizard-body .summary-info .item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.zamaya-guests .wizard-body .summary-info .item:not(:last-of-type),
.zamaya-checkout .wizard-body .summary-info .item:not(:last-of-type),
.zamaya-success .wizard-body .summary-info .item:not(:last-of-type) {
  padding-bottom: 9px;
}
.zamaya-guests .wizard-body .summary-info.rooms,
.zamaya-checkout .wizard-body .summary-info.rooms,
.zamaya-success .wizard-body .summary-info.rooms {
  padding: 22px 21px 21px;
}
.zamaya-guests .wizard-body .summary-info.rooms .title,
.zamaya-checkout .wizard-body .summary-info.rooms .title,
.zamaya-success .wizard-body .summary-info.rooms .title {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 14px;
  margin-bottom: 12px;
}
.zamaya-guests .wizard-body .summary-info.rooms .room,
.zamaya-checkout .wizard-body .summary-info.rooms .room,
.zamaya-success .wizard-body .summary-info.rooms .room {
  display: flex;
  align-items: center;
  gap: 16px;
}
.zamaya-guests .wizard-body .summary-info.rooms li:not(:last-of-type),
.zamaya-checkout .wizard-body .summary-info.rooms li:not(:last-of-type),
.zamaya-success .wizard-body .summary-info.rooms li:not(:last-of-type) {
  padding-bottom: 6px;
}
.zamaya-guests .wizard-body .summary-info.rooms .totals,
.zamaya-checkout .wizard-body .summary-info.rooms .totals,
.zamaya-success .wizard-body .summary-info.rooms .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid #DBDBDB;
  margin-top: 13.5px;
  padding-top: 8px;
}
.zamaya-guests .wizard-body .summary-info.totals,
.zamaya-checkout .wizard-body .summary-info.totals,
.zamaya-success .wizard-body .summary-info.totals {
  padding: 17px 21px 21px;
}
.zamaya-guests .wizard-body .summary-info.totals .title,
.zamaya-checkout .wizard-body .summary-info.totals .title,
.zamaya-success .wizard-body .summary-info.totals .title {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 11px;
}
.zamaya-guests .wizard-body .summary-info.totals li,
.zamaya-checkout .wizard-body .summary-info.totals li,
.zamaya-success .wizard-body .summary-info.totals li {
  padding-top: 8px;
}
.zamaya-guests .wizard-body .summary-info.totals li:not(:last-of-type),
.zamaya-checkout .wizard-body .summary-info.totals li:not(:last-of-type),
.zamaya-success .wizard-body .summary-info.totals li:not(:last-of-type) {
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 11px;
}
.zamaya-guests .wizard-body .continue,
.zamaya-checkout .wizard-body .continue,
.zamaya-success .wizard-body .continue {
  padding-top: 38px;
}
.zamaya-guests .wizard-body .sticky,
.zamaya-checkout .wizard-body .sticky,
.zamaya-success .wizard-body .sticky {
  position: sticky;
  top: 122px;
  padding-bottom: 60px;
}

.remove-button {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='17' viewBox='0 0 14 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4055 3.5V14.25C12.4055 14.7141 12.2264 15.1592 11.9076 15.4874C11.5888 15.8156 11.1564 16 10.7055 16H3.33844C2.88757 16 2.45517 15.8156 2.13636 15.4874C1.81755 15.1592 1.63844 14.7141 1.63844 14.25V3.5M0 3.5H14M4 2.5C4 0.877114 4.75 0.5 5.5 0.5H8.5C9.25 0.5 10 0.877114 10 2.5M5.5 6.5V12.5M8.5 6.5V12.5' stroke='currentColor'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .remove-button:hover {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='17' viewBox='0 0 14 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4055 3.5V14.25C12.4055 14.7141 12.2264 15.1592 11.9076 15.4874C11.5888 15.8156 11.1564 16 10.7055 16H3.33844C2.88757 16 2.45517 15.8156 2.13636 15.4874C1.81755 15.1592 1.63844 14.7141 1.63844 14.25V3.5M0 3.5H14M4 2.5C4 0.877114 4.75 0.5 5.5 0.5H8.5C9.25 0.5 10 0.877114 10 2.5M5.5 6.5V12.5M8.5 6.5V12.5' stroke='%2390EFFA'/%3E%3C/svg%3E%0A");
  }
}

.edit-button {
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.9624 2.41692C10.7281 2.18261 10.3482 2.18261 10.1138 2.41692C9.87954 2.65124 9.87953 3.03113 10.1138 3.26545L10.9624 2.41692ZM11.7326 4.88425C11.967 5.11856 12.3469 5.11856 12.5812 4.88425C12.8155 4.64993 12.8155 4.27004 12.5812 4.03572L11.7326 4.88425ZM11.5788 1.41508L12.0031 1.83935L12.0031 1.83935L11.5788 1.41508ZM7.19958 5.79433L7.62244 6.21999L7.62384 6.21859L7.19958 5.79433ZM6.75607 6.6217L7.34445 6.73924L7.34465 6.73822L6.75607 6.6217ZM6.35156 8.64653L5.76319 8.52899C5.72389 8.72571 5.7855 8.92905 5.92738 9.07088C6.06925 9.2127 6.27261 9.27424 6.46932 9.23487L6.35156 8.64653ZM8.3764 8.24126L8.25873 7.65291L8.25865 7.65293L8.3764 8.24126ZM9.20377 7.79852L8.7795 7.37426L8.7795 7.37426L9.20377 7.79852ZM13.583 3.41927L14.0073 3.84354L14.0073 3.84354L13.583 3.41927ZM12.5809 1L12.5809 1.6L12.5809 1ZM13.07 10.176V9.57596H11.87V10.176H13.07ZM1 12.47L0.4 12.47L1 12.47ZM2.52933 2.5293L2.52933 1.9293L2.52933 2.5293ZM4.82333 3.1293H5.42333V1.9293H4.82333V3.1293ZM10.5381 2.84119L10.1138 3.26545L11.7326 4.88425L12.1569 4.45998L12.5812 4.03572L10.9624 2.41692L10.5381 2.84119ZM11.5788 1.41508L11.1546 0.990818L6.77531 5.37006L7.19958 5.79433L7.62384 6.21859L12.0031 1.83935L11.5788 1.41508ZM7.19958 5.79433L6.77671 5.36867C6.46497 5.67837 6.25283 6.07412 6.16749 6.50518L6.75607 6.6217L7.34465 6.73822C7.38356 6.54166 7.48029 6.3612 7.62244 6.21999L7.19958 5.79433ZM6.75607 6.6217L6.1677 6.50416L5.76319 8.52899L6.35156 8.64653L6.93994 8.76408L7.34445 6.73924L6.75607 6.6217ZM6.35156 8.64653L6.46932 9.23487L8.49415 8.82959L8.3764 8.24126L8.25865 7.65293L6.23381 8.0582L6.35156 8.64653ZM8.3764 8.24126L8.49407 8.82961C8.92361 8.7437 9.31784 8.53298 9.62803 8.22278L9.20377 7.79852L8.7795 7.37426C8.63702 7.51674 8.45622 7.61342 8.25873 7.65291L8.3764 8.24126ZM9.20377 7.79852L9.62803 8.22278L14.0073 3.84354L13.583 3.41927L13.1588 2.99501L8.7795 7.37426L9.20377 7.79852ZM13.583 3.41927L14.0073 3.84354C14.1946 3.65622 14.3432 3.43385 14.4445 3.18912L13.8902 2.95951L13.3359 2.7299C13.2948 2.82904 13.2346 2.91913 13.1588 2.99501L13.583 3.41927ZM13.8902 2.95951L14.4445 3.18912C14.5459 2.94438 14.5981 2.68208 14.5981 2.41718L13.9981 2.41718L13.3981 2.41718C13.3981 2.52449 13.377 2.63075 13.3359 2.7299L13.8902 2.95951ZM13.9981 2.41718L14.5981 2.41718C14.5981 2.15228 14.5459 1.88997 14.4445 1.64524L13.8902 1.87485L13.3359 2.10446C13.377 2.2036 13.3981 2.30986 13.3981 2.41718L13.9981 2.41718ZM13.8902 1.87485L14.4445 1.64524C14.3432 1.4005 14.1946 1.17813 14.0073 0.990818L13.583 1.41508L13.1588 1.83935C13.2346 1.91523 13.2948 2.00531 13.3359 2.10446L13.8902 1.87485ZM13.583 1.41508L14.0073 0.990818C13.82 0.803505 13.5976 0.654921 13.3529 0.553548L13.1233 1.10788L12.8936 1.6622C12.9928 1.70327 13.0829 1.76346 13.1588 1.83935L13.583 1.41508ZM13.1233 1.10788L13.3529 0.553548C13.1081 0.452176 12.8458 0.4 12.5809 0.4L12.5809 1L12.5809 1.6C12.6882 1.6 12.7945 1.62114 12.8936 1.6622L13.1233 1.10788ZM12.5809 1L12.5809 0.4C12.316 0.4 12.0537 0.452176 11.809 0.553548L12.0386 1.10788L12.2682 1.6622C12.3673 1.62114 12.4736 1.6 12.5809 1.6L12.5809 1ZM12.0386 1.10788L11.809 0.553548C11.5642 0.654922 11.3419 0.803506 11.1546 0.990818L11.5788 1.41508L12.0031 1.83935C12.079 1.76346 12.1691 1.70327 12.2682 1.6622L12.0386 1.10788ZM12.47 10.176H11.87V12.47H12.47H13.07V10.176H12.47ZM12.47 12.47H11.87C11.87 12.7164 11.7721 12.9528 11.5978 13.1271L12.0221 13.5514L12.4463 13.9756C12.8457 13.5763 13.07 13.0347 13.07 12.47H12.47ZM12.0221 13.5514L11.5978 13.1271C11.4235 13.3014 11.1871 13.3993 10.9407 13.3993V13.9993V14.5993C11.5054 14.5993 12.047 14.375 12.4463 13.9756L12.0221 13.5514ZM10.9407 13.9993V13.3993H2.52933V13.9993V14.5993H10.9407V13.9993ZM2.52933 13.9993V13.3993C2.28286 13.3993 2.04648 13.3014 1.8722 13.1271L1.44793 13.5514L1.02367 13.9756C1.42299 14.375 1.9646 14.5993 2.52933 14.5993V13.9993ZM1.44793 13.5514L1.8722 13.1271C1.69791 12.9528 1.6 12.7164 1.6 12.47L1 12.47L0.4 12.47C0.4 13.0347 0.62434 13.5763 1.02367 13.9756L1.44793 13.5514ZM1 12.47H1.6V4.05863H1H0.4V12.47H1ZM1 4.05863H1.6C1.6 3.81216 1.69791 3.57578 1.8722 3.40149L1.44793 2.97723L1.02367 2.55296C0.62434 2.95229 0.4 3.4939 0.4 4.05863H1ZM1.44793 2.97723L1.8722 3.40149C2.04648 3.22721 2.28286 3.1293 2.52933 3.1293L2.52933 2.5293L2.52933 1.9293C1.9646 1.9293 1.42299 2.15364 1.02367 2.55296L1.44793 2.97723ZM2.52933 2.5293V3.1293H4.82333V2.5293V1.9293H2.52933V2.5293Z" fill="black" /></svg>');
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary-list,
.room-list {
  padding-left: 4px;
}
@media (min-width: 992px) {
  .summary-list,
  .room-list {
    padding-left: 0;
  }
}
.summary-list .room,
.room-list .room {
  gap: 15px;
}
@media (min-width: 992px) {
  .summary-list .room,
  .room-list .room {
    gap: 0;
  }
}
@media (max-width: 719.98px) {
  .summary-list li,
  .room-list li {
    padding-bottom: 4px;
    padding-top: 4px;
  }
}
.summary-list li:last-child,
.room-list li:last-child {
  padding-bottom: 0;
}

.accordion-box:not(:first-of-type) {
  margin-top: 15px;
}
@media (min-width: 720px) {
  .accordion-box {
    margin-top: 21px;
  }
}

.hotel-icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 992px) {
  .hotel-icon {
    width: 24px;
    height: 24px;
  }
}

.icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 720px) {
  .icon {
    width: 24px;
    height: 24px;
  }
}

.reservation-loading-message {
  z-index: 99999999;
  position: fixed;
  bottom: 78px;
  right: 15px;
  left: 15px;
  border-radius: 50px;
  background-color: #070708;
  border: 1px solid #070708;
  padding: 5px 11px 6px;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .reservation-loading-message {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  .reservation-loading-message {
    padding: 5px 15px 8px;
    bottom: 25px;
    left: 50%;
    right: auto;
    white-space: nowrap;
    transform: translateX(-50%);
  }
}
@media (min-width: 992px) {
  .reservation-loading-message {
    padding: 9px 19px 10px;
  }
}

.qty-days {
  border-radius: 50px;
  border: 1px solid #070708;
  padding: 4.5px 10px 4.5px;
}
@media (min-width: 720px) {
  .qty-days {
    padding: 5px 10px 6px;
  }
}
@media (min-width: 992px) {
  .qty-days {
    padding: 9px 10px 10px;
  }
}
.qty-days input {
  max-width: 100px;
}
.qty-days .qty-btn-minus,
.qty-days .qty-btn-plus {
  background-color: transparent;
  border: 0;
}

.wizard-success-body {
  height: 90svh;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.image_in_grid_item.stack .image_in_grid {
  position: sticky;
  background-color: #fff;
  transition: opacity 0.1s linear;
}
.image_in_grid_item.stack .image_in_grid:not(:first-child) {
  border-top: 1px solid #DBDBDB;
}
.image_in_grid_item.stack .image_in_grid:last-child {
  border-bottom: 1px solid #DBDBDB;
}
.image_in_grid_item.stack .image_in_grid:last-child.host-last-section {
  border-bottom: 0;
}
.image_in_grid_item.stack .image_in_grid {
  top: 58px;
}
@media (min-width: 992px) {
  .image_in_grid_item.stack .image_in_grid {
    position: sticky;
    top: 45px;
  }
}

.host-main {
  border-top: 1px solid #DBDBDB;
  margin-top: 20px;
  padding-top: 18px;
  margin-bottom: 0;
}
@media (min-width: 720px) {
  .host-main {
    margin-top: 30px;
    padding-top: 28px;
  }
}
@media (min-width: 992px) {
  .host-main {
    margin-top: 41px;
    padding-top: 39px;
  }
}
.host-main .bullets-host {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .host-main .bullets-host {
    font-size: 14px;
    line-height: 16px;
  }
}
.host-main .bullets-host {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 20px;
}
@media (min-width: 720px) {
  .host-main .bullets-host {
    padding-top: 30px;
    column-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .host-main .bullets-host {
    padding-top: 40px;
  }
}
.host-main .bullets-host {
  margin-bottom: -7.5px;
}
@media (min-width: 992px) {
  .host-main .bullets-host {
    margin-bottom: -9.5px;
  }
}
.host-main .bullets-host li {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #DBDBDB;
  padding: 7.5px 0;
}
@media (min-width: 992px) {
  .host-main .bullets-host li {
    padding: 9.5px 0;
  }
}
.host-main .bullets-host li p {
  margin-top: -2px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .host-main .bullets-host li p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 720px) {
  .host-main .bullets-host li p {
    margin-top: -3px;
  }
}
@media (min-width: 992px) {
  .host-main .bullets-host li p {
    margin-top: -2px;
  }
}
.host-main .bullets-host li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
}
@media (min-width: 992px) {
  .host-main .bullets-host li::before {
    width: 20px;
    height: 20px;
  }
}
.host-main .bullets-host li::before {
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9.5' fill='%2390EFFA' stroke='%23070708'/%3E%3Cpath d='M9.99876 13.28C11.8102 13.28 13.2788 11.8115 13.2788 9.99997C13.2788 8.18848 11.8102 6.71997 9.99876 6.71997C8.18726 6.71997 6.71875 8.18848 6.71875 9.99997C6.71875 11.8115 8.18726 13.28 9.99876 13.28Z' fill='%23070708'/%3E%3C/svg%3E%0A");
}

.host-retreat {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 720px) {
  .host-retreat {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .host-retreat {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media (min-width: 720px) {
  .host-retreat .retreat-title {
    margin-left: 10px;
    margin-top: -2px;
  }
}
@media (min-width: 992px) {
  .host-retreat .retreat-title {
    margin-left: 20px;
    margin-top: -7px;
  }
}
.host-retreat .desc-retreat {
  padding-top: 10px;
}
@media (min-width: 720px) {
  .host-retreat .desc-retreat {
    padding-top: 11px;
  }
}
@media (min-width: 992px) {
  .host-retreat .desc-retreat {
    padding-top: 22px;
  }
}
.host-retreat .retreat-box-grid {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 1fr;
  row-gap: 14.5px;
  padding-top: 40px;
}
@media (min-width: 720px) {
  .host-retreat .retreat-box-grid {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .host-retreat .retreat-box-grid {
    padding-top: 64px;
  }
}
@media (min-width: 720px) {
  .host-retreat .retreat-box-grid {
    row-gap: 19.5px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.host-retreat .retreat-box-grid .retreat-box {
  border: 1px solid #DBDBDB;
  counter-increment: steps;
  padding: 15px;
}
@media (min-width: 720px) {
  .host-retreat .retreat-box-grid .retreat-box {
    padding: 20px;
  }
}
.host-retreat .retreat-box-grid .retreat-box .h2 {
  margin-top: 2px;
}
@media (min-width: 992px) {
  .host-retreat .retreat-box-grid .retreat-box .h2 {
    margin-top: -3px;
  }
}
.host-retreat .retreat-box-grid .retreat-box .number {
  border: 1px solid #070708;
  flex: none;
  background-color: #90EFFA;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .host-retreat .retreat-box-grid .retreat-box .number {
    font-size: 14px;
    line-height: 16px;
  }
}
.host-retreat .retreat-box-grid .retreat-box .number {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding-bottom: 3px;
}
.host-retreat .retreat-box-grid .retreat-box .number::after {
  content: counter(steps);
}

.host-build {
  padding-top: 80px;
}
@media (min-width: 720px) {
  .host-build {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .host-build {
    padding-top: 140px;
  }
}
.host-build .big-blue {
  background-color: #90EFFA;
}
.host-build .big-blue .h1 {
  padding-bottom: 9px;
}
@media (min-width: 992px) {
  .host-build .big-blue .h1 {
    padding-bottom: 18px;
  }
}
.host-build .big-blue {
  padding: 20px 0;
}
@media (min-width: 720px) {
  .host-build .big-blue {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .host-build .big-blue {
    padding: 34px 0 42px;
  }
}
.host-build .build-box-grid {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 1fr;
  row-gap: 14.5px;
  padding-top: 20px;
}
@media (min-width: 720px) {
  .host-build .build-box-grid {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .host-build .build-box-grid {
    padding-top: 40px;
  }
}
@media (min-width: 720px) {
  .host-build .build-box-grid {
    row-gap: 19.5px;
  }
}
.host-build .build-box-grid .build-box {
  border: 1px solid #DBDBDB;
  counter-increment: steps;
  padding: 15px;
}
@media (min-width: 720px) {
  .host-build .build-box-grid .build-box {
    padding: 20px;
  }
}
.host-build .build-box-grid .build-box .h2 {
  margin-top: 2px;
}
@media (min-width: 992px) {
  .host-build .build-box-grid .build-box .h2 {
    margin-top: -3px;
  }
}
.host-build .build-box-grid .build-box .number {
  border: 1px solid #070708;
  flex: none;
  background-color: #90EFFA;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .host-build .build-box-grid .build-box .number {
    font-size: 14px;
    line-height: 16px;
  }
}
.host-build .build-box-grid .build-box .number {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding-bottom: 3px;
}
.host-build .build-box-grid .build-box .number::after {
  content: counter(steps);
}

.main-register {
  padding-top: 98px;
}
@media (min-width: 720px) {
  .main-register {
    padding-top: 110px;
  }
}
@media (min-width: 992px) {
  .main-register {
    padding-top: 106px;
  }
}
.main-register .register-picture {
  display: block;
  height: 274px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 720px) {
  .main-register .register-picture {
    height: 560px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width: 992px) {
  .main-register .register-picture {
    margin-left: -20px;
    margin-right: 0;
    height: auto;
  }
  .main-register .register-picture img {
    width: 100%;
    height: auto;
  }
}
.main-register .register-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-register .form {
  padding-top: 21px;
  padding-bottom: 40px;
}
@media (min-width: 720px) {
  .main-register .form {
    padding-top: 29px;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .main-register .form {
    padding-top: 41px;
    padding-bottom: 0;
  }
}
.main-register .form .input-group {
  margin-bottom: 15px;
}
@media (min-width: 720px) {
  .main-register .form .input-group {
    margin-bottom: 20px;
  }
}
.main-register .form .forgot {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .main-register .form .forgot {
    font-size: 14px;
    line-height: 16px;
  }
}
.main-register .form .forgot {
  display: block;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .main-register .form .forgot {
    margin-top: 13px;
  }
}
.main-register .form .submit {
  display: flex;
  justify-content: center;
}
@media (min-width: 720px) {
  .main-register .form .submit {
    padding-top: 11px;
  }
}
@media (min-width: 992px) {
  .main-register .form .submit {
    justify-content: flex-start;
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .main-register .form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
  }
  .main-register .form > * {
    grid-column: span 4;
  }
}
.main-register .desc-form {
  padding-top: 13px;
}
@media (min-width: 720px) {
  .main-register .desc-form {
    padding-top: 19px;
  }
}
@media (min-width: 992px) {
  .main-register .desc-form {
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .main-register .desc-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
  }
  .main-register .desc-form > * {
    grid-column: span 4;
  }
  .main-register .desc-form a {
    white-space: nowrap;
  }
}

.hero-b-guest {
  width: 100%;
  height: 400px;
  padding-top: 57px;
}
@media (min-width: 720px) {
  .hero-b-guest {
    height: 500px;
    padding-top: 60px;
  }
}
@media (min-width: 992px) {
  .hero-b-guest {
    height: 700px;
    padding-top: 106px;
  }
}
.hero-b-guest .swiper {
  height: 100%;
}
.hero-b-guest .swiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
}
@media (min-width: 720px) {
  .hero-b-guest .swiper .swiper-pagination {
    bottom: 30px;
  }
}
@media (min-width: 992px) {
  .hero-b-guest .swiper .swiper-pagination {
    bottom: 40px;
  }
}
.hero-b-guest .swiper .swiper-button-next,
.hero-b-guest .swiper .swiper-button-prev {
  position: absolute;
  top: 53.7%;
  transform: translateY(-50%);
}
.hero-b-guest .swiper .swiper-button-next svg,
.hero-b-guest .swiper .swiper-button-prev svg {
  max-width: unset;
  width: unset;
  height: unset;
  transform: translateY(1px);
}
.hero-b-guest .swiper .img-slide {
  height: 100%;
  width: 100%;
}
.hero-b-guest .swiper .img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-b-guest .swiper .swiper-button-next {
  right: 15px;
}
@media (min-width: 720px) {
  .hero-b-guest .swiper .swiper-button-next {
    right: 30px;
  }
}
@media (min-width: 992px) {
  .hero-b-guest .swiper .swiper-button-next {
    right: 40px;
  }
}
.hero-b-guest .swiper .swiper-button-prev {
  left: 15px;
}
@media (min-width: 720px) {
  .hero-b-guest .swiper .swiper-button-prev {
    left: 30px;
  }
}
@media (min-width: 992px) {
  .hero-b-guest .swiper .swiper-button-prev {
    left: 35px;
  }
}
.hero-b-guest .swiper .swiper-button-prev svg {
  transform: translate(-1px, 1px);
}

.box-b-guest {
  padding-top: 80px;
}
@media (min-width: 720px) {
  .box-b-guest {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .box-b-guest {
    padding-top: 140px;
  }
}
.box-b-guest .big-box {
  border: 1px solid #DBDBDB;
  padding-top: 18px;
  padding-bottom: 20px;
  margin: 0;
  display: grid;
  column-gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
@media (min-width: 720px) {
  .box-b-guest .big-box {
    padding-left: 0;
    padding-right: 0;
    padding-top: 27px;
    padding-bottom: 30px;
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (min-width: 992px) {
  .box-b-guest .big-box {
    padding-top: 37px;
    padding-bottom: 40px;
  }
}
.box-b-guest .big-box .text-container {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  grid-column: span 6;
}
@media (min-width: 720px) {
  .box-b-guest .big-box .text-container {
    padding-left: 0;
    padding-right: 0;
    grid-column: 2/span 8;
  }
}
@media (min-width: 992px) {
  .box-b-guest .big-box .text-container {
    grid-column: 3/span 6;
  }
}
.box-b-guest .big-box .text-container .h1 {
  padding-top: 15px;
}
@media (min-width: 720px) {
  .box-b-guest .big-box .text-container .h1 {
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .box-b-guest .big-box .text-container .h1 {
    padding-top: 19px;
  }
}
.box-b-guest .big-box .text-container .body-text {
  padding-top: 10px;
}
@media (min-width: 720px) {
  .box-b-guest .big-box .text-container .body-text {
    padding-top: 11px;
  }
}
@media (min-width: 992px) {
  .box-b-guest .big-box .text-container .body-text {
    padding-top: 17px;
  }
}
.box-b-guest .big-box .img-container {
  padding-top: 18px;
  display: block;
  grid-column: 2/span 4;
}
@media (min-width: 720px) {
  .box-b-guest .big-box .img-container {
    padding-top: 30px;
    grid-column: 4/span 4;
  }
}
@media (min-width: 992px) {
  .box-b-guest .big-box .img-container {
    grid-column: 5/span 2;
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 42px;
  }
}

.grid-include {
  padding-top: 75px;
}
@media (min-width: 720px) {
  .grid-include {
    padding-top: 99px;
  }
}
@media (min-width: 992px) {
  .grid-include {
    padding-top: 137px;
  }
}
@media (min-width: 720px) {
  .grid-include .title-grid .h1 {
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .grid-include .title-grid {
    margin-left: 20px;
  }
  .grid-include .title-grid .h1 {
    margin-left: 0;
  }
}
.grid-include .grid {
  display: grid;
  border-top: 1px solid #DBDBDB;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}
@media (min-width: 720px) {
  .grid-include .grid {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .grid-include .grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 43px;
  }
}
.grid-include .grid .item {
  border-right: 1px solid #DBDBDB;
  display: block;
  border-bottom: 1px solid #DBDBDB;
  padding: 14px 14.5px 9.5px 15px;
}
@media (min-width: 720px) {
  .grid-include .grid .item {
    padding: 19.5px 19.5px 19.5px 20px;
  }
}
@media (min-width: 992px) {
  .grid-include .grid .item {
    padding: 19.5px 19.5px 16px 20px;
  }
}
.grid-include .grid .item .item-image {
  display: block;
  aspect-ratio: 1/1;
}
.grid-include .grid .item .item-title {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
}
@media (min-width: 720px) {
  .grid-include .grid .item .item-title {
    padding-top: 13px;
  }
}
@media (max-width: 991.98px) {
  .grid-include .grid .item:nth-of-type(2n) {
    border-right: 0;
  }
}
@media (min-width: 992px) {
  .grid-include .grid .item:nth-of-type(3n) {
    border-right: 0;
  }
}
@media (min-width: 992px) {
  .grid-include .grid .item:hover {
    background-color: #f8f9fa;
  }
}

.guest-calendar {
  padding-top: 79.5px;
}
@media (min-width: 720px) {
  .guest-calendar {
    padding-top: 99.5px;
  }
}
@media (min-width: 992px) {
  .guest-calendar {
    padding-top: 137px;
  }
}
.guest-calendar picture {
  padding-top: 40px;
}
@media (min-width: 720px) {
  .guest-calendar picture {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .guest-calendar picture {
    padding-top: 62px;
  }
}

.hero-with-tags {
  display: block;
  width: 100%;
  height: 400px;
  margin-top: 80px;
}
@media (min-width: 720px) {
  .hero-with-tags {
    height: 560px;
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .hero-with-tags {
    height: 700px;
    margin-top: 140px;
  }
}
.hero-with-tags .swiper {
  height: 100%;
}

.retreat-details {
  margin-top: 79px;
}
@media (min-width: 720px) {
  .retreat-details {
    margin-top: 98px;
  }
}
@media (min-width: 992px) {
  .retreat-details {
    margin-top: 137px;
  }
}
.retreat-details .retreat-boxes {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  gap: 15px;
}
@media (min-width: 720px) {
  .retreat-details .retreat-boxes {
    padding-top: 50px;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .retreat-details .retreat-boxes {
    padding-top: 63px;
  }
}
.retreat-details .retreat-boxes.single {
  gap: 5px;
}
.retreat-details .retreat-boxes .date-box {
  padding: 19.5px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid #DBDBDB;
}
.retreat-details .retreat-boxes .date-box p {
  margin-top: -2px;
}
.retreat-details .checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  gap: 5px;
}
@media (min-width: 720px) {
  .retreat-details .checkbox-container {
    margin-bottom: 30px;
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .retreat-details .checkbox-container {
    margin-bottom: 42px;
  }
}
.retreat-details .checkbox-container .h3 {
  padding: 0;
}
.retreat-details .checkbox-container .h3 a {
  position: relative;
}
.retreat-details .checkbox-container .h3 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #070708;
}
.retreat-details .checkbox-container .input-container {
  position: relative;
  width: 25px;
  height: 25px;
  border: none;
  cursor: pointer;
}
.retreat-details .checkbox-container .input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  left: 0;
  top: 0;
}
.retreat-details .checkbox-container .input-container .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 16px;
  width: 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #070708;
  pointer-events: none;
}
.retreat-details .checkbox-container .input-container .checkmark svg {
  flex: none;
  pointer-events: none;
  opacity: 0;
}
.retreat-details .checkbox-container .input-container input:checked ~ .checkmark {
  background-color: #90EFFA;
}
.retreat-details .checkbox-container .input-container input:checked ~ .checkmark svg {
  opacity: 1;
}
.retreat-details .button-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: 10px;
}
.retreat-details .button-container .zamaya-buttons {
  width: 100%;
}

.accordion-box {
  border: 1px solid #DBDBDB;
}
.accordion-box .box-acc-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px 17px;
}
@media (min-width: 720px) {
  .accordion-box .box-acc-header {
    padding: 17px 20px 20px;
  }
}
.accordion-box .box-acc-header .plus-acc {
  display: block;
}
.accordion-box .box-acc-header .minus-acc {
  display: none;
}
.accordion-box .box-acc-header::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  height: 1px;
  background-color: #DBDBDB;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.accordion-box .box-acc-content {
  padding: 0 20px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease-in-out;
}
.accordion-box .box-acc-content .total {
  border-top: 1px solid #DBDBDB;
  padding-top: 8px;
  margin-top: 6px;
}
.accordion-box .box-acc-content .inner-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  padding-bottom: 20px;
  overflow: hidden;
}
.accordion-box .box-acc-content .inner-content.retreat {
  display: flex;
  flex-direction: column;
  gap: 4.5px;
  padding-top: 3px;
  padding-bottom: 20px;
  overflow: hidden;
}
.accordion-box.active .box-acc-content {
  grid-template-rows: 1fr;
}
.accordion-box.active .box-acc-header .plus-acc {
  display: none;
}
.accordion-box.active .box-acc-header .minus-acc {
  display: block;
}
.accordion-box.active .box-acc-header::after {
  opacity: 1;
}

.toast-logged {
  position: fixed;
  z-index: 10;
  border-radius: 30px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .toast-logged {
    font-size: 14px;
    line-height: 16px;
  }
}
.toast-logged {
  background-color: #90EFFA;
  color: #070708;
  padding: 15px 20px;
  border: 1px solid #070708;
  width: calc(100% - 30px);
  left: 15px;
  right: 15px;
  bottom: 20px;
  pointer-events: none;
  transition: opacity 0.8s ease;
  width: fit-content;
}
@media (min-width: 720px) {
  .toast-logged {
    bottom: 30px;
    left: 30px;
    right: auto;
  }
}
.toast-logged.hide {
  opacity: 0;
}

.wizard-pages {
  min-height: 100vh;
  padding-top: 97px;
}
@media (min-width: 720px) {
  .wizard-pages {
    padding-top: 108px;
  }
}
@media (min-width: 992px) {
  .wizard-pages {
    padding-top: 138px;
  }
}

.logo-wizard {
  width: 100%;
  height: auto;
}
@media (min-width: 720px) {
  .logo-wizard {
    width: 152px;
  }
}
@media (min-width: 992px) {
  .logo-wizard {
    padding: 0;
    width: 136px;
  }
}
.logo-wizard svg {
  width: 100%;
  height: auto;
}

.page-wizard .container-wizard {
  padding-top: 17px;
}
.page-wizard .container-wizard .steps {
  width: 24px;
  height: 24px;
  border: 5.5px solid #90EFFA;
  border-radius: 100px;
}
.page-wizard .steps-counter {
  margin-left: 10px;
}
.page-wizard .full-circle {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  stroke-dasharray: 87.5;
  transform: rotate(180deg);
}
.page-wizard .full-circle[data-step="1"] {
  stroke-dashoffset: -91.5384615385;
}
.page-wizard .full-circle[data-step="2"] {
  stroke-dashoffset: -96.0769230769;
}
.page-wizard .full-circle[data-step="3"] {
  stroke-dashoffset: -100.6153846154;
}
.page-wizard .full-circle[data-step="4"] {
  stroke-dashoffset: -105.1538461538;
}
.page-wizard .full-circle[data-step="5"] {
  stroke-dashoffset: -109.6923076923;
}
.page-wizard .full-circle[data-step="6"] {
  stroke-dashoffset: -114.2307692308;
}
.page-wizard .full-circle[data-step="7"] {
  stroke-dashoffset: -118.7692307692;
}
.page-wizard .full-circle[data-step="8"] {
  stroke-dashoffset: -123.3076923077;
}
.page-wizard .full-circle[data-step="9"] {
  stroke-dashoffset: -127.8461538462;
}
.page-wizard .full-circle[data-step="10"] {
  stroke-dashoffset: -132.3846153846;
}
.page-wizard .full-circle[data-step="11"] {
  stroke-dashoffset: -136.9230769231;
}
.page-wizard .full-circle[data-step="12"] {
  stroke-dashoffset: -141.4615384615;
}
.page-wizard .full-circle[data-step="13"] {
  stroke-dashoffset: -146;
}
.page-wizard .desc-mini {
  padding-bottom: 20px;
  padding-top: 13px;
}
@media (min-width: 992px) {
  .page-wizard .desc-mini {
    padding-top: 20px;
  }
}
.page-wizard .wizard-page {
  display: none;
}
.page-wizard .wizard-page.active {
  display: block;
}
.page-wizard .title-boxes {
  padding-bottom: 5px;
}
@media (min-width: 720px) {
  .page-wizard .title-boxes {
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .page-wizard .title-boxes {
    padding-bottom: 20px;
  }
}
.page-wizard .desc-out {
  padding-top: 15px;
  padding-bottom: 35px;
}
.page-wizard .box-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid #DBDBDB;
  font-family: "Monument Grotesk";
  font-size: 14px;
  line-height: 16px;
  letter-spacing: normal;
}
@media (min-width: 720px) {
  .page-wizard .box-form {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 992px) {
  .page-wizard .box-form {
    font-size: 18px;
    line-height: 20px;
  }
}
.page-wizard .box-form {
  margin-top: 15px;
  padding: 14.5px;
}
@media (min-width: 720px) {
  .page-wizard .box-form {
    gap: 13px;
    margin-top: 20px;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .page-wizard .box-form {
    gap: 18px;
  }
}
.page-wizard .box-form .radios {
  font-family: "Monument Grotesk";
  font-size: 14px;
  line-height: 16px;
  letter-spacing: normal;
}
@media (min-width: 720px) {
  .page-wizard .box-form .radios {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 992px) {
  .page-wizard .box-form .radios {
    font-size: 18px;
    line-height: 20px;
  }
}
.page-wizard .box-form .radios {
  padding-bottom: 13px;
}
@media (max-width: 719.98px) {
  .page-wizard .box-form .radios {
    padding-bottom: 12px;
  }
  .page-wizard .box-form .radios:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .page-wizard .box-form .radios {
    padding-bottom: 14px;
  }
  .page-wizard .box-form .radios:last-child {
    padding-bottom: 0;
  }
}
.page-wizard .box-form .radios:last-child {
  padding-bottom: 0;
}
.page-wizard .box-form .d-flex label {
  padding-bottom: 0 !important;
}
.page-wizard .box-form .input-container {
  position: relative;
  width: 25px;
  height: 25px;
  border: none;
  cursor: pointer;
}
.page-wizard .box-form .input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  left: 0;
  top: 0;
}
.page-wizard .box-form .input-container .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 16px;
  width: 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #070708;
  pointer-events: none;
}
.page-wizard .box-form .input-container .checkmark svg {
  flex: none;
  pointer-events: none;
  opacity: 0;
}
.page-wizard .box-form .input-container input:checked ~ .checkmark {
  background-color: #90EFFA;
}
.page-wizard .box-form .input-container input:checked ~ .checkmark svg {
  opacity: 1;
}
.page-wizard .to-prev-step {
  margin-right: 10px;
}
.page-wizard .to-prev-step.disabled {
  display: none;
}
.page-wizard .form-wizard-1 {
  padding-top: 20px;
}
@media (min-width: 720px) {
  .page-wizard .form-wizard-1 {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .page-wizard .form-wizard-1 {
    padding-top: 50px;
  }
}
.page-wizard .form-wizard-1 .input-group {
  margin-bottom: 17px;
}
@media (min-width: 720px) {
  .page-wizard .form-wizard-1 .input-group {
    margin-bottom: 20px;
  }
}
.page-wizard .form-wizard-1 .zamaya-buttons {
  margin-top: 5px;
}
@media (min-width: 720px) {
  .page-wizard .form-wizard-1 .zamaya-buttons {
    margin-top: 10px;
  }
}
@media (min-width: 992px) {
  .page-wizard .form-wizard-1 .zamaya-buttons {
    margin-top: 20px;
  }
}
.page-wizard .form-wizard-1 .notes {
  padding-bottom: 0;
}

.visible-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1001;
  border-top: 1px solid #DBDBDB;
  height: 83px;
}
@media (min-width: 720px) {
  .visible-footer {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .visible-footer {
    height: 78px;
  }
}

.swiperThumbs .swiper-pagination {
  position: absolute;
}

.zamaya-ac-info {
  padding-top: 77px;
}
@media (min-width: 720px) {
  .zamaya-ac-info {
    padding-top: 88px;
  }
}
@media (min-width: 992px) {
  .zamaya-ac-info {
    padding-top: 183px;
  }
}
.zamaya-ac-info .row {
  row-gap: 49px;
}
@media (min-width: 720px) {
  .zamaya-ac-info .row {
    row-gap: 59px;
  }
}
@media (min-width: 992px) {
  .zamaya-ac-info .col-lg-3 {
    padding-top: 9px;
  }
}
.zamaya-ac-info .box-account {
  border-left: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  border-top: 1px solid #DBDBDB;
  margin-top: 11px;
}
@media (min-width: 720px) {
  .zamaya-ac-info .box-account {
    border-left: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
    border-top: 1px solid #DBDBDB;
    border-right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 16px;
  }
}
@media (min-width: 992px) {
  .zamaya-ac-info .box-account {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
    border-left: 1px solid #DBDBDB;
    border-right: 1px solid #DBDBDB;
    border-top: 1px solid #DBDBDB;
    border-bottom: 0;
  }
}
.zamaya-ac-info .box-account .box-item {
  background-color: #fff;
  padding: 9px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #DBDBDB;
  border-left: 0;
  border-top: 0;
  border-right: 1px solid #DBDBDB;
  justify-content: center;
}
@media (min-width: 720px) {
  .zamaya-ac-info .box-account .box-item {
    border-bottom: 0;
    border-right: 1px solid #DBDBDB;
    border-bottom: 0;
  }
}
@media (min-width: 992px) {
  .zamaya-ac-info .box-account .box-item {
    border-right: 0;
    border-left: 0;
    justify-content: start;
    border-bottom: 1px solid #DBDBDB;
    border-top: 0px solid #DBDBDB;
  }
}
.zamaya-ac-info .box-account .box-item p {
  margin-top: -1.5px;
}
.zamaya-ac-info .box-account .box-item.active {
  background-color: rgba(219, 219, 219, 0.2);
}
.zamaya-ac-info .form-account {
  padding-top: 20px;
}
@media (min-width: 720px) {
  .zamaya-ac-info .form-account {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .zamaya-ac-info .form-account {
    padding-top: 42px;
  }
}
.zamaya-ac-info .form-account .input-group.by-two {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (min-width: 720px) {
  .zamaya-ac-info .form-account .input-group.by-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
  }
}
@media (max-width: 719.98px) {
  .zamaya-ac-info .form-account .input-group.by-two.pass {
    row-gap: 5px;
  }
}
.zamaya-ac-info .form-account .input-group {
  margin-bottom: 15px;
}
@media (min-width: 720px) {
  .zamaya-ac-info .form-account .input-group {
    margin-bottom: 20px;
  }
}
.zamaya-ac-info .form-account .container-button {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
@media (min-width: 992px) {
  .zamaya-ac-info .form-account .container-button {
    padding-top: 20px;
    display: block;
  }
}
.zamaya-ac-info .tab-retreats .retreat-list {
  padding-top: 42px;
}
.zamaya-ac-info .tab-retreats .retreat-item {
  border: 1px solid #DBDBDB;
  margin-bottom: 20px;
}
.zamaya-ac-info .tab-retreats .retreat-item:last-of-type {
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 0px;
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-img-wrap {
  padding: 13.5px 14.5px 14.5px;
  border-right: 1px solid #DBDBDB;
  width: 100%;
  max-width: 280px;
  width: 100%;
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-img {
  aspect-ratio: 18/11;
  background-color: rgba(219, 219, 219, 0.2);
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-info {
  padding: 13.5px 14.5px 14.5px;
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-price-details .rooms {
  padding: 22px 21px 21px;
  border-top: 1px solid #DBDBDB;
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-price-details .rooms .title {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 14px;
  margin-bottom: 12px;
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-price-details .rooms .room {
  display: flex;
  align-items: center;
  gap: 16px;
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-price-details .rooms li:not(:last-of-type) {
  padding-bottom: 6px;
}
.zamaya-ac-info .tab-retreats .retreat-item .retreat-price-details .rooms .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid #DBDBDB;
  margin-top: 13.5px;
  padding-top: 8px;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
@media (min-width: 720px) {
  .booking-details {
    gap: 20px;
    margin-top: 21px;
  }
}
.booking-details .logo-box {
  border: 1px solid #DBDBDB;
  display: flex;
  flex-direction: column;
}
@media (min-width: 720px) {
  .booking-details .logo-box {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (min-width: 992px) {
  .booking-details .logo-box {
    grid-template-columns: repeat(7, 1fr);
  }
}
.booking-details .logo-box .load-file-container {
  position: relative;
  padding: 15px;
}
@media (min-width: 720px) {
  .booking-details .logo-box .load-file-container {
    padding: 20px;
  }
}
@media (min-width: 720px) {
  .booking-details .logo-box .load-file-container {
    grid-column: span 5;
  }
}
@media (min-width: 992px) {
  .booking-details .logo-box .load-file-container {
    margin-right: 10px;
    grid-column: span 3;
  }
}
.booking-details .logo-box .load-file-container .load-file {
  background-color: rgba(219, 219, 219, 0.2);
  position: relative;
  padding: 72px 65px;
}
@media (min-width: 720px) {
  .booking-details .logo-box .load-file-container .load-file {
    padding: 58px 45px;
  }
}
@media (min-width: 992px) {
  .booking-details .logo-box .load-file-container .load-file {
    padding: 55px 75px;
  }
}
.booking-details .logo-box .load-file-container .load-file .img-append {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.booking-details .logo-box .load-file-container .load-file .img-append img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.booking-details .logo-box .load-file-container .load-file input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.booking-details .logo-box .load-file-container .load-file .text {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .booking-details .logo-box .load-file-container .load-file .text {
    font-size: 14px;
    line-height: 16px;
  }
}
.booking-details .logo-box .load-file-container .load-file .text {
  color: #070708;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.booking-details .logo-box .load-file-container .load-file .draw-svg {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 992px) {
  .booking-details .logo-box .load-file-container .load-file .draw-svg {
    width: 37px;
    height: 37px;
    bottom: 15px;
    left: 15px;
  }
}
.booking-details .logo-box .load-file-container .load-file .draw-svg svg {
  width: 100%;
  height: 100%;
}
.booking-details .logo-box .load-file-container::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  top: 100%;
  left: 0;
  background-color: #DBDBDB;
}
@media (min-width: 720px) {
  .booking-details .logo-box .load-file-container::after {
    right: 0;
    top: 0;
    background-color: #DBDBDB;
    width: 1px;
    height: 100%;
  }
}
.booking-details .logo-box .details-container {
  display: flex;
  flex-direction: column;
  padding: 15px;
}
@media (min-width: 720px) {
  .booking-details .logo-box .details-container {
    grid-column: span 5;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .booking-details .logo-box .details-container {
    grid-column: span 4;
    padding-right: 0;
  }
}
.booking-details .logo-box .details-container .zamaya-buttons {
  margin-top: 20px;
}
@media (min-width: 720px) {
  .booking-details .logo-box .details-container .zamaya-buttons {
    margin-top: auto;
  }
}
.booking-details .box-details {
  border: 1px solid #DBDBDB;
  padding: 13px 15px 15px;
}
@media (min-width: 720px) {
  .booking-details .box-details {
    padding: 18px 20px 20px;
  }
}
@media (min-width: 992px) {
  .booking-details .box-details {
    padding: 18px 20px 21px;
  }
}
.booking-details .box-details .box-title {
  display: flex;
  gap: 10px;
  align-items: center;
}
.booking-details .box-details .detail-detail {
  padding-top: 7.5px;
  margin-top: 9px;
  border-top: 1px solid #DBDBDB;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.booking-details .box-details .detail-detail.no-top {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
@media (min-width: 720px) {
  .booking-details .box-details .detail-detail {
    margin-top: 11px;
    padding-top: 11px;
  }
}
.booking-details .box-details .detail-detail .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-details .box-details .detail-detail .item p {
  font-family: "Monument Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
@media (min-width: 720px) {
  .booking-details .box-details .detail-detail .item p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  .booking-details .box-details .detail-detail .item p {
    font-size: 16px;
    line-height: 18px;
  }
}
.booking-details .box-details .detail-detail .item p.h4 {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .booking-details .box-details .detail-detail .item p.h4 {
    font-size: 14px;
    line-height: 16px;
  }
}
.booking-details .box-details .detail-detail .input-container {
  position: relative;
  width: 25px;
  height: 25px;
  border: none;
  cursor: pointer;
}
.booking-details .box-details .detail-detail .input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  left: 0;
  top: 0;
}
.booking-details .box-details .detail-detail .input-container .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 16px;
  width: 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #070708;
  pointer-events: none;
}
.booking-details .box-details .detail-detail .input-container .checkmark svg {
  flex: none;
  pointer-events: none;
  opacity: 0;
}
.booking-details .box-details .detail-detail .input-container input:checked ~ .checkmark {
  background-color: #90EFFA;
}
.booking-details .box-details .detail-detail .input-container input:checked ~ .checkmark svg {
  opacity: 1;
}
.booking-details .box-details .detail-detail .h3 a {
  position: relative;
}
.booking-details .box-details .detail-detail .h3 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #070708;
}
.booking-details .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
}
@media (min-width: 720px) {
  .booking-details .button-container {
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  .booking-details .button-container {
    padding-top: 20px;
  }
}
.booking-details .changes-container {
  border: 1px solid #DBDBDB;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 18px 20px 20px;
}
@media (min-width: 720px) {
  .booking-details .changes-container {
    padding: 20px;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .booking-details .changes-container {
    margin-top: 40px;
  }
}
.booking-details .changes-container .pagination-next {
  flex: none;
}

.swiperModal .swiper-pagination {
  position: absolute;
}

.share-modal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px !important;
}
@media (min-width: 720px) {
  .share-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.share-modal .share-cont {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .share-modal .share-cont {
    font-size: 14px;
    line-height: 16px;
  }
}
.share-modal .share-cont {
  padding: 0 10px;
  border: 1px solid rgba(7, 7, 8, 0.2);
  grid-column: 2 span;
}
.share-modal .share-cont .text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
@media (min-width: 720px) {
  .share-modal .share-cont.w-lg-50 {
    justify-content: start;
    grid-column: 1 span;
  }
}

.wizard-header {
  padding-top: 14px;
  padding-bottom: 15px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 90;
}
@media (min-width: 720px) {
  .wizard-header {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }
}
@media (min-width: 992px) {
  .wizard-header {
    padding-top: 24px;
    padding-bottom: 21px;
  }
}
.wizard-header {
  border-bottom: 1px solid #DBDBDB;
}

.reservation-modal {
  height: 100vh;
  pointer-events: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
.reservation-modal .row.sticky {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 2;
}
.reservation-modal .container-white {
  max-height: calc(100vh - 190px);
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #DBDBDB;
  color: #070708;
  transform: translateY(100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transition: transform 0.5s ease, opacity 0.5s ease 0.1s;
  pointer-events: none;
  overflow: auto;
  padding-bottom: 167px;
}
@media (min-width: 720px) {
  .reservation-modal .container-white {
    padding-bottom: 160px;
    max-height: calc(100vh - 200px);
  }
}
@media (min-width: 992px) {
  .reservation-modal .container-white {
    padding-bottom: 200px;
  }
}
.reservation-modal .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 7, 8, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.reservation-modal.show .container-white {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.reservation-modal.show .overlay {
  opacity: 1;
}
.reservation-modal .tag-mobile-container {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .reservation-modal .tag-mobile-container {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}
.reservation-modal .tag-mobile-container .tag-mobile {
  height: 6px;
  width: 100%;
  background-color: #DBDBDB;
  border-radius: 100px;
}
@media (min-width: 720px) {
  .reservation-modal .tag-mobile-container.booking-guests {
    padding-bottom: 28px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.desc-apparel {
  padding-bottom: 15px;
  padding-top: 20px;
}
@media (min-width: 720px) {
  .desc-apparel {
    padding-bottom: 20px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .desc-apparel {
    padding-top: 40px;
  }
}

.document-cat {
  padding-bottom: 15px;
  padding-top: 20px;
}
@media (min-width: 720px) {
  .document-cat {
    padding-bottom: 20px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .document-cat {
    padding-top: 40px;
  }
}

.selects {
  position: relative;
}
.selects::after {
  pointer-events: none;
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.10352L7.82158 9.60352L11.6419 6.10352' stroke='%23070708' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.selects select {
  height: 34px;
  border-radius: 100px;
  padding-left: 12px;
  padding-right: 25px;
  padding-bottom: 3px;
  border: 1px solid #070708;
  background-color: #fff;
  appearance: none;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .selects select {
    font-size: 14px;
    line-height: 16px;
  }
}

.box-of-price {
  cursor: default;
  padding: 5px;
  border: 1px solid #DBDBDB;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .box-of-price {
    font-size: 14px;
    line-height: 16px;
  }
}
.box-of-price {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.box-of-price.blue {
  background-color: #c4ddf4;
  border-color: transparent;
}
.box-of-price.green {
  background-color: #cfffb1;
  border-color: transparent;
}
.box-of-price.purple {
  background-color: #e9e6fd;
  border-color: transparent;
}
.box-of-price.mint {
  background-color: #d1f7f3;
  border-color: transparent;
}
.box-of-price.orange {
  background-color: #ffd0ae;
  border-color: transparent;
}
.box-of-price.yellow {
  background-color: #fffdce;
  border-color: transparent;
}
.box-of-price.red {
  background-color: #ffd6d6;
  border-color: transparent;
}

.boxes-package {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  gap: 15px;
}
@media (min-width: 720px) {
  .boxes-package {
    gap: 20px;
  }
}
.boxes-package .box-package {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}
@media (min-width: 720px) {
  .boxes-package .box-package {
    padding: 20px;
  }
}
.boxes-package .qty-rooms {
  border-radius: 50px;
  border: 1px solid #070708;
  padding: 4.5px 10px 4.5px;
}
@media (min-width: 720px) {
  .boxes-package .qty-rooms {
    padding: 5px 10px 6px;
  }
}
@media (min-width: 992px) {
  .boxes-package .qty-rooms {
    padding: 9px 10px 10px;
  }
}
.boxes-package .qty-rooms input {
  max-width: 100px;
}
.boxes-package .qty-rooms .qty-btn-minus,
.boxes-package .qty-rooms .qty-btn-plus {
  background-color: transparent;
  border: 0;
}
.boxes-package .pleca-items .pleca-item {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #DBDBDB;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .boxes-package .pleca-items .pleca-item {
    font-size: 14px;
    line-height: 16px;
  }
}
.boxes-package .pleca-items .pleca-item {
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 10px;
}
.boxes-package .pleca-items .pleca-item:last-child {
  padding-bottom: 0;
}

.big-pleca {
  width: 100%;
  background-color: #070708;
  height: 4px;
}
@media (min-width: 992px) {
  .big-pleca {
    height: 6px;
  }
}

.number-wizard {
  border: 1px solid #070708;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .number-wizard {
    font-size: 14px;
    line-height: 16px;
  }
}
.number-wizard {
  background-color: #90EFFA;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding-bottom: 3px;
  flex: none;
}

.container-apparel {
  border-left: 1px solid #DBDBDB;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .container-apparel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .container-apparel {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .container-apparel {
    grid-template-columns: repeat(3, 1fr);
  }
}
.container-apparel .apparel-wrap,
.container-apparel .bag-wrap {
  padding: 19.5px;
  border-top: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  display: flex;
  flex-direction: column;
}
.container-apparel .apparel-wrap img,
.container-apparel .bag-wrap img {
  aspect-ratio: 1/1.19;
}
@media (min-width: 720px) {
  .container-apparel .apparel-wrap img,
  .container-apparel .bag-wrap img {
    aspect-ratio: 1/1.165;
  }
}
@media (min-width: 992px) {
  .container-apparel .apparel-wrap img,
  .container-apparel .bag-wrap img {
    aspect-ratio: 1/1.19;
  }
}
.container-apparel .apparel-wrap label,
.container-apparel .bag-wrap label {
  padding-bottom: 0;
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .container-apparel .apparel-wrap label,
  .container-apparel .bag-wrap label {
    font-size: 14px;
    line-height: 16px;
  }
}
.container-apparel .apparel-wrap .desc,
.container-apparel .bag-wrap .desc {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.container-apparel .apparel-wrap .desc .title,
.container-apparel .bag-wrap .desc .title {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .container-apparel .apparel-wrap .desc .title,
  .container-apparel .bag-wrap .desc .title {
    font-size: 14px;
    line-height: 16px;
  }
}
.container-apparel .apparel-wrap .desc .title,
.container-apparel .bag-wrap .desc .title {
  padding-bottom: 8px;
  border-bottom: 1px solid #DBDBDB;
}
.container-apparel .apparel-wrap .desc .quantity-apparel,
.container-apparel .apparel-wrap .desc .quantity-bag,
.container-apparel .bag-wrap .desc .quantity-apparel,
.container-apparel .bag-wrap .desc .quantity-bag {
  font-family: "Monument Grotesk Mono";
  letter-spacing: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-variant-numeric: slashed-zero;
}
@media (min-width: 992px) {
  .container-apparel .apparel-wrap .desc .quantity-apparel,
  .container-apparel .apparel-wrap .desc .quantity-bag,
  .container-apparel .bag-wrap .desc .quantity-apparel,
  .container-apparel .bag-wrap .desc .quantity-bag {
    font-size: 14px;
    line-height: 16px;
  }
}
.container-apparel .apparel-wrap .desc .quantity-apparel,
.container-apparel .apparel-wrap .desc .quantity-bag,
.container-apparel .bag-wrap .desc .quantity-apparel,
.container-apparel .bag-wrap .desc .quantity-bag {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 10px;
}
.container-apparel .apparel-wrap .desc .quantity-apparel input,
.container-apparel .apparel-wrap .desc .quantity-bag input,
.container-apparel .bag-wrap .desc .quantity-apparel input,
.container-apparel .bag-wrap .desc .quantity-bag input {
  flex: 1;
  height: 36px;
  width: 1px;
  padding: 10px;
  border: 1px solid #DBDBDB;
}
.container-apparel .apparel-wrap.added img,
.container-apparel .bag-wrap.added img {
  opacity: 0.5;
}
.container-apparel .apparel-wrap.added .title,
.container-apparel .bag-wrap.added .title {
  opacity: 0.5;
  pointer-events: none;
}
.container-apparel .apparel-wrap.added .quantity-apparel,
.container-apparel .apparel-wrap.added .quantity-bag,
.container-apparel .bag-wrap.added .quantity-apparel,
.container-apparel .bag-wrap.added .quantity-bag {
  opacity: 0.5;
  pointer-events: none;
}
.container-apparel .apparel-wrap.added .d-flex.gap-3.align-items-center,
.container-apparel .bag-wrap.added .d-flex.gap-3.align-items-center {
  opacity: 0.5;
  pointer-events: none;
}
.container-apparel .input-container {
  position: relative;
  width: 25px;
  height: 25px;
  border: none;
  cursor: pointer;
}
.container-apparel .input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  left: 0;
  top: 0;
}
.container-apparel .input-container .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 16px;
  width: 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #070708;
  pointer-events: none;
}
.container-apparel .input-container .checkmark svg {
  flex: none;
  pointer-events: none;
  opacity: 0;
}
.container-apparel .input-container input:checked ~ .checkmark {
  background-color: #90EFFA;
}
.container-apparel .input-container input:checked ~ .checkmark svg {
  opacity: 1;
}

.upsell-qty {
  border: 1px solid #070708;
  color: #070708;
  width: 90px;
  height: 36px;
  padding: 10px;
}

.page-wizard .modal {
  z-index: 1501;
}

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mx-reset {
  margin: 0;
}

.btn,
button:focus {
  outline: 0;
  appearance: none;
}

.ul-reset {
  list-style: none;
  padding: 0;
}
.ul-reset * {
  text-decoration: none !important;
}

input.text,
input[type=text],
input[type=date],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit],
.input-checkbox,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

[class^=col] img {
  max-width: 100%;
}

::placeholder {
  color: #070708;
}

.h1,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin-bottom: 0;
}

#__bs_notify__ {
  top: 95% !important;
  right: 10px !important;
  border-radius: 15px !important;
  height: 60px !important;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

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