.content {
	overflow: hidden;
	padding-top: 10px;
}

.single-room {
	position: relative;
	padding: 35px 0;
	margin-bottom: 25px;
}

.single-room > * {
	position: relative;
}

.single-room::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	right: 0;
	width: 200%;
	height: 100%;
	background: #F1F1F1;
	pointer-events: none;
	user-select: none;
}

.single-room__header {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: #000;
	color: #fff;
	margin-bottom: 24px;
}

.single-room__header-aside {
	width: 100%;
	min-width: 240px;
	max-width: 240px;
	text-align: center;
}

.single-room__header-logo {
	height: 118px;
}

.single-room__header-logo img {
	width: 100%;
	height: 100% !important;
	object-fit: contain;
}

.single-room__header-aside .room-rating {
	display: inline-flex;
}


.single-room__header-bonus {
	flex: 1;
	align-self: stretch;
	padding: 6px 12px 12px 12px;
	background: #0080CE;
	border-radius: 4px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.single-room__header-bonus-flex {
	flex-wrap: nowrap;
	align-self: center;
	padding: 24px 12px;
}

.single-room__header-bonus-flex .single-room__header-bonus--btns {
	max-width: 290px;
	margin-top: 0;
}

.single-room__header-bonus-flex .single-room__header-bonus--btn {
	margin-top: 0;
}

.single-room__header-bonus--ico {
	min-width: 48px;
	max-width: 48px;
	height: 48px;
}

.single-room__header-bonus--text {
	flex: 1;
	padding-left: 8px;
	font-size: 18px;
	font-weight: bold;
	line-height: 21px;
}

.single-room__header-bonus--text span {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: normal;
	line-height: 14px;
	text-transform: uppercase;
}

.single-room__header-bonus--btns {
	width: 100%;
	margin-top: auto;
}

.single-room__header-bonus--btn {
	position: relative;
	width: 100%;
	height: 40px;
	margin-top: 12px;
	background: #fff;
	color: #0080CE;
	font-size: 18px;
	font-weight: bold;
	border-radius: 4px;
}

.single-room__header-bonus--btn::after {
	content: '';
    position: absolute;
    top: 17px;
    right: 36px;
    width: 36px;
    height: 36px;
    background-image: url(../../img/cursor-bg.png);
    background-size: 32px;
    background-position: center;
}

.single-room__header-bonus--btn:hover {
	background: #eee;
}

.single-room__header-btns {
	padding: 12px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, .30);
}

.single-room__header-btn {
	display: block;
	width: 100%;
	min-width: 126px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.24);
	border-radius: 4px;
}

.single-room__header-btn--play {
	background: #FAAB00;
	margin-bottom: 12px;
}

.single-room__header-btn--play:hover {
	color: #fff;
	background: #eea300;
}

.single-room__header-btn--download {
	background: #B47B01;
}

.single-room__header-btn--download:hover {
	color: #fff;
	background: #a47000;
}

.single-room__title {
	font-size: 28px;
	font-weight: bold;
	color: #4F5357;
	margin: 0;
}


.single-room__achievements {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	overflow: auto;
}

.single-room__achievement {
	display: flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	line-height: 1;
}

.single-room__achievement svg {
	min-width: 24px;
	max-width: 24px;
	height: 24px;
	color: #0080CE;
}


.single-room__stats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 24px 0;
}

.single-room__stat {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 170px;
	min-width: 170px;
}

.rate__progress {
	position: relative;
	min-width: 46px;
	max-width: 46px;
	height: 46px;
	background: #0080CE;
	border-radius: 50%;
	text-align: center;
}

.rate__circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(-1, 1);
}

.rate__circle svg {
	width: 100%;
	height: 100%;
}

.rate__circle svg path {
	stroke-dasharray: 0, 130;
	animation: rate_circle_dasharray 1.5s ease forwards;
	animation-delay: .3s;
}

.rate__inset {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	line-height: 46px;
}

.rate__label {
	color: #777;
	font-size: 14px;
	line-height: 16px;
}

@keyframes rate_circle_dasharray {
	from {
		stroke-dasharray: 0, 130;
	}
	to {
		stroke-dasharray: var(--stroke-dasharray), 130;
	}
}

.single-room__parametrs {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.single-room__parametr {
	flex: 1 0 calc(33% - 15px);
}

.single-room__parametr-label {
	font-size: 16px;
	color: #4F5357;
	font-weight: bold;
	line-height: 19px;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid #D3D3D3;
}

.comparison {
	list-style-type: none;
	padding: 0;
}

.comparison li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #4F5357;
	line-height: 20px;
}

.comparison li:not(:last-child) {
	margin-bottom: 10px;
}

.comparison:not(.comparison-inf) li::before {
	content: '';
	display: block;
	min-width: 24px;
	max-width: 24px;
	height: 24px;
}

.comparison.comparison-plus li::before {
	background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath opacity="0.4" d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2Z" fill="%230080CE"/%3E%3Cpath d="M16 11.25H12.75V8C12.75 7.59 12.41 7.25 12 7.25C11.59 7.25 11.25 7.59 11.25 8V11.25H8C7.59 11.25 7.25 11.59 7.25 12C7.25 12.41 7.59 12.75 8 12.75H11.25V16C11.25 16.41 11.59 16.75 12 16.75C12.41 16.75 12.75 16.41 12.75 16V12.75H16C16.41 12.75 16.75 12.41 16.75 12C16.75 11.59 16.41 11.25 16 11.25Z" fill="%230080CE"/%3E%3C/svg%3E');
}

.comparison.comparison-minus li::before {
	background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath opacity="0.4" d="M16.523 2H8.14301C4.50301 2 2.33301 4.17 2.33301 7.81V16.18C2.33301 19.83 4.50301 22 8.14301 22H16.513C20.153 22 22.323 19.83 22.323 16.19V7.81C22.333 4.17 20.163 2 16.523 2Z" fill="%23FE4113"/%3E%3Cpath d="M16.333 12.75H8.33301C7.92301 12.75 7.58301 12.41 7.58301 12C7.58301 11.59 7.92301 11.25 8.33301 11.25H16.333C16.743 11.25 17.083 11.59 17.083 12C17.083 12.41 16.743 12.75 16.333 12.75Z" fill="%23FE4113"/%3E%3C/svg%3E');
}

.comparison-inf li {
	position: relative;
	display: flex;
	align-items: center;
}

.comparison-inf li:nth-child(n+5):not(.active) {
	display: none;
}

.comparison-inf .comparison-value {
	font-weight: bold;
	margin-left: auto;
	text-align: right;
}

.comparison-inf li.inf-payments .comparison-value {
	display: flex;
	align-items: center;
	gap: 5px;
}

.comparison-inf li.inf-payments .meta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	min-width: 32px;
	min-height: 28px;
	max-height: 28px;
	color: #fff;
	font-size: 10px;
	white-space: nowrap;
	background: #000;
	border-radius: 4px;
}

.comparison-inf li.inf-payments .meta-icon img {
	width: 100%;
	height: 18px !important;
	object-fit: contain;
}

.comparison-inf li.inf-platforms .comparison-value {
	display: flex;
	align-items: center;
	gap: 12px;
}

.comparison-inf li.inf-platforms .meta-icon {
	font-size: 12px;
	white-space: nowrap;
}

.comparison-inf li.inf-platforms .meta-icon img {
	width: 24px;
	height: 24px !important;
	object-fit: contain;
}

.comparison-inf li.inf-countries .comparison-value {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px;
	background: #000;
	border-radius: 4px;
}

.comparison-inf li.inf-countries .comparison-value img {
	width: 24px;
	height: 16px !important;
	border-radius: 2px;
}

.comparison-inf li.inf-countries .comparison-value svg {
	width: 12px;
	height: 12px;
}

.meta-box {
	display: none;
	gap: 5px;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	right: 0;
	bottom: calc(100% + 5px);
	max-width: 100%;
	padding: 5px;
	background: #000;
	border-radius: 4px;
}

.meta-box .meta-icon {
	color: #fff;
	padding: 0 4px;
	font-size: 10px !important;
	background: #292929 !important
}

.read-more-tax {
	display: inline-block;
	background: none;
	font-weight: bold;
	font-size: 16px;
	color: #4F5357;
	padding: 0;
	border-bottom: 1px dashed #4F5357;
	cursor: pointer;
	line-height: 1.2;
	transition: all ease .1s;
}

.read-more-tax:hover {
	color: #0098F4;
	border-color: #0098F4;
	box-shadow: none;
}

.read-more-inf {
	background: none;
	font-weight: bold;
	font-size: 14px;
	color: #0098F4;
	padding: 0;
	border-bottom: 1px dashed #0098F4;
	cursor: pointer;
	line-height: 1.5;
	transition: all ease .1s;
}

.read-more-inf:hover {
	color: #0080CE;
	border-color: #0080CE;
	box-shadow: none;
}

@media (max-width: 1100px) {
	.single-room__header-bonus-flex .single-room__header-bonus--btns {
		max-width: 200px;
	}
}

@media (max-width: 991px) {
	.single-room {
		padding-bottom: 12px;
		margin-bottom: 25px;
	}

	.single-room__header {
		flex-wrap: wrap;
		row-gap: 10px;
		column-gap: 12px;
	}

	.single-room__header-aside {
		min-width: unset;
		max-width: unset;
	}

	.single-room__header-logo {
		height: 80px;
	}

	.single-room__header-aside .room-rating {
		position: absolute;
		top: 9px;
		right: 7px;
	}

	.single-room__header-btns {
		width: 100%;
		display: flex;
		gap: 12px;
	}

	.single-room__header-btn,
	.single-room__header-btns .cloudlink {
		flex: 1;
	}

	.single-room__header-btn--play {
		margin-bottom: 0;
	}

	.single-room__stats {
		flex-wrap: wrap;
		row-gap: 12px;
	}

	.single-room__stat {
		flex: 1 0 33%;
		max-width: unset;
		min-width: unset;
	}
}

@media (max-width: 576px) {
	.single-room__header-bonus {
		flex: 100%;
	}

	.single-room__header-bonus-flex {
		flex-wrap: wrap;
		padding: 6px 12px 12px 12px;
	}

	.single-room__header-bonus-flex .single-room__header-bonus--btns {
		max-width: 100%;
	}

	.single-room__header-bonus-flex .single-room__header-bonus--btn {
		margin-top: 12px;
	}

	.single-room__header-btn {
		min-width: unset;
		font-size: 16px;
		height: 40px;
		line-height: 40px;
	}

	.single-room__title {
		font-size: 18px;
	}

	.single-room__parametr {
		flex: 100%;
	}
}