.room-box {
	margin-bottom: 34px;
}

.room-card-sh {
	display: grid;
	grid-template-columns: 1fr minmax(165px, auto);
	align-items: center;
	grid-column-gap: 12px;
	grid-row-gap: 8px;
	background: var(--white);
	border-radius: 4px;
	margin-bottom: 12px;
}

.room-card-sh-side {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--black);
	padding: 8px 12px;
	min-height: 100%;
	border-radius: 4px;
}

.room-card-sh-img {
	width: 100%;
	height: 100px;
	margin-bottom: 4px;
	object-fit: contain;
}

.room-card-sh-side .csp-btn {
	padding: 0 16px;
}

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

.room-card-sh-title {
	font-size: 18px;
	font-weight: 600;
}

.room-card-sh-header .room-rating {
	background: var(--blue-ribbon-100);
}

.room-card-sh-meta--label {
	color: var(--spun-pearl-500);
	line-height: 20px;
}

.room-card-sh-meta--value {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}

.room-card-sh-meta--value.platforms {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	text-align: center;
}

.room-card-sh-meta--value.platforms span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	max-width: 24px;
	height: 24px;
	font-size: 10px;
	color: var(--spun-pearl-400);
	font-weight: 700;
	background: var(--spun-pearl-100);
	line-height: 15px;
	border-radius: 4px;
}

.room-card-sh-meta--value.platforms img {
	max-width: 100%;
	max-height: 16px;
}

.room-card-sh-footer {
	grid-column-start: 2;
	grid-row-start: 3;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.room-card-sh-bonus {
	color: var(--blue-ribbon-500);
	font-size: 16px;
	font-weight: 600;
}

.room-card-sh-promo {
	flex: 1;
}

.room-card-sh-promocode {
	padding: 8px 12px;
	background: var(--blue-ribbon-400);
	color: var(--spun-pearl-100);
	border: 2px dashed var(--blue-ribbon-600);
	border-radius: 32px;
	white-space: nowrap;
	transition: background ease .1s;
}

.room-card-sh-promocode:hover {
	background: var(--blue-ribbon-500);
}

.room-card-sh-promocode .copy-code {
	color: var(--white);
}

.room-card-sh-promocode .copy-code-text,
.room-card-sh-promocode .copy-code:hover .copy-code-text {
	border-color: var(--white);
}

.room-card-sh-footer .csp-btn {
	font-size: 16px;
	border-radius: 24px;
}

@media (max-width: 1199px) and (min-width: 991px) {
	.room-card-sh-footer {
		flex-wrap: wrap;
	}

	.room-card-sh-promo {
		flex-basis: 100%;
	}

	.room-card-sh-footer .csp-btn {
		flex: 1 0 auto;
	}
}

@media (max-width: 768px) {
	.room-card-sh-footer {
		flex-wrap: wrap;
	}

	.room-card-sh-promo {
		flex-basis: 100%;
	}

	.room-card-sh-footer .csp-btn {
		flex: 1 0 auto;
	}
}

@media (max-width: 576px) {
	.room-card-sh {
		padding: 8px 12px 0 12px;
	}

	.room-card-sh-side .csp-btn {
		display: none;
	}

	.room-card-sh-header {
		display: none;
	}

	.room-card-sh-meta--item {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.room-card-sh-meta--item:not(:last-child) {
		margin-bottom: 4px;
	}

	.room-card-sh-footer {
		grid-column: span 2 / span 2;
		grid-row-start: 2;
		justify-content: center;
		position: relative;
		left: -12px;
		width: calc(100% + 24px);
		padding: 12px;
		background: var(--blue-ribbon-100);
		border-radius: 4px;
	}

	.room-card-sh-bonus--ico {
		display: none;
	}

	.room-card-sh-promo {
		text-align: center;
	}

	.room-card-sh-promo .room-card-sh-promocode {
		display: none;
	}

	.room-card-sh-promocode {
		flex: 1;
		text-align: center;
	}
}

@media (min-width: 577px) {
	.room-card-sh {
		align-items: flex-start;
		grid-template-columns: 154px 1fr;
		background: var(--white);
		padding-right: 12px;
	}

	.room-card-sh-side {
		grid-row: span 3 / span 3;
	}

	.room-card-sh-side .room-rating {
		display: none;
	}

	.room-card-sh-meta {
		grid-column-start: 2;
		grid-row-start: 2;
		display: grid;
		grid-template-columns: 1fr 1fr 140px;
		grid-gap: 24px;
	}

	.room-card-sh-meta--label {
		margin-bottom: 2px;
	}

	.room-card-sh-footer {
		margin-bottom: 12px;
	}

	.room-card-sh-bonus {
		display: grid;
		grid-template-columns: 40px 1fr;
		align-items: center;
		grid-gap: 10px;
	}

	.room-card-sh-bonus--ico {
		height: 40px;
		padding: 8px;
		background: var(--blue-ribbon-200);
		border-radius: 50%;
	}

	.room-card-sh-bonus--ico svg {
		width: 100%;
		height: 100%;
	}

	.room-card-sh-promo {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 5px 6px;
		background: var(--blue-ribbon-100);
		border-radius: 32px;
	}

	.room-card-sh-promocode {
		margin-left: auto;
	}

	.room-card-sh-promocode--additional {
		display: none;
	}
}