.bg_detail{
    background-image: url("../imgs/detail.png");
}
.height_50{
    height: 50%;
}
.height_100{
    height: 100%;
}
.room_detail_small{
    height: 50%;
}
.border_r{
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    width: 100%;
  
}
.border_r img{
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}
.room_detail_tab{
    border: 2px solid rgba(0,0,0,0.4);
    border-radius: 5px;
}
.room_detail_tab_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.room_title_tab{
    font-size: 22px;
    font-weight: 600;
}
.room_detail_tab_content{
    padding: 10px 15px;
}
.room_detail_tab_content:nth-child(odd){
    background-color: rgba(0,0,0,0.1);
}
.room_detail_tab_content:nth-child(even){
    background-color: rgba(180, 180, 180, 0.1);
}
.book_btn_d{
    background-color: var(--color-black);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    padding: 18px 50px;
    cursor: pointer;
    transition: 0.3s;
}
.book_btn_d:hover{
    background-color: var(--color-golden);
    color: var(--color-black);
}
@media screen and (max-width: 568px){
    .room_title_tab {
        font-size: 12px;
    }
    .room_detail_tab_content {
    padding: 8px 15px;
}
.book_btn_d{
    padding: 14px 30px;
}    
}