@import url("https://fonts.googleapis.com/css2?family=Protest+Revolution&family=Source+Code+Pro:ital@0;1&display=swap");
:root {
  --color-text-1: #181818;
  --color-text-2: #2e2e2e;
  --color-text-3: #2c2c2c;
  --color-text-4: #5c5c5c;
  --color-bg-1: #fff;
  --color-bg-2: rgb(243, 243, 243);
  --color-bg-3: #a3a3a3;
  --color-bg-4: #777777;
  --color-prim-1: #2581e4;
  --color-prim-2: #338ef0;
  --color-prim-2: #4c9ef5;
  --color-sec-1: #4c4e57;
  --color-sec-2: #595c66;
  --color-green: #2eaa68;
  --color-red: #ff4d4d;
  --color-blue: #2a75bb;
  --color-blue-bg: rgba(42, 117, 187, 0.1);
  --color-yellow: #e0a000;
  --color-yellow-bg: rgba(224, 160, 0, 0.1);
  --color-red: #d9534f;
  --color-red-bg: rgba(217, 83, 79, 0.1);
  --color-green: #28a745;
  --color-green-bg: rgba(40, 167, 69, 0.1);
  --color-yellow-1: #F59E0B;
  --color-yellow-2: #92400E;
  --color-yellow-3: #FEF3C7;
  --shadow-1: 0 0 2rem 1rem rgba(0,0,0,0.07);
  --max-width: 130.1rem;
  --dashboard-max-width: 100rem;
  --padding-1: 1.6rem;
}

body.dark-mode {
  --color-bg-1: #181818;
  --color-bg-2: #1f1f1f;
  --color-bg-3: #2c2c2c;
  --color-bg-4: #5c5c5c;
  --color-text-1: #fff;
  --color-text-2: #e1e1e1;
  --color-text-3: #cfcfcf;
  --color-text-4: #9e9e9e;
  --color-prim-1: #2581e4;
  --color-prim-2: #338ef0;
  --color-prim-2: #4c9ef5;
  --color-sec-1: #4c4e57;
  --color-sec-2: #595c66;
  --color-green: #5dffa8;
  --color-red-2: #ff4d4d;
  --color-yellow-1: #EAB308;
  --color-yellow-2: #FDE68A;
  --color-yellow-3: #ffdf5e11;
  --color-blue: #69beff;
  --color-blue-bg: rgba(105, 185, 255, 0.09);
  --color-yellow: #ffd369;
  --color-yellow-bg: rgba(255, 211, 105, 0.09);
  --color-red: #ff6969;
  --color-red-bg: rgba(255, 105, 105, 0.09);
  --color-green: #69ff78;
  --color-green-bg: rgba(105, 255, 120, 0.09);
}

*,
*:before,
*:after {
  box-sizing: border-box !important;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  height: 100%;
  background: var(--color-bg-1);
  font-family: "Inter", sans-serif;
  color: var(--color-text-2);
}
body .logo-dark {
  display: none;
}
body.dark-mode .logo-light {
  display: none;
}
body.dark-mode .logo-dark {
  display: block;
}

::-webkit-scrollbar {
  width: 0.4rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-bg-3);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-bg-4);
}

.layout-parent {
  width: 100%;
  overflow: hidden;
  position: relative;
}

a {
  text-decoration: none;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-bg-4);
}

button {
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

.overflow-hidden {
  width: 100%;
  overflow: hidden;
}

.layout-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px !important;
}

.component-logo {
  color: var(--color-text-1);
  padding-right: 6px;
  position: relative;
}
.component-logo img {
  width: auto;
  height: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .component-logo img {
    width: auto;
    height: 4.5rem;
  }
}

.swiper {
  width: 100%;
  height: max-content;
}

.swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper .swiper-pagination-bullets {
  width: max-content !important;
  padding: 2px !important;
  border-radius: 15px !important;
  background-color: rgba(0, 0, 0, 0.6705882353) !important;
  left: 50% !important;
  transform: translate(-50%, 0) !important;
  box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.1);
}

.swiper .swiper-pagination-bullet {
  background-color: #ffffff !important;
}

.swiper .swiper-pagination-bullet-active {
  background-color: var(--color-prim-1) !important;
}

.heading--h1 {
  color: var(--color-text-3);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h1 {
    font-size: 24px;
  }
}
.heading--h1 span {
  color: var(--color-prim-2);
}
.heading--h2 {
  color: var(--color-text-3);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h2 {
    font-size: 28px;
  }
}
.heading--h2 span {
  color: var(--color-prim-2);
}
.heading--h3 {
  color: var(--color-text-3);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h3 {
    font-size: 24px;
  }
}
.heading--h3 span {
  color: var(--color-prim-2);
}
.heading--h4 {
  color: var(--color-text-3);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h4 {
    font-size: 20px;
  }
}
.heading--h5 {
  color: var(--color-text-3);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

.text--body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
.text--body a {
  color: var(--color-prim-1);
  text-decoration: underline;
}
@media only screen and (max-width: 56.25em) {
  .text--body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 37.5em) {
  .text--body {
    font-size: 14px;
  }
}
.text--small {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
.text--small a {
  color: var(--color-prim-1);
  text-decoration: underline;
}
@media only screen and (max-width: 56.25em) {
  .text--small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 37.5em) {
  .text--small {
    font-size: 12px;
  }
}
.text--xsmall {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
.text--xsmall a {
  color: var(--color-prim-1);
  text-decoration: underline;
}

.font--light {
  font-weight: 300;
}
.font--regular {
  font-weight: 400;
}
.font--medium {
  font-weight: 500;
}
.font--bold {
  font-weight: 700;
}
.font--black {
  font-weight: 900;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 5.2rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-small {
  margin-bottom: 2.4rem !important;
}

.u-margin-bottom-v-small {
  margin-bottom: 1.2rem !important;
}

.padding-tb-medium {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

.rotate-0 {
  transform: rotate(0deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

.dot-list {
  list-style-type: disc;
  margin-left: 2.8rem;
  line-height: 1.8;
}

.empty-message {
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-text-2);
}
.empty-message__2 {
  height: 6rem;
  background-color: var(--color-bg-2);
  border-radius: 1.6rem;
}

.component-quickchat {
  width: 5rem;
  height: 5rem;
  border-radius: 6px;
  background: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 49;
}
@media only screen and (max-width: 56.25em) {
  .component-quickchat {
    bottom: 7.6rem;
  }
}
.component-quickchat svg {
  width: 2.8rem;
  height: 2.8rem;
}
.component-quickchat svg path {
  fill: #fff;
}
.component-quickchat__event {
  bottom: 7.6rem;
}
@media only screen and (max-width: 56.25em) {
  .component-quickchat__event {
    bottom: 13.6rem;
  }
}

.component-header {
  width: 100%;
  height: 80px;
  background: var(--color-bg-1);
  position: fixed;
  z-index: 49;
}
@media only screen and (max-width: 37.5em) {
  .component-header {
    height: 60px;
  }
}
.component-header--before {
  height: 80px;
}
@media only screen and (max-width: 37.5em) {
  .component-header--before {
    height: 60px;
  }
}
.component-header__wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .component-header__wrapper {
    grid-template-columns: max-content max-content;
    justify-content: space-between;
  }
}
.component-header__links {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .component-header__links {
    display: none;
  }
}
.component-header__nav {
  width: max-content;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.component-header__nav li a {
  width: max-content;
  color: var(--color-text-4);
  padding-bottom: 4px;
}
.component-header__nav li a:hover {
  color: var(--color-text-1);
  border-bottom: 2px solid var(--color-prim-1);
}
.component-header__nav--active {
  color: var(--color-text-1) !important;
  border-bottom: 2px solid var(--color-prim-1);
}
@media only screen and (max-width: 56.25em) {
  .component-header__nav {
    display: none !important;
  }
}
.component-header__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.component-header__hamburger {
  cursor: pointer;
  display: none;
}
.component-header__hamburger svg {
  width: 2.4rem;
  height: 2.4rem;
}
.component-header__hamburger svg path {
  stroke: var(--color-text-3);
}
@media only screen and (max-width: 56.25em) {
  .component-header__hamburger {
    display: block;
  }
}

.component-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 50;
  background: var(--color-bg-1);
  width: 0;
  height: 0;
  display: none;
  grid-template-rows: 80px 1fr max-content;
  opacity: 0;
  transition: opacity 0.2s;
}
.component-sidebar--active {
  opacity: 1;
  width: 100%;
  height: 100%;
  padding: 0 16px 16px 16px;
}
@media only screen and (max-width: 56.25em) {
  .component-sidebar {
    display: grid;
  }
}
@media only screen and (max-width: 37.5em) {
  .component-sidebar {
    grid-template-rows: 60px 1fr max-content;
  }
}
.component-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.component-sidebar__close {
  background: none;
  outline: none;
  border: none;
}
.component-sidebar__close svg {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.component-sidebar__close svg path {
  fill: var(--color-text-3);
}
.component-sidebar__nav {
  overflow-y: auto;
}
.component-sidebar__nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.component-sidebar__nav ul li {
  cursor: pointer;
}
.component-sidebar__nav ul li > * {
  display: block;
  padding: 14px 0;
  color: var(--color-text-2);
}
.component-sidebar__nav ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-bg-3);
}
.component-sidebar__nav ul li:hover {
  background-color: var(--color-bg-2);
}
.component-sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.component-sidebar__footer a, .component-sidebar__footer button {
  width: 100%;
}

.component-mobilenav {
  width: 100%;
  height: 60px;
  background: var(--color-bg-1);
  padding: 8px 16px;
  box-shadow: var(--shadow-1);
  position: fixed;
  bottom: 0;
  z-index: 11;
  display: none;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 4.2rem;
}
.component-mobilenav__el {
  text-align: center;
  gap: 0.2rem;
  font-size: 1.2rem;
  color: var(--color-text-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.component-mobilenav__el svg {
  width: 2.8rem;
  height: 2.8rem;
}
.component-mobilenav__el svg path {
  fill: var(--color-sec-1);
}
.component-mobilenav__el--active svg path {
  fill: var(--color-prim-1) !important;
}
@media only screen and (max-width: 56.25em) {
  .component-mobilenav {
    display: grid;
  }
}
@media only screen and (max-width: 37.5em) {
  .component-mobilenav {
    justify-content: space-around;
  }
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer !important;
}
.button:focus {
  border: 2px solid var(--color-text-3);
}
.button svg path {
  fill: var(--color-text-2);
}
.button.button-boxy {
  border-radius: 6px !important;
}
.button--sm {
  font-size: 13px;
  padding: 8px 16px;
  height: 40px;
  font-weight: 400;
}
.button--sm__i-before {
  padding: 8px 16px 8px 12px;
  gap: 4px;
}
.button--sm__i-after {
  padding: 8px 12px 8px 16px;
  gap: 4px;
}
.button--md {
  font-size: 14px;
  padding: 0 2.4rem;
  height: 45px;
  gap: 8px;
}
.button--md__i-before {
  padding: 0 20px 0 18px;
  gap: 8px;
}
.button--md__i-after {
  padding: 0 14px 0 16px;
  gap: 4px;
}
.button--lg {
  font-size: 16px;
  padding: 0 32px;
  height: 50px;
  font-weight: 500;
}
.button--lg__i-before {
  padding: 0 32px 0 24px;
  gap: 8px;
}
.button--lg__i-after {
  padding: 0 24px 0 32px;
  gap: 8px;
}
.button--primary {
  color: #fff;
  background-color: var(--color-prim-1);
  hover-background-color: var(--color-prim-2);
  font-weight: 500;
  width: max-content;
}
.button--primary:hover {
  background-color: var(--color-prim-2);
}
.button--secondary {
  color: var(--color-text-2);
  background-color: var(--color-bg-2);
  hover-background-color: var(--color-bg-3);
}
.button--secondary:hover {
  background-color: var(--color-bg-3);
}
.button--tertiary {
  color: var(--color-text-2);
  border: 1px solid var(--color-sec-1);
  background-color: transparent;
  border-radius: 1.2rem;
  hover-background-color: var(--color-bg-2);
}
.button--tertiary:hover {
  background-color: var(--color-bg-2);
}
.button--danger {
  color: var(--color-text-1);
  background-color: var(--color-red-1);
  hover-background-color: var(--color-red-2);
}
.button--danger:hover {
  background-color: var(--color-red-2);
}
.button--sm svg {
  width: 1.4rem;
  height: 1.4rem;
}
.button--md svg {
  width: 1.6rem;
  height: 1.6rem;
}
.button--lg svg {
  width: 1.8rem;
  height: 1.8rem;
}
.button--disabled {
  cursor: not-allowed !important;
  opacity: 0.6;
}

.form-button {
  text-decoration: underline;
  color: var(--color-prim-3);
  background-color: none;
  border-radius: none;
  outline: none;
  cursor: pointer;
}

.delete-button {
  text-decoration: underline;
  color: var(--color-red);
  background-color: none;
  border-radius: none;
  outline: none;
  cursor: pointer;
}

.btn-back {
  width: 4rem;
  height: 4rem;
  padding: 0;
  border-radius: 0.8rem;
}
.btn-back svg {
  width: 2.4rem;
  height: 2.4rem;
}

.component-chips {
  width: 100%;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.component-chips .swiper-slide {
  width: max-content;
  border-radius: none;
}
.component-chips a {
  width: max-content;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 5rem;
  text-decoration: none;
  color: var(--color-text-3);
  border: 1px solid var(--color-bg-4);
}
.component-chips a:hover {
  color: var(--color-text-3) !important;
  background: var(--color-bg-1);
}
.component-chips--active {
  color: var(--color-bg-1) !important;
  background: var(--color-text-1);
}

.component-chip {
  width: max-content;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 5rem;
  text-decoration: none;
  color: var(--color-text-3);
  border: 1px solid var(--color-bg-4);
}

.component-footer {
  height: max-content;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/src/img/footer-image.webp");
  background-size: cover;
  background-position: bottom;
  padding-top: 32px;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .component-footer:after {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
  }
}
.component-footer__whitebg {
  width: 150%;
  height: 300px;
  background: var(--color-bg-1);
  filter: blur(60px);
  position: absolute;
  top: 0;
  left: -30%;
  transform: translate(0, -50%);
  z-index: 0;
}
@media only screen and (max-width: 37.5em) {
  .component-footer__whitebg {
    width: 100rem;
    left: -20rem;
  }
}
.component-footer__content {
  position: relative;
  z-index: 2;
}
.component-footer__header {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.component-footer__header p {
  text-align: center;
  color: var(--color-text-3);
}
.component-footer__body {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .component-footer__body {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.component-footer__details {
  color: #fff;
}
.component-footer__details h2 {
  color: #fff;
}
.component-footer__details__table {
  margin-top: 16px;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 0.8rem;
}
.component-footer__details__table svg path {
  fill: #fff;
}
.component-footer__details__table a, .component-footer__details__table p {
  color: #fff;
  text-decoration: underline;
}
.component-footer__navs {
  display: flex;
  gap: 2.4rem;
}
.component-footer__navs ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.component-footer__navs ul li a {
  color: #fff;
}
.component-footer__copyright {
  border-top: 1px solid #fff;
  color: #fff;
  padding: 16px;
  text-align: center;
}
.component-footer__copyright a {
  display: inline;
  color: inherit;
}

.component-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.component-icon svg {
  width: 3.2rem;
  height: 3.2rem;
}
.component-icon--light {
  border-radius: 1.4rem;
  background-color: var(--color-bg-2);
}
.component-icon--light svg path {
  fill: var(--color-text-4);
}
.component-icon--dark {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-text-3);
}
.component-icon--dark svg {
  width: 1.8rem;
  height: 1.8rem;
}
.component-icon--sm {
  width: 4rem;
  height: 4rem;
  border-radius: 0.8rem;
}
.component-icon--sm svg {
  width: 2.4rem;
  height: 2.4rem;
}

.component-search, .component-search-live {
  width: 590px;
  border-radius: 10rem;
  background: var(--color-bg-2);
  overflow: hidden;
}
.component-search__admin, .component-search-live__admin {
  background: var(--color-bg-1);
}
.component-search__mobile, .component-search-live__mobile {
  width: auto !important;
  margin: 1.6rem 1.6rem 0 1.6rem;
}
.component-search form, .component-search-live form {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: 5rem;
  align-items: center;
}
.component-search form button, .component-search-live form button {
  padding: 2px 0 0 1.6rem;
  height: 100%;
  cursor: pointer;
}
.component-search form button svg, .component-search-live form button svg {
  width: 2.4rem;
  height: 2.4rem;
}
.component-search form button svg path, .component-search-live form button svg path {
  fill: var(--color-text-3);
}
.component-search form input, .component-search-live form input {
  height: 100%;
  border: none;
  outline: none;
  padding-left: 0.8rem;
  font-size: 1.6rem;
  color: var(--color-text-3);
  background: none;
}
@media only screen and (max-width: 37.5em) {
  .component-search form, .component-search-live form {
    grid-template-rows: 4.5rem;
  }
  .component-search form button svg, .component-search-live form button svg {
    width: 2rem;
    height: 2rem;
  }
  .component-search form input, .component-search-live form input {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .component-search, .component-search-live {
    width: 540px;
  }
}
@media only screen and (max-width: 37.5em) {
  .component-search, .component-search-live {
    width: 100%;
  }
}

.component-search-live {
  overflow: visible;
  position: relative;
}
.component-search-live__results {
  width: 100%;
  background: var(--color-bg-2);
  border-radius: 0 0 24px 24px;
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 49;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.component-search-live__results ul li {
  padding: 6px 12px;
  font-size: 14px;
}
.component-search-live__results ul li.empty {
  text-align: center;
  padding: 12px 12px;
}
.component-search-live__results ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-bg-2);
}
.component-search-live__results ul li a {
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}
.component-search-live__results ul li:hover {
  color: var(--color-prim-1);
}
.component-search-live:focus-within {
  border-radius: 24px 24px 0 0;
}
.component-search-live:focus-within .component-search-live__results {
  display: flex;
}

.component-form {
  max-width: 45rem;
}
.component-form__wrapper {
  margin-bottom: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.component-form__wrapper > a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-prim-1);
  text-align: right;
}
.component-form__wrapperMax {
  width: 100% !important;
  margin-bottom: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.component-form__wrapperMax > * {
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .component-form__wrapperMax {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.component-form__actions > * {
  min-width: 150px;
}
.component-form__actions--full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.component-form__actions--full > * {
  width: 100%;
}
.component-form img {
  width: 40px;
  height: 60px;
  border-radius: 2px;
  object-fit: cover;
}

.component-input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.component-input__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.component-input__header span {
  color: var(--color-red);
}
.component-input input, .component-input textarea, .component-input select {
  height: 4.5rem;
  background: var(--color-bg-2);
  border-radius: 6px;
  padding: 4px 16px;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: var(--color-text-3);
  font-family: inherit;
}
.component-input textarea {
  padding: 16px;
  line-height: 1.6;
  height: 10rem;
  resize: none;
}
.component-input__img {
  height: 20rem;
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-2);
}
.component-input__img img {
  width: max-content;
  height: 20rem !important;
  object-fit: cover;
  border-radius: 0.6rem;
}

.component-formWrapper {
  width: 100%;
  height: max-content;
  border-radius: 0.8rem;
  border: 1px solid var(--color-bg-3);
  background: var(--color-bg-1);
}
.component-formWrapper__header {
  padding: 2rem 1.6rem;
  border-bottom: 1px solid var(--color-bg-3);
}
.component-formWrapper__header h2 {
  color: var(--color-text-3);
}
.component-formWrapper__body {
  padding: 1.6rem;
}

.component-checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.component-checkbox__heading {
  font-size: 1.4rem;
  color: var(--color-text-2);
}
.component-checkbox__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.component-checkbox__wrapper {
  font-size: 1.4rem;
  color: var(--color-text-2);
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.component-checkbox__wrapper label {
  width: 200px;
  padding: 0.8rem;
  background: var(--color-bg-2);
  border-radius: 0.8rem;
  cursor: pointer;
  border: 1px solid transparent;
  display: block;
}
.component-checkbox__wrapper input {
  display: none !important;
}
.component-checkbox__wrapper input:checked ~ label {
  color: var(--color-prim-1);
  border: 1px solid var(--color-prim-1);
}

.form-book-now {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.8rem;
}
.form-book-now input {
  height: 100%;
  background: var(--color-bg-1);
  border: 1px solid var(--color-bg-4);
}
.component-event {
  width: 184px;
  height: 258px;
  background-color: var(--color-bg-2);
  border-radius: 16px;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .component-event {
    width: 150px;
    height: 220px;
  }
}
.component-event img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.component-event__icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-bg-1);
  border: 1px solid var(--color-bg-3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.component-event__icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.component-event__icon svg path {
  fill: var(--color-text-2);
}

.section-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 49;
  display: none;
}
.section-popup--active {
  display: block;
}
.section-popup__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.section-popup__wrapper {
  width: 50rem;
  height: 80vh;
  background-color: var(--color-bg-1);
  border-radius: 2.4rem;
  padding: 0;
  font-size: 1.6rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 37.5em) {
  .section-popup__wrapper {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
.section-popup__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  cursor: pointer;
}
.section-popup__close svg {
  width: 2.4rem;
  height: 2.4rem;
}
.section-popup__close svg path {
  fill: var(--color-text-2);
}
.section-popup__content {
  height: 100%;
  padding: 2.4rem 1.6rem 1.6rem 1.6rem;
  overflow-y: auto;
  font-size: 1.4rem;
  font-weight: 300;
}
.section-popup__content > * {
  color: var(--color-text-3);
  line-height: 1.6 !important;
}
.section-popup__content hr {
  margin-bottom: 1.2rem;
}
.section-popup__content .heading--h4 {
  margin-bottom: 1.6rem;
}
.section-popup__content h2 {
  font-size: 1.8rem;
  margin: 1.2rem 0 0.6rem 0 !important;
}
.section-popup__content a {
  color: var(--color-prim-1);
}
.section-popup__content ul {
  all: revert;
}
.section-popup__content ol {
  all: revert;
}

.component-popup-msg {
  width: max-content;
  max-width: 40rem;
  padding: 16px 16px;
  background: var(--color-bg-1);
  border-radius: 12px;
  border: 1px solid var(--color-bg-3);
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-2);
  position: fixed;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%) scale(0); /* Initially scaled down */
  opacity: 0; /* Initially invisible */
  z-index: 59;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 37.5em) {
  .component-popup-msg {
    width: calc(100% - 32px);
    max-width: auto;
  }
}
.component-popup-msg__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.component-popup-msg__icon--success {
  background: var(--color-green);
}
.component-popup-msg__icon--error {
  background: var(--color-red);
}
.component-popup-msg__icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.component-popup-msg__icon svg path {
  fill: var(--color-bg-1);
}

.component-popup-msg--animate {
  opacity: 1;
  top: 1.6rem; /* Move to final position */
  transform: translateX(-50%) scale(1); /* Scale to full size */
  animation: popupIn 0.6s ease-in-out, popupOut 0.5s ease-in-out 3.5s; /* popupIn for in, popupOut for out */
}

@keyframes popupIn {
  0% {
    top: -100px;
    transform: translateX(-50%) scale(0); /* Start from top and scale down */
    opacity: 0;
  }
  100% {
    top: 1.6rem;
    transform: translateX(-50%) scale(1); /* End in final position */
    opacity: 1;
  }
}
@keyframes popupOut {
  0% {
    top: 1.6rem;
    transform: translateX(-50%) scale(1); /* Start in the final position */
    opacity: 1;
  }
  100% {
    top: -100px;
    transform: translateX(-50%) scale(0); /* Scale down and move back to the top */
    opacity: 0;
  }
}
.dark-mode-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dark-mode-button--li:hover {
  background: var(--color-bg-1) !important;
}

.tgl {
  display: none;
}
.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
  box-sizing: border-box;
}
.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
  background: none;
}
.tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 4em;
  height: 2.2em;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}
.tgl + .tgl-btn:after {
  left: 0;
}
.tgl + .tgl-btn:before {
  display: none;
}
.tgl:checked + .tgl-btn:after {
  left: 50%;
}

.tgl-ios + .tgl-btn {
  background: var(--color-bg-3);
  border-radius: 2em;
  padding: 2px;
  transition: all 0.4s ease;
}
.tgl-ios + .tgl-btn:after {
  border-radius: 2em;
  background: #fbfbfb;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.tgl-ios + .tgl-btn:hover:after {
  will-change: padding;
}
.tgl-ios + .tgl-btn:active {
  box-shadow: inset 0 0 0 2em #e8eae9;
}
.tgl-ios + .tgl-btn:active:after {
  padding-right: 0.8em;
}
.tgl-ios:checked + .tgl-btn {
  background: #86d993;
}
.tgl-ios:checked + .tgl-btn:active {
  box-shadow: none;
}
.tgl-ios:checked + .tgl-btn:active:after {
  margin-left: -0.8em;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  background-color: var(--color-bg-1);
  border: 1px solid var(--color-bg-3);
  border-radius: 1.6rem;
  display: grid;
}
@media only screen and (max-width: 56.25em) {
  .table-container {
    grid-template-columns: 100%;
  }
}

.component-table {
  width: 100% !important;
  border-collapse: collapse;
}
.component-table th, .component-table td {
  padding: 1.2rem 0.8rem;
  text-align: left;
}
.component-table th.money, .component-table td.money {
  text-align: right;
}
.component-table th {
  border-bottom: 1px solid var(--color-bg-3);
}
.component-table tr:nth-child(even) {
  background-color: var(--color-bg-2);
}
.component-table img {
  width: 40px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}
.component-table a {
  color: var(--color-prim-3);
  text-decoration: underline;
}
.component-table a.component-profile {
  text-decoration: none;
}
.component-table a.component-profile:hover {
  text-decoration: underline;
}

.component-pagination__pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.component-pagination__info {
  color: var(--color-text-2);
  font-size: 1.4rem;
  margin-right: 1rem;
}
.component-pagination__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.component-pagination__arrow {
  display: inline-flex;
  padding: 0.5rem;
  font-size: 0.875rem;
  background: none;
  border: 1px solid var(--color-bg-3);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.component-pagination__arrow--active {
  color: var(--color-text-3);
}
.component-pagination__arrow--disabled {
  color: var(--color-text-4);
  cursor: not-allowed;
}
.component-pagination__arrow:hover {
  color: var(--color-prim-1);
}
.component-pagination__arrow svg {
  width: 20px;
  height: 20px;
}
.component-pagination__dots {
  font-size: 0.875rem;
  padding: 0.5rem;
  cursor: not-allowed;
}
.component-pagination__page {
  height: 100%;
  display: inline-flex;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  color: var(--color-text-3);
  border: 1px solid var(--color-bg-3);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.component-pagination__page--current {
  background-color: var(--color-prim-1);
  color: #fff;
}
.component-pagination__page--link:hover {
  background: var(--color-bg-3);
}

.component-pagination-2 {
  margin-top: 2.4rem;
}
.component-pagination-2 ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1.6rem;
}
.component-pagination-2 ul li > * {
  width: max-content;
  padding: 1.2rem 1.6rem;
  border-radius: 5rem;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-text-2);
  display: block;
  border: 1px solid var(--color-text-3);
}
.component-pagination-2 ul li > *:hover {
  color: #fff;
  background: var(--color-prim-1);
}
.component-pagination-2 ul li.disabled span {
  background: var(--color-bg-2);
  cursor: not-allowed;
}
.component-pagination-2 ul li.disabled span:hover {
  color: var(--color-text-2);
  background: var(--color-bg-2);
}

.component-status-tag {
  width: max-content;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: 500;
}
.component-status-tag__blue {
  background: var(--color-blue-bg);
  color: var(--color-blue);
}
.component-status-tag__yellow {
  background: var(--color-yellow-bg);
  color: var(--color-yellow);
}
.component-status-tag__red {
  background: var(--color-red-bg);
  color: var(--color-red);
}
.component-status-tag__green {
  background: var(--color-green-bg);
  color: var(--color-green);
}

.component-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.component-profile img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.component-profile p {
  color: var(--color-text-1);
  text-decoration: none;
}
.component-profile span {
  color: var(--color-text-4);
}

.component-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}
.component-image p {
  text-decoration: none !important;
  color: rgb(19, 19, 19) !important;
}

.component-overview {
  padding: 1.6rem;
  border-radius: 1.6rem;
  border: 1px solid var(--color-bg-4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  position: relative;
}
.component-overview__header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.component-overview__header p {
  color: var(--color-text-4);
}
.component-overview__icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-bg-2);
  border-radius: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.component-overview__icon svg {
  width: 2.2rem;
  height: 2.2rem;
}
.component-overview__icon svg path {
  fill: var(--color-text-2);
}
.component-overview__icon--1 svg path {
  fill: #F1673B;
}
.component-overview__icon--2 svg path {
  fill: #F13B5E;
}
.component-overview__icon--3 svg path {
  fill: #3BDBF1;
}
.component-overview__icon--4 svg path {
  fill: #3BF163;
}
.component-overview__detail.money {
  text-align: right;
}
.component-overview__notif {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: var(--color-prim-2);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--color-bg-1);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .component-overview__notif {
    font-size: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.component-notificaiton {
  padding: 1.6rem;
  color: var(--color-yellow-2);
  background: var(--color-yellow-3);
  border: 1px solid var(--color-yellow-1);
  border-radius: 1.2rem;
  font-size: 1.6rem;
}

.component-review {
  width: 100%;
  height: max-content;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .component-review {
    width: 100%;
  }
}
.component-review__img {
  width: 100%;
  height: 20rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.component-review__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.component-review__content {
  padding: 1.6rem 0.8rem 0.8rem 0.8rem;
}
.component-review__content h3 {
  margin-bottom: 0.6rem;
}
.component-review__content p {
  margin-bottom: 1.6rem;
  color: var(--color-text-3);
}
.component-review__stars {
  display: flex;
  gap: 0.6rem;
}
.component-review__star-empty {
  width: 20px;
  height: 20px;
  background-color: gold;
  mask-image: url("/src/icons/star-empty.svg");
  -webkit-mask-image: url("/src/icons/star-empty.svg");
  mask-size: cover;
}
.component-review__star-filled {
  width: 20px;
  height: 20px;
  background-color: gold;
  mask-image: url("/src/icons/star-filled.svg");
  -webkit-mask-image: url("/src/icons/star-filled.svg");
  mask-size: cover;
}
.component-review__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.component-accordion {
  max-width: 60rem;
}
.component-accordion:not(:last-child) {
  border-bottom: 1px solid var(--color-bg-4);
}
.component-accordion__header {
  padding: 1.2rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  gap: 1.6rem;
}
.component-accordion__header h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text-2);
}
.component-accordion__header svg {
  width: 2.4rem;
  height: 2.4rem;
  transform: rotate(-90deg);
}
.component-accordion__header svg path {
  fill: var(--color-text-3);
}
.component-accordion__header:hover {
  background-color: var(--color-bg-2);
}
.component-accordion__content {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0.8rem 1.6rem 1.6rem 3.2rem;
}
.component-accordion__content__icon {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 0.8rem;
}
.component-accordion__content__icon p, .component-accordion__content__icon a {
  padding: 0.2rem;
  font-size: 1.4rem;
  color: var(--color-text-2);
  line-height: 1.6;
}
.component-accordion__content__icon a {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}
.component-accordion--active .component-accordion__header svg {
  transform: rotate(90deg);
}
.component-accordion--active .component-accordion__content {
  display: flex;
  padding: 0.8rem 1.6rem 1.6rem 1.6rem;
}

.page-home__content {
  background-color: var(--color-bg-1);
  position: relative;
  z-index: 2;
  padding-top: 1.6rem;
  border-radius: 2.4rem 2.4rem 0 0;
}
.page-home__gesture-bar {
  max-width: 10rem;
  height: 6px;
  background: var(--color-bg-3);
  border-radius: 50px;
  margin: 0 auto 1.6rem auto;
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .page-home__gesture-bar {
    display: block;
  }
}

.section-categories {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.4rem 0;
}
.section-categories .swiper-wrapper {
  padding: 0 var(--padding-1);
}
.section-categories .swiper-wrapper > :last-child {
  margin-right: calc(2 * var(--padding-1));
}
@media only screen and (max-width: 37.5em) {
  .section-categories .swiper-wrapper {
    padding: 0;
  }
  .section-categories .swiper-wrapper > :last-child {
    margin-right: 0 !important;
  }
}
.section-categories .swiper-slide {
  max-width: 600px;
  height: 300px !important;
}
@media only screen and (max-width: 56.25em) {
  .section-categories .swiper-slide {
    width: 400px;
    max-width: 600px;
    height: 250px !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-categories .swiper-slide {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-categories .swiper-pagination-bullets {
    transform: translate(-50%, -20px) !important;
  }
}
.section-categories__category {
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
  overflow: hidden;
}
.section-categories__category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-categories__cover {
  height: 25rem;
  padding: 1.6rem;
  overflow: hidden;
}
.section-categories__cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.4rem;
  background-image: url("/src/img/contact-us-desktop.webp");
  background-position: right;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 37.5em) {
  .section-categories__cover {
    padding: 0;
  }
  .section-categories__cover__img {
    border-radius: 0;
    background-position: top;
    background-image: url("/src/img/contact-us-mobile.webp");
  }
}
@media only screen and (max-width: 37.5em) {
  .section-categories {
    width: 100%;
    position: fixed;
    padding: 0;
  }
  .section-categories__after {
    content: "";
    width: 100%;
    height: 250px;
    margin-bottom: -2rem !important;
    position: relative;
    z-index: -2;
    display: block;
  }
  .section-categories__category {
    border-radius: 0;
  }
}

.section-hero {
  padding: 2.4px 0;
  background: var(--color-bg-1);
  display: grid;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-hero h1 {
  text-align: center;
  color: var(--color-text-3);
  margin-bottom: 2.4rem;
}
.section-hero h1 span {
  color: var(--color-prim-1);
}
@media only screen and (max-width: 37.5em) {
  .section-hero h1 {
    margin-bottom: 1.6rem;
  }
}
.section-hero p {
  text-align: center;
  color: var(--color-text-4);
}
@media only screen and (max-width: 37.5em) {
  .section-hero {
    padding: 2.4rem 0;
    display: block;
  }
  .section-hero h1, .section-hero p {
    text-align: left;
  }
}

.section-reviews {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 3.2rem 0;
}
.section-reviews__header {
  padding: 0 1.6rem;
  margin-bottom: 2.4rem;
}
.section-reviews .swiper-slide {
  width: 40rem !important;
}
@media only screen and (max-width: 37.5em) {
  .section-reviews .swiper-slide {
    width: 100% !important;
  }
}

.section-home-categories {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 400px));
  gap: 2.4rem;
}
.section-home-categories a {
  width: 100%;
  height: 22rem;
  border-radius: 1.6rem;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.section-home-categories a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s;
}
.section-home-categories a img:hover {
  transform: scale(1.2);
}
@media only screen and (max-width: 75em) {
  .section-home-categories {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-home-categories {
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 1.6rem;
  }
  .section-home-categories a {
    height: 18rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-home-categories {
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
    gap: 0.4rem;
  }
  .section-home-categories a {
    height: 12rem;
  }
}

.section-gallery {
  max-width: var(--max-width);
  height: 35rem;
  margin: 0 auto;
  padding: 2.4rem 0;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .section-gallery {
    padding: 0 0 2.4rem 0;
  }
}
.section-gallery__wrapper {
  height: 100%;
  overflow: visible;
}
.section-gallery__wrapper .swiper-wrapper {
  padding: 0 var(--padding-1);
}
.section-gallery__wrapper .swiper-wrapper > :last-child {
  margin-right: calc(2 * var(--padding-1));
}
@media only screen and (max-width: 37.5em) {
  .section-gallery__wrapper .swiper-wrapper {
    padding: 0;
  }
  .section-gallery__wrapper .swiper-wrapper > :last-child {
    margin-right: 0 !important;
  }
}
.section-gallery__wrapper .swiper-slide {
  width: max-content;
  height: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}
.section-gallery__wrapper .swiper-slide img {
  width: max-content;
  height: 100%;
}
@media only screen and (max-width: 37.5em) {
  .section-gallery__wrapper .swiper-slide {
    width: 100%;
    border-radius: 0;
  }
  .section-gallery__wrapper .swiper-slide img {
    width: 100%;
    object-fit: cover;
  }
}

.section-eventMain {
  margin-bottom: 3.2rem;
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.4rem;
}
@media only screen and (max-width: 56.25em) {
  .section-eventMain {
    display: flex;
    flex-direction: column;
  }
}
.section-eventMain__brochure {
  width: 5rem;
  height: 5rem;
  background: var(--color-prim-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 16px;
  transform: translate(0, -100%);
  z-index: 10;
}
.section-eventMain__brochure svg {
  width: 2.4rem;
  height: 2.4rem;
}
.section-eventMain__brochure svg path {
  fill: var(--color-bg-1);
}
@media only screen and (max-width: 37.5em) {
  .section-eventMain__brochure {
    left: auto;
    right: 0;
  }
}
.section-eventMain__details {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.section-eventMain__details--inquiry {
  display: grid;
  grid-template-columns: max-content 1fr;
  padding-top: 1.6rem;
}
.section-eventMain__booking {
  height: max-content;
  border: 1px solid var(--color-bg-3);
  border-radius: 1.6rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-eventMain__booking {
    border: none;
    padding: 0;
  }
}
.section-eventMain__header h1 {
  color: var(--color-text-3);
}
.section-eventMain__header h1 span {
  color: var(--color-prim-1);
}
.section-eventMain__header p {
  color: var(--color-text-4);
}
.section-eventMain__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  align-items: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.section-eventMain__info li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-eventMain__info li p {
  color: var(--color-text-3);
  font-size: 1.4rem;
  line-height: 1.6;
}
.section-eventMain__info li p span {
  display: block;
  font-weight: 800;
}
.section-eventMain__about h2 {
  margin-bottom: 0.8rem;
}
.section-eventMain__about p {
  color: var(--color-text-4);
}
.section-eventMain__includes h2 {
  margin-bottom: 1.2rem;
}
.section-eventMain__includes ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.6rem;
}
.section-eventMain__includes ul li {
  color: var(--color-text-3);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-eventMain__price {
  padding-top: 1.6rem;
  border-top: 1px solid var(--color-bg-3);
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 0.8rem;
}
@media only screen and (max-width: 25em) {
  .section-eventMain__price {
    grid-template-columns: 1fr;
  }
}
.section-eventMain__price--detail {
  grid-column: 1/-1;
  display: flex;
  gap: 1.6rem;
  color: var(--color-text-4);
}
.section-eventMain__price button, .section-eventMain__price a {
  width: 100%;
}

.component-departure {
  width: 22rem !important;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.component-departure--active {
  padding: 0.6rem;
  border-radius: 1.4rem;
  border: 2px solid var(--color-prim-2);
}
.component-departure__img {
  width: 100%;
  height: 13.5rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.component-departure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.component-departure__content {
  width: 100%;
}
.component-departure h3 {
  margin-bottom: 0.8rem;
}
.component-departure__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.component-departure__info p {
  width: 100%;
  cursor: auto !important;
}
.component-departure:hover img {
  transform: scale(1.1);
}

.departure-dates {
  width: 6rem !important;
  height: 6rem !important;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text-3);
  border-radius: 50%;
  border: 1px solid var(--color-bg-3);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.departure-dates span {
  font-size: 1.2rem;
  color: var(--color-bg-4);
  font-weight: 400;
}
.departure-dates:hover {
  background: var(--color-bg-2);
  color: var(--color-text-3);
}
.departure-dates:hover span {
  color: var(--color-bg-4);
}
.departure-dates--active {
  border: 1px solid transparent;
  background: var(--color-prim-1);
  color: #fff;
}
.departure-dates--active span {
  color: #fff;
}

.section-schedule {
  padding: 2.4rem 0;
}
.section-schedule h2 {
  margin-bottom: var(--padding-1);
}
.section-schedule__points {
  border-left: 2px solid var(--color-bg-2);
}
.section-schedule__point {
  padding: 0 0 var(--padding-1) var(--padding-1);
  position: relative;
}
.section-schedule__point:last-child .section-schedule__point--wrapper {
  padding-bottom: 0;
  border-bottom: 0;
}
.section-schedule__point--wrapper {
  width: 100%;
  padding-bottom: var(--padding-1);
  border-bottom: 2px solid var(--color-bg-2);
}
.section-schedule__point__day {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-3);
}
.section-schedule__point__day span {
  font-weight: 400;
  color: var(--color-text-4);
}
.section-schedule__point__day::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-prim-1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -6px;
}
.section-schedule__point h3 {
  font-size: 2rem;
  color: var(--color-text-2);
  margin: 1.2rem 0 0.6rem 0;
  line-height: 1.1;
  font-weight: 600;
}
.section-schedule__point__desc {
  font-size: 1.2rem;
  color: var(--color-text-4);
}
.section-schedule__point__desc span {
  color: var(--color-prim-2);
  cursor: pointer;
}
.section-schedule__point img {
  max-width: 55rem;
  height: auto;
  border-radius: 1.6rem;
  margin-top: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-schedule__point img {
    width: 100%;
    max-width: auto;
  }
}

.section-booknow-fixed {
  width: 100%;
  padding: 1.2rem 0;
  background: var(--color-bg-2);
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 10;
}
@media only screen and (max-width: 56.25em) {
  .section-booknow-fixed {
    bottom: 5.9rem;
  }
}
.section-booknow-fixed__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 25em) {
  .section-booknow-fixed__wrapper input {
    display: none;
  }
}

.section-inclusion {
  padding: 3.2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .section-inclusion {
    grid-template-columns: 1fr;
  }
}
.section-inclusion__button {
  padding: 1.6rem 1.6rem;
  border-radius: 1.2rem;
  background-color: var(--color-bg-2);
  font-size: 1.6rem;
  color: var(--color-text-3);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-inclusion__button svg path {
  fill: var(--color-text-2);
}
.section-inclusion__button:hover {
  color: var(--color-prim-1);
}
.section-inclusion__button:hover svg path {
  fill: var(--color-prim-1);
}

.section-404 {
  height: 60vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.section-404 h1 {
  text-align: center;
  color: var(--color-prim-1);
  font-size: 4.6rem;
  line-height: 1.1;
}
.section-404 h1 span {
  color: var(--color-text-3);
  font-size: 2.8rem;
}
@media only screen and (max-width: 37.5em) {
  .section-404 h1 {
    font-size: 3.2rem;
  }
  .section-404 h1 span {
    font-size: 1.8rem;
  }
}

.section-inquiries {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 0 !important;
}
.section-inquiries__chats {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--color-bg-1);
}
.section-inquiries__chats__body {
  display: flex;
  flex-direction: column;
}
.section-inquiries__chats__body .component-pagination__pagination {
  padding: 1.6rem;
  justify-content: space-around;
}
@media only screen and (max-width: 37.5em) {
  .section-inquiries__chats--single-chat {
    display: none;
  }
}
.section-inquiries__chat {
  color: var(--color-text-1);
  padding: 1.2rem 1.6rem;
  display: block;
}
.section-inquiries__chat--new {
  background: var(--color-bg-2);
}
.section-inquiries__chat--new:hover {
  background: var(--color-bg-3) !important;
}
.section-inquiries__chat:not(:last-child) {
  border-bottom: 1px solid var(--color-bg-3);
}
.section-inquiries__chat:hover {
  background: var(--color-bg-2);
}
.section-inquiries__chat__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
.section-inquiries__chat__time {
  color: var(--color-text-4);
}
.section-inquiries__chat__email {
  margin-bottom: 1.2rem;
  color: var(--color-text-3);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.section-inquiries__chat__email svg {
  width: 1.6rem;
  height: 1.6rem;
}
.section-inquiries__chat-cover {
  background-color: var(--color-bg-2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-inquiries__chat-main {
  background-color: var(--color-bg-2);
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr max-content;
}
.section-inquiries__chat-main__body {
  padding: 1.6rem;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  gap: 1.2rem;
}
.section-inquiries__chat-main__reply {
  border-radius: 0.8rem 0.8rem 0 0;
  padding: 0.8rem;
  background: var(--color-bg-1);
}
.section-inquiries__chat__date {
  width: max-content;
  background: var(--color-bg-1);
  border-radius: 0.4rem;
  padding: 0.4rem;
  align-self: center;
  font-size: 1.2rem;
  margin: 0 auto;
}
.section-inquiries__chat__message {
  width: 80%;
  max-width: 40rem;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem;
  background: var(--color-bg-1);
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.section-inquiries__chat__message span {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-text-3);
}
.section-inquiries__chat__message a {
  color: var(--color-prim-1);
  text-decoration: underline;
}
.section-inquiries__chat__message--in {
  border-radius: 0 1.2rem 1.2rem 1.2rem;
}
.section-inquiries__chat__message--out {
  border-radius: 1.2rem 0 1.2rem 1.2rem;
  margin-left: auto;
}
@media only screen and (max-width: 37.5em) {
  .section-inquiries {
    grid-template-columns: 1fr;
  }
  .section-inquiries__chat-cover {
    display: none;
  }
}

.section-paymentReview {
  padding: 2.4rem 1.6rem;
  margin: 3.2rem auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.4rem;
}
.section-paymentReview__left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.section-paymentReview__right {
  display: grid;
  gap: 2.4rem;
}
.section-paymentReview__participants {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.section-paymentReview__participant {
  background-color: var(--color-bg-2);
  border-radius: 1.2rem;
  padding: 1.6rem;
}
.section-paymentReview__pricing {
  display: grid !important;
  grid-template-columns: 8rem 1fr !important;
  gap: 1.2rem;
}
.section-paymentReview__pricing span, .section-paymentReview__pricing p {
  font-size: 1.4rem !important;
}
.section-paymentReview__pricing p {
  display: block;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media only screen and (max-width: 56.25em) {
  .section-paymentReview {
    display: flex;
    flex-direction: column;
  }
}

.component-coupon {
  min-width: 20rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-areas: "span span" "input button";
  gap: 0.6rem;
}
.component-coupon span {
  grid-area: span;
}
.component-coupon span.success {
  color: var(--color-green) !important;
}
.component-coupon span.success a {
  color: var(--color-text-2);
  text-decoration: underline;
  background: none;
  border: non;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.component-coupon input {
  grid-area: input;
  color: var(--color-text-2);
  background: var(--color-bg-1);
  border-radius: 0.8rem;
  border: 1px solid var(--color-bg-3);
  outline: none;
  padding: 0 1.6rem;
}
.component-coupon button {
  grid-area: button;
}

.section-bookings {
  min-height: 60vh;
}
.section-bookings__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-bookings__header {
    align-items: start;
  }
}
.section-bookings__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-bookings__wrapper {
    grid-template-columns: 1fr;
  }
}
.section-bookings__booking {
  height: max-content;
  border: 1px solid var(--color-bg-3);
  border-radius: 1.2rem;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 8rem 1fr;
}
@media only screen and (max-width: 37.5em) {
  .section-bookings__booking {
    border: none;
    pading: 0;
  }
}
.section-bookings__booking .component-event {
  width: max-content;
  height: 10rem;
}
.section-bookings__booking .component-event img {
  border-radius: 0.8rem;
}
.section-bookings__booking__content {
  padding-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-areas: "heading heading" "description description" "status price";
}
.section-bookings__booking h2 {
  grid-area: heading;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: -1rem;
}
.section-bookings__booking span {
  grid-area: description;
  color: var(--color-text-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-bookings__booking .component-status-tag {
  height: max-content;
  grid-area: status;
}
.section-bookings__booking--price {
  grid-area: price;
  display: flex;
  align-items: end;
  gap: 0.4rem;
}

.section-booking__participants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  gap: 0.8rem;
}
@media only screen and (max-width: 37.5em) {
  .section-booking__participants {
    display: flex;
    flex-direction: column;
  }
}

.section-booking__participant {
  padding: 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid var(--color-bg-3);
  text-decoration: none;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-template-areas: "index header icon" ". detail detail";
  gap: 1.2rem;
}
.section-booking__participant__i {
  grid-area: index;
  color: var(--color-text-2);
}
.section-booking__participant__header {
  color: var(--color-text-2);
  grid-area: header;
}
.section-booking__participant__header span {
  color: var(--color-text-4);
}
.section-booking__participant__icon {
  grid-area: icon;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.6rem;
  border: 1px solid var(--color-bg-3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-booking__participant__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}
.section-booking__participant__icon svg path {
  fill: var(--color-text-3);
}
@media only screen and (max-width: 37.5em) {
  .section-booking__participant__icon {
    width: 3rem;
    height: 3rem;
  }
}
.section-booking__participant__detail {
  grid-area: detail;
  color: var(--color-text-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-booking__participant:hover .section-booking__participant__icon {
  background: var(--color-bg-2);
}

.section-packages {
  display: grid;
  grid-template-columns: minmax(0, 45rem);
  gap: 2.4rem;
  padding: 3.2rem 0;
}
@media only screen and (max-width: 37.5em) {
  .section-packages {
    grid-template-columns: 1fr;
  }
}
.section-packages__heading {
  margin-bottom: 1.2rem;
}
.section-packages__heading p {
  color: var(--color-text-3);
}
.section-packages__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.section-packages__el {
  background: var(--color-bg-2);
  padding: 1.2rem;
  border-radius: 0.8rem;
  color: var(--color-text-1);
  display: flex;
  justify-content: space-between;
}
.section-packages__el > * {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
}
.section-packages__el__left p {
  font-size: 1.6rem;
}
.section-packages__el__left span {
  color: var(--color-text-3);
  font-size: 1.2rem;
}
.section-packages__el__right {
  align-items: end;
  justify-content: space-around;
}
.section-packages__el__right p {
  font-size: 1.6rem;
}
.section-packages__el__people {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
}
.section-packages__el__people svg {
  width: 2.4rem;
  height: 2.4rem;
}
.section-packages__el__people svg path {
  fill: var(--color-text-1);
}
.section-packages__el--highlight {
  background: var(--color-prim-1);
  color: #fff;
}
.section-packages__el--highlight .section-packages__el__left p {
  color: #fff;
}
.section-packages__el--highlight .section-packages__el__left span {
  color: #fff;
  font-size: 1.2rem;
}
.section-packages__el--highlight .section-packages__el__right {
  align-items: end;
  justify-content: space-around;
}
.section-packages__el--highlight .section-packages__el__right svg path {
  fill: #fff !important;
}
.section-packages__el--highlight .section-packages__el__right p {
  font-size: 1.6rem;
}
.section-packages__el-wrapper {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 0.8rem;
}
.section-packages__el-wrapper form button {
  width: 5rem;
  height: 5rem;
  background: none;
  outline: none;
  border: 1px solid var(--color-text-4);
  border-radius: 1.2rem;
  color: inherit;
  font-size: 2.4rem;
  cursor: pointer;
}
.section-packages__el-wrapper form button:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.section-packages__cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-packages__cost span {
  font-size: 1.6rem;
  color: var(--color-text-3);
}
.section-packages__cost p {
  font-size: 2.4rem;
  color: var(--color-text-2);
}
.section-packages__btns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.6rem;
}
.section-packages__btns > * {
  width: 100%;
}

.section-legal-page {
  padding: 3.2rem 1.6rem !important;
}
.section-legal-page__content {
  font-size: 1.6rem;
  font-weight: 300;
}
.section-legal-page__content > * {
  color: var(--color-text-3);
  line-height: 1.6 !important;
}
.section-legal-page__content hr {
  margin-bottom: 1.2rem;
}
.section-legal-page__content .heading--h4 {
  margin-bottom: 1.6rem;
}
.section-legal-page__content h2 {
  font-size: 1.8rem;
  margin: 1.2rem 0 0.6rem 0 !important;
}
.section-legal-page__content a {
  color: var(--color-prim-1);
}
.section-legal-page__content ul {
  all: revert;
}
.section-legal-page__content ol {
  all: revert;
}

.section-contact {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.6rem;
}
.section-contact__left h1 {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .section-contact__left h1 {
    display: none;
  }
}
.section-contact__right h1 {
  display: none;
  margin-bottom: 0;
}
.section-contact__branches h1 {
  display: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 56.25em) {
  .section-contact {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .section-contact__right {
    max-width: 45rem;
  }
  .section-contact__right h1 {
    display: block;
  }
  .section-contact__branches h1 {
    display: block;
  }
}
.section-booking {
  background-color: var(--color-bg-1);
  padding: 3.2rem 0;
}
.section-booking > * {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.section-booking__track {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-areas: "cover heading" "cover details";
  gap: 1.6rem;
}
.section-booking__track h1 {
  grid-area: heading;
}
.section-booking__track .component-event {
  grid-area: cover;
}
.section-booking__track__content {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.section-booking__track__content__el span {
  color: var(--color-text-4);
}
.section-booking__track__content__el p {
  color: var(--color-text-1);
}
@media only screen and (max-width: 37.5em) {
  .section-booking__track {
    grid-template-areas: "heading heading" "cover details";
  }
}

.section-booking__payment {
  background: var(--color-bg-2);
  padding: 1.6rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.section-booking__payment__el {
  display: grid;
  grid-template-columns: 15rem 1fr;
  font-size: 1.6rem;
}
.section-booking__payment__el span {
  color: var(--color-text-4);
}
.section-booking__payment__el p, .section-booking__payment__el a {
  color: var(--color-text-1);
  text-align: end;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.section-booking__payment__el a {
  text-decoration: underline;
}
.section-booking__payment__el div {
  display: flex;
  justify-content: end;
}
@media only screen and (max-width: 37.5em) {
  .section-booking__payment__el {
    font-size: 1.4rem;
    grid-template-columns: 12rem 1fr;
  }
}
.section-booking__payment__proceed {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.section-booking__payment__btns {
  grid-column: 1/-1;
  display: flex;
  justify-content: end;
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-booking__payment__btns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  }
  .section-booking__payment__btns > * {
    width: 100%;
  }
}
.section-booking__payment hr {
  border: none;
  border-top: 2px dotted var(--color-bg-4);
  position: relative;
  overflow: visible;
}
.section-booking__payment hr::after, .section-booking__payment hr::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background-color: var(--color-bg-1);
  position: absolute;
  display: flex;
}
.section-booking__payment hr::after {
  right: 0%;
  transform: translate(2.4rem, -50%);
}
.section-booking__payment hr::before {
  left: 0;
  transform: translate(-2.4rem, -50%);
}
.section-booking__payment hr.simple {
  border-top: 1px solid var(--color-bg-4);
}
.section-booking__payment hr.simple::before {
  display: none;
}
.section-booking__payment hr.simple::after {
  display: none;
}
.section-booking__payment--light {
  background: var(--color-bg-2);
}
.section-booking__payment--light hr:before, .section-booking__payment--light hr:after {
  background: var(--color-bg-1);
}

.section-dashboard {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "overview overview overview doughnut" "overview overview overview ." "payments payments payments payments" "viewsstats viewsstats viewsstats viewsstats" "toptracks toptracks toptracks toptracks";
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-dashboard {
    grid-template-columns: 1fr;
    grid-template-areas: "overview" "doughnut" "payments" "viewsstats" "toptracks";
  }
}
.section-dashboard__overview {
  grid-area: overview;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-dashboard__overview {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  }
}

.section-sliding {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.2rem 0;
}
.section-sliding h1 {
  margin-bottom: 1.6rem;
  padding-left: var(--padding-1);
}
.section-sliding__swiper .swiper-wrapper {
  padding: 0 var(--padding-1) !important;
}
.section-sliding__swiper .swiper-wrapper > :last-child {
  margin-right: calc(2 * var(--padding-1)) !important;
}
.section-sliding__swiper .swiper-slide {
  width: max-content;
}
@media only screen and (max-width: 37.5em) {
  .section-sliding {
    padding: 2.4rem 0;
  }
}

.section-reviews__swiper .swiper-wrapper {
  padding: 0 var(--padding-1) !important;
}
.section-reviews__swiper .swiper-wrapper > :last-child {
  margin-right: calc(2 * var(--padding-1)) !important;
}
.section-reviews .reviews-pagination {
  justify-content: center;
}

.layout-auth {
  padding: 9.2rem 1.6rem;
}
.layout-auth__wrapper {
  max-width: 40rem;
  height: max-content;
  margin: 0 auto;
}
.layout-auth__wrapper h1 {
  text-align: center;
  margin-bottom: 2.4rem;
}

.layout-dashboard {
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 25rem) 1fr;
  grid-template-rows: 8rem 1fr;
  grid-template-areas: "sidebar header" "sidebar body";
}
.layout-dashboard__sidebar {
  grid-area: sidebar;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-1);
  border-right: 1px solid var(--color-bg-3);
  overflow: hidden;
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  gap: 0.8rem;
}
.layout-dashboard__sidebar > * {
  padding: 1.6rem;
}
.layout-dashboard__sidebar__header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.layout-dashboard__sidebar__body {
  overflow-y: auto;
}
.layout-dashboard__sidebar__nav {
  width: 100%;
  height: 5rem;
  border-radius: 1.2rem;
  color: var(--color-text-3);
  padding: 0 1.2rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.layout-dashboard__sidebar__nav svg {
  width: 2.8rem;
  height: 2.8rem;
}
.layout-dashboard__sidebar__nav svg path {
  fill: var(--color-text-4);
}
.layout-dashboard__sidebar__nav--active, .layout-dashboard__sidebar__nav:hover {
  background: var(--color-bg-2);
}
.layout-dashboard__sidebar__nav:not(:last-child) {
  margin-bottom: 1.2rem;
}
.layout-dashboard__sidebar__footer {
  padding-top: 1.6rem;
  border-top: 1px solid var(--color-bg-4);
  display: grid;
  grid-template-columns: 1fr;
}
.layout-dashboard__sidebar__footer button {
  width: 100% !important;
}
.layout-dashboard__header {
  grid-area: header;
  border-bottom: 1px solid var(--color-bg-3);
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .layout-dashboard__header h1 {
    font-size: 1.4rem !important;
    font-weight: 300;
  }
}
.layout-dashboard__header__options {
  padding-left: 4px;
  display: flex;
  gap: 0.8rem;
}
@media only screen and (max-width: 37.5em) {
  .layout-dashboard__header__options {
    background: var(--color-bg-1);
    position: absolute;
    right: 16px;
  }
}
.layout-dashboard__body {
  grid-area: body;
  width: 100%;
  height: 100%;
  background: var(--color-bg-1);
  overflow-y: auto;
  padding: 2.4rem 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, var(--dashboard-max-width));
  justify-content: center;
}
.layout-dashboard__body--content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.layout-dashboard__body--full {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
}
.layout-dashboard__body--full .layout-dashboard__body--content {
  display: grid;
}
@media only screen and (max-width: 37.5em) {
  .layout-dashboard__body--full {
    padding-bottom: 6rem !important;
  }
}
.layout-dashboard__body .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.layout-dashboard__overlay {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .layout-dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: 7rem 1fr;
    grid-template-areas: "header" "body";
  }
  .layout-dashboard__sidebar {
    display: none;
    overflow: hidden;
    position: absolute;
    width: 80%;
    height: 100% !important;
    top: 0;
    left: 0;
    z-index: 50;
  }
  .layout-dashboard__sidebar--active {
    display: grid;
  }
  .layout-dashboard__sidebar--active ~ .layout-dashboard__overlay {
    display: block;
  }
  .layout-dashboard__overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 49;
  }
  .layout-dashboard__body {
    padding-bottom: 7.2rem;
  }
}

.layout-user-profile {
  background-color: var(--color-bg-1);
  padding: 3.2rem 0;
}
.layout-user-profile > * {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.component-adminForm__wrapper > *:not(:last-child) {
  border-bottom: 1px solid var(--color-bg-3);
}

.component-adminForm {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid var(--color-bg-3);
  border-radius: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.component-adminForm__left {
  padding-right: 1.6rem;
  border-right: 1px solid var(--color-bg-3);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.component-adminForm__right {
  padding-left: 1.6rem;
}
@media only screen and (max-width: 56.25em) {
  .component-adminForm {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .component-adminForm__left {
    padding-right: 0;
    border-right: none;
  }
  .component-adminForm__right {
    padding-left: 0;
  }
}/*# sourceMappingURL=style.css.map */