.room-slice {
	display: grid;
	grid-gap: 12px;
	margin-bottom: 12px;
}

.room-card {
	display: grid;
	grid-template-columns: 164px 1fr;
	grid-gap: 12px;
	padding: 12px;
	background: var(--white);
	border-radius: 12px;
}

.room-card-side {
	display: block;
	min-height: 138px;
	background: var(--mirage-950);
	padding: 12px;
	border-radius: 12px;
	overflow: hidden;
}

.room-card-logo {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.room-card-body {
	display: grid;
	align-items: flex-start;
	grid-gap: 12px;
}

.room-card.no-recommend .room-rating-number,
.room-card.no-recommend .room-rating-star {
	color: var(--mirage-300);
}

.room-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.room-card-title {
	font-size: 20px;
	color: var(--mirage-950);
	font-weight: 700;
	line-height: 24px;
	transition: color ease .1s;
}

.room-card-title:hover {
	color: var(--thunderbird-500);
}

.room-card-lists {
	display: flex;
	align-items: flex-start;
	line-height: 20px;
	padding-bottom: 8px;
}

.room-card-list {
	max-width: 265px;
	flex: 1 0 auto;
}

.room-card-list__name {
	color: var(--grey);
}

.room-card-list__value {
	font-size: 16px;
	font-weight: 700;
}

.room-card-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.room-card-promocode {
	position: relative;
	width: 100%;
	max-width: 300px;
	padding: 0 24px 0 12px;
	height: 40px;
	line-height: 40px;
	background: var(--mirage-50);
	border: 1px dashed var(--thunderbird-500);
	border-radius: 8px;
}

.room-card.additional .room-card-promocode {
	max-width: 190px;
}

.room-card-promocode .copy-label {
	position: absolute;
	top: -9px;
	left: -1px;
	font-size: 12px;
	color: var(--white);
	background: var(--thunderbird-500);
	padding: 2px 5px 3px 5px;
	border-radius: 4px 4px 4px 0;
	line-height: 12px;
}

.room-card-promocode .copy-code {
	width: 100%;
	text-decoration: none;
}

.room-card-promocode .copy-code::before {
    top: 5px;
    background-image: url(../images/svg/cursor-white.svg);
}


.room-card-btn .zp-btn {
	padding: 0 24px;
	height: 40px;
}

.room-card-btn--review {
	margin-left: auto;
}

.room-card-transfer:empty {
	display: none;
}

.room-card-forbidden__header {
	padding: 6px;
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	text-align: center;
	border-radius: 4px;
	background: var(--thunderbird-800);
	text-transform: uppercase;
	line-height: 12px;
}

.room-card-forbidden__footer {
	display: grid;
	grid-template-columns: 30px 1fr;
	align-items: center;
	grid-gap: 10px;
	font-weight: 700;
}

.skull-forbidden {
	max-width: 100%;
	height: 30px;
}

@media (max-width: 1215px) {
	.room-card .room-card-promocode,
	.room-card.additional .room-card-promocode {
		max-width: 100%;
	}
}

@media (max-width: 991px) {
	.room-card-lists {
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	.room-card {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.room-card-side {
		min-height: 104px;
		max-height: 104px;
		text-align: center;
	}

	.room-card-logo {
		max-width: 140px;
	}

	.room-card-body {
		padding: 0 12px 12px 12px;
	}

	.room-card-header {
		justify-content: space-between;
	}

	.room-card .room-rating-number {
		font-size: 16px;
	}

	.room-card .room-rating-star {
		gap: 2px;
	}

	.room-card-lists {
		flex-direction: column;
		gap: 8px;
	}

	.room-card-list {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		max-width: 100%;
		width: 100%;
	}

	.room-card-list__value {
		font-size: 14px;
	}

	.room-card-transfer,
	.room-card-btn .additional-btn,
	.room-card-btn .zp-btn {
		flex: 1;
	}

	.room-card-btn .zp-btn {
		padding: 0;
	}

	.room-card-btn .zp-btn:not(.room-card-btn--review) {
		width: 100%;
	}

	.room-card-forbidden__footer {
		font-weight: 500;
	}
}

@media (min-width: 769px) {
	.room-card.no-recommend .room-card-btn {
		display: none;
	}
}