/* Sticky Button Started */
.sticky-modal .sticky-container {
  position: relative;
}

.sticky-modal .view-deals-btn {
  background-color: var(--green-color);
  border-color: transparent;
  border-radius: 0px 0px 10px 10px;
  color: var(--black-color);
  position: fixed;
  top: 50%;
  left: -83px;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 101;
  padding: 12px 20px 12px 20px;
  white-space: nowrap;
  transition: left 0.3s ease;
  display: none;
}

.sticky-modal .view-deals-btn:hover {
  background-color: var(--green-color);
  /* border-color: var(--green-color); */
}

/* .sticky-modal .view-deals-btn:focus,
.sticky-modal .view-deals-btn:active {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
} */

.sticky-modal .view-deals-btn span.button-right-arrow i {
  /* margin-left: 10px; */
  transform: rotate(90deg);
}

.dialog-box.dialog-open + .view-deals-btn {
  left: 600px;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 101;
}

.dialog-box {
  position: fixed;
  border-radius: 0px 15px 15px 0px;
  top: 10%;
  left: -600px;
  width: 100%;
  height: 565px;
  background-color: #f8f8f8;
  transition: left 0.3s ease;
  z-index: 102;
}

.dialog-open {
  left: 0;
}

.dialog-content {
  padding: 20px;
}

.close-dialog {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 99;
}

/* Sticky Deals */
.sticky-latest-deals {
  background-color: var(--white-color);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  /* border-radius: 10px; */
  border-radius: 7px;
  margin: 15px 0px 0px 0px;
  padding: 15px 15px 15px 15px;
}

.deals-heading {
  position: sticky;
  top: 0;
  background-color: #f8f8f8;
  z-index: 1;
}

.deals-heading h5 {
  color: var(--blue-color);
  font-weight: 600;
}

/* .dialog-content {
  overflow-y: scroll;
  max-height: 460px;
} */

.sticky-latest-deals img {
  /* border-radius: 10px 10px 10px 10px; */
  border-radius: 7px;
  height: 150px;
}

.hotelText {
  padding: 15px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotelText strong img {
  display: none;
}

.hotelText ul li {
  width: 10%;
}

.hotelText h4 {
  color: var(--blue-color);
  font-size: 18px;
  font-weight: 500;
}

.hotelText a {
  text-decoration: none;
}

span.fastart {
  color: var(--dark-ocean);
  font-size: 12px;
}

.hotelText ul {
  padding-left: unset;
}

.hotelText ul li {
  list-style: none;
}

.scroll-controller {
  max-height: 420px;
  overflow-y: scroll;
  padding: 10px 15px 10px 5px; /* Adjust the desired amount */
}

.scroll-controller::-webkit-scrollbar {
  width: 8px;
}

.scroll-controller::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 5px;
}

.scroll-controller::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-top: 15px;
}

.sticky-latest-deals img {
  width: 100%;
}

button.viewButton {
  background-color: var(--blue-color);
  border: none;
  /* border-radius: 30px; */
  border-radius: 7px;
  color: var(--white-color);
  padding: 8px 35px 8px 35px;
  width: 100%;
}

button.viewButton:hover,
button.viewButton:focus {
  background-color: var(--dark-ocean);
  color: var(--white-color);
}

button.viewButton:active,
button.viewButton:disabled {
  background-color: var(--blue-color);
  color: var(--white-color);
}

@media (min-width: 768px) and (max-width: 991.99px) {
  .sticky-modal .view-deals-btn {
    top: 30%;
  }

  .sticky-modal .dialog-box {
    top: 1%;
    width: 600px;
  }

  .sticky-modal .hotelText {
    padding-left: 80px;
    padding-top: 15px;
  }

  .hotelText ul li {
    width: auto;
  }

  .sticky-latest-deals img {
    width: auto;
  }

  .sticky-modal .view-deals-btn {
    display: block;
  }
}

@media (min-width: 992px) {
  .sticky-modal .view-deals-btn {
    top: 40%;
  }

  .sticky-modal .dialog-box {
    width: 600px;
  }

  .dialog-box {
    top: 7%;
  }

  .sticky-latest-deals img {
    width: auto;
  }

  .sticky-modal .hotelText {
    padding: 0px 0px 0px 80px;
  }

  .sticky-modal .view-deals-btn {
    display: block;
  }
}

@media (min-width: 1200px) {
}
/* Sticky Button Ended */
