/* Global settings */
body {
    padding: 0px 30px 30px 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
  }
  
  h1 {
    font-weight: 100;
  }
  
  label {
    color: #aaa;
  }
  ion-icon{
    color: #ff6e61;
  }
  
  /* Column headers */
  .column-labels label {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .column-labels .product-image,
  .column-labels .product-details,
  .column-labels .product-removal {
    text-indent: -9999px;
  }
.swal2-styled{
    background-color: #ff6e61;
  }
  /* Product entries */
  .product {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .product .product-image {
    text-align: center;
  }
  
  .product .product-image img {
    width: 100px;
  }
  
  .product .product-details .product-title {
    margin-right: 20px;
    font-family: 'Roboto', sans-serif;
  }
  
  .product .product-details .product-description {
    margin: 5px 20px 5px 0;
    line-height: 1.4em;
  }
  
  .product .product-quantity input {
    width: 40px;
  }
  
  .product .remove-product {
    border: 0;
    padding: 4px 8px;
    background-color: #ff6e61;
    padding: 8px;
    margin-top:10px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    border-radius: 3px;
  }
  
  .product .remove-product:hover {
    background-color: #a44;
  }
  
  /* Totals section */
  .totals .totals-item {
    float: right;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .totals .totals-item label {
    float: left;
    clear: both;
    width: 79%;
    text-align: right;
  }
  
  .totals .totals-item .totals-value {
    float: right;
    width: 21%;
    text-align: right;
    margin-right: 10px;
  }
  
  .totals .totals-item-total {
    font-family: 'Roboto', sans-serif;
  }
  
  .checkout {
    float: right;
    border: 0;
    margin-top: 20px;
    padding: 6px 25px;
    background-color: #ff6e61;
    color: #fff;
    font-size: 25px;
    border-radius: 3px;
  }
  
  .checkout:hover {
    background-color:#ff6e61;
  }
  
  /* Make adjustments for tablet */
  @media screen and (max-width: 650px) {
    .shopping-cart {
      margin: 0;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }
  
    .column-labels {
      display: none;
    }
  
    .product-image {
      float: right;
      width: auto;
    }
  
    .product-image img {
      margin: 0 0 10px 10px;
    }
  
    .product-details {
      float: none;
      margin-bottom: 10px;
      width: auto;
    }
  
    .product-price {
      clear: both;
      width: 70px;
    }
  
    .product-quantity {
      width: 100px;
    }
  

  
    .product-removal {
      width: auto;
    }
  
    .product-line-price {
      float: right;
      width: 70px;
    }
  }
  
  /* Make more adjustments for phone */
  @media screen and (max-width: 350px) {
    .product-removal {
      float: right;
    }
  
    .product-line-price {
      float: right;
      clear: left;
      width: auto;
      margin-top: 10px;
    }
  
    .product .product-line-price:before {
      content: 'Item Total: $';
    }
  
    .totals .totals-item label {
      width: 60%;
    }
  
    .totals .totals-item .totals-value {
      width: 40%;
    }
  }

  
  