.cart-buttons.text-right a {
    padding: 0.3em 1em;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 8px;
}

.cart-buttons {
    margin-top: 15px;
}

.cart-sfl {
    margin-top: 1em;
}

@media only screen and (max-width: 576px) {
    .cart-table-row {
      grid-template-columns: 1fr 1fr !important;
    }

}

@media only screen and (max-width: 768px) {
  .cart-table-img {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .cart-totals-left {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .cart-totals-right {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 4;
    grid-row-end: 6;
  }
}

.cart-table-row:nth-last-child(1) {
  border-bottom: 1px solid #dddddd;
}

.cart-options {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0;
}

.cart-options:hover {
  -webkit-transition: color 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  color: #F44336;
}

.cart-table-item {
  font-size: 24px;
  margin-bottom: 0;
}

.cart-table-item a {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  letter-spacing: 1px;
}

.cart-table-item a:hover {
  -webkit-transition: color 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  color: #007bff;
}

.cart-i {
  font-size: 12px;
}

.cart-table-description {
  width: 100%;
  letter-spacing: 1px;
}

.cart-table-subtotal {
  color: #689F38 !important;
}

.cart-totals {
    background: #e3e3e3 !important;
}

.cart-totals-subtotal {
  text-align: right;
}

.cart-totals-total {
  color: #689F38;
  font-size: 1.5em !important;
}

.cart-totals-label {
  text-align: right;
}

.might-like-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.might-like-grid a {
  text-decoration: none;
  color: #000000;
}

.might-like-grid .item {
  padding: 0.5em;
}

@media only screen and (max-width: 768px) {
  .might-like-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.might-like-product-name {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.might-like-product-description {
  letter-spacing: 1px;
  margin-bottom: 0;
  padding-bottom: 0.5em;
}

.might-like-product-price {
  font-weight: 700;
  margin-bottom: 0;
}


@media only screen and (max-width: 768px) {
  .checkout-section {
    grid-template-columns: 1fr !important;
  }

  .checkout-table-container {
    padding-top: 2em;
    grid-row: 1;
  }
}

#half-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.checkout-table-row {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  grid-gap: 10px;
  margin: 15px 0px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.checkout-table-row:nth-last-child(1) {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.checkout-totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.checkout-totals p {
  margin-bottom: 0.3em;
}

.checkout-totals-right {
  text-align: right;
}

.checkout-item-details p {
  margin-bottom: 0;
}

.checkout-item-details .checkout-table-item {
  font-weight: 700;
}

.checkout-table-price {
  font-weight: 700;
}

.checkout-totals-total {
  font-weight: 700;
  font-size: 24px;
}

.checkout-totals-price {
  font-weight: 700;
  font-size: 24px;
  color: #689F38;
}

.dropdown-menu {
    left: -24px;
    border-radius: 0.5rem;
  }
  
  .dropdown-menu .dropdown-item:hover {
    background-color: #007bff;
  }