/* RELATED ACCOMMODATION */
    .related-accommodation {
        background: #F7F7F7;
        padding: 20px 10px;
    }
    .related-accommodation > .title {
        font-size: 14px;
        line-height: 19px;
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
    .related-accommodation > .room {
        display: flex;
        background: #FFFFFF;
        border: 1px solid #C5C5C5;
        margin-bottom: 10px;
    }
    .related-accommodation > .room:last-of-type { margin-bottom: 0; }
    .related-accommodation > .room > .photo {
        height: 130px;
        width: 140px;
        position: relative;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .related-accommodation > .room > .photo > .content-overlay {
        height: 53px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: #fff;
        background-image: linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, #000000 99%);
    }
    .related-accommodation > .room > .photo > .content-overlay > .name {
        font-size: 15px;
        position: absolute;
        left: 10px;
        bottom: 10px;
        color: #fff;
    }
    .related-accommodation > .room > .photo > .content-overlay > .name:hover {
        text-decoration: underline;
    }


    .related-accommodation > .room > .info {
        flex: 1;
        padding: 15px;
        color: #333;
        position: relative;
    }
    .related-accommodation > .room > .info > .capacity {
        line-height: 19px;
        margin-bottom: 10px;
        display: flex;
    }
    .related-accommodation > .room > .info > .capacity > .icon {
        display: flex;
        margin-right: 7px;
    }
    .related-accommodation > .room > .info > .capacity > .icon > i {
        font-size: 19px;
        margin-right: 1px;
        color: #999;
    }
    .related-accommodation > .room > .info > .bedding {
        display: flex;
    }
    .related-accommodation > .room > .info > .bedding > .icon {
        color: #999;
        margin-right: 8px;
    }
    .related-accommodation .dual-button {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 40px;
        border: 1px solid #C5C5C5;
        background: #fff;
    }
    .related-accommodation .dual-button > .button {
        text-align: center;
        flex: 1;
        line-height: 40px;
        color: #333;
        font-size: 13px;
        font-weight: 600;
        border-right: 2px solid #c5c5c5;
        transition: background .15s;
    }
    .related-accommodation .dual-button > .button:hover { background: #D9D9D9; }
    .related-accommodation .dual-button > .button.grey {
        border-right: none;
        background: #7C7C7C;
        color: #fff;
    }
    .related-accommodation .dual-button > .button.grey:hover { background: #474747; }
