
.booking.bigimage {
    width: 100%;
    height: calc(50vw * 9 / 16);
    background-color: #FFFFFF;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    border: 5px #FFFFFF solid;
}
.booking.object {
    display: block;
}
@media (min-width: 600px) {

    .booking.object {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin: 0 0 60px 0;
    }
    .booking.image-wrapper {
        width: 65%;
    }
    .booking.text {
        margin: 0 50px;
        width: 50%;
        display: flex;
        flex-direction: column;
    }
}

.booking.images {
    display: flex;
    flex-direction: row;
    flex: 0 1 25%;
    flex-wrap: wrap;
}

.booking.image {
    flex: 0 0 25%;
    flex-wrap: wrap;
    width: 100%;
    height: 10vh;
    background-color: #FFFFFF;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    border: 5px #FFFFFF solid;
}


.booking.text h1 {
    font-size: 24px;
}

.booking hr {
    background-color: #e9e9e9;
    height: 0.5px;
}

/* booking */
.bookinglist-latest > div {
    padding-top: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.bookinglist-latest .status-accepted {
    color: green;
}
.bookinglist-latest .status-denied {
    color: red;
}
.bookinglist-latest > div:last-child {
    border-bottom: 0;
}
