.checkout-page {
    background: #f6f6f6;
    border-top-width: 1px;
    border-top-style: solid;
}

.checkout-page .inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
}

.checkout-left {
    flex-grow: 1;
    flex-shrink: 1;
    background: #fff;
    border-radius: 6px;
}
.checkout-right {
    width: 35%;
    margin-left: 20px;
    background: #fff;
    border-radius: 6px;
}

.checkout-left,
.checkout-right {
    padding: 30px;
    box-sizing: border-box;
}

.checkout-left > h1,
.checkout-right > h1 {
    margin: 0;
    padding: 0;
    font-size: 25px;
}

.payment-methods {
    margin-top: 30px;
}
.payment-method {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    padding: 15px 20px;
    border: 1px solid #ADBCC4;
    border-radius: 6px;
    cursor: pointer;
}
.payment-method:first-child {
    margin-top: 0;
}
.payment-method input[type="radio"] {
    width: 1.2em;
    height: 1.2em;
}
.payment-method .method-name {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 500;
}
.payment-method.online-payments {
    background: transparent url(../images/cards.png) no-repeat right center;
}
.payment-method.bank-transfer {
    background: transparent url(../images/bacs.png) no-repeat right center;
}

.delivery-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 40px;
    padding: 15px 15px 15px 20px;
    border: 1px solid #ADBCC4;
    border-radius: 6px;
}
.delivery-date > h3 {
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0;
}
.delivery-date > select {
    width: 240px;
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 18px;
}

.order-notes {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    padding: 15px 20px;
    border: 1px solid #ADBCC4;
    border-radius: 6px;
}
.order-notes textarea {
    flex-grow: 1;
    flex-shrink: 1;
    border: none;
    resize: vertical;
}

.send-order {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}
.send-order button {
    padding: 15px 25px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.checkout-summary {
    margin-top: 30px;
}
.checkout-summary .items {
    max-height: 300px;
    overflow: auto;
}
.checkout-summary .items .item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-top: 1px solid #eee;
}
.checkout-summary .items .item .name-price {
    display: flex;
    flex-direction: row;
    font-size: 15px;
    font-weight: 500;
}
.checkout-summary .items .item .name-price .name {
    flex-grow: 1;
    flex-shrink: 1;
}
.checkout-summary .items .item .name-price .name > div {
    color: #06d;
}
.checkout-summary .items .item .name-price .name > div:first-child {
    color: #000;
}
.checkout-summary .items .item .name-price .price {
    white-space: nowrap;
}

.checkout-summary .items .item .name-price-pant {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    font-size: 14px;
}
.checkout-summary .items .item .name-price-pant .name {
    flex-grow: 1;
    flex-shrink: 1;
}
.checkout-summary .items .item .name-price-pant .price {}

.checkout-summary .items-summary {
    padding: 10px 0;
    border-top: 2px solid #ddd;
}
.checkout-summary .items-summary .summary-row {
    display: flex;
    flex-direction: row;
    padding: 5px 0;
    font-size: 16px;
}
.checkout-summary .items-summary .summary-row label {
    flex-grow: 1;
    flex-shrink: 1;
}
.checkout-summary .items-summary .summary-row > div {
}
.checkout-summary .items-summary .subtotal {}
.checkout-summary .items-summary .discount {}
.checkout-summary .items-summary .discount > div {
    text-decoration: line-through;
}
.checkout-summary .items-summary .service {}
.checkout-summary .items-summary .vat {}
.checkout-summary .items-summary .shipping {}
.checkout-summary .items-summary .total {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .checkout-page .inner {
        flex-direction: column;
    }
    .checkout-right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .payment-method.online-payments,
    .payment-method.bank-transfer {
        background-size: 30%;
    }
}
