.sidebar-room {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 12px;
	padding: 12px;
	background: #F0F0F0;
}

.sidebar-room__logo {
	position: relative;
	min-width: 80px;
	max-width: 80px;
	height: 80px;
	background: #000;
	padding: 0 5px;
	border-radius: 12px;
	display: block;
}

.sidebar-room__logo img {
	width: 100%;
	height: 100% !important;
	object-fit: contain;
	border-radius: 12px;
	transition: transform ease .2s;
}

.sidebar-room__logo:hover img {
	transform: scale(.95);
}

.sidebar-room__logo .room-rating {
	position: absolute;
	top: 0;
	right: 0;
	line-height: 14px;
	pointer-events: none;
	user-select: none;
}

.sidebar-room__logo .room-rating svg:not(:first-child) {
	display: none;
}

.sidebar-room__bonus {
	flex: 1;
	font-size: 17px;
	font-weight: bold;
	color: #000;
	line-height: 23px;
}

.sidebar-room__btns {
	width: 100%;
	display: flex;
	align-items: center;
	column-gap: 10px;
	row-gap: 8px;
	flex-wrap: wrap;
}

.sidebar-room-btn {
	display: block;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	border-radius: 4px;
}

.sidebar-room-btn--review {
	min-width: 65px;
	color: #0080CE;
	border: 1px solid #0080CE;
	order: 0;
}

.sidebar-room-btn--review:hover {
	color: #fff;
	background: #0080CE;
}

.sidebar-room .btn-promocode:empty {
	display: none;
}

.sidebar-room .btn-promocode {
	flex: 1;
	order: 1;
}

.sidebar-room-btn--review {
	flex: 0;
	order: 0;
}

.sidebar-room .btn-promocode:empty ~ .sidebar-room-btn--review {
	flex: 1;
}

.sidebar-room-btn--play:not(:empty) {
	order: 1;
}

.sidebar-room-btn--play:not(:empty) ~ .btn-promocode {
	order: 0;
}

.sidebar-room-btn--play:not(:empty) ~ .sidebar-room-btn--review {
	flex: 1;
	order: 3;
}

.sidebar-room-btn--play {
    min-width: 95px;
    color: #fff;
    background: #FAAB00;
}

.sidebar-room-btn--play:hover {
    background: #eea300;
    color: #fff;
}

@media (min-width: 900px) and (max-width: 1100px) {
	.sidebar-room__btns .btn-promocode::after {
		right: 20px;
	}
}