.sidebar-room {
	position: relative;
	color: var(--white);
	background: var(--mirage-950);
	padding: 12px;
	display: grid;
	grid-template-columns: 104px auto;
	grid-gap: 10px;
	border-radius: 12px;
}

.sidebar-room:not(:last-child) {
	margin-bottom: 20px;
}

.sidebar-room__img  {
	width: 100%;
	min-height: 86px;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

.sidebar-room__body {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 4px 0;
}

.sidebar-room__body .room-rating {
	position: absolute;
	top: 4px;
	right: 0;
}

.sidebar-room__title {
	width: calc(100% - 100px);
	word-wrap: break-word;
	font-size: 16px;
	color: var(--white);
	font-weight: 600;
	margin-bottom: 12px;
	transition: color ease .05s;
}

.sidebar-room__title:hover {
	color: var(--thunderbird-500);
}

.sidebar-room__meta {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 4px;
	font-size: 12px;
	margin: auto 0;
}

.sidebar-room__meta span {
	font-size: 14px;
	font-weight: 600;
	margin-left: 12px;
}

.sidebar-room__meta--bonus {
	max-width: calc(100% - 35px);
}

.sidebar-room__btns {
	margin-top: 12px;
}

.sidebar-room__btns .zp-btn {
	padding: 0 24px;
}

.sidebar-room__review {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	border-radius: 24px 0 12px 0;
	border-left: 6px solid var(--mirage-50);
	border-top: 6px solid var(--mirage-50);
	transition: background ease .1s;
}

.sidebar-room__review::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC42NjY2NyAxMS4zMzM0TDExLjMzMzMgNC42NjY2OU0xMS4zMzMzIDQuNjY2NjlINC42NjY2N00xMS4zMzMzIDQuNjY2NjlWMTEuMzMzNCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==");
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center;
}

.sidebar-room__review:hover {
	background: var(--thunderbird-500);
}


@media (max-width: 576px) {
	.sidebar-room:not(:last-child) {
		margin-bottom: 12px;
	}
}