/* FILTERBAR START */

.filter-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 5px 15px;
}

.filter-category-divider {
  height: 1px;
  background-color: #e1e1e1;
  width: 95%;
  margin: auto;
}

.filter-category-content {
  padding: 0 15px;
  margin-top: 10px;
}

.filter-category-content ul {
  cursor: auto;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.filter-category-content li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 2px 0;
  position: relative;
  min-height: 20px;
}

.filter-category-content label {
  margin-bottom: 0;
  cursor: pointer;
  padding-left: 5px;
}

.filter-category-content label:hover {
  font-weight: 600;
}

a.filter {
  font-size: 14px !important;
  text-decoration: none;
  font-weight: 600;
  color: #515151;
}

.flex-collapse {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#collapse-max-price input {
  width: 50%;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  text-align: center;
}

#collapse-max-price label {
  margin: 0 0 0 5px;
}

.listing-filters-modal-footer {
  justify-content: center;
  align-items: center;
}
/* FILTERBAR STOP */

/* CONTENT */

.listing-tile-hotel-name {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
  font-size: 25px;
  font-weight: 700;
}

.listing-tile-hotel-name > a {
  color: #515151;
  padding-right: 5px;
}

.listing-tile-hotel-location {
  font-size: 12px;
  font-weight: 400;
}

.listing-tile-offer-details {
  font-weight: 400;
  margin-top: 10px;
}

.listing-tile-offer-details p {
    margin-bottom: 0.3rem;
}

.listing-tile-banners {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: 0;
}

.listing-tile-banner {
  display: flex;
  align-items: center;
  height: 25px;
  padding: 5px 15px;
  margin-bottom: 1px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  border-radius: 2px;
}

.listing-tile-banner p {
  margin: 0;
}

.listing-tile {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.main-listing-container .listing-tile:nth-child(1) {
  margin-top: 0;
}

.listing-tile-price-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .listing-tile-price-container  {
    flex-direction: row;
    width: 100%;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .listing-tile-price-container  {
    align-items: center;
  }
}


.listing-tile-prev-price {
  color: #707174;
  font-size: 20px;
  margin-bottom: -10px;
  text-decoration: line-through;
}

.hotel_tile_price {
  color: #789520;
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 0;
}

.hotel_tile_price_type {
  font-size: 18px;
}

.listing-tile-button {
  width: 150px;
  height: 43px;
  border: none;
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  background-color: #789520;
}

.listing-tile-button:hover {
  background-color: #FFFFFF;
  border: 1px solid #789520;
  color: #789520;
}

.listing-tile-button > img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  vertical-align: baseline;
}

.listing-tile-button:hover > img {
  filter: invert(47%) sepia(93%) saturate(370%) hue-rotate(34deg) brightness(94%) contrast(86%);
}

.hover-shadow-listing {
  transition: 0.3s;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.hover-shadow-listing:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* PAGINATION */

.pagination {
  display: flex;
  justify-content: center;
}

.page-item.disabled .page-link,
.page-link {
  border: none !important;
  border-radius: 20px;
  color: #333 !important;
}

.page-item.active .page-link {
  background: #f9ab00 !important;
  color: #fff !important;
}

/* FAVORITE OFFERS LIST */

#favorite_offer__list,
#favorite_offer__empty_list,
#favorite_offer__remove_all_button {
  display: none;
}