.checkout-custom .checkout-box,
.checkout-custom .invoice-box {
  border-radius: 8px;
  border: 1.333px solid #E0E0E0;
  background: #FFF;
  padding: 24px;
  margin-bottom: 32px;
}
.checkout-custom .checkout-box__title,
.checkout-custom .invoice-box__title {
  color: #233896;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (min-width: 570px) {
  .checkout-custom .checkout-box__grid,
  .checkout-custom .invoice-box__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.checkout-custom .checkout-box__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .checkout-custom .checkout-box__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.checkout-custom .checkout-row {
  display: flex;
  flex-direction: column;
}
.checkout-custom .checkout-row label {
  margin-bottom: 4px;
  font-weight: 500;
  color: #828282;
}
.checkout-custom .checkout-row input[type=text],
.checkout-custom .checkout-row input[type=email],
.checkout-custom .checkout-row input[type=tel] {
  border: 1px solid #E0E0E0;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}
.checkout-custom .checkout-row input:focus {
  border-color: #233896;
  outline: none;
}
.checkout-custom .invoice-toggle-wrapper {
  display: flex;
  margin-top: 32px;
  margin-bottom: 32px;
}
.checkout-custom .invoice-box__toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.checkout-custom .invoice-box__toggle input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #233896;
}

.checkout-row-full {
  grid-column: span 2;
}

.hidden {
  display: none !important;
}

.order-box {
  background: #fff;
  border-radius: 8px;
  border: 1.333px solid #E0E0E0;
  padding: 24px;
  margin-bottom: 32px;
}
.order-box__title {
  color: #233896;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.order-box__table {
  width: 100%;
  border-collapse: collapse;
}
.order-box__table td {
  padding: 8px 0;
  font-size: 14px;
  color: #333;
}
.order-box__table .order-box__price,
.order-box__table tfoot td:last-child {
  text-align: right;
}
.order-box__table tfoot tr:first-child td {
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.order-box__table tfoot td {
  font-weight: 600;
  color: #000;
}
.order-box__product {
  text-align: left;
}
.order-box__price {
  text-align: right;
}
.order-box__quantity {
  margin-left: 4px;
  font-weight: 500;
}

.checkout-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

.checkout-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  align-items: flex-start;
}

.checkout-left {
  min-width: 0;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .checkout-left {
    flex: 1 1 70%;
  }
}

.checkout-right {
  flex: 1 1 30%;
  min-width: 0;
  width: 100%;
}

@media (max-width: 900px) {
  .checkout-grid {
    flex-direction: column;
  }
}
.payment-methods-box,
.coupon-box {
  background: #fff;
  border: 1.333px solid #E0E0E0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.payment-methods-box .section-title,
.coupon-box .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #233896;
  margin-bottom: 16px;
}

.place-order-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.place-order-wrapper .woocommerce-terms-and-conditions-wrapper {
  padding-left: 2px;
}
.place-order-wrapper button {
  background: #d31c78;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s ease;
}
.place-order-wrapper button:hover {
  background: #b91567;
}

.hidden-wc-field {
  display: none !important;
}

.payment_methods {
  display: grid;
  gap: 12px;
}/*# sourceMappingURL=checkout.css.map */