.room_card_list{
    padding-left: 16px;
    padding-top: 16px;
}

.room_card_holder{
    padding-right: 16px;
    padding-bottom: 16px;
    transition: all 0.23s;
}

.room_card{
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: none;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    background: white;
}

.room_card:hover,
.room_card.active{
    border-radius: 4px;
    border: none;
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,.07);
    box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,.07);
}

.room_card .room_card_image{
    width: 100%;
    height: calc((((100vw/4) - 32px)/4)*3); /* 4:3 aspect ratio */
    background-color: #f5f5f5;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.room_card .room_card_image{
    min-width: 100%;
    height: 0;
    padding-top: 75%; /* 4:3 aspect ratio | padding-top is relative to width. 3/4 = 0.75 */
}

.room_card .room_card_content{
    padding: 32px;
    flex: 1 1 auto;
    cursor: pointer;
    position: relative;
}

.room_card .room_card_content h2{
    font-size: 18px;
    margin: 0;
    padding: 0;
    padding-bottom: 4px; /* otherwise it cuts characters that go below baseline */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(0,0,0,0.89);
    transition: all 0.35s ease;
}

.room_card:hover .room_card_content h2{
    color: #187aed;
}

.room_card .room_card_content .item_row{
    display: block;
    width: 100%;
    padding-bottom: 16px;
}

.room_card .room_card_content .item_row.last_row{
    display: block;
    width: 100%;
    padding-bottom: 0px;
}

.room_card .heart{
    top: unset;
    right: 32px;
    bottom: 32px;
}

.room_card .instruments{
    font-size: 16px;
    font-weight: 700;
    color: rgba(0,0,0,0.54);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 48px;
    margin: 0;
}

.room_card .room_card_rating{
    margin-left: -6px;
}

.room_card .room_card_rating .rating-container .filled-stars .star{
    /* star color */
}

.room_card .room_card_rating .room_card_rating_text{
    color: rgba(0,0,0,0.36);
    font-size: 14px;
    margin-top: 3px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 5px;
}

.room_card .search_results_rating .rating{
    min-width: 100px;
    margin: 0;
}

.room_card .rating-loading{
    min-width: 100px;
}

.room_card .room_card_price{
  position: absolute;
  right: 16px;
  background-color: white;
  padding: 14px 22px;
  margin-top: -58px;
  width: auto;
  background-color: #1B72D3;
  color: white;
  z-index: 99;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 2px 4px rgba(24,122,237,0.1);
  box-shadow: 0px 2px 4px rgba(24,122,237,0.1);
  transition: all 0.35s ease;
}

.room_card:hover .room_card_price{
    background-color: white;
    color: #1B72D3;
}

/* Card for unavailable rooms (showed at the bottom of search results) */
.room_card.room_card_unavailable .room_card_price{
    display: none;
}

.room_card.room_card_unavailable .new-heart-icon{
    /*display: none;*/
}

.room_card.room_card_unavailable .room_card_rating{
    /* display: none; */
}

.room_card .skip_show{
    display: block !important;
}


