#meal-plans {
    padding: 0 20px 100px;
}

.order-section {
    display: flex;
    flex-direction: column;
    border: none;
}

.address-wrapper,
.summary-wrapper {
    padding: 20px 20px 0;
}

.order-section h2,
.address {
    margin: 0;
    text-align: left;
}

.date-time-wrapper {
    margin-top: 12px;
    display: flex;
    gap: 20px;
}

.order-section select {
    background-color: #fff;
    color: #000;
    font-family: monospace;
}

.address-wrapper {
    flex-grow: 1;
    text-align: left;
}

.address-wrapper h2:not(:first-child){
    margin-top: 20px;
}

.booking-link {
    font-weight: bold;
    color: var(--color-primary);
}

.booking-link:hover {
    text-decoration: underline;
}

#date-picker {
    margin: 12px 0 24px;
}

.address {
    margin-top: 12px;
}

.address input[type="text"] {
    display: flex;
    width: 100%;
    text-indent: 5px;
}

.input-row,
.input-wrapper,
.input-wrapper input,
select {
    display: flex;
}

.col-2,
.col-3 {
    flex-direction: column;
}

@media screen and (min-width: 670px) {

    .order-section {
        flex-direction: row;
    }


}

@media screen and (min-width: 1200px) {

    #meal-plans {
        padding: 0 100px 100px;
    }

    .col-2,
    .col-3 {
        flex-direction: row;
        gap: 20px;
    }

}

.input-row {
    justify-content: space-between;
    box-sizing: none;
}

.input-wrapper {
    flex-direction: column;
    box-sizing: none;
    width: 100%;
    padding: 0;
}

.input-wrapper label {
    margin-top: 5px;
}

.input-wrapper input {
    margin: 0;
}

.summary-wrapper {
    width: 360px;
    position: relative;
    margin: 0 auto;
}

.summary {
    box-shadow: 0 15px 15px 1px rgba(12, 76, 53, .1);
    border-radius: 0 20px 0 20px;
    border: solid 2px var(--color-primary);
}

.summary img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.summary-plan {
    background-color: var(--color-complimentary);
    min-height: 100px;
    border-radius: 0 20px 0 20px;
    padding: 10px;
}

.summary-plan-title {
    margin: 0 0 12px;
    font-size: 24px;
    text-decoration: underline;
}

.summary-meal-plan,
.item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    min-height: 100px;
}

.meal-plan-type,
.item-qty {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
}

.summary-meal-imgs {
    display: flex;
    align-items: center;
}

.summary-meal-imgs img {
    margin-right: -40px;
    border: 2px solid var(--color-primary);
    transform: rotate(15deg);
    background-color: #fff;
}

.summary-items {
    padding: 10px;
    max-height: 242px;
    position: relative;
    flex-direction: column;
    border-radius: 0 20px 0 20px;
    overflow-y: auto;
}

/* if there are more than 3 summary items add scroll */


.item-img img {
    width: 80px;
    height: 80px;
}

.item-text {
    display: block;
    font-size: 16px;
    width: 75%;
    color: rgb(0, 0, 0, 0.8);
    text-align: left;
}

.item-text b,
.total-name {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: bold;
}

.checkout-divider {
    margin: 32px 40px 24px;
    border-radius: 2px;
    border: solid 1px rgb(156, 163, 175, 0.2);
}

.checkout-totals {
    display: block;
}

.checkout-totals li {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.total-cost {
    font-weight: bolder;
}

.checkout-btn {
    margin: 10px auto;
    font-size: 20px;
    font-weight: bold;
}