/*@mixin aspect-ratio($percentage) {
  &:before {
    content: "";
    padding-top: $percentage;
    display: block;
  }
}*/
.checkout-country-modal-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -100000;
  transition: 0.22s linear;
  opacity: 0;
  visibility: hidden;
}
.checkout-country-modal-wrapper.visible {
  transition: 0.22s linear;
  visibility: visible;
  opacity: 1;
  z-index: 10000000 !important;
}
.checkout-country-modal-wrapper .red-border {
  --input-border-color:red;
}
.checkout-country-modal-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  z-index: 1;
  transition: 0.22s linear;
  background: var(--main-text-color);
}
.checkout-country-modal-content {
  z-index: 2;
  width: 360px;
  padding: 16px;
  max-width: calc(100% - (2 * var(--side-padding)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: white;
  border-radius: var(--common-border-radius);
}
.checkout-country-modal-content .label {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  height: fit-content;
  font-family: "Source Sans Pro";
  color: var(--main-text-color);
}
.checkout-country-modal-content .country-modal-checkout {
  width: 100%;
  margin-bottom: 20px;
}
.checkout-country-modal-content .country-modal-checkout input:focus {
  border-color: var(--main-text-color);
}
.checkout-country-modal-content .submit {
  background-color: var(--main-text-color);
  width: 100%;
  color: white;
}

@media screen and (max-width: 767px) {
  body:not(.standard-checkout-woocommerce) .select2-container {
    z-index: 2000000002;
  }

  .checkout-country-modal-wrapper {
    align-items: flex-end;
    padding: 0;
  }
  .checkout-country-modal-wrapper .checkout-country-modal-content {
    width: 100%;
    max-width: 100%;
    padding: var(--side-padding);
    border-radius: var(--common-border-radius) var(--common-border-radius) 0 0;
  }
}

/*# sourceMappingURL=country-modal-checkout.css.map */
