.room-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.room-item__achievement {
	width: 100%;
	line-height: 1;
}

.room-item__achievement span {
	display: inline-block;
	min-width: 163px;
	max-width: 163px;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	background: #0080CE;
	line-height: 16px;
	text-align: center;
}

.room-item__logo {
	display: block;
	min-width: 163px;
	max-width: 163px;
	background: #000;
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.room-item__logo img {
	width: 100%;
	height: 96px !important;
	object-fit: contain;
	transition: transform ease .2s;
}

.room-item__logo:hover img {
	transform: scale(.95);
}

.room-item__body {
	flex: 1;
	padding: 12px;
	background: #F1F1F1;
}

.room-item__body--header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 10px;
	border-bottom: 1px solid #D3D3D3;
}

.room-item a.room-item__body--name {
	font-size: 18px;
	color: #50575E;
	font-weight: bold;
	text-decoration: none;
	line-height: 18px;
}

.room-item a.room-item__body--name:hover {
	color: #50575E;
}

.room-item__body--name span {
	color: #0080CE;
	border-bottom: 1px solid transparent;
	transition: all ease .1s;
}

.room-item__body--name:hover span {
	color: #009eff;
	border-color: #009eff;
}

.room-item__body--header.no-recomend .room-item__body--name span {
	color: #FF5756;
}

.room-item__body--header.no-recomend .room-item__body--name:hover span {
	color: #FF5756;
	border-color: #FF5756;
}

.room-item__body--header.no-recomend .room-rating {
	background: #FF5756;
}

.room-item__body--bonuses:not(:last-child) {
	margin-bottom: 8px;
}

.room-item__body--bonus {
	margin: 12px 0;
}

.room-item__body--bonuses {
	display: flex;
	align-items: center;
	gap: 8px;
}

.room-item__body--bonuses-value {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	color: #50575E;
	font-weight: bold;
	line-height: 21px;
	margin-right: auto;
}

.room-item__body--bonuses-value svg {
	min-width: 24px;
	max-width: 24px;
	height: 24px;
	color: #0080CE;
}

.room-item__body--bonuses-value-not {
	color: #787878;
	font-weight: normal;
}

.room-item__body--bonuses-value-not svg {
	color: #787878;
}

.room-item__body--bonuses-label {
	font-size: 12px;
	color: #787878;
	font-weight: bold;
	text-transform: uppercase;
	white-space: nowrap;
}

.room-item__btns {
	display: flex;
	align-items: center;
	gap: 16px;
}

.room-item__btn {
	display: block;
	text-align: center;
	height: 44px;
	font-size: 14px;
	font-weight: bold;
	border-radius: 4px;
}

.room-item a.room-item__btn {
	line-height: 44px;
	text-decoration: none;
}

.room-item a.room-item__btn--review {
	min-width: 65px;
	color: #0080CE;
	border: 1px solid #0080CE;
}

.room-item a.room-item__btn--review:hover {
	color: #fff;
	background: #0080CE;
}

.room-item__promocode {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	max-height: 44px;
	padding: 2px 2px 2px 12px;
	background: rgba(0, 128, 206, .15);
	color: #0080CE;
	font-size: 14px;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
}

.room-item__promocode--text {
	position: relative;
	line-height: 18px;
	padding-right: 36px;
}

.room-item__promocode--text::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    width: 36px;
    height: 36px;
    background-image: url(../../img/cursor-bg.png);
    background-size: 32px;
    background-position: center;
}

.room-item__btn--promocode {
	margin-left: auto;
	align-self: stretch;
	min-width: 104px;
	height: auto;
	background: #0098F4;
	color: #fff;
	padding: 0;
}

.room-item__promocode:hover .room-item__btn--promocode {
	background: #0080CE;
	box-shadow: none;
}

.room-item__btns .cloudlink {
	margin-left: auto;
}

.room-item a.room-item__btn--play {
    min-width: 95px;
    color: #fff;
    background: #FAAB00;
}

.room-item a.room-item__btn--play:hover {
    background: #eea300;
    color: #fff;
}

.room-item__body-no-recomend {
	margin: 12px 0 8px;
}

.room-item__body-no-recomend--header {
	position: relative;
    padding: 2px 5px;
    background: #F05A36;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
    text-transform: uppercase;
}

.room-item__body-no-recomend--header::before, 
.room-item__body-no-recomend--header::after {
    content: '';
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background-image: url(../../img/line-rotate.svg);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    user-select: none;
}

.room-item__body-no-recomend--header::before {
    left: 5px;
}

.room-item__body-no-recomend--header::after {
    right: 10px;
}

.room-item__body-no-recomend--body {
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    padding: 12px;
    line-height: 16px;
}

.room-item__body-no-recomend--body svg {
	min-width: 30px;
	max-width: 30px;
	height: 30px;
}

@media (max-width: 1100px) {
	.room-item__btns {
		flex-wrap: wrap;
		column-gap: 10px;
		row-gap: 12px;
	}

	.room-item a.room-item__btn--review {
		order: 1;
	}

	.room-item__promocode {
		flex: 100%;
		order: 0;
	}

	.room-item__btns .cloudlink {
		order: 2;
	}

	.room-item a.room-item__btn--review,
	.room-item__btns .cloudlink {
		flex: 1;
	}
}

@media (max-width: 600px) {
	.room-item {
		display: block;
	}

	.room-item__logo {
		min-width: unset;
		max-width: unset;
		height: 96px;
	}

	.room-item__logo img {
		height: 100% !important;
	}

	.room-item__body--bonuses-label {
		display: none;
	}

	.room-item__promocode {
		max-height: unset;
	}
}