/* login */

.lhr-section-login {
  background-image: url("https://peoplevineuk.blob.core.windows.net/media/82/lhsr/img/water.png");
  background-position: 0% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 5.25rem;
}

.lhr-login_container {
  padding: 2rem 2rem;
  background-color: #272f38;
  box-shadow: -4px -3px 19px -6px rgba(0, 0, 0, 0.25);
  max-width: 37.5rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .lhr-login_container {
    padding: 3rem 4rem;
  }
  .lhr-section-login {
    padding-top: 7.25rem;
  }
}

/* make reservations */

.lhr-section-reservation_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1rem;
}

.lhr-reservation-item {
  padding: 1.5rem 2rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.lhr-reservation-item:hover {
  border-color: #fca9a4;
  background-color: #fca9a414;
  color: #fca9a4;
}

.lhr-reservation-item:active {
  background-color: #fca9a4;
  color: #272f38;
}

.lhr-reservation-item_disabled {
  border-color: #666666;
  color: #666666;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .lhr-section-reservation_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1140px) {
  .lhr-section-reservation_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* venue collection */

.lhr-section-venues {
  background-color: #fff;
  color: #272f38;
}

.lhr-venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}

.lhr-venue-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2.289px 5.207px 1.716px rgba(0, 0, 0, 0.21);
  border-radius: 1rem;
  overflow: hidden;
}

.lhr-venue-item:hover .lhr-venue-item_image {
  transform: scale(1.2);
}

.lhr-venue-item_image-wrapper {
  overflow: hidden;
}

.lhr-venue-item_image {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.lhr-venue-item_info {
  padding: 0.5rem 1rem;
}

@media screen and (max-width: 300px) {
  .lhr-venues-grid {
    grid-template-columns: 1fr;
    gap: 2rem 1rem;
  }
}

@media screen and (min-width: 768px) {
  .lhr-venues-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
}

@media screen and (min-width: 1140px) {
  .lhr-venues-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* hero */

.lhr-section-hero {
}

.lhr-hero_wrapper {
  height: 100svh;
  max-height: 25rem;
  position: relative;
}

.lhr-hero_wrapper-extended {
  max-height: 30rem;
}

@media screen and (min-width: 768px) {
  .lhr-hero_wrapper {
    max-height: 31.25rem;
  }
}

@media screen and (min-width: 1140px) {
  .lhr-hero_wrapper {
    max-height: 37.5rem;
  }
}

.lhr-hero_image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.lhr-hero_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lhr-hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.lhr-hero_content {
  position: absolute;
  bottom: 0rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.lhr-hero_content-inner {
  width: 100%;
}

.lhr-hero_content-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.lhr-hero_content-detail_wrap {
  width: calc-size(100%, size - 7rem) !important;
}

/** venue detail **/

.lhr-section-venue-carousel {
  background-color: #fff;
}

.lhr-section-venuedetail {
  background-color: #fff;
  color: #272f38;
}

.lhr-venue-detail_meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lhr-venue-detail_opening-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.lhr-venue-detail_opening-wrapper svg {
  width: 1.5rem;
}

.lhr-venue-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .lhr-venue-detail {
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1140px) {
  .lhr-venue-detail {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.lhr-venue-detail_opening {
  list-style: none;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lhr-venue-detail_opening li {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

/* fw carousel */

.lhr-fw-carousel .swiper-slide {
  height: auto;
}

.lhr-fw-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.lhr-fw-carousel_limits {
  max-width: 82.5rem;
  padding: 0rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .lhr-fw-carousel_limits {
    padding: 0rem 3rem;
  }
}

@media screen and (min-width: 768px) {
  .lhr-fw-carousel img {
    aspect-ratio: 5 / 4;
    max-height: 34rem;
  }
}

.lhr-carousel_navigation {
  display: inline-flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  width: 100%;
}

.lhr-carousel_navigation div {
  cursor: pointer;
  transition: all 0.2s ease;
}

.lhr-carousel_navigation div:hover {
  transform: scale(1.1);
}

/* dashboard */

.lhr-section-dashboard {
}

.lhr-dashboard_intro {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.lhr-dashboard_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 1.25rem;
}

.lhr-dashboard_item {
  position: relative;
  color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 4px solid #fca9a4;
  padding: 4rem 1.25rem 1.25rem 1.25rem;
  color: #fca9a4;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lhr-dashboard_item_disabled {
  border-color: #666666;
  color: #666666;
}

.lhr-dashboard_item::after {
  content: url('data:image/svg+xml, <svg width="32" height="32" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M33.5545 18.1827L23.6236 8.25179C23.1767 7.8049 22.4319 7.8049 21.985 8.25179C21.5381 8.69869 21.5381 9.44351 21.985 9.8904L29.9297 17.8351H5.28449C4.62243 17.8351 4.09277 18.3648 4.09277 19.0269C4.09277 19.6889 4.62243 20.2186 5.28449 20.2186H29.847L21.9685 28.0971C21.5216 28.544 21.5216 29.2888 21.9685 29.7357C22.2002 29.9674 22.4981 30.0833 22.796 30.0833C23.094 30.0833 23.3919 29.9674 23.6236 29.7357L33.3725 19.9868C33.687 19.7717 33.9021 19.4241 33.9021 19.0269C33.9021 19.0269 33.9021 19.0269 33.9021 19.0103C33.9021 18.7124 33.8028 18.3979 33.5711 18.1662L33.5545 18.1827Z" fill="%23FFB7B2" /></svg>');
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
}

.lhr-dashboard_item:hover .lhr-dashboard_img {
  transform: scale(1.2);
}

.lhr-dashboard_img-wrapper {
  position: relative;
}

.lhr-dashboard_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center center;
  transition: all 0.6s ease;
}

.lhr-dashboard_img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.lhr-dashboard_content {
  position: absolute;
  bottom: 0rem;
  z-index: 999;
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  .lhr-dashboard_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.5rem;
  }
  .lhr-dashboard_item {
    padding: 2rem;
    aspect-ratio: 4 / 3;
    max-height: 14rem;
  }
}

@media screen and (min-width: 1140px) {
  .lhr-dashboard_grid {
    grid-template-columns: repeat(6, 1fr);
  }
  

  .lhr-dashboard_item:nth-child(1),
  .lhr-dashboard_item:nth-child(2),
  .lhr-dashboard_item:nth-child(3),
  .lhr-dashboard_item:nth-child(4) {
    grid-column: span 3;
  }
  .lhr-dashboard_item:nth-child(5),
  .lhr-dashboard_item:nth-child(6),
  .lhr-dashboard_item:nth-child(7) {
    grid-column: span 2;
  }
  
  .lhr-dashboard_item.lhr-grid_span-3 {
    grid-column: span 3 !important;
  }

}

/* footer */

.lhr-section-footer {
}

.lhr-footer_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.lhr-footer_row-1 {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.lhr-footer_row-1 ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0rem;
}

.lhr-footer_row-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.lhr-footer_row-2 ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0rem;
}

.lhr-section-footer a {
  color: inherit;
}

.lhr-footer_logo {
  max-width: 7.5rem;
}

@media screen and (min-width: 768px) {
  .lhr-footer_logo {
    max-width: 13rem;
  }

  .lhr-footer_row-2 {
    flex-direction: row;
    gap: 1rem;
  }

  .lhr-footer_row-2 ul {
    flex-direction: row;
    gap: 1rem;
  }
}

/* navigation */
.lhr-navigation-absolute {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999999;
  background-color: transparent !important;
  color: #fff !important;
  transition: all .2s ease;
}

.lhr-navigation_scrolled {
    background-color: #272f38 !important;
}

.lhr-section-navigation {
  position: sticky;
  top: 0;
  z-index: 999999999;
}

.lhr-navigation_inner {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s ease;
}

.lhr-navigation_light {
  background-color: #fff;
  color: #272f38;
}

.lhr-navigation_dark {
  background-color: #272f38;
  color: #fff;
}

.lhr-navigation_public {
  background-color: transparent;
  color: #fff;
  position: fixed;
  width: 100%;
}

.lhr-navigation_public .lhr-navigation_overlay {
  background-color: #fca9a4 !important;
}

.lhr-navigation_public .lhr-navigation_overlay ul li a {
  border-color: #272f3824 !important;
  color: #272f38 !important;
}

.lhr-navigation_public .lhr-navigation_overlay ul li a:hover {
  text-decoration: none !important;
  color: #fff !important;
}

.lhr-navigation_public .lhr-navigation_icon-container:hover {
  color: inherit !important;
}

.lhr-navigation_column {
  display: flex;
  flex-basis: 100%;
  gap: 0.5rem;
}

.lhr-navigation_column:nth-child(1) {
  justify-content: flex-start;
}

.lhr-navigation_column:nth-child(2) {
  justify-content: center;
}

.lhr-navigation_column:nth-child(3), .lhr-navigation_column:nth-child(4)  {
  justify-content: flex-end;
}

.lhr-navigation_icon-container {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: inherit;
}

.navigation-icon_burger {
  justify-content: flex-start;
}

.navigation-icon_profile {
  justify-content: flex-end;
  gap: 0.5rem;
}

@media only screen and (min-width: 1140px) {
  .lhr-navigation_icon-container:hover {
    color: #fca9a4;
  }
  .navigation-icon_profile {
    width: auto;
  }
  .lhr-navigation_column:nth-child(3) {
    gap: 1.25rem;
  }
}

.lhr-navigation_icon-container svg {
  max-width: 2rem;
}

.lhr-navigation_burger {
  display: block;
}

.lhr-navigation_x {
  display: none;
}

.lhr-navigation_open .lhr-navigation_burger {
  display: none;
}

.lhr-navigation_open .lhr-navigation_x {
  display: block;
}

.lhr-navigation-logo_link {
  color: #fff;
}

.lhr-navigation_logo {
  max-width: 3.5rem;
  height: auto;
}

.lhr-navigation_overlay {
  position: fixed;
  left: 0;
  top: 0rem;
  padding: 6rem 1.5rem 8rem 1.5rem;
  background-color: #fff;
  width: 100%;
  height: 100svh;
  max-width: 100%;
  transform: translateX(-120%);
  transition: all 0.5s ease;
  display: block !important;
  z-index: -1;
  box-sizing: border-box;
  overflow-y: scroll;
  overflow-x: hidden;
}

.lhr-navigation_open .lhr-navigation_column:nth-child(1) {
  color: #272f38;
}

@media only screen and (min-width: 768px) {
  .lhr-navigation_open .lhr-navigation_column:nth-child(1) {
  }
}

.lhr-navigation_open .lhr-navigation_column:nth-child(3),
.lhr-navigation_open .lhr-navigation_column:nth-child(2) {
  z-index: -1;
}

@media only screen and (min-width: 768px) {
  .lhr-navigation_overlay {
    overflow-y: hidden;
    overflow-x: hidden;
    max-width: 50%;
    padding: 6rem 3rem 8rem 3rem;
  }
}

.lhr-navigation_open .lhr-navigation_overlay {
  transform: translateX(0);
  transition: all 0.5s ease;
}

.lhr-navigation_overlay ul {
  list-style: none;
  padding: 0rem;
}

.lhr-navigation_overlay ul li a {
  padding: 1rem 0rem;
  border-bottom: 1px solid #b89f8c;
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  color: #000;
  transition: all 0.2s ease;
  align-items: center;
}

.lhr-navigation_overlay ul li a svg {
  max-width: 1.75rem;
}

.lhr-navigation_overlay ul li a:hover {
  color: #fca9a4;
}

@media only screen and (min-width: 768px) {
  .lhr-navigation_inner {
    padding: 2rem 3rem;
  }
  .lhr-navigation_overlay ul li a svg {
    max-width: 2rem;
  }
}

@media only screen and (min-width: 1140px) {
  .lhr-navigation_overlay ul li a svg {
    max-width: 2.25rem;
  }
}

/* sub navigation */
.lhr-section-account_nav {
  display: none;
}

.adminPages .lhr-section-account_nav {
  background-color: #fca9a4;
  color: #272f38;
  box-sizing: border-box;
  display: none;
}

.lhr-account_nav-inner {
  overflow: scroll;
  padding: 1rem 0rem;
  box-sizing: border-box;
}

.lhr-account_nav-inner ul {
  display: inline-flex;
  gap: 1rem;
  list-style: none;
  padding: 0rem;
  margin: 0rem;
}

.lhr-account_nav-inner ul li a {
  color: inherit;
}

/* reservation confirmation styling */
.reservation-confirmation_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservation-confirmation_item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* discover carousel */
.lhr-section-dashboard_discover {
  overflow: hidden;
}

.lhr-discover_item {
  box-shadow: 0px 4px 12px 4.01187px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  position: relative;
  color: #fff;
}

.lhr-discover_item img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.lhr-discover_item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(39, 47, 56, 0) 49.52%, rgba(39, 47, 56, 0.6) 100%), url(Checker.png);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 1.25rem;
  box-sizing: border-box;
}

/* membership cards */

.lhr-membership_card {
  border: 4px solid #fca9a4;
  padding: 1.25rem;
  display: inline-flex;
  gap: 2rem;
  border-radius: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  align-self: self-start;
}

.lhr-membership_card-data_container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lhr-membership_card-data {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lhr-pass_image {
  max-width: 12.5rem;
}

/* cards */

.lhr-card {
  border-radius: 1rem;
  background-color: #0d0d0d;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  color: #fff;
  overflow: hidden;
  height: 100%;
}

.lhr-card a {
  color: inherit;
}

.lhr-card_header {
  position: relative;
}

.lhr-card_img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lhr-card_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  transition: all 1s ease;
  object-fit: cover;
}

.lhr-card_footer {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 1.5rem;
  justify-content: space-between;
  height: 100%;
}

.lhr-card_footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lhr-card ul {
  list-style: none;
  padding: 0rem;
  margin: 0rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.lhr-card ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/*
.lhr-card ul li:last-of-type {
  grid-column: 1 / span 2;
}*/

.lhr-card_img-overlay {
  display: flex;
  position: absolute;
  top: 0rem;
  gap: 0.5rem;
  padding: 1.5rem;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.lhr-card_img-overlay .lhr-tag-blue {
  position: relative;
}

.lhr-card_img-overlay .lhr-tag-red {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}


@media only screen and (min-width: 1140px) {
  .lhr-card:hover .lhr-card_img {
      transform: scale(1.05);
  }
}



/* event cards */

.lhr-event-card {
  color: #fff;
  overflow: hidden;
  position: relative;
  min-height: 27.5rem;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 768px) {
  .lhr-event-card {
    min-height: 31.25rem;
  }
}

@media only screen and (min-width: 1140px) {
  .lhr-event-card {
    min-height: 36rem;
  }
  .lhr-event-card:hover .lhr-event-card_img {
    transform: scale(1.05);
  }
}

.lhr-event-card_img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.lhr-event-card_img {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
  object-fit: cover;
}

.lhr-event-card_img-overlay {
  background: linear-gradient(180deg, rgba(39, 47, 56, 0) 49.52%, #272f38 100%), url(Checker.png), rgba(39, 47, 56, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999;
  top: 0;
}

.lhr-event-card_content-wrapper {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 1.5rem;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.lhr-event-card_date {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  text-align: center;
  justify-content: center;
  position: absolute;
  right: 0rem;
  top: 0rem;
  background-color: #fff;
  color: #272f38;
  padding: 0.5rem 1.5rem;
}

.lhr-event-card_date-page {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  text-align: center;
  justify-content: center;
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  background-color: #fff;
  color: #272f38;
  padding: 0.5rem 1.5rem;
}

.lhr-event-card_content-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lhr-event-card ul {
  list-style: none;
  padding: 0rem;
  margin: 0rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.lhr-event-card ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/*
.lhr-event-card ul li:last-of-type {
  grid-column: 1 / span 2;
}
  */

.lhr-section-events_similar {
  background-color: #fff;
  color: #272f38;
}

/* faqs */
.lhr-faqs_list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lhr-faqs_item {
  border-bottom: 1px solid #b89f8c;
}

.lhr-faqs_item svg {
  transition: all 0.2s ease;
}

.lhr-faqs_item-toggle {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-bottom: 1.5rem;
  cursor: pointer;
}

.lhr-faqs_item-content {
  padding: 0rem 0rem 1.5rem;
}

.lhr-faqs_open svg {
  transform: rotate(180deg);
}

/* other similar carousel */

.lhr-othersimilar_intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media only screen and (min-width: 768px) {
  .lhr-othersimilar_intro {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.lhr-othersimilar-carousel .swiper-slide {
  height: auto;
}

.lhr-othersimilar-carousel {
  overflow: hidden;
}

/* notification banner */

.lhr-section-notification {
  background-color: #fca9a4;
  color: #272f38;
  text-align: center;
  position: relative;
  padding: 0rem 1.5rem;
}

.lhr-notification_close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
}

.lhr-notification_close svg {
  transition: all 0.2s ease;
}

.lhr-notification_close:hover svg {
  transform: rotate(90deg);
}

/* date picker content */
.ui-widget-content {
  background: #fff !important;
}

.ui-datepicker {
  margin-top: 0.5rem !important;
  border-radius: 0.5rem !important;
}

.ui-datepicker * {
  color: #272f38 !important;
  font-family: Afrika !important;
}

.ui-datepicker-current-day .ui-state-active {
  background-color: #fca9a4 !important;
  color: #272f38 !important;
  border-radius: 0.25rem !important;
}

td.ui-datepicker-today {
  background: transparent !important;
}

.ui-datepicker td .ui-state-default:hover {
  background: #fca9a440 !important;
  border-radius: 0.25rem !important;
}

.ui-widget-header .ui-icon {
  -webkit-filter: invert(1) !important;
}

/* transactions */

.lhr-transactions_list {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.lhr-transactions_header {
  display: none;
  padding-top: 2rem;
}

.lhr-transactions_item {
  padding: 2rem 0rem;
  border-bottom: 1px solid #b89f8c;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lhr-transactions_item-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 0.5rem;
}

.lhr-transactions_list .lhr-text-tiny {
  display: block;
}

@media only screen and (min-width: 768px) {
  .lhr-transactions_item {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .lhr-transactions_header {
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    gap: 0.5rem;
  }
  .lhr-transactions_item-row {
    display: block;
  }
}

/* tickets */

.lhr-ticketpre_list {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.lhr-ticketpre_header {
  display: none;
  padding-top: 2rem;
}

.lhr-ticketpre_item {
  padding: 1rem 0rem;
  border-bottom: 1px solid #b89f8c;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lhr-ticketpre_item-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 0.5rem;
}

.lhr-ticketpre_list .lhr-text-tiny {
  display: block;
}

@media only screen and (min-width: 768px) {
  .lhr-ticketpre_item {
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.25fr 0.25fr;
  }
  .lhr-ticketpre_header {
    grid-template-columns: 0.5fr 1fr 0.25fr 0.25fr;
    display: grid;
    gap: 1rem;
  }
  .lhr-ticketpre_item-row {
    display: block;
  }
}

.lhr-section-ticket_cancellation {
  display: none;
}

/* closing times */

.lhr-closing_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lhr-closing_item {
  display: grid;
  grid-template-columns: minmax(4.75rem, 4.75rem) 1fr;
  border-radius: 0.5rem;
  background-color: #fff;
  overflow: hidden;
}

.lhr-closing_date {
  background-color: #fca9a4;
  color: #272f38;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}

.lhr-closing_info {
  padding: 1rem 1.25rem;
  color: #272f38;
  align-self: center;
}

.lhr-closing_std-list {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.lhr-closing_std-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  padding: 0.75rem 0rem;
  border-top: 1px solid #b89f8c;
}

.lhr-closing_std-item:last-of-type {
  border-bottom: 1px solid #b89f8c;
}

.lhr-closing_std-item p:first-of-type {
  grid-column: 1 / span 2;
}

@media screen and (min-width: 768px) {
  .lhr-closing_std-item {
    grid-template-columns: 1fr 0.5fr 0.5fr;
  }
  .lhr-closing_std-item p:first-of-type {
    grid-column: 1 / span 1;
  }
  .lhr-closing_item {
    grid-template-columns: minmax(4.75rem, 7rem) 1fr;
  }

  .lhr-closing_std-item p:nth-child(4) {
    grid-column: 2 / span 1;
  }
}


