html {
  /* box-sizing: border-box;
  height: 100%; */
}

/* *,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
} */
.room-temp-main-div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.containers {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.thumbnails {
  display: flex;
  /* flex-direction: column; */
  line-height: 0;
  padding: 0;

  li {
    flex: auto;
    padding: 0 3px;
  }

  a {
    display: block;
  }

  img {
    width: 100%;
    height: 20vh;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
  }
}

.slides {
  overflow: hidden;
  width: 100%;
  height: 67vh;
  margin-bottom: 5px;
  position: relative;
  padding: 0;

  li {
    width: 100%;
    height: 67vh;
    position: absolute;
    z-index: 1;
  }

  img {
    width: 100%;
    height: 67vh;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }
}

.slides li:target {
  z-index: 3;
  -webkit-animation: slide 1s 1;
}

.slides li:not(:target) {
  -webkit-animation: hidden 1s 1;
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes hidden {
  0% {
    z-index: 2;
  }
  100% {
    z-index: 2;
  }
}

@media (max-width: 992px) {
  .room-temp-main-div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .slides {
    overflow: hidden;
    width: 100%;
    height: 50vh;
    margin-bottom: 4px;
    position: relative;
    padding: 0;

    li {
      width: 100%;
      height: 50vh;
      position: absolute;
      z-index: 1;
    }

    img {
      width: 100%;
      height: 50vh;
      object-fit: cover;
      object-position: top;
      border-radius: 6px;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }
  }
  .thumbnails {
    display: flex;
    /* flex-direction: column; */
    line-height: 0;

    li {
      flex: auto;
      padding: 0 3px;
    }

    a {
      display: block;
    }

    img {
      width: 100%;
      height: 14vh;
      object-fit: cover;
      object-position: top;
      border-radius: 4px;
    }
  }
}

/* ...................................  */

.tourist-main-cointdiv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tourist-main-cointdiv img {
  width: 100%;
  height: 60vh;
  border-radius: 6px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.tourist-main-cointdiv p {
  /* font-size: 24px; */
  margin: 5px 0;
  text-align: center;
  /* font-weight: 500; */
}
@media (max-width: 992px) {
  .tourist-main-cointdiv {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .tourist-main-cointdiv img {
    width: 100%;
    height: 50vh;
    border-radius: 6px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
}

/* ................ Booking engine ....................   */
.booking-engine-main-cont {
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #e7e7e7;
}
.beimgcontdiv {
  margin: auto;
}
.beimgcontdiv img {
  width: 100%;
  border-radius: 4px;
  height: -webkit-fill-available;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.beh1tag {
  background: #e7e7e7;
  padding-top: 50px;
  text-align: center;
  margin: 0 !important;
}

.containerbe {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #dafeff;
  background-color: #c6dedf;
  /* position: absolute;
  top: 100px;
  left: 10px; */
}

input,
select
/* ,button  */ {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#totalPrice {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
  color: #000;
}

.bebtn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}
/* button {
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
} */

.bebtn:hover {
  background-color: #218838;
}

.calendarmaindiv {
  display: flex;
}
.calendarinputdiv2 {
  /* display: flex; */
  margin-left: 10px;
}

@media (max-width: 992px) {
  .booking-engine-main-cont {
    padding: 30px 5px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    background: #e7e7e7;
  }
  .containerbe {
    max-width: 320px;
    margin: auto;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #dafeff;
    /* position: absolute;
    top: 100px;
    left: 10px; */
  }
  .calendarmaindiv {
    display: flex;
    flex-direction: column;
  }
  .calendarinputdiv2 {
    /* display: flex; */
    margin-left: 0px;
  }
  input,
select
/* ,button  */ {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
}
/* ................ Booking engine ....................   */
