#checkout {
    padding: 40px;
    background-color: #fff;
    padding: 40px;
    font-size: 1.4rem;
}
#checkout input, select {
    padding: 12px 10px;
    border-radius: 0;
    font-size: 1.4rem;
}
#checkout input:focus, select:focus {
    border-color: #14a3e8;
    box-shadow: inset 0 1px 0 0 rgba(63,63,68,0.05);
}

#checkout h1 {
    font-weight: normal;
    font-size: 2.0rem;
    margin: 0;
}

#checkout .product-list {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
    #checkout .product-list .row {
        display: table-row;
        border-bottom: 1px #eee solid;
    }
    #checkout .product-list .row:last-child {
        border-bottom: 1px #fff solid;
    }
    #checkout .product-list .column {
        display: table-cell;
        padding: 8px;
        vertical-align: middle;
    }
    #checkout .product-list .column.thumbnail {
        width: 54px;
        height: 54px;
        overflow: hidden;
    }
    #checkout .product-list .column.thumbnail img {
        width: 100%;
        height: auto;
        display: block;
    }
    #checkout .product-list .column .icon {
        cursor: pointer;
    }
    #checkout .product-list .column.center { text-align: center; }

    #checkout .product-list .product-item .quantity {
        padding: 10px;
        padding-left: 20px;
        width: 50px;
    }
