.roomlist{padding: 100px 0;}

.roomlist .room {
	flex-direction: column;
	display: flex;
	border: 1px solid var(--border-dark);
	margin-bottom: 30px;
	min-height: 250px;
	text-align: center;
}
.roomlist .room-bg {
	min-width: 300px;
	min-height: inherit;
	background-size: cover;
	background-position: 50% 50%;
	display: inline-block;
	transition: all 0.2s;
}

.roomlist .room-info {
	flex: 1;
	padding: 30px;
	padding-bottom: 0;
}

/*===amenities===*/
.roomlist .amenities {
	justify-content: center;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	transition: all 0.2s;
	background-color: var(--white);
	z-index: 2;
	align-items: flex-end;
	margin-top:20px;
}

.roomlist .amenities svg {
	color: var(--text-color);
	fill: var(--text-color);
	height: 32px;
	border: 1px dashed;
	padding: 6px;
	margin-right: 10px;
	min-width: 32px;
}

.amenities_description {
	position: absolute;
	bottom: calc(100% + 8px);
	z-index: 2;
	background: var(--bg-gray);
	color: var(--text-color);
	font-size: var(--xsmall);
	padding: 5px;
	text-align: center;
	border-radius: 3px;
	left: 50%;
	transform: translate(-50%);
	min-width: 80px;
	box-shadow: 1px 0 5px var(--text-color);
	opacity: 0;
	line-height: 1.2;
}
.amenities_description::after {
	content: "";
	display: inline-block;
	border-bottom: 5px solid transparent;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 5px solid var(--text-color);
	position: absolute;
	top: 100%;
	left: calc(50% - 2.5px);
}
	.roomlist .amenities > div:hover .amenities_description {opacity: 1;}

/*===room ppn===*/
.room-ppn {
	background: var(--white);
	border-radius: 3px;
	padding: 0px 5px;
	color: var(--dark-text);
	font-weight: bold;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.roomlist .price-tag {
	text-align: center;
	margin-bottom: 25px;
}
	.roomlist .price-tag span {
		padding: 0;
		line-height: 1;
		font-size: var(--small);
	}
	.roomlist .price-tag h3 {
		line-height: 1.2;
		font-size: var(--xlarge);
	}

.roomlist .more-btn {
	text-decoration: none;
	color: var(--main-color);
	padding: 5px 10px;
	border-radius: 25px;
	transition: all 0.2s;
}
	.roomlist .more-btn:hover {
		background: var(--main-color);
		color:var(--white);
	}
	.roomlist .more-btn i {
		color: var(--white);
		background: var(--main-color);
		display: inline-block;
		padding: 5px;
		border-radius: 50px;
		width: var(--xlarge);
		height: var(--xlarge);
		text-align: center;
		font-size: var(--small);
	}

@media only screen and (min-width:800px) {
	.roomlist .room {
		flex-direction: row;
		text-align: left;
	}
	.roomlist .amenities {justify-content: flex-start;margin-top: 40px;}	
	.roomlist .room-info {padding-bottom: 30px;}
}