#checkout-body {
  .order-items {
    .item {
      display: grid;
      grid-template-columns: 0.5fr 1fr;
      grid-column-gap: 0.75rem;
      margin-bottom: 2rem;
      font-size: 15px;
    }

    .item-photo {
      grid-row-start: 1;
      grid-row-end: -3;
      img {
        height: 94px
      }
    }

    .item-price {
      font-size: 1.0625em;
      font-weight: 600;
      margin-right: 0.5rem;
    }

    .item-price-strike {
      text-align: right;
      text-decoration: line-through;
      color: lightgray;
      font-size: 0.875em;
    }
  }
}

