﻿.booking {
    min-height: 75px;
    border-radius: 1.2em 0px 1.2em 1.2em;
    margin: auto;
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
    flex-direction: row;
    padding: 8px;
    background-color: white;
    border: 1px solid #e7e7e7;
}

@media(max-width: 768px) {
    .booking {
        min-width: unset;
        flex-direction: column;
    }

        .booking .divider {
            margin-right: 15px;
            margin-left: 5px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

    .bookings-container {
    }

    .bookings-container-body {
        overflow-x: hidden;
        max-height: 100vh;
    }

        .bookings-container-body .details.options .btn {
            width: 75px !important;
            padding: 8px;
            height: 50px;
            font-size: 12px;
        }

        .bookings-container-body .details.options {
            flex-direction: row;
            width: 100%;
            justify-content: center;
        }

    .bus {
        zoom: 1 !important;
    }
}

.bookings-container-body {
    overflow-y: auto;
    max-height: 100vh;
    overflow-y: auto;
    padding: 8px;
}

    .bookings-container-body .details {
        flex-direction: column;
        display: flex;
        align-items: start;
        min-width: 160px;
    }

        .bookings-container-body .details.options {
            max-height: 100px;
            flex-wrap: wrap;
        }

            .bookings-container-body .details.options .btn {
                width: 150px;
            }

.booking .divider {
    display: flex;
    align-self: stretch;
    padding: 1px;
    margin-right: 15px;
    margin-left: 5px;
    background-color: #d6d6d68f;
}

.booking-confirmed .booking-id {
    background-color: #009688;
}

.booking-temp .booking-id {
    background-color: #E91E63;
}

.booking-cancelled .booking-id, .booking-delayed .booking-id {
    background-color: #FF9800;
}
