/* Shop - Base */
.shop {
  font-family: inherit;
}

.shop h1,
.shop h2,
.shop h3,
.shop h4,
.shop h5,
.shop h6 {
  font-family: poppins, Arial, sans-serif;
}

/* Theme overrides */
.form-label {
  color: #777;
  font-size: 0.875rem;
}

.row {
  --bs-gutter-y: 1.5rem;
}

/* Checkout Options List */
.checkout-options-list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 5px;
}

.checkout-options-list-item {
  position: relative;
  display: flex;
  padding: 1.25rem;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-options-list-item+.checkout-options-list-item {
  border-top-width: 0;
}

.checkout-options-list-item:hover {
  background-color: var(--grey-100);
}

.checkout-options-list-item .form-check-input {
  margin-right: 0.5rem;
}

.checkout-options-list-item .form-check-label,
.checkout-options-list-item .form-check-label.stretched-link::after {
  cursor: pointer;
}

.checkout-options-list-item .form-check-label {
  flex: 1 1 auto;
}

/* Checkout Summary List */
.checkout-summary-list {
  margin-bottom: 0;
}

.checkout-summary-list li {
  line-height: 26px;
  margin-bottom: 0;
}

.login-form-wrapper h2 {
  display: none;
}

/* Shop Finish Buy Steps Nav */
/* Shop Table */
.shop_table td {
  border-top: 0;
}

.shop_table th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop_table .cart-group-subtotal td {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shop_table .cart-group-checkout td {
  border-bottom: 3px solid rgba(0, 0, 0, 0.06);
  padding-top: 0;
}

/* Shop - Skin */
.shop .cart-shipping {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shop .cart-total {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shop .cart-totals tr.cart-total .amount {
  color: var(--primary);
}

.shop .checkout-products {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop .checkout-subtotal {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shop .checkout-total {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shop .checkout-totals tr.checkout-total .amount {
  color: var(--primary);
}