body.woocommerce-checkout {
  overflow-x: clip;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

.checkout-content {
  padding-top: 20px;
  padding-bottom: 40px;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media only screen and (min-width: 992px) {
  .checkout-content {
    padding-top: 10px;
    padding-bottom: 60px;
    margin-top: 60px;
    margin-bottom: 150px;
  }
}

.cart-process {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .cart-process {
    margin-bottom: 40px;
  }
}

.cart-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}
@media only screen and (min-width: 992px) {
  .cart-process__steps {
    gap: 20px;
  }
}

.cart-process__step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 992px) {
  .cart-process__step {
    gap: 20px;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
  }
}
.cart-process__step:not(:last-child)::after {
  font-family: "JTC Icons", sans-serif;
  content: "\f10f";
  font-size: 10px;
  color: rgba(0, 0, 0, 0.25);
  font-style: normal;
  font-weight: normal;
}
@media only screen and (min-width: 992px) {
  .cart-process__step:not(:last-child)::after {
    font-size: 14px;
  }
}
.cart-process__step:first-child {
  color: black;
}
.cart-process__step--active {
  color: black;
}

.cart-process__step {
  line-height: 1 !important;
}
.cart-process__step::after {
  line-height: 1;
}

.cart-process__step .cart-process__label {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  line-height: 1;
  display: flex;
}

.cart-process__step--active .cart-process__label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cart-process__step--active .cart-process__label::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F8AE43;
  position: absolute;
  top: auto;
  bottom: -18px;
}
@media only screen and (min-width: 992px) {
  .cart-process__step--active .cart-process__label::after {
    width: 100px;
    height: 6px;
  }
}

@media only screen and (min-width: 992px) {
  form.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    align-items: start;
  }
}
@media only screen and (min-width: 1200px) {
  form.woocommerce-checkout {
    grid-template-columns: 1.2fr 1fr;
  }
}
@media only screen and (min-width: 992px) {
  form.woocommerce-checkout #customer_details,
  form.woocommerce-checkout #wc_checkout_add_ons {
    grid-column: 1;
  }
}
@media only screen and (min-width: 992px) {
  form.woocommerce-checkout .checkout-order-column {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: start;
  }
}
form.woocommerce-checkout label {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
form.woocommerce-checkout input,
form.woocommerce-checkout select,
form.woocommerce-checkout textarea {
  text-box-trim: none;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: black;
  margin: 0 0 20px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout .woocommerce-billing-fields > h3,
  .woocommerce-checkout .woocommerce-additional-fields > h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.woocommerce-checkout .form-row {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  padding: 0;
  justify-content: flex-end;
}
.woocommerce-checkout .form-row label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: black;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout .form-row label {
    font-size: 20px;
    line-height: 24px;
  }
}
.woocommerce-checkout .form-row .required {
  color: rgba(255, 0, 0, 0.8);
  text-decoration: none;
  border: 0;
}
.woocommerce-checkout .form-row .optional {
  font-weight: 400;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea.input-text,
.woocommerce-checkout .form-row select {
  width: 100%;
  padding: 7px 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: black;
  background-color: white;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
  transition: all 0.25s ease-out;
  overflow: visible !important;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout .form-row input.input-text,
  .woocommerce-checkout .form-row textarea.input-text,
  .woocommerce-checkout .form-row select {
    font-size: 20px;
    line-height: 24px;
  }
}
.woocommerce-checkout .form-row input.input-text::placeholder,
.woocommerce-checkout .form-row textarea.input-text::placeholder,
.woocommerce-checkout .form-row select::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea.input-text:focus,
.woocommerce-checkout .form-row select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.25);
}
.woocommerce-checkout .form-row textarea.input-text {
  min-height: 146px;
  resize: vertical;
}
.woocommerce-checkout .form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.woocommerce-checkout .select2-container .select2-selection--single {
  height: auto;
  padding: 7px 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: black;
  background-color: white;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
  transition: all 0.25s ease-out;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout .select2-container .select2-selection--single {
    font-size: 20px;
    line-height: 24px;
  }
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  color: black;
  line-height: inherit;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 8px;
}
.woocommerce-checkout .select2-container--open .select2-selection--single {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.25);
}
.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #F8AE43;
  color: black;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
  }
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide {
  width: 100%;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last {
  float: none;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last {
    flex: 1 1 0;
    min-width: 0;
  }
}
.woocommerce-checkout #customer_details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout #customer_details {
    gap: 40px;
  }
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.woocommerce-checkout #order_review_heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: black;
  text-transform: none;
  background-color: #EEEEEE;
  border-top-left-radius: 30px;
  padding: 40px 20px 20px;
  margin: 40px 0 0;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout #order_review_heading {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
    border-top-left-radius: 50px;
    padding: 40px 30px 20px;
    margin: 0;
  }
}
.woocommerce-checkout #order_review_heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F8AE43;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout #order_review_heading::after {
    width: 100px;
    height: 6px;
  }
}

.woocommerce-checkout-review-order {
  background-color: #EEEEEE;
  border-radius: 0;
  border-bottom-right-radius: 30px;
  padding: 0 20px 40px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout-review-order {
    border-bottom-right-radius: 50px;
    padding: 0 30px 40px;
  }
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  font-family: "Open Sans", sans-serif;
  margin: 0;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 20px 0;
  border-bottom: 1px solid black;
  font-size: 16px;
  line-height: 22px;
  vertical-align: top;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    font-size: 20px;
    line-height: 24px;
  }
}
.woocommerce-checkout-review-order-table thead th {
  font-weight: 700;
  color: black;
}
.woocommerce-checkout-review-order-table thead th:last-child {
  text-align: right;
}
.woocommerce-checkout-review-order-table tbody .product-name {
  font-weight: 400;
  color: black;
}
.woocommerce-checkout-review-order-table tbody .product-name .product-quantity {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  display: block;
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout-review-order-table tbody .product-name .product-quantity {
    font-size: 14px;
    line-height: 16px;
  }
}
.woocommerce-checkout-review-order-table tbody .product-name .product-sku {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  display: block;
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout-review-order-table tbody .product-name .product-sku {
    font-size: 14px;
    line-height: 16px;
  }
}
.woocommerce-checkout-review-order-table tbody .product-total,
.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
  font-weight: 700;
  color: black;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout-review-order-table tbody .product-total,
  .woocommerce-checkout-review-order-table tfoot td {
    font-size: 18px;
    line-height: 24px;
  }
}
.woocommerce-checkout-review-order-table tbody .product-total small {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  display: block;
  margin-top: 8px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-checkout-review-order-table tbody .product-total small {
    font-size: 14px;
    line-height: 16px;
  }
}
.woocommerce-checkout-review-order-table tbody .product-total small .woocommerce-Price-amount {
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
  padding-top: 24px;
  padding-bottom: 24px;
}
.woocommerce-checkout-review-order-table tfoot th {
  font-weight: 400;
}
.woocommerce-checkout-review-order-table tfoot .order-total th {
  font-weight: 700;
}
.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
  border-bottom: 0;
}

.checkout-payment-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: black;
  text-transform: none;
  margin: 30px 0 0;
}
@media only screen and (min-width: 992px) {
  .checkout-payment-heading {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
  }
}
.checkout-payment-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F8AE43;
}
@media only screen and (min-width: 992px) {
  .checkout-payment-heading::after {
    width: 100px;
    height: 6px;
  }
}

.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
}
.woocommerce-checkout #payment .payment_box {
  padding: 20px 0 0;
}
.woocommerce-checkout #payment .payment_box label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: black;
}
.woocommerce-checkout #payment .wc_payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.woocommerce-checkout #payment .wc_payment_methods > li {
  list-style: none;
}
.woocommerce-checkout #payment .wc_payment_methods > li > label {
  display: none;
}
.woocommerce-checkout #payment .wc_payment_methods > li > input[type=radio] {
  display: none;
}
.woocommerce-checkout #payment .place-order {
  padding: 0;
  margin-top: 30px;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: black;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label.checkbox {
    font-size: 20px;
    line-height: 24px;
  }
}
.woocommerce-terms-and-conditions-wrapper input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: inset 1px 1px 4px 0 #d9d9d9;
  appearance: auto;
  margin: 0;
}
.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text a {
  color: black;
  text-decoration: underline;
  text-decoration-color: #F8AE43;
  text-underline-offset: 2px;
}
.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text a:hover, .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text a:focus {
  text-decoration-color: black;
}
.woocommerce-terms-and-conditions-wrapper .required {
  color: rgba(255, 0, 0, 0.8);
}

.woocommerce-checkout #place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 43px;
  padding: 9px 12px;
  background-color: #F8AE43;
  color: black;
  border: 0;
  border-radius: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease-out;
  margin-top: 20px;
}
.woocommerce-checkout #place_order:hover {
  box-shadow: 4px 4px 0 0 #fcb040;
}

body.woocommerce-checkout .woocommerce-notices-wrapper {
  margin-bottom: 20px;
}
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-info {
  padding: 12px 20px;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  list-style: none;
  margin: 0 0 10px;
}
@media only screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce-message,
  body.woocommerce-checkout .woocommerce-error,
  body.woocommerce-checkout .woocommerce-info {
    font-size: 18px;
  }
}
body.woocommerce-checkout .woocommerce-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
body.woocommerce-checkout .woocommerce-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
body.woocommerce-checkout .woocommerce-error li {
  list-style: none;
}
body.woocommerce-checkout .woocommerce-info {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

/*# sourceMappingURL=checkout.css.map */
