/*!*******************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js!./assets/scss/style.scss ***!
  \*******************************************************************************************************************************************************************************************************************/
/** BREAKPOINTS */
.calendar {
  height: 100%;
  width: 100%;
  background: var(--clr-bg);
  display: flex;
  min-height: 700px;
}
@media (max-width: 991.98px) {
  .calendar {
    height: auto;
    flex-direction: column-reverse;
    min-height: unset;
    background: none;
  }
}
.calendar.loading {
  pointer-events: none;
}
.calendar.loading .calendar__events {
  opacity: 0;
}
.calendar__title {
  font-family: "rooney-sans", sans-serif;
  font-size: 52px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -0.74px;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .calendar__title--desktop {
    display: none;
  }
}
@media (min-width: 991.98px) {
  .calendar__title--mobile {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .calendar__title {
    margin: 40px 0 20px;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
}
.calendar__upcoming {
  flex-shrink: 0;
  width: 55%;
  padding: 80px;
  overflow-y: auto;
}
.calendar__upcoming::-webkit-scrollbar {
  width: 4px;
}
.calendar__upcoming::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.calendar__upcoming::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
@media (max-width: 991.98px) {
  .calendar__upcoming {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 25px 20px;
    background: var(--clr-bg);
  }
}
@media (max-width: 991.98px) {
  .calendar__upcoming--mobile-selected .calendar__prev {
    display: flex;
    margin: 50px auto 0;
  }
}
.calendar__events {
  list-style: none;
  padding-left: 0;
  margin: 0;
  transition: opacity 0.35s ease-in-out;
}
.calendar__page {
  flex-shrink: 0;
  width: 45%;
  position: relative;
}
.calendar__page::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 27, 17, 0.2509803922);
}
@media (max-width: 991.98px) {
  .calendar__page::after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .calendar__page {
    width: 100%;
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.calendar__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 991.98px) {
  .calendar__img {
    display: none;
  }
}
.calendar__legend {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  border-radius: 20px;
  padding: 10px 20px;
  background: var(--clr-white);
  color: var(--clr-font-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0;
  width: calc(100% - 66px);
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .calendar__legend {
    position: static;
    transform: none;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 20px 40px;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
  }
}
.calendar__legend-item {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 4px;
}
.calendar__legend-item-text {
  font-family: "Roboto Slab", sans-serif;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.32px;
  font-weight: 400;
  margin: 0;
  flex: 1 0 auto;
}
@media (max-width: 991.98px) {
  .calendar__legend-item-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.calendar__legend-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .calendar__legend-item-icon {
    width: 14px;
    height: 14px;
  }
}
.calendar__legend-item-path {
  fill: var(--clr-fill);
}
.calendar__interactive {
  z-index: 2;
  width: 420px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .calendar__interactive {
    position: static;
    transform: none;
    padding: 0 20px;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 420px;
  }
}
.calendar__prev {
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Roboto Slab", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.32px;
}

.event {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 10px 10px 10px 40px;
  border-radius: 20px;
  transition: background-color 0.35s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1599.98px) {
  .event {
    padding: 15px 0 15px 20px;
    align-items: flex-start;
    gap: 30px;
  }
}
@media (min-width: 991.98px) {
  .event--active {
    background-color: var(--clr-green);
  }
}
@media (max-width: 991.98px) {
  .event--active {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    gap: 45px;
  }
  .event--active .event__content {
    width: 100%;
    gap: 20px;
  }
  .event--active .event__btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.event__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  min-height: 102px;
  gap: 15px;
}
@media (max-width: 1599.98px) {
  .event__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991.98px) {
  .event__date {
    margin-top: 25px;
  }
}
.event__date-wrapper {
  position: relative;
  z-index: 1;
  color: var(--clr-font-light);
}
.event__date-inner-wrapper {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
}
.event__date-icon {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 86px;
  height: 86px;
}
@media (max-width: 991.98px) {
  .event__date-icon {
    width: 76px;
    height: 76px;
  }
}
.event__date-icon-path {
  fill: var(--clr-fill);
}
.event__day {
  font-size: 34px;
  line-height: 34px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .event__day {
    font-size: 24px;
    line-height: 24px;
  }
}
.event__month {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .event__month {
    font-size: 14px;
    line-height: 14px;
  }
}
.event__title {
  font-family: "rooney-sans", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.36px;
  margin-bottom: 5px;
}
.event__details-wrapper {
  font-family: "Roboto Slab", sans-serif;
  display: flex;
  align-items: center;
  color: var(--clr-font-dark);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.32px;
  gap: 4px;
  flex-wrap: wrap;
}
@media (min-width: 991.98px) {
  .event:nth-child(even) .event__date-icon {
    transform: translate(-50%, -50%) rotate(24deg);
  }
  .event:nth-child(even) .event__date-inner-wrapper {
    transform: rotate(12deg);
  }
}

@media (max-width: 991.98px) {
  .calendar__upcoming--mobile-selected .event {
    display: none;
  }
  .calendar__upcoming--mobile-selected .event--active {
    display: flex;
  }
}

.btn-rounded {
  font-family: "Roboto Slab", sans-serif !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  width: 175px !important;
  height: 54px !important;
  text-align: center !important;
  color: var(--clr-white) !important;
  white-space: nowrap !important;
  transition: opacity 0.5s ease-in-out !important;
  background-color: var(--clr-btn-1) !important;
  padding: 15px 26px !important;
  border-radius: 10px 24px !important;
  outline: none !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}
.btn-rounded--style-2 {
  color: var(--clr-font-dark-2) !important;
  background-color: var(--clr-btn-2) !important;
}
.btn-rounded:hover {
  opacity: 0.5 !important;
}

.interactive-calendar {
  z-index: 2;
  position: relative;
  background-color: var(--clr-white);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .interactive-calendar {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1019607843);
  }
}
.interactive-calendar__nav {
  background-color: var(--clr-header);
  font-family: "Roboto Slab", sans-serif;
  color: var(--clr-font-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  padding: 17px 20px;
  width: 100%;
}
.interactive-calendar__title {
  text-transform: capitalize;
  text-align: center;
}
.interactive-calendar__arrow {
  width: 59px;
  height: 14px;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  padding: 0 !important;
}
.interactive-calendar__arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.interactive-calendar__header-grid {
  background-color: var(--clr-bg);
  height: 43px;
  color: var(--clr-btn-1);
  font-family: "Roboto Slab", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.interactive-calendar__header-grid, .interactive-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  justify-items: center;
  transition: opacity 0.35s ease-in-out;
}
.interactive-calendar__header-grid-item, .interactive-calendar__grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.interactive-calendar__grid-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.interactive-calendar__grid-item--disabled {
  pointer-events: none;
  opacity: 50%;
}
.interactive-calendar__grid-item--active .interactive-calendar__grid-item-icon {
  display: block;
}
.interactive-calendar__grid-item--active .interactive-calendar__grid-item-btn {
  color: var(--clr-white);
}
.interactive-calendar__grid-item--active:hover .interactive-calendar__grid-item-btn {
  color: var(--clr-font-dark);
}
.interactive-calendar__grid-item--active:hover .interactive-calendar__grid-item-icon {
  opacity: 0.5;
}
.interactive-calendar__grid-item-btn {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 46px;
  letter-spacing: -0.32px;
  transition: color 0.35s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-font-dark);
}
.interactive-calendar__grid-item-icon {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  z-index: -1;
  transition: opacity 0.35s ease-in-out;
}
@media (max-width: 991.98px) {
  .interactive-calendar__grid-item-icon {
    width: 30px;
    height: 30px;
  }
}
.interactive-calendar__grid-item-path {
  fill: var(--clr-fill);
}

.loading .interactive-calendar__grid {
  opacity: 0;
}

.sign-in {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  scroll-margin-top: 100px;
}
.sign-in__title {
  font-family: "rooney-sans", sans-serif;
  font-size: 38px;
  line-height: 42px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}
.sign-in__step-2 {
  display: none;
}
.sign-in__sent-title {
  font-family: "rooney-sans", sans-serif;
  font-size: 38px;
  line-height: 42px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}
.sign-in__sent-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-family: "Roboto Slab", sans-serif;
  text-align: center;
  color: var(--clr-font-dark-2);
}
.sign-in__form-fields-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 30px;
}
.sign-in__sent-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.sign-in__form-field {
  position: relative;
  width: calc(50% - 10px);
}
@media (max-width: 991.98px) {
  .sign-in__form-field {
    width: 100%;
  }
}
.sign-in__btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.sign-in__form-label {
  display: inline-block;
  color: var(--clr-font-dark);
  font-family: "Roboto Slab", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 25px;
  margin-bottom: 5px;
}
.sign-in__form-input {
  padding: 10px 16px !important;
  border-radius: 8px !important;
  color: var(--clr-font-dark-2) !important;
  font-size: 1.6rem !important;
  font-family: "Montserrat" !important;
  font-weight: 400 !important;
  line-height: 2em !important;
  border-style: solid !important;
  border-width: 1px !important;
  box-shadow: none !important;
  outline: none !important;
  transition: var(--bricks-transition) !important;
  width: 100% !important;
}
.sign-in__form-count {
  position: relative;
  border-radius: 8px;
  width: 90px;
  background: var(--clr-white);
}
.sign-in__form-count-btn {
  border-radius: 8px;
  background: var(--clr-white);
  padding: 10px 10px 10px 23px;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  font-family: "Roboto Slab", sans-serif;
}
.sign-in__form-count-btn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
  pointer-events: none;
}
.sign-in--sent .sign-in__step-1 {
  display: none;
}
.sign-in--sent .sign-in__step-2 {
  display: block;
}
.sign-in__dynamic-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.sign-in__dynamic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 30px;
}
.sign-in__error {
  font-size: 14px;
  color: red;
  position: absolute;
  left: 15px;
  bottom: -3px;
  transform: translateY(100%);
}
.sign-in__error-seats {
  font-size: 14px;
  color: red;
}

.validation-error input {
  border-color: red;
}

:root {
  --clr-btn-1: #ff5b35;
  --clr-btn-2: #fedfc3;
  --clr-bg: #ebf5f3;
  --clr-bg-2: #ff5c38;
  --clr-font-light: #f5f6f1;
  --clr-font-dark: #2e1b11cc;
  --clr-font-dark-2: #2e1b11;
  --clr-white: #ffffff;
  --clr-header: #f7e8db;
  --clr-green: #cfe7dd;
}

.select {
  position: relative;
}
.select--active .select__icon {
  transform: rotate(180deg) translateY(50%);
}
.select--active .select__options {
  display: block;
  background: linear-gradient(to bottom, transparent 0%, transparent 15px, #fff 15px, #fff 100%);
  z-index: 2;
}
.select__options {
  background: #fff;
  bottom: 19px;
  display: none;
  left: 0;
  padding: 5px 10px;
  position: absolute;
  transform: translateY(100%);
  width: 100%;
  z-index: 1;
  border-radius: 0 0 24px 24px;
  max-height: 360px;
  overflow-y: auto;
}
.select__options::-webkit-scrollbar {
  width: 4px;
}
.select__options::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.select__options::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.select__options-list {
  list-style: none;
  padding: 0;
}
.select__options-item {
  display: block;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 6px;
  padding: 0 13px;
}
.select__options-item--label button {
  font-weight: 700;
}
.select__options-item:last-child {
  margin-bottom: 0;
}
.select__options-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  font-family: "Roboto Slab", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  color: var(--clr-font-dark);
  cursor: pointer;
  text-align: start;
  width: 100%;
  line-height: 26px;
}

.no-seats {
  width: 100%;
  margin: 0 auto;
  max-width: 840px;
  font-family: "Roboto Slab", sans-serif;
  color: var(--clr-white);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background-color: var(--clr-bg-2);
}
.no-seats__text:first-child {
  margin-bottom: 8px;
}
.no-seats__text a {
  text-decoration: underline;
}
