﻿.columns {display:flex; justify-content:space-between; align-items:flex-start;}
.columns .column {width:48%;}

.order-sheet-preview {
    padding: 10px;
    background-color: #fff;
    margin-bottom: 10px;
}
.product-name {
    font-weight: 700;
}
.product-description {
    font-size: 0.8em;
    margin-bottom: 10px;
}
.cart {
    background-color: #ffffff;
    padding: 10px;
}
.cart-item {
    border-bottom: 1px solid #ddd;
    padding: 5px;
    display: flex;
    align-items: center;
}
.cart-item.total-row {
    font-weight: 700;
}
.cart-item-text{
}
.cart-item-price {
    width: 65px;
    text-align: right;
    margin-left: auto;
}
.cart-delete {
    color: #c30000;
    font-weight: 700;
    width: 20px;
    height: 20px;
    line-height: 20px;
    flex: none;
    cursor: pointer;
    text-align: center;
    margin-left: 20px;
}
.shipping-row .cart-item-price,
.total-row .cart-item-price {
    margin-right: 40px;
}
.order-address {
    background-color: #ffffff;
    padding: 10px;
}
.product-preview-image {
    max-width: 100%;
    margin: 10px 0;
}
.add-to-cart-button {
    margin: 20px 0;
}
@media only screen and (max-width: 781px) {
    .columns {flex-wrap:wrap;}
    .columns .column {width:100%;}
}