 .aside-rooms--hide-mob {
 	display: none;
}

.aside-rooms--hide-lg {
	background: #2E2E38;
	padding: 20px;
	margin-top: 20px;
}

.aside-rooms__h2 {
    position: relative;
    font-size: 17px;
    line-height: 17px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    padding-bottom: 9px;
    margin-bottom: 12px;
}

.aside-rooms__h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30%;
    height: 2px;
    border-bottom: 2px solid #4AA44B;
    pointer-events: none;
    user-select: none;
}

.aside-rooms {
    margin-bottom: 30px;
}

.aside-room {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px;
    color: #000;
    background: #fff;
    font-size: 16px;
    font-weight: bold;
}

.aside-room svg:not([class]) {
    display: none;
}

.aside-room:not(:last-child) {
    margin-bottom: 12px;
}

.aside-room__logo {
    display: block;
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    align-self: center;
    background: #000;
    transition: padding ease .2s;
}

.aside-room__logo:hover {
    padding: 0 3px;
}

.aside-room__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aside-room__body {
    flex: 1;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.aside-room__title {
    transition: all ease .15s;
}

.aside-room__title:hover {
    color: #F13720;
}

.aside-room__rating {
    margin-left: auto;
    padding: 0 8px;
    color: #fff;
    background: #4BA053;
    border-radius: 2px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.aside-room__rating-star {
    width: 16px;
    height: 16px;
    color: #fff;
}

.aside-room__bonus {
    width: 100%;
    color: #F13720;
    margin-top: 8px;
    line-height: 1.3;
}

.aside-room__buttons {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.aside-room__button {
    flex: 1;
}

.aside-room__btn {
    flex: 1;
}

.aside-room__btn:empty {
    display: none;
}

.aside-room__btn a {
    display: block;
    background: #F13720;
    color: #fff;
    height: 42px;
    line-height: 42px;
    padding: 0 15px;
    text-align: center;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.14);
}

.aside-room__btn a:hover {
    background: #e51900;
}

@media (max-width: 576px) {
    .aside-room__copy {
        width: 20px;
        height: 22px;
    }
}

@media (min-width: 970px) {
    .aside-rooms--hide-lg {
        display: none;
    }
    .aside-rooms--hide-mob {
        display: block;
    }
}