.sg-room-header {
	display: grid;
	grid-template-columns: 300px 1fr;
	grid-gap: 24px;
	background: var(--mirage-950);
	color: var(--white);
	padding: 32px;
	border-radius: 12px;
}

.sg-room-header__img {
	display: block;
	width: 100%;
	max-width: 240px;
	min-height: 137px;
	height: calc(100% - 54px);
	object-fit: contain;
	margin: 0 auto 12px auto;
}

.sg-r-header__rate {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sg-r-header__rate-value {
	font-size: 48px;
	font-weight: 700;
	line-height: 48px;
	margin-top: -6px;
}

.sg-r-header__rate-body {
	display: grid;
	align-items: center;
	grid-column-gap: 24px;
	grid-row-gap: 8px;
}

.sg-room-header .room-rating {
	grid-area: 1 / 1 / 3 / 2;
}

.sg-r-header__rate-body--date {
	grid-area: 2 / 1 / 3 / 2;
	color: var(--grey);
	font-size: 12px;
}

.sg-room-header .zp-btn--reviews {
	grid-area: 1 / 2 / 3 / 3;
	padding: 0 12px;
	height: 40px;
}

.sg-r-header__body {
	position: relative;
	display: grid;
	grid-gap: 24px;
}

.sg-r-header-inp-checked {
	position: absolute;
}

.sg-r-header__lists {
	display: flex;
	align-items: flex-start;
}

.sg-r-header__list {
	flex: 1;
	display: grid;
	grid-template-columns: 64px 1fr;
	align-items: center;
	border: 10px solid transparent;
	color: var(--blue-violet-400);
	text-align: center;
	border-radius: 28px;
	transition: background ease .1s, border ease .1s;
}

.sg-r-header__list img {
	max-width: 100%;
	height: auto;
}

.sg-r-header__list:hover {
	color: var(--blue-violet-400);
	background: var(--blue-violet-900);
	border-color: var(--blue-violet-900);
}

.sg-r-header__list span {
	display: block;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	margin-top: 4px;
}

.sg-r-header-inp-checked {
	display: none;
}

.sg-r-header__label {
	font-size: 16px;
	font-weight: 600;
	color: var(--blue-violet-400);
	border-bottom: 1px dashed var(--blue-violet-400);
	margin: 0 auto;
	max-width: max-content;
	order: 3;
}

.sg-r-header__label::before {
	content: 'Показать параметры';
}


.sg-room-telegram {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 24px;
	row-gap: 12px;
	padding: 12px;
	background: var(--mirage-950);
	margin-top: 4px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: var(--blue-violet-400);
	border-radius: 12px;
}

.sg-room-telegram .zp-btn {
	height: 40px;
	padding: 0 16px;
}

@media (max-width: 1100px) {
	.sg-room-header {
		grid-template-columns: 210px 1fr;
	}

	.sg-room-header__img {
		height: calc(100% - 102px);
	}

	.sg-r-header__rate-body {
		grid-column-gap: 10px;
	}

	.sg-room-header .zp-btn--reviews {
		grid-area: auto;
	}
}

@media (max-width: 991px) {
	.sg-room-header {
		grid-template-columns: 1fr;
		grid-gap: 12px;
		padding: 12px;
	}

	.sg-r-header__side {
		display: flex;
		align-items: center;
	}

	.sg-room-header__img {
		margin: 0 auto 0 0;
		max-width: 200px;
		max-height: 100px;
		min-height: 100px;
		height: auto;
	}

	.sg-room-header .zp-btn--reviews {
		grid-area: 1 / 2 / 3 / 3;
	}

	.sg-r-header__lists {
		flex-wrap: wrap;
	}

	.sg-r-header__list {
		flex: 1 0 auto;
	}
}

@media (max-width: 576px) {
	.sg-r-header__side {
		display: block;
	}

	.sg-room-header__img {
		max-width: 240px;
		max-height: 137px;
		min-height: 137px;
		margin: 0 auto;
	}

	.sg-r-header__rate-body {
		width: 100%;
	}

	.sg-room-header .zp-btn--reviews {
		max-width: max-content;
		margin-left: auto;
	}

	.sg-r-header__body {
		gap: 12px;
	}

	.sg-r-header__lists {
		order: 1;
		display: none;
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		grid-column-gap: 12px;
		grid-row-gap: 24px;
	}

	.sg-r-header-inp-checked:checked ~ .sg-r-header__lists {
		display: grid;
	}

	.sg-r-header__list {
		grid-template-columns: 48px 1fr;
		grid-gap: 10px;
		border: none;
		text-align: left;
	}

	.sg-r-header__list span {
		font-size: 16px;
	}

	.sg-r-header-inp-checked:checked ~ .sg-r-header__label {
		margin: 0;
	}

	.sg-r-header-inp-checked:checked ~ .sg-r-header__label::before {
		content: 'Скрыть';
	}
}

@media (min-width: 577px) {
	.sg-r-header__label {
		display: none;
	}
}