.imgBg {
  width: 100%;
  height: 100vh;
}
.imgBg img {
  height: 100%;
  width: 100%;
}

.openHotelSidebar {
  position: fixed;
  left: 40px;
  top: 40px;
  cursor: pointer;
}
.openHotelSidebar.none {
  display: none;
}
.openHotelSidebar i {
  font-size: 24px;
}

.pageHotel .btn_primary {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  top: 30px;
  color: var(--color-white) !important;
  background: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
}
.pageHotel .btn_primary::after {
  background: var(--color-white);
}
.pageHotel .btn_primary:hover span {
  color: var(--color-primary) !important;
}

.hotelSidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.35);
  padding: 40px 24px;
  height: 100vh;
  overflow: auto;
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  transform: translate(-100%, 0);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .hotelSidebar {
    width: 80vw;
  }
}
.hotelSidebar.open {
  transform: translate(0, 0);
}
.hotelSidebar::-webkit-scrollbar {
  width: 5px;
}
.hotelSidebar::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.hotelSidebar .closeHotelSidebar {
  cursor: pointer;
  margin-bottom: 36px;
  justify-content: end;
  display: flex;
}
.hotelSidebar .closeHotelSidebar i {
  font-size: 26px;
  font-weight: 300;
}
.hotelSidebar .list_widget {
  margin-bottom: 100px;
}
.hotelSidebar .list_widget .name {
  margin-bottom: 18px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-body);
}
.hotelSidebar .list_widget .--itemWidget {
  border: none;
  background: transparent;
  font-weight: 600;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
  transition: all 0.5s ease;
}
.hotelSidebar .list_widget .--itemWidget.collapsed {
  transition: all 0.5s ease;
}
.hotelSidebar .list_widget .--itemWidget.collapsed .list_icon .fa-minus {
  display: none;
}
.hotelSidebar .list_widget .--itemWidget.collapsed .list_icon .fa-plus {
  display: block;
}
.hotelSidebar .list_widget .--itemWidget .list_icon .fa-minus {
  display: block;
}
.hotelSidebar .list_widget .--itemWidget .list_icon .fa-plus {
  display: none;
}
.hotelSidebar .listOption {
  margin-bottom: 40px;
}
.hotelSidebar .listOption .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hotelSidebar .listOption .--itemOption i {
  font-size: 24px;
}
.hotelSidebar .card.card-body {
  background: transparent;
  border: none;
  padding: 6px;
}
.hotelSidebar .card.card-body ul .card.card-body {
  margin-left: 20px;
}
.hotelSidebar .hotelName {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hotelSidebar .social .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hotelSidebar .social .listIcon {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hotelSidebar .social .listIcon .--itemSocial svg {
  width: 24px;
  height: 24px;
}

.iconFavorite {
  font-size: 22px;
  cursor: pointer;
}
.iconFavorite #heart {
  display: block;
}
.iconFavorite #heartActive {
  display: none;
}
.iconFavorite.active #heart {
  display: none;
}
.iconFavorite.active #heartActive {
  display: block;
}

.list-unstyled li .list_sub_icon .fa-minus {
  display: block;
}
.list-unstyled li .list_sub_icon .fa-plus {
  display: none;
}
.list-unstyled li.collapsed .list_sub_icon .fa-minus {
  display: none;
}
.list-unstyled li.collapsed .list_sub_icon .fa-plus {
  display: block;
}

.readmore__toggle {
  background: transparent;
  border: none;
  font-weight: 700;
  margin-bottom: 24px;
}/*# sourceMappingURL=hotel.css.map */