.header-logo-image-container {
  line-height: 1; }

.header-logo-image {
  max-height: 100px; }

.only-desktop {
  display: none; }
  @media (min-width: 1025px) {
    .only-desktop {
      display: block; } }

@media (min-width: 1025px) {
  .only-mobile {
    display: none; } }

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box; }
  @media (min-width: 551px) {
    .container {
      padding: 39px; } }

.space-42 {
  margin-bottom: 3rem; }

.layout {
  color: #555;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 -20px; }
  .layout .layout-main,
  .layout .layout-cart {
    padding: 0 20px; }
  .layout .layout-main.error {
    text-align: center;
    margin: 0 auto; }
  @media (min-width: 1025px) {
    .layout {
      flex-direction: row; }
      .layout .layout-main {
        max-width: 600px; }
      .layout .layout-cart {
        max-width: 400px; } }

.cart {
  min-height: 300px;
  margin: 42px 0;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(240, 240, 240, 0.5); }

.cart-header {
  display: block;
  width: 100%;
  padding: 20px; }
  .cart-header .cart-title {
    font-size: 22px;
    margin: 0; }
    @media (min-width: 1025px) {
      .cart-header .cart-title {
        font-size: 15px; } }

.cart-section {
  border-top: 1px solid #ebebeb;
  padding: 20px; }
  .cart-section .cart-section-heading {
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 20px; }
    @media (min-width: 1025px) {
      .cart-section .cart-section-heading {
        font-size: 13px; } }

.productList {
  list-style: none;
  padding: 0;
  margin: 0; }
  .productList .productList-item {
    margin-bottom: 20px; }

.product {
  font-size: 15px;
  display: flex;
  flex-wrap: nowrap; }
  @media (min-width: 1025px) {
    .product {
      font-size: 13px; } }
  .product .product-figure {
    order: 1;
    width: 25%;
    padding-right: 10px;
    margin: 0; }
    .product .product-figure img {
      display: inline-block;
      height: auto;
      max-width: 100%;
      vertical-align: middle; }
  .product .product-body {
    order: 2;
    width: 50%;
    word-wrap: break-word;
    padding-right: 10px; }
    .product .product-body .product-title {
      font-size: 15px;
      margin: 0; }
      @media (min-width: 1025px) {
        .product .product-body .product-title {
          font-size: 13px; } }
    .product .product-body p {
      margin: 0; }
    .product .product-body .product-options {
      display: none;
      list-style: none;
      margin: 0;
      padding: 0; }
  .product .product-actions {
    order: 3;
    width: 25%;
    align-self: flex-start;
    text-align: right;
    word-wrap: break-word; }

.cart-priceItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 10px; }
  @media (min-width: 1025px) {
    .cart-priceItem {
      font-size: 13px; } }
  .cart-priceItem.cart-priceItem--total .cart-priceItem-label {
    font-size: 17px; }
    @media (min-width: 1025px) {
      .cart-priceItem.cart-priceItem--total .cart-priceItem-label {
        font-size: 15px; } }
  .cart-priceItem.cart-priceItem--total .cart-priceItem-value {
    font-size: 32px;
    font-weight: bold; }
    @media (min-width: 1025px) {
      .cart-priceItem.cart-priceItem--total .cart-priceItem-value {
        font-size: 30px; } }
  .cart-priceItem.cart-priceItem--shipping {
    margin-bottom: 0; }
