#themeHeader {
  background-color: #09351c;
}

#bookingForm {
  /* max-width: 1460px; */
  margin: 0px auto;
}

.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;
  font-family: Poppins, sans-serif;
  color: #fff;
  display: inline-block;
}

.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 .check-btn:hover {
  background-color: #0d4b28;
  color: #fff;
}

#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;
}

#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 {
  list-style: none;
  font-size: 1.2rem;
  color: #09351c;
  margin: 0;
}

/* 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: 999;
}

.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: 15px 10px;
  display: block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Cinzel", sans-serif;
}

.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: 999;
}

#listView .sash span {
  color: #fff;
  padding: 15px 10px;
  display: block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
}

.sash span {
  color: #fff;
  padding: 10px 10px;
  display: block;
  margin: 0;

  text-transform: uppercase;
}

#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;
}

.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 {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 200px;
}

#pitchSelect {
  display: none;
}

.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,
#bookingFormDetails select {
  padding: 10px;
  border: 0;
  font-size: 14px;
  border: 1px solid #585858;
  border-radius: 5px;
}

#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: 5px;
  margin: 5px;
  padding: 20px;
}

.confirmSelection {
  font-size: 14px;
  font-family: "Poppins";
}

#bookingFormDetails p {
  font-weight: 400;
  margin-bottom: 5px;
}

small,
strong,
td,
th,
p {
  font-size: 1.2rem !important;
}

#paymentOptions {
  padding: 20px;
  background-color: #efefef;
  width: 100%;
}
#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;
  overflow: hidden;
  max-width: 100%;
  /* padding: 20px; */
  margin: 20px 0 0 0px;
  /* margin: 20px; */
  border-radius: 15px;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location--map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Stepper Container */
.stepper {
  display: flex;
  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;
}

#singleView .gallery-infos .formBorder {
  border: none;
  border-radius: 0px;
  margin: 5px;
  padding: 0;
}

#singleView .bottom-wrapper .images-count {
  position: absolute;
  background-color: #106133b8;
  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: -335px;
  transform: rotate(-35deg);
  background-color: #dfad52;
  width: 100%;
  text-align: center;
  z-index: 999;
}

#singleView .sash span {
  color: #fff;
  padding: 15px 10px;
  display: block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
}

/*  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;
}
