.rf-form {
  --rf-input-text-color: #0f172a;
  --rf-input-border-color: #e5e7eb;
  --rf-input-background-color: #fff;
  --rf-input-focus-ring-color: #3b82f6;
  --rf-input-font-size: 14px;
  --rf-input-radius: 6px;
  --rf-field-error-color: #ef4444;
  --rf-alert-success-text-color: #fff;
  --rf-alert-success-background-color: #22c55e;
  --rf-alert-error-text-color: #fff;
  --rf-alert-error-background-color: #ef4444;
  --rf-loader-text-color: #fff;
  --rf-loader-background-color: rgb(43 44 51 / 75%);

  width: 100%;
  max-width: 328px;
}

@media screen and (max-width: 475px) {

  .rf-form,
  .payment-methods {
    max-width: 80%;
  }
}

.rf-form__content {
  position: relative;
  box-sizing: border-box;
  border-radius: inherit;
}

.rf-form__content>*+* {
  margin-top: 16px;
}

.rf-form__content> :last-child {
  margin-top: 20px;
}

.rf-form-field {
  width: 100%;
}

.rf-form-field__error {
  line-height: 1.25;
  display: none;
  width: 100%;
  margin-top: 8px;
  color: var(--rf-field-error-color);
}

.rf-form-input {
  font-size: var(--rf-input-font-size);
  line-height: 24px;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 12px;
  color: var(--rf-input-text-color);
  background-color: var(--rf-input-background-color);
  border: 0 solid var(--rf-input-border-color);
  border-radius: var(--rf-input-radius);
  appearance: none;
}

.rf-form-input:focus {
  border-color: var(--rf-input-focus-ring-color);
  box-shadow: 0 0 0 2px var(--rf-input-focus-ring-color);
}

.rf-alert {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 8px 12px;
  border-radius: 6px;
}

.rf-alert_error {
  color: var(--rf-alert-error-text-color);
  background: var(--rf-alert-error-background-color);
}

.rf-alert__icon {
  flex-shrink: 0;
  width: auto;
}

#floatingButton {
  position: fixed;
  left: 0px;
  bottom: 0px;
  display: none;
  width: 100%;
  cursor: pointer;
}

.floatingButton {
  --tw-text-opacity: 1;
  font-family: sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background-color: rgb(247 158 27 / var(--tw-bg-opacity));
  position: relative;
  z-index: auto;
  display: block;
  width: 100%;
  padding: 5px;
  margin: 0 auto;
  transition: 0.3s;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
}

.floatingButton:hover {
  --tw-brightness: brightness(1.05);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

@media (max-width: 440px) {
  .font-black.font-alt.text-primary-darker.truncate.sm\:text-lg {
    font-size: 14px;
  }
}

.iti {
  width: 100%;
}


.loading-wrapper--7b335d4d {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 5%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.loading-wrapper--7b335d4d:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(20px);
}

.ring-loading--7b335d4d {
  animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
  width: 10px;
  height: 10px;
  padding: 15px !important;
  border: 7px dashed #fff;
  border-radius: 100%;
  margin: 10px auto !important;
  mix-blend-mode: difference;
}

.loading-text--7b335d4d {
  font-size: 14px;
  line-height: 16px;
  font-family: sans-serif;
  text-align: center;
  animation: textFlicker 1.5s linear infinite;
  margin: 10px 0px;
  padding: 0;
  transition: .5s opacity ease-in-out;
  opacity: 1;
  mix-blend-mode: difference;
  color: #fff !important;
}

@keyframes textFlicker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loadingD {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-hidden-class {
  display: none !important;
}

.loader-shown-class {
  display: flex !important;
}

.form-position-relative {
  position: relative;
}