#themeHeader {
  background-color: #09351c;
}

#bookingForm {
  /* max-width: 1460px; */
  margin: 0px auto;
}

body {
  background-color: #efefef !important;
}


.bookingForm {
  padding: 20px 30px !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  align-items: flex-end;
  background-color: #09351c;
  width: 100%;
  gap: 30px;
  margin: 0 auto;
  max-width: 2400px;
  margin-top: 10px !important;
}

.bookingForm label {
  font-size: 12px !important;
  margin-bottom: 6px;
  margin-top: 6px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  opacity: 0.7;
  display: inline-block;
}

.booking-form-mobile-heading-wrap {
  display: none;
}

.booking-form-mobile-heading {
  margin: 10px 0 10px 0px;
  padding-bottom: 10px;
  border-bottom: 1px solid #106132;
  color: #fff;
  font-family: "Cinzel", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.booking-form-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bookingForm input,
.bookingForm select {
  font-size: 14px !important;
}

.bookingForm .datepicker,
.bookingForm select.form-control,
.bookingForm textarea.form-control {
  border: 0;
  padding: 12px;
  border: none;
  border-radius: 15px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.bookingForm .check-btn {
  border-radius: 15px;
  background-color: #ffc107;
  color: #09351c;
  padding: 10px 30px;
  border: none;
  width: 100%;
  max-width: 260px;
  height: 42px;
  font-family: "Cinzel", sans-serif;
  font-weight: 300;
}

.bookingForm .refresh-btn {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bookingForm .refresh-btn svg path {
  fill: #09351c;
}

.bookingForm .check-btn:hover {
  background-color: #0d4b28;
  color: #fff;
}

.customer-rule-block-panel {
  padding: 0 !important;
}

.customer-rule-block-alert {
  border: 1px solid #f0c36d;
  background: #fff4cf;
  color: #2b2412;
  padding: 18px 20px;
  border-radius: 8px;
}

.customer-rule-block-alert strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.customer-rule-block-alert p {
  margin: 0 0 14px;
  line-height: 1.5;
}

.customer-rule-contact-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(43, 36, 18, 0.18);
  font-size: 15px;
}

.customer-rule-contact-details a {
  color: #09351c;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .bookingForm {
    padding: 20px !important;
    gap: 20px;
  }

  .booking-form-mobile-heading-wrap {
    display: block;
  }

  .bookingForm .booking-form-field--primary,
  .bookingForm .booking-form-field--actions {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bookingForm .booking-form-field--date {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bookingForm .booking-form-field--party {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .bookingForm .booking-form-field--actions .check-btn {
    max-width: none;
    flex: 0 0 calc(80% - 5px);
  }

  .bookingForm .booking-form-field--actions .refresh-btn {
    flex: 0 0 calc(20% - 5px);
    width: calc(20% - 5px);
    min-width: 0;
  }
}

#gridView {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 25px !important;
  /*  */
  margin: 0px auto;
  /* max-width: 1280px; */
}

@media (max-width: 1200px) {
  #gridView {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 992px) {
  #gridView {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 568px) {
  #gridView {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

#listView {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  max-width: 1280px;
  margin: 0px auto;
}

#listView .card {
  overflow: hidden;
  width: 100% !important;
  max-width: 1280px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 0px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}
#listView .card-image {
  /* width: 100%; */
  /* max-width: 350px; */
  /* max-height: 350px; */
  position: relative;
  /* overflow: hidden; */
}

#listView .card-image img {
  object-fit: cover;
  max-height: 350px;
  width: 100%;
  min-height: 350px;
  border-radius: 10px 0 0 10px;
  min-width: 350px;
  max-width: 350px;
}

#listView .card-contents {
  padding: 20px 0px 20px 50px;
  background-color: #fff;
  width: 100%;
}

#listView .card-contents .availability {
  margin-bottom: 10px;
  display: block;
}
#listView .card-contents.text-end {
  padding: 20px 50px 20px 0;
  border-radius: 0 10px 10px 0;
}
/* Media Queryies for grid */

@media (max-width: 1200px) {
  #gridView {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  #gridView {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #gridView {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #gridView {
    grid-template-columns: repeat(1, 1fr);
  }
}

#singleView {
  margin: 10px 30px 30px 30px;
  padding: 30px 0;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
}

#singleView h2 {
  color: #09351c;
  margin-bottom: 0;
  font-size: 2rem !important; 
}


.refresh-btn { 
  max-width: 40px;
}

.refresh-btn:hover {
  color: #fff;
}

#singleView #formPrice {
  color: #09351c;
  display: none;
}

#singleView .img-main {
  min-height: 400px;
  max-height: 600px;
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
}

#singleView .card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#formAmenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
  padding-left: 0px;
  border-top: 1px solid #8c8e8d38;
  padding-top: 20px;
}

#formAmenities li,
.voucherDescription li,
.voucherDescription p {
  list-style: none;
  font-size: 1.2rem;
  color: #09351c;
  margin: 0;
}

.voucherDescription p {
  margin-bottom: 10px !important;
}
.voucherDescription li {
  list-style: disc !important;
}
#gridView .card .voucherDescription ul {
  padding-left: 20px !important;
}

/* IMAGES */

#singleView .grid-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px 10px 10px 0px;
}

#singleView .grid-images img {
  border-radius: 10px;
  object-fit: cover;
  min-height: 100px;
  max-height: 100px;
  width: 100%;
}

#singleView .imageColumn {
  /* background-color: #0d4b2834; */
  border-radius: 15px;
  padding: 0px;
  overflow: hidden;
}

#gridView .card p,
#gridView .card label,
#gridView .card span {
  margin: 0;
}

#gridView .card ul {
  margin-left: 0;
  padding-left: 0 !important;
  margin: 20px 0 20px 0;
}

#gridView .card li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#gridView img {
  border-radius: 10px;
  object-fit: cover;
  min-height: 300px;
  max-height: 300px;
  width: 100%;
  border-radius: 10px 10px 0 0;
}

#gridView #price {
  color: #09351c;
}

.availability {
  margin-bottom: 10px;
  display: block;
  color: red;
}

#gridView .sash {
  position: absolute;
  top: 30px;

  transform: rotate(-35deg);
  background-color: #ffc107;
  width: 110%;
  text-align: center;
  z-index: 2;
}

#gridView .sash-booked {
  background-color: green !important;
  color: #fff !important;
}

#gridView .sash-booked span {
  color: #fff !important;
}

#gridView .sash-discount  {
  background-color: #980a1b !important;
}


#gridView .sash-discount span {
  color: #fff !important;
}



.sash {
  left: -100px;
}

#gridView p {
  font-size: 1.2rem;
}

#gridView small {
  font-size: 1rem;
}

.completed .number {
  background-color: #0f6033 !important;
}

@media (max-width: 1440px) {
  #gridView .sash {
    left: -105px;
  }
}

@media (max-width: 992px) {
  #gridView .sash {
    left: -115px;
  }
}

#gridView .sash span {
  color: #000;
  padding: 10px 42px;
  display: block;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Cinzel", sans-serif;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
}

.parsley-error {
  border: 1px solid red !important;
}

#listView .sash {
  position: absolute;
  top: 20px;
  left: -128px;
  transform: rotate(-35deg);
  background-color: #ffc107;
  font-family: "Cinzel", sans-serif;
  width: 100%;
  text-align: center;
  z-index: 2;
}

#listView .sash span {
  color: #fff;
  padding: 15px 10px;
  display: block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
}

.sash span {
  color: #fff;
  padding: 10px 10px;
  display: block;
  margin: 0;

  text-transform: uppercase;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
}

#gridView .btn-primary,
#bookingFormDetails .btn-primary {
  background-color: #09351c;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 10px 20px;
  min-width: 175px;
  font-family: "Cinzel", serif;
}

.booking-action-primary,
#bookingFormDetails .booking-action-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  padding: 10px 20px;
  border: 1px solid #09351c !important;
  border-radius: 5px;
  background-color: #09351c;
  color: #fff !important;
  font-family: "Cinzel", serif;
  font-size: 14px !important;
  font-weight: 300;
  line-height: 1.4;
  text-decoration: none !important;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.booking-action-primary:hover,
#bookingFormDetails .booking-action-primary:hover {
  background-color: #0d4b28;
  border-color: #0d4b28 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.booking-action-secondary,
#bookingFormDetails .booking-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  padding: 10px 20px;
  border: 1px solid #d7d7d7 !important;
  border-radius: 5px;
  background-color: #dfdfdf;
  color: #1c1c1c !important;
  font-family: "Cinzel", serif;
  font-size: 14px !important;
  font-weight: 300;
  line-height: 1.4;
  text-decoration: none !important;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.booking-action-secondary:hover,
#bookingFormDetails .booking-action-secondary:hover {
  background-color: #cfcfcf;
  border-color: #cfcfcf !important;
  color: #1c1c1c !important;
  text-decoration: none !important;
}

.modal .btn[data-bs-dismiss],
.js-padel-notice-cancel {
  border: 1px solid #d7d7d7 !important;
  border-radius: 5px;
  background-color: #dfdfdf;
  color: #1c1c1c !important;
  font-family: "Cinzel", serif;
  font-size: 14px !important;
  font-weight: 300;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.modal .btn[data-bs-dismiss]:hover,
.js-padel-notice-cancel:hover {
  background-color: #cfcfcf;
  border-color: #cfcfcf !important;
  color: #1c1c1c !important;
}

.cbi {
  padding: 7px 12px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 6px;
}

.cbi svg {
  width: 10px;
  margin-right: 5px;
  opacity: 0.5;
}

.cbg-system {
  background-color: #0d4b2834 !important;
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 1.2rem;
  color: #09351c;
  margin-bottom: 3px;
  font-family: "Cinzel", serif;
}

.btn,
.btn-primary,
.btn-secondary {
  font-size: 14px !important;
}

#bookingFormDetails {

  margin: 0 auto;
  padding-bottom: 200px;
}

#pitchSelect {
  display: none;
}

.admin-group-mode-bar {
  max-width: 1585px;
  margin: -10px auto 0 auto;
  padding: 14px 0px 14px 0px;
  /* border: 1px solid #d8e1dc; */
  border-radius: 6px;
  /* background: #f6f9f7; */
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 20px 12px 12px;
  align-items: center;
}

.admin-group-mode-bar.is-active {
  /* border-color: #09351c;
  background: #eef6f1; */
}

.admin-group-mode-summary {
  display: block;
  margin-top: 4px;
  color: #52645a;
  font-size: 12px;
}

.admin-group-mode-basket {
  grid-column: 1 / -1;
  display: none;
}

.admin-group-mode-bar.is-active .admin-group-mode-basket {
  display: block;
}

.booking-basket-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.booking-basket-actions .booking-action-primary,
.booking-basket-actions .booking-action-secondary {
  width: 100%;
  max-width: 210px;
  margin-bottom: 0;
}

.booking-form-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 2px 4px 2px 0;
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.booking-form-badge--product {
  background: #09351c;
  color: #fff;
}

.booking-form-badge--unit {
  background: #e4e4e4;
  color: #222;
}

.booking-form-badge--party {
  background: #c9dad0;
  color: #09351c;
  font-weight: 600;
}

.booking-form-badge--date {
  background: #f1f5f3;
  color: #09351c;
  border: 1px solid #d8e1dc;
  font-weight: 600;
}

.booking-basket-date,
.booking-basket-nights {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 12px;
  white-space: nowrap;
}

.booking-basket-date i {
  color: #09351c;
  opacity: 0.75;
}

.group-occupant-list {
  display: grid;
  gap: 14px;
}

.group-occupant-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr);
  gap: 16px;
  align-items: end;
  padding: 14px 0;
  border-bottom: 1px solid #dcdcdc;
}

.group-occupant-row:last-child {
  border-bottom: 0;
}

.group-occupant-summary {
  display: grid;
  gap: 3px;
}

.group-occupant-summary strong {
  color: #09351c;
}

.group-occupant-summary span,
.group-occupant-summary small {
  color: #555;
}

.group-occupant-field label {
  margin-bottom: 6px;
}

body:not(.group-booking-mode) .groupBookingSelection {
  display: none;
}

@media (max-width: 768px) {
  .admin-group-mode-bar {
    grid-template-columns: 1fr;
  }

  .booking-basket-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .booking-basket-actions .booking-action-primary,
  .booking-basket-actions .booking-action-secondary {
    max-width: none;
  }

  .group-occupant-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

.bookingFormDetails {
  margin-bottom: 20px;
}

#pitchSelectOrder {
  width: 100%;
  max-width: 350px;
  min-width: 250px;
}

#bookingFormDetails .container-fluid {
  padding: 0 !important;
}

#bookingFormDetails .form-group {
  margin-bottom: 12px;
}

#bookingFormDetails input[type="text"],
#bookingFormDetails input[type="email"],
#bookingFormDetails select {
  padding: 10px;
  border: 0;
  font-size: 14px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  background-color: #f8f8f8;
}

#bookingFormDetails input[type="radio"] {
  padding: 10px;
  border: 0;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #808080;
}

#bookingFormDetails label {
  font-size: 12px !important;
  color: #09351c;
}

#bookingFormDetails input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #09351c;
  margin-right: 10px;
}

#bookingFormDetails hr {
  border: none;
  border-top: 1px solid #d0d0d0; /* Adjust the color and thickness as needed */

  margin: 10px 0 20px 0; /* Optional: Adjust the margin as needed */
}
.formBorder {
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  margin: 5px;
  padding: 20px;
  background-color: #fff !important;
}

.confirmSelection {
  font-size: 14px;
  
}

#bookingFormDetails p {
  font-weight: 400;
  margin-bottom: 5px;
}


.paymentOptions {
  padding: 20px;
  width: 100%;

  border-radius: 5px;
}

#paymentOptions .form-check {
  padding-left: 0 !important;
}

#paymentOptionBalance,
#paymentOptionDeposit {
  margin: 0 20px 0 0;
}

#bookingFormDetails h4,
#bookingFormDetails h5,
#bookingFormDetails h6 {
  color: #09351c;
  font-family: "Cinzel";
  font-weight: 300;
}

#bookingFormDetails h4 {
  font-size: 22px;
}
#bookingFormDetails h5 {
  font-size: 18px;
}
#bookingFormDetails h6 {
  font-size: 14px;
}

.orderSummary svg {
  max-width: 16px;
}

#bookingFormDetails .red {
  color: red;
}

#bookingOrderTable a {
  color: #09351c;
  text-decoration: none;
  border: 0;
  margin-top: 10px;
}

#bookingOrderTable a:hover {
  color: #09351c;
  text-decoration: underline;
}

.location--map {
  position: relative;
  max-width: 100%;
  /* padding: 20px; */
  margin: 20px 0 0 0px;
  /* margin: 20px; */
  border-radius: 15px;
}

.location--map-toolbar {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 6px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.location--map-zoom-value {
  font-size: 12px;
  color: #5f6a72;
  margin-left: 4px;
}

.location--map-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: grab;
  touch-action: none;
  background: #f4f6f7;
}

.location--map-viewport.is-dragging {
  cursor: grabbing;
}

.location--map-stage {
  position: relative;
  transform-origin: center center;
  transition: transform 0.2s ease;
  will-change: transform;
}

.location--map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.location--map-marker {
  position: absolute;
  width: 27px;
  height: 27px;
  margin-left: -13.5px;
  margin-top: -27px;
  border-radius: 999px 999px 999px 0;
  background: #09351c;
  border: 1px solid #fff;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  display: none;
}

.location--map-marker::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #ffc107;
  border-radius: 999px;
}

@media (max-width: 767.98px) {
  .location--map-viewport {
    min-height: 420px;
  }

  .location--map-stage,
  .location--map img {
    height: 100%;
  }

  .location--map img {
    object-fit: cover;
    object-position: center;
  }
}

/* Stepper Container */
.stepper {
  display: none !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;

  margin: auto;
  padding: 20px 0;
}

.stepper span {
  margin-bottom: 0 !important;
  font-weight: 700;
}

/* Step */
.step {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
}

/* Active Step */
.step.active {
  color: #000;
}

/* Step Number */
.step .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ddd;
  color: #000;
  font-weight: bold;
  margin-right: 8px;
}

/* Active Step Number */
.step.active .number {
  background-color: #0d4b28;
  color: #fff;
}

/* Completed Step */
.step.completed .number {
  background-color: #0d4b28;
  color: #fff;
  content: "✔";
}

/* Line Connector */
.connector {
  flex-grow: 1;
  height: 2px;
  background-color: #ddd;
  margin: 0 8px;
}

/* Active Connector */
.step.active + .connector {
  background-color: #0d4b28;
}

#small-logo {
  width: 30px;
}

#orderPrice {
  background-color: #efefef;
  border-radius: 5px;
  padding: 20px;
}

#orderPrice h5 {
  margin-bottom: 0;
}

/* Cristian Changes */

#gridView.list {
  flex-direction: row;
}
#gridView .card .card-body {
  flex-direction: column;
  justify-content: start !important;
}
#gridView .card .card-body .grid {
  flex-direction: column;
  background-color: #fff;
  height: 100%;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  justify-content: space-between;
}

#gridView .card-title {
  margin-bottom: 1rem;
  font-size: 2rem;
}

#gridView .card-body {
  padding: 0;
}

/* #listView .card-title{
  margin-bottom: 1rem;
} */

#gridView .card {
  border-radius: 10px;
  overflow: hidden;
}

#gridView #formAmenities {
  grid-template-columns: 1fr;
}
#listView.list-view .card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}

#formAmenities li {
  display: flex;
  gap: 10px;
}

#formAmenities li i {
  margin: 0 !important;
}

#listView .card .card-body .list {
  display: grid !important;
  grid-template-columns: 70% 30%;
}

.switch-btn {
  font-family: "Cinzel", serif;
  color: #1d1d1b;
  display: flex;
  font-size: 1.7rem;
  align-items: center;
  margin: 0;
  justify-content: center;
  text-align: center;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  /* border: 1px solid #3C3C3C; */
}

.switch-btn.active {
  background-color: #fff;
  color: #000;
  border: 1px solid #0d4b28a8;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.switch-btn:hover {
  background-color: #fff;
  color: #1d1d1b;
}

#viewToggle {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}

#viewToggle .buttons-wrapper {
  display: flex;
  padding: 5px 5px;
  background-color: #0d4b2834;
  font-family: "Cinzel", serif;
  border-radius: 25px;
  color: #1d1d1b;
}

@media (max-width: 992px) {
  #viewToggle .buttons-wrapper {
    display: none;
  }
}

#listView.list-view .card-image {
  max-width: 200px;
}

#listView.list-view .card-contents {
  width: 100%;
}

#singleView .title-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

#singleView .title-wrapper .title-book h2 {
  margin: 0;
}

#singleView .book-now-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #0d4b2838;
  width: 100%;
  padding-top: 20px;
}

#singleView .cancelBooking {
  color: #09351c;
  text-decoration: none;
  border: 0;
  margin-top: 10px;
}

#singleView .cancelBooking:hover {
  color: #09351c;
  text-decoration: none;
}

#singleView .book-now-right .price-wrapper {
  text-align: right;
}

#singleView .book-now-right .book-now-button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#singleView .book-now-right .book-now-button a {
  background-color: #09351c;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 10px 20px;
  min-width: 175px;
  font-family: "Cinzel", serif;
}

#singleView .book-now-right .book-now-button .availability {
  color: red;
}

#singleView .book-now-right .book-now-button .btn-secondary {
  margin-bottom: 7px;
}

#singleView .content-wrapper-section-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  padding-top: 20px;
}

#singleView .content-wrapper-section li {
  font-size: 1.2rem !important;
}

#singleView .content-wrapper-section-grid .content-wrapper-section {
  padding-right: 20px;
}

#singleView #formAmenities {
  grid-template-columns: 1fr;
  border: none;
  padding-left: 0px;
  padding-top: 0;
}

#singleView .amenities-wrapper-section {
  padding: 20px;
}

#singleView .content-amenities #formAmenities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#singleView .top-wrapper {
  gap: 5px;
}

#singleView .left-image {
  position: relative;
  width: 100%;
}

#singleView .right-images {
  gap: 5px;
}

#singleView .left-image img {
  height: 540px !important;
  object-fit: cover;
  border-radius: 10px;
}

#singleView .right-images img {
  border-radius: 10px;
  min-height: 265px;
  max-height: 265px;
  object-fit: cover;
}

#singleView .bottom-wrapper {
  gap: 10px;
  margin-top: 10px;
  position: relative;
}

#singleView .gallery-wrapper img {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#singleView .gallery-wrapper img:hover {
  opacity: 0.7;
}

#singleView .gallery-wrapper {
  padding-right: 20px;
  width: 100%;
}

#singleView .gallery-infos {
  padding-left: 20px;
  width: 100%;
}

#singleView .gallery-infos .formBorder {
  border: none;
  border-radius: 0px;
  margin: 5px;
  padding: 0;
}

#singleView .bottom-wrapper .images-count {
  position: absolute;
  background-color: #252525b8;
  right: 3px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  max-width: 165px;
  min-width: 165px;
  min-height: 85px;
  max-height: 85px;
}

#singleView .bottom-wrapper p {
  color: #fff;
  text-decoration: underline;
}

#singleView .bottom-wrapper img {
  width: 100%;
  max-width: 165px;
  border-radius: 10px;
  height: 100%;
  max-height: 85px;
  min-width: 165px;
  min-height: 85px;
  object-fit: cover;
}

#singleView .sash {
  position: absolute;
  top: 40px;
  left: -200px;
  transform: rotate(-35deg);
  background-color: #dfad52;
  width: 100%;
  text-align: center;
  z-index: 2;
}

#singleView .sash span {
  color:#000;
  padding: 10px 42px;
  display: block;
  margin: 0;
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Cinzel", sans-serif;
    line-height: 1.15;
    overflow-wrap: anywhere;
    white-space: normal;
}


/*  Modal for the gallery Images */

/* Modal Styles */
#singleView .modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.52);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.4px);
  -webkit-backdrop-filter: blur(11.4px);

  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#singleView .modal-content {
  background-color: #fff;
  position: relative;
  border-radius: 10px !important;
  padding: 1rem;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border: none !important;
}

#singleView .modal-content::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

#singleView .close {
  color: #0d4b28;
  font-size: 40px;
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

.modal .modal-images {
  gap: 10px;
  border-right: 2px solid #0d4b2838;
  padding-right: 20px;
  justify-content: center;
}

.modal .modal-images img {
  width: 100%;
  max-width: 300px;
  min-width: 300px;
  height: 100%;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.modal .modal-images img:hover {
  opacity: 0.7;
}

.modal .modal-images-wrapper {
  display: grid;
  grid-template-columns: 80% 15%;
  border-top: 1px solid #0d4b2838;
  padding-top: 30px;
}

.modal .modal-images-wrapper #formAmenities {
  padding-left: 30px !important;
  margin-top: 0;
  padding-top: 0 !important;
}

.modal .title-wrapper {
  padding: 30px 0px 10px;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(11.4px);
  -webkit-backdrop-filter: blur(11.4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10001;
}

.images-informations-wrapper {
  display: grid;
  grid-template-columns: 69.8% 30.2%;
  justify-items: flex-end;
}

@media (max-width: 768px) {
  .images-informations-wrapper {
    grid-template-columns: 100%;
    gap: 20px;
  }
  #singleView .content-wrapper-section-grid {
    grid-template-columns: 100%;
    gap: 20px;
  }
  #singleView .gallery-infos {
    padding: 0;
  }
  #singleView .gallery-wrapper {
    padding: 0;
  }
  #singleView .gallery-wrapper img {
    height: 340px !important;
  }
  #singleView .right-images img {
    min-height: 165px;
    max-height: 165px;
  }
  #singleView .bottom-wrapper img {
    min-width: 100px;
    max-width: 100%;
  }
  #singleView .bottom-wrapper .images-count {
    max-width: 100px;
    min-width: 100px;
  }
  #singleView .title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal .modal-images-wrapper {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .modal .modal-images-wrapper #formAmenities {
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .modal .modal-images {
    padding: 0;
    border-right: none;
  }
}

#singleView .map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  max-height: 250px;
  min-height: 250px;
  padding-bottom: 20px;
}


.paymentOptions h5 {

  font-weight: 600 !important;
}


.formPayment, .paypalPayment, .adminOnly {
  background-color: #dfdfdf;
  color: #1c1c1c;
  border: 0;
  border-radius: 5px;
  padding: 10px 20px;
  min-width: 175px;

  border: 1px solid rgb(219, 219, 219) !important;
  max-width: 210px;
  width: 100%;
  margin-bottom: 10px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.adminOnly {
  font-size: 12px;
  font-family: "Cinzel", serif;
  font-weight: 300;
}

.paypalPayment {
  background-color: #fff;
  text-align: left !important;
  max-width: 360px;
  background-image: url('/assets/img/paypal.png?979');
  background-position: right center;
  background-repeat: no-repeat;
}

.pay360Payment {
  background-color: #EBEEF7;
  text-align: left !important;
  max-width: 360px;
  background-image: url('/assets/img/pay360.png');
  background-position: right center;
  background-repeat: no-repeat;
}

.paymentOptions table, .paymentOptions th, .paymentOptions td {
  background:  transparent !important;
}

.formPayment:hover, .adminOnly:hover {
  background-color: #0d4b28;
  color: #fff;
  border: 1px solid #0d4b28;
}


.paypalPayment:hover {
    background-color: #fff;
      color: #0d4b28;
      border: 1px solid #666 !important;
}

.pay360Payment:hover {
    background-color: #EBEEF7;
      color: #0d4b28;
      border: 1px solid #666 !important;
}

#padelNoticeModal .modal-content {
  border-radius: 15px;
}

#padelNoticeModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

#padelNoticeModal .modal-dialog {
  position: relative;
  width: auto;
  max-width: 800px;
  margin: 1.75rem auto;
  pointer-events: none;
}

#padelNoticeModal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
}

#padelNoticeModal.show {
  display: block;
}

body.modal-open {
  overflow: hidden;
}

#padelNoticeModalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(9, 19, 14, 0.55);
}

.padel-notice-modal .modal-header {
  border-bottom: 1px solid #e5e5e5;
}

.padel-notice-modal .modal-footer {
  border-top: 1px solid #e5e5e5;
}

.padel-image-wrapper {
  width: 100%;
  margin-bottom: 16px;
}

.padel-image {
  width: 90%;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
}

.padel-notice-text {
  font-size: 14px !important;
  color: #1d1d1b;
  margin: 0; 
  padding: 20px 40px 20px 10px
}

 .padel-notice-text strong {
 font-size: 14px !important;
 }


 #padelNoticeModal .modal-header {
  background-color:  #09351c !important;
  color: #fff !important;
  border-radius: 0% !important;
  border: 0px !important;

}

  #padelNoticeModal  h5 {
    color: #fff !important;
    font-size: 16px !important;
    margin-bottom: 0 !important;
  }

  #padelNoticeModal  .btn-close {
    color: #fff !important;
  }

 #padelNoticeModal  .modal-body h5 {
  font-size: 0.8rem !important;
  color: #09351c !important;
  font-weight: 700 !important;
  margin-bottom: 15px; 
  padding-top: 0px;
}

.mobileFlexColumn {
  flex-direction: row;
}

@media (max-width: 768px) {
  .mobileFlexColumn {
    flex-direction: column;
  }
  .mobileFlexColumn .confirmSelection{
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
}



.content-wrapper-section p, .content-wrapper-section li {
  font-size: 1.2rem !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 400 !important;
  line-height: 18px !important;
   margin-bottom: 12px !important;
}
.content-wrapper-section ul {
      margin: 24px 24px !important;
}
.content-wrapper-section a {
  text-decoration: underline;
  color: #09351c;
  font-size: 1.2rem !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 400 !important;
}

.content-wrapper-section h2 {
  font-size: 2rem !important;
}

.content-wrapper-section h3 {
  font-size: 2rem !important;
}

.content-wrapper-section h4 {
  font-size: 2rem !important;
}

.content-wrapper-section h2, .content-wrapper-section h3, .content-wrapper-section h4, .content-wrapper-section h5, .content-wrapper-section h6 {
  color: #09351c;
  font-family: "Cinzel", serif;
  font-weight: 300;
  margin-bottom: 12px !important;
}


.basket-table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  border-radius: 12px;
  margin-bottom: 20px;
}
.basket-table th, .basket-table td {
  border: 1px solid #ddd; 
  padding: 8px;
  text-align: left;
}
.basket-table th {
  background-color: #f2f2f2;
  font-weight: 600;
}
