//
//  Common
//  _____________________________________________

& when (@media-common = true) {

    .checkout-index-index {
        .authentication-wrapper {
            display: none;
        }
    }

    //
    //  Order Summary
    //  ---------------------------------------------

    .opc-block-summary {

        //
        //  Items list
        //  ---------------------------------------------

        //  Block title
        .items-in-cart {
            > .title {
                strong {
                    font-weight: @font-weight__regular;
                }
            }
        }
    }
}


//
//  Mobile
//  _____________________________________________

.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__m) {
    // Global messages.
    .checkout-cart-index .page-main .messages {
        padding-left: 15px;
        padding-right: 15px;
    }
}


//
//  Desktop
//  _____________________________________________

.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen__m) {
    .checkout-index-index {
        .page-header .header.content .header-account {
            border-right: 1px solid @djo-header-border-color;
        }
    }
    // Global messages.
    .checkout-cart-index .page-main .messages {
        max-width: 1250px;
    }
}
