.input_wrapper {
  border: 1px solid #c3c8cd;
  border-radius: 10px;
  height: 50px;
  padding-left: 24px;
  padding-right: 10px;
  position: relative;
  width: 100%;
  z-index: 22;
  margin-bottom: 20px;
}
.input_wrapper.input_hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.input_wrapper.error {
  border-color: #eb3a41 !important;
}
.input_wrapper select {
  background: url("../svg/icon_arrow_down.svg") no-repeat right center;
  background-size: 14px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
}
.input_wrapper input,
.input_wrapper select,
.input_wrapper textarea {
  border: none;
  outline: none;
  width: 100%;
  height: 99%;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #131032;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  resize: none;
}
.input_wrapper [type=submit] {
  outline: none;
  border: none;
  box-shadow: none;
  width: 100%;
  margin: 0 auto 14px auto;
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  line-height: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 6px;
}
.input_wrapper [type=submit]:disabled {
  color: #c3c8cd !important;
  background-color: #e4e7ea !important;
}
.input_wrapper.texarea_wrapper {
  height: 100px;
}
.input_wrapper textarea {
  padding-top: 10px;
}
.input_wrapper .placeholder {
  color: #c3c8cd;
  font-weight: 600;
  font-size: 15px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 99;
  margin: 0;
  display: unset;
}
.input_wrapper.has_icon {
  padding-left: 56px;
  background-size: 24px !important;
}
.input_wrapper.has_icon .placeholder {
  left: 56px;
}
.input_wrapper.icon_email {
  background: url("../svg/icon_email_new.svg") no-repeat left 24px center;
}
.input_wrapper.icon_products {
  background: url("../svg/icon_products_new.svg") no-repeat left 24px center;
}
.input_wrapper.icon_seats {
  background: url("../svg/icon_seats.svg") no-repeat left 24px center;
}
.input_wrapper.icon_user {
  background: url("../svg/icon_user_new.svg") no-repeat left 24px center;
}
.input_wrapper.focused {
  border: 2px solid #614efa;
  overflow: visible;
}
.input_wrapper.focused .placeholder {
  top: 0;
  left: 10px;
  padding: 0 10px;
  background-color: #fff;
  font-size: 12px;
  font-weight: 500;
  width: unset;
}
.input_wrapper.has_error .placeholder {
  top: 0;
  left: 10px;
  padding: 0 10px;
  background-color: #fff;
  font-size: 12px;
  font-weight: 500;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.input_error {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  margin-top: -10px;
  color: #eb3a41;
  display: flex;
  gap: 4px;
  align-items: center;
}
.input_error::before {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  content: "";
  background: url("../svg/icon_input_error.svg") no-repeat center center;
}

#sdkForm .input_wrapper .placeholder {
  left: 16px !important;
}