/* Room Filter */

.room-filter__left {
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 13px;
	text-transform: uppercase;
}

.room-filter__left-item {
	display: inline;
	list-style: none;
	padding: 0 10px;
	border-left: 1px solid #767676;
}

.room-filter__left-item--first {
	padding-left: 0;
	border: none;
}

.room-filter__left-link {
	text-decoration: none;
	color: #af9751;
}

.room-filter__left-link--active {
	color: #000000;
}

.room-filter__divider {
	margin-bottom: 1rem;
	border: 0.5px solid #af9751;
}

.room-filter__right {
	padding: 0;
	margin: 0;
}

.room-filter__text {
	font-size: 13px;
	font-style: italic;
	margin-right: 16px;
}

.room-filter__right-selection {
	padding-left: 0;
}

.room-filter__right-item {
	list-style: none;
	display: inline-block;
	padding: 7px 25px 7px 25px;
	margin: 0 8px 0 8px;
  background: #f6f6f6;
  font: 0.875rem "Montserrat", sans-serif;
}

.room-filter__right-item--first {
	margin-left: 0;
}

.room-filter__button {
	height: 40px;
	padding: 0 20px;
	text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
	.room-filter {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.room-filter__right {
		display: flex;
		flex-direction: column-reverse;
	}
  .room-filter__right-selection {
      margin: 0;
  }
	.room-filter__right-group {
		display: flex;
		align-items: center;
	}
	.room-filter__divider {
		display: none;
	}
  .room-filter__text {
    margin-bottom: 0;
  }
  .room-filter__button {
    margin-left: 8px;
  }
}

@media only screen and (min-width: 1200px) {
	.room-filter__right {
		display: flex;
		align-items: center;
		flex-direction: row;
	}
}

/* Rooms listing */

.room-card-container {
  margin-top: 1.25rem;
}

.room-card {
	background: #fff;
	margin-bottom: 1rem;
}

.room-card__image {
	height: 16.56rem;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	position: relative;
}

.room-card__compare-label {
	background: rgba(255, 255, 255, 0.8);
	padding: 10px 20px;
	position: absolute;
	left: 2rem;
	bottom: 0;
  margin-bottom: 0;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 11px;
}

.room-card__compare-input {
	margin-right: 0.5rem;
}

.room-card__content {
	padding: 2rem 2rem 2.5rem 2rem;
}

.room-card__title {
  font: 22px/26px "Playfair Display", "Times New Roman", serif;
	margin: 0 0 1rem 0;
}

.room-card__details {
	margin: 0 0 1rem 0;
	padding: 0;
	list-style: none;
}

.room-card__description {
	margin: 0 0 1rem 0;
}

.room-card__button {
	padding: 0.75rem 1.5rem;
	background: #af9751;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	border: 0;
	margin: 0;
	letter-spacing: 0.05rem;
}

@media only screen and (min-width: 768px) {
	.room-card-container {
		display: flex;
		flex-wrap: wrap;
	}
	.room-card {
		flex: 50%;
		flex-grow: 0;
	}
  .room-card__content {
    position: relative;
    min-height: 367px;
  }
  .room-card__button {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
  }
}

@media only screen and (min-width: 992px) {
	.room-card {
		flex: calc(100% / 3);
		flex-grow: 0;
	}
}