/* blocks/checkout-block/checkout-block.scss */
:root {
  --font-primary:
    "Montserrat",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    sans-serif;
  --font-secondary:
    "Montserrat",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    monaco,
    consolas,
    "Courier New",
    monospace;
}
.checkout-block {
  width: 100%;
  margin: 2rem 0 1rem;
  padding: 0 10px;
}
@media screen and (min-width: 992px) {
  .checkout-block {
    margin: 60px 0 1rem;
    padding: 0;
  }
}
.checkout-block__container {
  width: 100%;
  max-width: 862px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.checkout-block__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  -ms-flex-item-align: center;
  align-self: center;
  z-index: 2;
}
.checkout-block__badge-text {
  padding: 6px 8px;
  border-radius: 5px;
  background-color: #00205B;
  color: #fff;
  font-weight: 800;
}
.checkout-block__badge-text {
  font-size: 14px;
}
@media screen and (min-width: 450px) {
  .checkout-block__badge-text {
    font-size: calc(14px + 2 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__badge-text {
    font-size: 16px;
  }
}
.checkout-block__product-card {
  scroll-margin-top: 30px;
  background-color: #ffffff;
  border: 2px solid #00205B;
  padding: 1.5rem 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.checkout-block__product-card--subscription {
  margin-top: 1rem;
  padding: 1rem;
}
.checkout-block__product-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.checkout-block__product-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 3px;
}
.checkout-block__product-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-block__product-toggle-indicator {
  width: 21px;
  height: 21px;
  border: 2px solid #00205B;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
}
.checkout-block__product-toggle-indicator svg {
  width: 21px;
  height: 21px;
  min-width: 21px;
  display: block;
  opacity: 0;
}
.checkout-block__product-toggle-input:checked + .checkout-block__product-toggle-indicator {
  border-color: #00205B;
}
.checkout-block__product-toggle-input:checked + .checkout-block__product-toggle-indicator svg {
  opacity: 1;
}
.checkout-block__product-toggle-input:focus-visible + .checkout-block__product-toggle-indicator {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 32, 91, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 32, 91, 0.2);
}
.checkout-block__checkmark-icon {
  width: 21px;
  height: 21px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 3px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #00205B;
  border-radius: 100%;
}
.checkout-block__checkmark-icon svg {
  min-width: 21px;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  .checkout-block__checkmark-icon {
    width: 21px;
    height: 21px;
  }
}
.checkout-block__product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.checkout-block__product-title {
  color: #000000;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  margin-bottom: 4px;
}
.checkout-block__product-title {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .checkout-block__product-title {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__product-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__product-title {
    line-height: 1.4;
    margin-bottom: 0;
  }
}
.checkout-block__product-subtitle {
  color: #65676B;
  font-weight: 400;
  margin: 0;
  line-height: 1.42;
}
.checkout-block__product-subtitle {
  font-size: 14px;
}
@media screen and (min-width: 450px) {
  .checkout-block__product-subtitle {
    font-size: calc(14px + 2 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__product-subtitle {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__product-subtitle {
    line-height: 1.5;
  }
}
.checkout-block__product-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.25rem;
}
.checkout-block__current-price {
  color: #00205B;
  font-weight: 700;
  line-height: 1;
}
.checkout-block__current-price {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .checkout-block__current-price {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__current-price {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__current-price {
    line-height: 1.4;
  }
}
.checkout-block__original-price {
  color: #65676B;
  font-weight: 500;
  text-decoration: line-through;
  line-height: 1;
}
.checkout-block__original-price {
  font-size: 12px;
}
@media screen and (min-width: 450px) {
  .checkout-block__original-price {
    font-size: calc(12px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__original-price {
    font-size: 16px;
  }
}
.checkout-block__main-heading {
  color: #00205B;
  font-weight: 800;
  text-align: center;
  margin: 2rem auto 1rem;
  line-height: 1.2;
}
.checkout-block__main-heading {
  font-size: 24px;
}
@media screen and (min-width: 450px) {
  .checkout-block__main-heading {
    font-size: calc(24px + 8 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__main-heading {
    font-size: 32px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__main-heading {
    margin: 1.5rem auto;
  }
}
.checkout-block__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
@media screen and (min-width: 992px) {
  .checkout-block__benefits-list {
    margin-bottom: 4.25rem;
  }
}
.checkout-block__benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
}
.checkout-block__benefit-icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.checkout-block__benefit-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.checkout-block__benefit-text {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.checkout-block__benefit-text {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .checkout-block__benefit-text {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__benefit-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__benefit-text {
    line-height: 1.4;
  }
}
.checkout-block__promo-box {
  background-color: #EAF1FF;
  border-radius: 10px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 1rem 0 2rem;
}
@media screen and (min-width: 992px) {
  .checkout-block__promo-box {
    margin: 1.5rem auto;
    padding: 10px 1rem;
  }
}
.checkout-block__promo-icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.checkout-block__promo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  .checkout-block__promo-icon {
    width: 50px;
    height: 50px;
  }
}
.checkout-block__promo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.checkout-block__promo-code {
  color: #00205B;
  font-weight: 700;
  line-height: 1.42;
}
.checkout-block__promo-code {
  font-size: 14px;
}
@media screen and (min-width: 450px) {
  .checkout-block__promo-code {
    font-size: calc(14px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__promo-code {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__promo-code {
    line-height: 1.5;
  }
}
.checkout-block__promo-savings {
  color: #00205B;
  font-weight: 400;
  line-height: 1.5;
}
.checkout-block__promo-savings {
  font-size: 14px;
}
@media screen and (min-width: 450px) {
  .checkout-block__promo-savings {
    font-size: calc(14px + 2 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__promo-savings {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__promo-savings {
    line-height: 1.42;
  }
}
.checkout-block__payment-section {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.checkout-block__payment-heading {
  color: #65676B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 1rem 0 1rem;
  line-height: 1.4;
}
.checkout-block__payment-heading {
  font-size: 12px;
}
@media screen and (min-width: 450px) {
  .checkout-block__payment-heading {
    font-size: calc(12px + 2 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__payment-heading {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__payment-heading {
    margin-top: 1.5rem;
  }
}
.checkout-block__disclaimer {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.checkout-block__disclaimer p {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.checkout-block__disclaimer p {
  font-size: 12px;
}
@media screen and (min-width: 450px) {
  .checkout-block__disclaimer p {
    font-size: calc(12px + 2 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__disclaimer p {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .checkout-block__disclaimer {
    margin-bottom: 2rem;
  }
}
.checkout-block__post-checkout {
  margin-top: 1.25rem;
  text-align: center;
}
.checkout-block__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
}
@media screen and (min-width: 992px) {
  .checkout-block__highlights {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.checkout-block__highlights-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-weight: 400;
  line-height: 1.4;
}
.checkout-block__highlights-item {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .checkout-block__highlights-item {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__highlights-item {
    font-size: 20px;
  }
}
.checkout-block__highlights-icon {
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.checkout-block__highlights-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.checkout-block__highlights-note {
  margin: 0;
  color: #000;
  font-weight: 400;
  line-height: 1.4;
}
.checkout-block__highlights-note {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .checkout-block__highlights-note {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__highlights-note {
    font-size: 20px;
  }
}
.checkout-block .woocommerce-checkout-review-order-table,
.checkout-block #order_review_heading {
  display: none !important;
}
.checkout-block .wc_payment_methods {
  padding: 0;
  margin: 0;
}
.checkout-block fieldset {
  padding: 0;
  border: 0;
}
.checkout-block .woocommerce-SavedPaymentMethods {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.checkout-block .checkout-inline-error-message {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #D70000;
}
.checkout-block .woocommerce-privacy-policy-text {
  display: none !important;
}
.checkout-block .payment_method_stripe > label {
  display: none !important;
}
.checkout-block .testmode-info {
  font-size: 14px;
  text-align: left;
}
.checkout-block .place-order {
  margin-top: 1rem;
}
.checkout-block .place-order .btn {
  width: 100%;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email] {
  width: 100%;
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #F3F3F3;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.42;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px !important;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email]::-moz-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email]:-ms-input-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email]::-ms-input-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email]::placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email]:focus {
  outline: none;
  border-color: transparent;
}
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email].error,
.checkout-block__woocommerce-checkout #billing_email_field .woocommerce-input-wrapper input[type=email].invalid {
  border-color: #D70000;
  border-width: 1px;
}
.checkout-block__woocommerce-checkout #billing_email_field label {
  color: #000;
  font-weight: 800;
  line-height: 1.42;
  margin-bottom: 0.5rem;
  display: block;
}
.checkout-block__woocommerce-checkout #billing_email_field label {
  font-size: 14px;
}
@media screen and (min-width: 450px) {
  .checkout-block__woocommerce-checkout #billing_email_field label {
    font-size: calc(14px + 2 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__woocommerce-checkout #billing_email_field label {
    font-size: 16px;
  }
}
.checkout-block__woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  text-align: left;
}
.checkout-block__woocommerce-checkout .woocommerce-billing-fields__field-wrapper p {
  margin-bottom: 0.75rem;
}
.checkout-block__woocommerce-checkout #billing_first_name_field.form-row-first,
.checkout-block__woocommerce-checkout #billing_first_name_field.form-row-last,
.checkout-block__woocommerce-checkout #billing_last_name_field.form-row-first,
.checkout-block__woocommerce-checkout #billing_last_name_field.form-row-last,
.checkout-block__woocommerce-checkout #billing_state_field.form-row-first,
.checkout-block__woocommerce-checkout #billing_state_field.form-row-last {
  width: 100%;
  float: none;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text],
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email],
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text],
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email],
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text],
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email],
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select {
  width: 100%;
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #F3F3F3;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.42;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px !important;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select::-webkit-input-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text]::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email]::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text]::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email]::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text]::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email]::-moz-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select::-moz-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text]:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email]:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text]:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email]:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text]:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email]:-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select:-ms-input-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text]::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email]::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text]::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email]::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text]::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email]::-ms-input-placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select::-ms-input-placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text]::placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email]::placeholder,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select::placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text]::placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email]::placeholder,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select::placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text]::placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email]::placeholder,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select::placeholder {
  color: #65676B;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text]:focus,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email]:focus,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select:focus,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text]:focus,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email]:focus,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select:focus,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text]:focus,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email]:focus,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select:focus {
  outline: none;
  border-color: transparent;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text].error,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=text].invalid,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email].error,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper input[type=email].invalid,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select.error,
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select.invalid,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text].error,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=text].invalid,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email].error,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper input[type=email].invalid,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select.error,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select.invalid,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text].error,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=text].invalid,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email].error,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper input[type=email].invalid,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select.error,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select.invalid {
  border-color: #D70000;
  border-width: 1px;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.checkout-block__woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper select option,
.checkout-block__woocommerce-checkout #billing_last_name_field .woocommerce-input-wrapper select option,
.checkout-block__woocommerce-checkout #billing_state_field .woocommerce-input-wrapper select option {
  color: #000;
  background-color: #ffffff;
}
.checkout-block__woocommerce-checkout #billing_first_name_field label,
.checkout-block__woocommerce-checkout #billing_last_name_field label,
.checkout-block__woocommerce-checkout #billing_state_field label {
  color: #000;
  font-weight: 800;
  line-height: 1.42;
  margin-bottom: 0.5rem;
  display: block;
}
.checkout-block__woocommerce-checkout #billing_first_name_field label,
.checkout-block__woocommerce-checkout #billing_last_name_field label,
.checkout-block__woocommerce-checkout #billing_state_field label {
  font-size: 14px;
}
@media screen and (min-width: 450px) {
  .checkout-block__woocommerce-checkout #billing_first_name_field label,
  .checkout-block__woocommerce-checkout #billing_last_name_field label,
  .checkout-block__woocommerce-checkout #billing_state_field label {
    font-size: calc(14px + 2 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .checkout-block__woocommerce-checkout #billing_first_name_field label,
  .checkout-block__woocommerce-checkout #billing_last_name_field label,
  .checkout-block__woocommerce-checkout #billing_state_field label {
    font-size: 16px;
  }
}
.checkout-block__woocommerce-checkout .wc-stripe-upe-element .StripeElement {
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #F3F3F3;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.checkout-block__woocommerce-checkout .wc-stripe-upe-element .StripeElement--focus {
  border-color: transparent;
  outline: none;
}
.checkout-block__woocommerce-checkout .wc-stripe-upe-element .StripeElement--invalid {
  border-color: #D70000;
  border-width: 1px;
}
.checkout-block__woocommerce-checkout .wc-stripe-upe-element .StripeElement--complete {
  border-color: transparent;
}
.checkout-block__woocommerce-checkout .wc-stripe-upe-element .__PrivateStripeElement {
  padding: 1rem !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background-color: #F3F3F3 !important;
}
.checkout-block__woocommerce-checkout #wc-stripe-upe-errors {
  color: #D70000;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 0.25rem;
}
ul.woocommerce-error {
  padding: 0;
  margin-top: 1rem;
}
ul.woocommerce-error li {
  list-style: disc;
  text-align: left;
}
.woocommerce-billing-fields {
  margin-top: 1.5rem;
}
