table {
  border-collapse: collapse;
  width: 100%;
}

.button {
  background-color: var(--color1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 14px;
  color: var(--bg_body);
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: 3rem;
  min-width: 9rem;
  border: 1px solid var(--color1);
  padding: 0 12px;
}

.woocommerce-checkout-review-order {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #fff;
}

.button:hover {
  background: transparent;
  color: var(--color1);
}

.grid-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 33.333333333333%;
  gap: 1rem;
}

.d-none {
  display: none !important;
}

.count-head {
  font-size: 18px;
}

.count-head .count {
  display: block;
  color: #707070;
  font-size: 16px;
}

.grid-card .woocommerce-cart-form .shop_table tr:not(.coupon-cart) {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) -webkit-max-content;
  grid-template-columns: 7rem minmax(0, 1fr) max-content;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 5px;
}

.woocommerce-cart .woocommerce-notices-wrapper {
  display: none;
}

.woocommerce-order-pay form input[type="submit"] {
  background: var(--c-secondary);
  padding: 0;
}

.woocommerce-order-pay form a.cancel {
  background: var(--bg_danger);
  color: var(--danger);
}

.woocommerce-cart-form__cart-item {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  margin-bottom: 2rem;
  padding: 2rem;
  background: #fff;
}

#form-pattern .woocommerce-cart-form__cart-item .product-quantity input {
  all: unset;
  flex: 1;
  text-align: center;
  font-size: 18px;
  color: var(--color1);
  width: 45px;
}

#form-pattern .woocommerce-cart-form__cart-item .product-quantity input:focus {
  border: none !important;
}

.woocommerce-cart-form__cart-item .product-quantity button {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  line-height: 1;
  border-radius: 8px;
  font-size: 20px;
  /* font-family: monospace; */
  color: var(--c-neutral-000);
  cursor: pointer;
  transition: 0.3s;
  outline: none;
  border: none;
  font-weight: 600;
  /* padding-top: 2px; */
}

.woocommerce-cart-form__cart-item .product-quantity button:hover {
  background-color: var(--color1) !important;
  color: #fff !important;
}

.woocommerce-cart-form__cart-item .product-quantity button.plus {
  background: #fff;
  border: 1px solid var(--color3);
}
.woocommerce-cart-form__cart-item .product-quantity button.plus:hover {
  background-color: var(--color3) !important;
}

.woocommerce-cart-form__cart-item .product-quantity button.minus {
  background: #fff;
  border: 1px solid var(--color1);
}

.woocommerce-cart-form__cart-item .quantity {
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 4px;
  line-height: 1;
  gap: 1rem;
}

.woocommerce-cart-form__cart-item .product-quantity:has(.quantity.hidden) {
  display: none;
}

td.product-thumbnail {
  width: 100%;
}

td.product-thumbnail img {
  background-color: #f6f6f6;
  border-radius: 6px;
  display: block;
}

dl.variation {
  font-size: var(--fs-14-min);
  color: #b4b3b3;
  line-height: 1.6;
}

dl.variation dt {
  float: right;
}

.tools-card-items {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  margin-top: auto;
}

.tools-card-items .product-remove {
  font-size: 22px;
}

.tools-card-items .product-remove:hover a {
  background: var(--danger);
}

.tools-card-items .product-remove:hover a i {
  color: #fff;
}

.tools-card-items .product-remove i {
  vertical-align: middle;
  font-size: 16px !important;
  color: var(--danger);
  font-weight: bold;
}

.tools-card-items .product-remove a {
  padding: 5px 8px;
  display: inline-block;
  border: 1px solid var(--danger);
  line-height: 1;
  border-radius: 6px;
}

.woocommerce-cart-form__cart-item .product-subtotal {
  font-size: 18px;
  color: var(--color1);
  font-weight: 600;
}

.woocommerce-cart-form__cart-item .product-name {
  display: flex;
  flex-direction: column;
  font-size: clamp(14px, 13.4288px + 0.1786vw, 16px);
}

.coupon-cart .coupon {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--color1);
  background-color: #fff;
}

#form-pattern .coupon-cart .coupon label {
  margin: 0;
}

#form-pattern .coupon-cart .coupon input {
  margin: 0;
  width: 200px;
}

.cart-collaterals tr:not(.shipping) {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-collaterals tr small {
  display: block;
  color: #999;
  font-size: 14px;
}

.cart-collaterals tr:not(:last-child) {
  margin-bottom: 1rem;
  border-bottom: 1px solid #dedede !important;
  padding-bottom: 1rem;
}

.cart-collaterals tr {
  width: 100%;
}

.cart-collaterals tr.shipping {
  display: flex;
  flex-direction: column;
}

.shipping-calculator-form button.button {
  margin: auto;
}

a.shipping-calculator-button {
  margin-bottom: 15px;
  display: inline-block;
}

.woocommerce-cart .wocommerce-form.cart .cart-collaterals tr.shipping {
  display: none;
}

.cart-collaterals tr.shipping th {
  color: var(--color1);
  text-align: center;
  padding-bottom: 1rem;
  font-weight: 400;
  font-size: 16px;
}

.cart-collaterals tr .woocommerce-shipping-destination {
  color: #7d7c7c;
  font-size: 14px;
}

.cart-collaterals td {
  font-weight: 500;
}

.checkout-button {
  background: var(--color1);
  color: #fff;
  font-size: 15px;
  height: 4rem;
  width: 100%;
  max-width: 100%;
  text-align: center;
  justify-content: center;
  border: 1px solid var(--color1);
  font-weight: 600;
}

.checkout-button:hover {
  color: var(--color1);
}

.cart-collaterals h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  background: #00987912;
  padding: 1rem;
  border-radius: 6px;
}

.cart-collaterals table {
  margin-block: 1rem;
  font-size: 16px;
}

.cart-collaterals .cross-sells {
  display: none;
}

.cart_totals {
  position: -webkit-sticky;
  position: sticky;
  top: 13rem;
  background-color: var(--color4);
  padding: 1.5rem;
  border-radius: 12px;
}

.return-to-shop {
  margin: auto;
  text-align: center;
  margin-top: 2rem;
}

.wc-empty-cart-message {
  text-align: center;
  font-size: var(--fs-18);
}

#shipping_method label {
  display: inline-flex !important;
}

#form-pattern #customer-type_field .woocommerce-input-wrapper label {
  display: inline-flex;
  margin: 0;
  margin-left: 3rem;
  cursor: pointer;
}

#customer-type_field {
  margin-bottom: 3rem;
}

/**************************/
/* checkout*/
/**************************/
#payment input#terms {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 23px;
  width: 23px;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}
#payment input#terms:before {
  content: "";
  width: 14px;
  height: 14px;
  transform: scale(0);
  background-color: var(--color1);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
#payment input#terms:checked::before {
  transform: scale(1);
}

.woocommerce-billing-fields__field-wrapper {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  grid-template-rows: -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  grid-auto-flow: dense;
  align-items: end;
}

#invoice-extra-fields {
  display: none;
}

#customer-type_field {
  grid-column: 1 / -1;
  margin-bottom: 3rem;
}

#billing_email_field {
  grid-column: 3 span;
}

#address_selector_field {
  grid-column: 1 / -1;
}

#billing_address_1_field {
  grid-column: 1 / -1;
}

.select2-container {
  width: 100% !important;
  /* z-index: 40; */
}

.form-row-wide:not(#billing_phone_field) {
  clear: both;
  width: 100%;
}

#charity-description {
  width: 100%;
  margin: -1rem 0 1.5rem;
  order: -1;
  font-size: var(--fs-14);
  opacity: 0.8;
}

.grid-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  grid-template-areas:
    "coupon coupon coupon"
    "rightside rightside leftside";
}

.wc_coupon_message_wrap {
  grid-area: coupon;
}

#customer_details {
  grid-area: rightside;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  padding: 1rem;
}

.checkout-side {
  grid-area: leftside;
}

#wbs-extra-info-wrapper .woocommerce-input-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#wbs-extra-info-wrapper .woocommerce-input-wrapper label {
  margin: 0;
  margin-left: 3rem;
  cursor: pointer;
}

.wbs-extra-info {
  margin: 1rem 0 4rem;
}

.wbs-extra-info .field .desc {
  margin-bottom: 2rem;
  font-size: var(--fs-14);
}

.wbs-extra-info .field {
  margin-bottom: 1rem;
  background: var(--c-neutral-100);
  padding: 2rem;
  border-radius: 12px;
  gap: 5rem;
}

.woocommerce-additional-fields__field-wrapper {
  margin: 2rem 0 0;
}

span#charity-description {
  width: 100%;
  margin: -1rem 0 1.5rem;
  order: -1;
  font-size: var(--fs-14);
  opacity: 0.7;
  display: block !important;
}

/* .form-row.form-row-first {
  float: right;
  display: block;
  width: 48%;
} */
.form-row-wide:not(#billing_phone_field) {
  clear: both;
  width: 100%;
}

/* #billing_phone_field,
.form-row.form-row-last {
  float: left;
  display: block;
  width: 48%;
} */
#billing_country_field {
  display: none;
}

#billing_billing_phone_field {
  display: none;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.select2-container--default .select2-selection--single {
  border: none;
  height: 100%;
  margin: 0;
}

.editor-content .select2-container--default .select2-selection--single .select2-selection__arrow:after {
  content: "\e916";
  font-family: icomoon;
}

i {
  font-family: "icomoon" !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--color1);
  color: #fff;
  border-radius: 12px;
}

.select2-dropdown {
  border: none;
  box-shadow: rgb(0 0 0 / 28%) 0px 10px 20px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--color1);
  border-radius: 12px;
}

.woocommerce-checkout-review-order-table thead {
  display: none;
}

/* .woocommerce-checkout .woocommerce-checkout-review-order {
  position: sticky;
  top: 13rem;
} */
.screen-reader-text {
  display: none !important;
}

.delivery-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.delivery-wrapper .title {
  width: 100%;
  /* margin-bottom: 4rem; */
}

.woocommerce-additional-fields > h3 {
  display: none !important;
}

.woocommerce-additional-fields > h3,
#wbs-extra-info-wrapper h2,
.woocommerce-checkout-payment__title,
.delivery-wrapper .title,
.woocommerce-billing-fields h3,
#order_review_heading {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  background-color: var(--color4);
  padding: 1rem;
  border-radius: 6px;
}

.editor-content h2.woocommerce-checkout-payment__title {
  font-size: 18px;
}

.woocommerce-checkout-review-order-table tfoot,
.woocommerce-checkout-review-order-table,
.woocommerce-checkout-review-order-table tbody {
  display: block;
}

.woocommerce-checkout .grid-checkout .woocommerce-checkout-review-order-table tbody {
  display: none;
}

.woocommerce-checkout-review-order-table .cart_item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.woocommerce-checkout-review-order-table tr:not(:last-child) {
  margin-bottom: 1rem;
  border-bottom: 1px solid #f4f2f2;
  padding-bottom: 1rem;
}

.woocommerce-checkout-review-order-table .product-name {
  font-size: 15px;
  color: #6c6a6a;
}

.woocommerce-checkout-review-order-table .product-quantity {
  color: var(--color1);
  font-weight: 500;
}

/* div#order_review {
  position: -webkit-sticky;
  position: sticky;
  top: 13rem;
} */
.woocommerce-checkout-review-order-table .product-total {
  color: var(--color1);
  font-weight: 400;
  font-size: 15px;
}

.woocommerce-checkout-review-order-table tfoot {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  margin-block: 2rem;
}

.checkout-side .woocommerce-checkout-review-order-table tfoot {
  margin-top: 0;
}

.woocommerce-checkout-review-order-table tbody {
  border: 1px solid var(--color1);
  padding: 1rem;
  border-radius: 12px;
  margin-block: 2rem;
}

.must-loggedin {
  color: var(--danger);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  font-size: 18px;
  background: var(--bg_danger);
  padding: 2rem;
  border-radius: 12px;
}

.must-loggedin button {
  font-size: var(--fs-16);
}

#payment label {
  cursor: pointer;
  margin-bottom: 0 !important;
  vertical-align: middle;
  display: inline-block !important;
}

.wc_payment_methods li {
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.wc_payment_methods li .payment_box {
  color: var(--color1);
  font-variation-settings: var(--fw-400);
  font-size: 14px;
  margin-top: 1rem;
}

.form-row.place-order {
  border-radius: 12px;
  background-color: var(--color4);
  padding: 2rem 1rem;
  font-size: 15px;
}

.woocommerce-privacy-policy-text {
  margin-bottom: 1rem;
  display: none;
}

#payment .woocommerce-form__label-for-checkbox {
  display: flex !important;
  align-items: center;
  line-height: 1.5 !important;
}

#payment .woocommerce-form__label-for-checkbox abbr.required {
  display: none;
}

abbr.required {
  color: var(--danger);
}

#payment.woocommerce-checkout-payment .button {
  background: var(--color1);
  color: #fff;
  font-size: 15px;
  height: 4rem;
  width: 100%;
  max-width: 100%;
  text-align: center;
  justify-content: center;
  border: 1px solid var(--color1);
  font-weight: 600;
  margin-top: 1.5rem;
}

.not-enough-credit {
  background: var(--bg_danger);
  color: var(--danger);
  padding: 0.5rem 1rem;
  margin: 2rem 0 0;
  display: block;
  font-variation-settings: var(--fw-400);
  border-radius: 12px;
}

#payment.woocommerce-checkout-payment .button:disabled {
  pointer-events: none;
  -webkit-filter: contrast(0.5);
  filter: contrast(0.5);
}

#payment.woocommerce-checkout-payment .button:hover {
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
}

/* .woocommerce-billing-fields__field-wrapper {
  margin-block: 3rem;
} */
.woocommerce-terms-and-conditions-link {
  color: var(--color1);
}

.woocommerce-error {
  background: var(--bg_danger);
  color: var(--danger);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.woocommerce-form-coupon-toggle .showcoupon {
  font-size: 12px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 3px 15px;
}

.woocommerce-form-coupon {
  /* padding: 2rem; */
  padding-top: 0;
  border-radius: 12px;
  /* margin-bottom: 3rem; */
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

tr.coupon-row td {
  width: 100%;
}

.woocommerce-form-coupon .input-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.woocommerce-form-coupon .input-wrapper button {
  white-space: nowrap;
  font-size: 12px;
  height: 44px !important;
}
.woocommerce-form-coupon .input-wrapper input {
  padding: 0 8px 0 0 !important;
  height: 48px !important;
}
.woocommerce-form-coupon p.form-row:has(input) {
  max-width: 60%;
  width: 100%;
}
.woocommerce-form-coupon p.form-row {
  display: flex;
  align-items: center;
}
.woocommerce-form-coupon p.form-row .button:hover {
  background-color: var(--color1) !important;
  color: #fff !important;
}

.woocommerce-form-coupon .wide {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
}

#form-pattern .woocommerce-form-coupon input {
  width: min(400px, 100%);
  margin-bottom: 0 !important;
  padding-left: 8rem;
}

.woocommerce-form-coupon .button {
  background: none;
  color: var(--color1);
  min-width: auto;
}

.woocommerce-form-coupon .button:hover {
  color: var(--c-neutral-500);
}

.delivery-wrapper .description {
  width: 100%;
  margin: 10px;
}

.delivery-wrapper .woocommerce-input-wrapper {
  position: relative;
}

/* .delivery-wrapper .woocommerce-input-wrapper::before {
  content: "\e90e";
  position: absolute;
  display: block;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: "icomoon";
  pointer-events: none;
  color: #a5a4a4;  
  line-height: 1;
  font-size: 13px;
} */
.delivery-wrapper select {
  display: flex;
  align-items: center;
  background-image: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9Ijk4MyIgaGVpZ2h0PSIxMDI0IiB2aWV3Qm94PSIwIDAgOTgzIDEwMjQiPgo8ZyBpZD0iaWNvbW9vbi1pZ25vcmUiPgo8L2c+CjxwYXRoIGQ9Ik05ODMuMDQwIDMxMi4yOTVjMCAxNi4wMzctNi4wMzMgMzEuNDU1LTE3LjQ5OCA0My43OTFsLTQ3My42NDEgNDg0LjgxNS00NzQuMjUyLTQ4NC44MTVjLTIzLjUzMS0yNC4wNTUtMjMuNTMxLTYyLjkxMyAwLTg2Ljk2OHM2MS41NDYtMjQuMDU1IDg1LjA3NyAwbDM4OC41NjkgMzk3LjIyNCAzODguNTcxLTM5Ny4yMjRjMjMuNTMyLTI0LjA1NSA2MS41NDItMjQuMDU1IDg1LjA3NCAwIDEyLjY2OSAxMS43MTkgMTguMSAyNy43NTcgMTguMSA0My4xNzh6Ij48L3BhdGg+Cjwvc3ZnPgo=);
  background-position: left 1rem top 50%;
  background-size: 1rem 1rem;
  background-repeat: no-repeat;
}

/**************************/
/* thanks*/
/**************************/
.woocommerce-thankyou-order-received {
  background-color: #198754;
  color: #fff !important;
  text-align: center !important;
  padding: 1rem;
  border-radius: 12px;
  font-size: 18px;
}

.detail-thankyou {
  display: none;
}

.wocommerce-form.thankyou .woocommerce-customer-details {
  display: none;
}

.woocommerce-thankyou-order-details {
  margin-block: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  gap: 2rem;
  align-items: center;
  line-height: 1.5;
}

.woocommerce-bacs-bank-details h2 {
  color: var(--color1);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.detail-payment > p {
  background: #eee;
  border-radius: 12px;
  padding: 1rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
  color: var(--color1);
  font-weight: 400;
}

.woocommerce-bacs-bank-details {
  margin-block: 8rem;
}

.wc-bacs-bank-details-account-name {
  text-align: center;
  margin-bottom: 1rem;
}

.wc-bacs-bank-details {
  background: #eee;
  border-radius: 12px;
  padding: 2rem;
}

.woocommerce-thankyou-order-details li {
  background: #eee;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-order .delivery-wrap h2,
.woocommerce-customer-details .woocommerce-column__title,
.woocommerce-order-details__title {
  color: var(--color1);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.woocommerce-order .delivery-wrap ul {
  border: 1px solid var(--color1);
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  margin-block: 2rem;
}

.blockUI.blockOverlay {
  z-index: 10 !important;
}

.woocommerce-table--order-details tfoot tr,
.woocommerce-table--order-details .woocommerce-table__line-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.woocommerce-table--order-details tfoot th {
  white-space: nowrap;
}

.wc-item-meta li {
  display: flex;
  gap: 5px;
  color: #9f9d9d;
}

.woocommerce-order-details {
  margin-block: 8rem;
}

.woocommerce-customer-details address {
  padding: 1rem;
  border: 1px solid var(--color1);
  border-radius: 12px;
  margin-top: 1rem;
}

.detail-thankyou .woocommerce-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.woocommerce-terms-and-conditions {
  display: none !important;
}

/**************************/
/* route-bar */
/**************************/
.route-bar {
  position: relative;
  margin: 0 0 2rem 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.route-bar:before {
  content: "";
  position: absolute;
  top: calc(min(6rem, 13vw) / 2);
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--color1);
  z-index: -1;
}

.route-bar .step-box .wrapper {
  text-align: center;
}

.route-bar .step-box .title a {
  display: block;
  color: var(--color1);
  font-size: var(--fs-16-min);
}

.route-bar .step-box .title {
  margin: 0;
  color: var(--color1);
  font-size: var(--fs-16-min);
}

.route-bar .step-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(6rem, 13vw);
  height: min(6rem, 13vw);
  border: 1px solid var(--color1);
  border-radius: 50%;
  margin: 0 auto 5px auto;
  background: #fff;
}

.route-bar .step-box a.icon:hover {
  background-color: var(--color1);
}

.route-bar .step-box a.icon:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.route-bar .step-box .icon-svg {
  display: inline-block;
  width: min(3rem, 6vw);
  height: min(3rem, 6vw);
  margin: 0;
}

.woocommerce-cart .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .first-step .icon,
.woocommerce-order-pay .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .first-step .icon,
.woocommerce-order-received .route-bar .second-step .icon,
.woocommerce-order-received .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .fourth-step .icon {
  background-color: var(--color1);
}

.woocommerce-cart .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .first-step .icon-svg,
.woocommerce-order-pay .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .first-step .icon-svg,
.woocommerce-order-received .route-bar .second-step .icon-svg,
.woocommerce-order-received .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .fourth-step .icon-svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media (max-width: 575.98px) {
  .route-bar .col-3 {
    padding-inline: 0.5rem;
  }
}
/**************************/
/* ADDress */
/**************************/
#billing_state_field .woocommerce-input-wrapper::before,
#billing_city_field .woocommerce-input-wrapper::before,
#address_selector_field .woocommerce-input-wrapper::before {
  content: "\e916";
  position: absolute;
  display: block;
  left: min(1.5rem, 2vw);
  top: 60%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: "icomoon";
  pointer-events: none;
  line-height: 1;
  font-size: 15px;
}

#address_selector {
  cursor: pointer;
}
#billing_state_field .woocommerce-input-wrapper,
#address_selector_field .woocommerce-input-wrapper {
  position: relative;
}

#delivery_day_field .woocommerce-input-wrapper label {
  padding: 2.3rem 0.5rem;
  margin: 0 6px;
  cursor: pointer;
  font-size: var(--fs-14);
  border: 1px solid transparent;
  font-variation-settings: var(--fw-500);
  color: var(--c-neutral-400);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#delivery_day_field .woocommerce-input-wrapper input[type="radio"] {
  visibility: hidden;
  position: absolute;
}

#delivery_day_field .woocommerce-input-wrapper input[type="radio"]:checked + label {
  color: var(--color1);
  border-bottom: 2px solid var(--color1);
}

#delivery_day_field input[type="radio"]:disabled,
#delivery_time_field input[type="radio"]:disabled,
#delivery_time_field input[type="radio"]:disabled + label,
#delivery_day_field input[type="radio"]:disabled + label {
  opacity: 0.5;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  /* pointer-events: none; */
  cursor: wait;
}

#delivery_day_field .woocommerce-input-wrapper {
  display: flex;
}

.delivery-inner {
  border: 1px solid var(--c-neutral-200);
  border-radius: 12px;
  margin: 1rem 0 5rem;
}

#delivery_day_field {
  user-select: none;
  overflow-x: auto;
  white-space: nowrap;
  width: 48%;
}

#delivery_time_field > label,
#delivery_day_field > label {
  display: none !important;
}

#delivery_time_field {
  width: 48%;
}

#delivery_time_field .woocommerce-input-wrapper label {
  display: inline-block;
  margin-bottom: 2.5rem;
  width: calc(100% - 23px - 2rem);
  font-size: var(--fs-16);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**************************/
/* BELOW 576px */
/**************************/
@media (min-width: 36em) {
  .wbs-extra-info .field {
    flex: 1;
  }
}

/**************************/
/* ABOVE 768px */
/**************************/
@media (min-width: 48em) {
}

/**************************/
/* ABOVE 992px */
/**************************/
@media (min-width: 62em) {
  .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/**************************/
/* ABOVE 1200px */
/**************************/
@media (min-width: 75em) {
}

/**************************/
/* BELOW 1200px */
/**************************/
@media (max-width: 75em) {
}

/**************************/
/* BELOW 992px */
/**************************/
@media (max-width: 62em) {
  .grid-checkout,
  .grid-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-checkout {
    display: flex;
    flex-direction: column;
  }
}

/**************************/
/* BELOW 768px */
/**************************/
@media (max-width: 48em) {
}

/**************************/
/* BELOW 576px */
/**************************/
@media (max-width: 36em) {
  .woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-direction: column;
  }
  #billing_phone_field,
  .form-row.form-row-last,
  .form-row.form-row-first {
    float: none;
    display: block;
    width: 100%;
  }
  /* #payment.woocommerce-checkout-payment .button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 50;
    width: auto;
    border-radius: 0;
  } */
  .woocommerce-checkout .fix-menu {
    display: none;
  }

  .coupon-cart .coupon {
    justify-content: center;
  }

  .woocommerce-form-coupon {
    margin-bottom: 3rem;
  }

  /* .woocommerce-form-coupon .button {
    position: static;
    margin-top: 2rem;
  } */
  #form-pattern .woocommerce-form-coupon input {
    margin: 0 !important;
  }

  #national-code_field,
  #billing_phone_field,
  #address_selector_field,
  #billing_email_field,
  #billing_postcode_field {
    grid-column: 1 / -1;
  }
}

/**************************/
/* BELOW 400px */
/**************************/
@media (max-width: 480px) {
  .detail-thankyou .woocommerce-table {
    display: flex;
    flex-direction: column;
  }

  #delivery_day_field,
  #delivery_time_field {
    width: 100%;
  }

  .woocommerce-info:not(.woocommerce-message) {
    justify-content: space-between;
  }

  #payment.woocommerce-checkout-payment .form-row.place-order .button {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    border-radius: 0;
    padding: 10px 5px;
    backdrop-filter: blur(87px) brightness(1.2);
    background: rgba(224, 0, 0, 0.85);
    box-shadow: 0 4px 20px rgb(0 0 0);
  }
  .woocommerce-thankyou-order-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .woocommerce-thankyou-order-details li {
    width: 100%;
  }

  .tools-card-items {
    margin-top: 10px;
  }

  .grid-card .woocommerce-cart-form .shop_table tr:not(.coupon-cart) {
    grid-template-columns: 5rem minmax(0, 1fr);
    padding: 10px;
    margin-bottom: 15px;
  }

  .woocommerce-cart-form__cart-item .quantity {
    gap: 0px;
    margin-bottom: 0;
  }

  .product-subtotal {
    grid-column: 2;
  }
}

#billing_factor_field {
  grid-column: 1 / -1;
  margin: 5px 0 20px 0;
}

#billing_factor_field #billing_factor {
  width: auto;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

#billing_national_id_field {
  grid-column: 1;
}

#billing_company_name_field {
  grid-column: 2 / -1;
}

#billing_national_id_field .optional,
#billing_company_name_field .optional {
  display: none !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  background-color: var(--color3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.woocommerce-form-coupon-toggle .woocommerce-info .showcoupon {
  color: #fff;
  border-color: #fff;
}
