#custom_checkout_form {
  max-width: 70%;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  padding: 0 20px;
}
#custom_checkout_form .checkout_progress_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  gap: 1rem;
}
#custom_checkout_form .checkout_progress_bar .progress-item {
  flex: 1;
  text-align: center;
}
#custom_checkout_form .checkout_progress_bar .progress-item .line {
  height: 3px;
  background-color: #E9EAEB;
  margin-bottom: 0.5rem;
  transition: background-color 0.3s;
}
#custom_checkout_form .checkout_progress_bar .progress-item .line.active {
  background-color: #ff7a00;
}
#custom_checkout_form .checkout_progress_bar .progress-item .line.completed {
  background-color: #000;
}
#custom_checkout_form .checkout_progress_bar .progress-item .label {
  font-size: 1.4rem;
  color: #444;
  transition: color 0.3s;
  text-align: start;
}
#custom_checkout_form .checkout_progress_bar .progress-item .label.active {
  color: #ff7a00;
  font-weight: 600;
  font-family: "Poppins";
}
#custom_checkout_form .checkout_step {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 65%;
  margin: 0 auto;
}
#custom_checkout_form .checkout_step label {
  font-size: 1.6rem;
  padding-bottom: 0.8rem;
}
#custom_checkout_form .checkout_step h2 {
  font-size: 2rem;
  margin-bottom: 6rem;
  color: #444444;
  font-weight: 400;
  text-align: center;
}
#custom_checkout_form .checkout_step input[type=text],
#custom_checkout_form .checkout_step input[type=email],
#custom_checkout_form .checkout_step input[type=tel] {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
}
#custom_checkout_form .checkout_step input[type=text]:focus,
#custom_checkout_form .checkout_step input[type=email]:focus,
#custom_checkout_form .checkout_step input[type=tel]:focus {
  border-color: #0073aa;
  outline: none;
}
#custom_checkout_form .checkout_step .company_toggle {
  cursor: pointer;
  font-size: 1.4rem;
  margin: 2rem auto;
  text-align: center;
}
#custom_checkout_form .checkout_step .error-msg {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
}
#custom_checkout_form .checkout_step .order_summary {
  margin-bottom: 2rem;
}
#custom_checkout_form .checkout_step .order_summary .item_row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}
#custom_checkout_form .checkout_step .order_summary .item_row .item_name {
  color: #444;
}
#custom_checkout_form .checkout_step .order_summary .item_row .item_price {
  color: #000;
  font-weight: 500;
}
#custom_checkout_form .checkout_step .order_summary .savings {
  font-size: 1.4rem;
  color: #009900;
  margin: 0.5rem 0 1.5rem;
  padding-left: 2px;
}
#custom_checkout_form .checkout_step .order_summary .order_total {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  color: #000;
}
#custom_checkout_form .checkout_step .coupon_section {
  margin-top: 2rem;
}
#custom_checkout_form .checkout_step .coupon_section label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
#custom_checkout_form .checkout_step .coupon_section input[type=text] {
  padding: 1rem 1.4rem;
  font-size: 1.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 0.5rem;
}
#custom_checkout_form .checkout_step .coupon_section button {
  background: #ff7a00;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.6rem 2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 0.5rem;
}
#custom_checkout_form .checkout_step .coupon_section button:hover {
  opacity: 0.8;
}
#custom_checkout_form .checkout_step .coupon_section #coupon_msg {
  font-size: 1.3rem;
  margin-top: 0.8rem;
}
#custom_checkout_form .checkout_step #payment {
  margin-top: 2rem;
  background: white;
}
#custom_checkout_form .checkout_step #payment .payment_box {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1411764706);
  border-radius: 10px;
}
#custom_checkout_form .checkout_step #payment .payment_box:before {
  content: none;
}
#custom_checkout_form .checkout_step #payment .woocommerce-terms-and-conditions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#custom_checkout_form .checkout_step #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
  font-size: 1.4rem;
}
#custom_checkout_form .checkout_step #payment .place-order button {
  margin-top: 2rem;
  float: none;
  width: 100%;
}
#custom_checkout_form .checkout_step .cta-btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
#custom_checkout_form .checkout_step .cta-btn .prev-btn {
  margin: 2rem 0;
  background: transparent;
  color: #444444;
}
#custom_checkout_form .checkout_step button {
  padding: 0.7rem 5rem;
  background: #ff7a01;
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  width: auto;
  margin: 6rem 0 0;
  text-align: center;
}
#custom_checkout_form .checkout_step button:hover {
  opacity: 0.7;
}
#custom_checkout_form #step_4 {
  width: 100%;
  border: 1px solid #CFCFCF;
}
#custom_checkout_form #step_4 > .woocommerce-form-coupon-toggle,
#custom_checkout_form #step_4 > .form-row-first,
#custom_checkout_form #step_4 > .form-row-last {
  display: none;
}
#custom_checkout_form #step_4 a {
  color: #ff7a01;
}
#custom_checkout_form #step_4 #order_review .custom-order-review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.3s ease;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon-toggle .woocommerce-info {
  background: white;
  padding: 1rem 0 0;
  border-top: none;
  font-size: 1.6rem;
  color: #FF7A01;
  margin: 0 0 1rem;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon-toggle .woocommerce-info:before {
  content: none;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon-toggle .woocommerce-info a {
  color: #000;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon {
  position: relative;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon .form-row-first {
  width: 100%;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon button {
  margin: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 1.4rem;
  background: white;
  border: 1px solid #ff7a01;
  color: #ff7a01;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon button:hover {
  background: #ff7a01;
  color: #fff;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .woocommerce-form-coupon .coupon-error-notice {
  color: red;
  position: absolute;
  top: 0.2rem;
  font-size: 1rem;
  left: 1rem;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .coupon-messages {
  padding: 0;
  border-top: none;
  margin: 0;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .coupon-messages:before {
  content: none;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .coupon-messages .woocommerce-error {
  background: transparent;
  border-top: none;
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 1;
  left: 1rem;
  font-size: 1.4rem;
  color: red;
}
#custom_checkout_form #step_4 #order_review .coupon_form_container .coupon-messages .woocommerce-error:before {
  content: none;
}
#custom_checkout_form #step_4 #order_review .item_row, #custom_checkout_form #step_4 #order_review .coupon_row, #custom_checkout_form #step_4 #order_review .order_total {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
}
#custom_checkout_form #step_4 #order_review .item_row:first-child {
  font-weight: 600;
}
#custom_checkout_form #step_4 #order_review .savings_notice {
  font-size: 1.8rem;
  justify-content: space-between;
  display: flex;
}

@media (max-width: 1023px) {
  #custom_checkout_form {
    padding: 0 1rem;
    max-width: 100%;
  }
  #custom_checkout_form .checkout_step {
    padding: 1rem;
  }
  #custom_checkout_form .checkout_progress_bar .label {
    font-size: 1.2rem;
  }
}
.checkout-upsell {
  margin-bottom: 30px;
}
.checkout-upsell .upsell-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border: 1px solid #CFCFCF;
  padding: 2rem 2rem;
  border-radius: 10px;
}
.checkout-upsell .upsell-item label {
  font-weight: 600;
  display: block;
  padding-bottom: 0 !important;
}
.checkout-upsell .upsell-item .upsell-options {
  margin-top: 0 !important;
  display: flex;
  gap: 1rem;
}
.checkout-upsell .upsell-item .upsell-options input[type=radio] {
  margin-right: 5px;
}/*# sourceMappingURL=checkout.css.map */