._Prefix_f8of9_1 {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 14px;
  color: var(--main);
}

._Suffix_f8of9_11 {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 14px;
  color: var(--main);
}

._InputWrapper_f8of9_21 {
  position: relative;
}

._Note_f8of9_25 {
  margin: 0 0 var(--spacing-sm);
  font-size: 14px;
  color: var(--infoHover);
  text-align: left;
  transition: color 0.3s;
}
._Note_f8of9_25 a {
  color: var(--darker);
  transition: color 0.3s;
  text-decoration: none;
}
._Note_f8of9_25 a:hover {
  color: var(--darkerHover);
}
._Note_f8of9_25._smallMarginBottom_f8of9_40 {
  margin-bottom: var(--spacing-sm);
}
._Note_f8of9_25._mediumMarginBottom_f8of9_43 {
  margin-bottom: var(--spacing-md);
}
._Note_f8of9_25._marginBottom_f8of9_46 {
  margin-bottom: var(--spacing-lg);
}
._Note_f8of9_25._smallMarginTop_f8of9_49 {
  margin-top: var(--spacing-sm);
}
._Note_f8of9_25._mediumMarginTop_f8of9_52 {
  margin-top: var(--spacing-md);
}
._Note_f8of9_25._marginTop_f8of9_55 {
  margin-top: var(--spacing-lg);
}
._Note_f8of9_25._noMargin_f8of9_58 {
  margin: 0;
}
._Note_f8of9_25._centered_f8of9_61 {
  text-align: center;
}
._Note_f8of9_25._right_f8of9_64 {
  text-align: right;
}
._Note_f8of9_25._warning_f8of9_67 {
  color: orange;
}
._Note_f8of9_25._error_f8of9_70 {
  color: var(--error);
}

._isOverlayedLabel_f8of9_74 {
  position: relative;
}

._labelWrap_f8of9_78 {
  display: block;
  position: relative;
}
._labelWrap_f8of9_78._hasPresence_f8of9_82 {
  border-radius: 4px;
  box-shadow: 0 0 0 2px var(--presence-color, #4ecdc4);
  animation: _pulse_f8of9_1 2s ease-in-out infinite;
  padding: 4px;
  margin: -4px;
}

@keyframes _pulse_f8of9_1 {
  0%, 100% {
    box-shadow: 0 0 0 2px var(--presence-color, #4ecdc4);
  }
  50% {
    box-shadow: 0 0 0 4px var(--presence-color, #4ecdc4);
  }
}
._SpanLabel_f8of9_98 {
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
}
._SpanLabel_f8of9_98._isOverlayed_f8of9_74 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  z-index: 1;
  transform: translate(0, -100%);
  font-size: 12px;
  padding: 0 2px;
  overflow: hidden;
  white-space: nowrap;
  max-width: calc(100% - 16px);
}
._SpanLabel_f8of9_98._isOverlayed_f8of9_74._isOverlayedLabelSelect_f8of9_118 {
  top: 8px;
}
._SpanLabel_f8of9_98._isInline_f8of9_121 {
  margin-left: 4px;
  margin-bottom: 0;
  cursor: pointer;
}
._SpanLabel_f8of9_98._ellipsis_f8of9_126 {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
._SpanLabel_f8of9_98._small_f8of9_40 {
  font-size: 12px !important;
}
._SpanLabel_f8of9_98._topMargin_f8of9_135 {
  margin-top: var(--spacing-md);
}

._StyledInput_f8of9_139 {
  width: 100%;
  padding: var(--spacing-md);
  font-size: 14px;
  color: var(--main);
  border-radius: 3px;
  border: 2px solid var(--border);
  transition: border 0.3s;
  position: relative;
}
._StyledInput_f8of9_139:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
._StyledInput_f8of9_139._small_f8of9_40 {
  padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) var(--spacing-md);
}
._StyledInput_f8of9_139._large_f8of9_156 {
  padding: var(--spacing-lg);
}
._StyledInput_f8of9_139:focus {
  outline: none;
  border: 2px solid var(--main);
}
._StyledInput_f8of9_139::-moz-placeholder {
  color: #999;
  opacity: 1;
}
._StyledInput_f8of9_139:-ms-input-placeholder {
  color: #999;
}
._StyledInput_f8of9_139::-webkit-input-placeholder {
  color: #999;
}

._StyledTextarea_f8of9_174 {
  width: 100%;
  padding: var(--spacing-sm) 36px var(--spacing-sm) var(--spacing-md);
  font-size: 14px;
  resize: none;
  color: var(--main);
  border-radius: 3px;
  min-height: 78px;
  border: 2px solid var(--border);
  transition: border 0.3s;
}
._StyledTextarea_f8of9_174._small_f8of9_40 {
  border: 1px solid var(--border);
}
._StyledTextarea_f8of9_174:focus {
  outline: none;
  border: 2px solid var(--main);
}
._StyledTextarea_f8of9_174:focus._small_f8of9_40 {
  border: 1px solid var(--main);
}

._CheckBoxLabel_f8of9_196 {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  cursor: pointer;
}
._CheckBoxLabel_f8of9_196._disabled_f8of9_203 {
  cursor: default;
  opacity: 0.4;
}
._CheckBoxLabel_f8of9_196 input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
._CheckBoxLabel_f8of9_196 ._labelWrapper_f8of9_212 {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
  height: auto;
}
._CheckBoxLabel_f8of9_196 + ._Note_f8of9_25 {
  margin: var(--spacing-sm) 0;
}

._CheckboxVisual_f8of9_223 {
  display: block;
  border: 1px solid var(--darker);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
._CheckboxVisual_f8of9_223 svg {
  color: #fff;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

._RadioVisual_f8of9_241 {
  display: block;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: relative;
  border: none;
  flex-shrink: 0;
}
._RadioVisual_f8of9_241 svg {
  color: var(--darker);
  width: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

._FakeInput_f8of9_259 {
  width: 100%;
  padding: var(--spacing-md);
  font-size: 14px;
  color: var(--main);
  background: #fff;
  border-radius: 3px;
  border: 2px solid var(--border);
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
._FakeInput_f8of9_259._large_f8of9_156 {
  padding: var(--spacing-lg) 36px var(--spacing-lg) var(--spacing-lg);
}
._FakeInput_f8of9_259._large_f8of9_156 button {
  right: 0;
}
._FakeInput_f8of9_259._disabled_f8of9_203 {
  opacity: 0.5;
}
._FakeInput_f8of9_259._withSpacingRight_f8of9_282 {
  padding-right: 30px;
}
._FakeInput_f8of9_259 button {
  border: none;
  background: none;
  padding: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -3px;
  top: 0;
  bottom: 0;
  padding: var(--spacing-md);
}

._AddressInputProgressWrapper_f8of9_300 {
  padding: var(--spacing-md) 0;
}

._AddressInputWrapper_f8of9_304 {
  margin: 0 auto;
  position: relative;
}
._AddressInputWrapper_f8of9_304 ._FakeInput_f8of9_259._minimal_f8of9_308 {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 0 !important;
  padding: 0 var(--spacing-xs) var(--spacing-xs) !important;
  min-width: 250px;
}
._AddressInputWrapper_f8of9_304 input._minimal_f8of9_308 {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 0 !important;
  padding: 0 var(--spacing-xs) var(--spacing-xs) !important;
  min-width: 250px;
}

._SuggestionWrapper_f8of9_325 {
  background: white;
  position: absolute;
  width: 100%;
  padding: 0;
  border-radius: 0px 0px 4px 4px;
  overflow-y: auto;
  border: 2px solid var(--main);
  border-top: none;
  margin-top: -1px;
  box-shadow: 0px 1px 5px rgba(37, 37, 37, 0.1);
  z-index: 10;
}
._SuggestionWrapper_f8of9_325._minimal_f8of9_308 {
  background: var(--darkGray);
  width: auto;
  border-radius: 4px;
  border-top: 2px solid var(--main);
  margin-top: 2px;
}
._SuggestionWrapper_f8of9_325._minimal_f8of9_308 ._Suggestion_f8of9_325 {
  white-space: nowrap;
}
._SuggestionWrapper_f8of9_325._minimal_f8of9_308 ._Suggestion_f8of9_325:hover {
  background: var(--main);
}

._Suggestion_f8of9_325 {
  cursor: pointer;
  border: none;
  border-bottom: 1px solid var(--main);
  width: 100%;
  padding: 10px 20px;
  background: none;
  text-align: left;
  margin: 0;
  transition: all 0.3s;
}
._Suggestion_f8of9_325:hover {
  background: #f1f2f3;
}