div.wrapper {
  gap: 40px;
  width: 100%;
  align-items: center;
}

.form-appeal {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ШАГ СТЕППЕРА */

.step {
  display: flex;
  justify-content: space-between;
}

.step:last-child {
  align-items: start;
}

/* ИНФОРМАЦИЯ О ШАГЕ */

.step__step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 200px;
}

.step__step-caption {
  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  display: flex;
  align-items: center;

  color: #171717;
}

.step__step-explanation {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  display: flex;
  align-items: center;

  color: var(--lightGray);
}

/* НОМЕР ШАГА */
.step__step-delimeter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step__number {
  /* запрещаем менять размер элемента */
  flex-shrink: 0;

  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid var(--appBlue);

  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;

  display: flex;
  align-items: center;

  color: var(--appBlue);
}

.step__completed-step {
  content: url("/local/templates/main/assets/img/done.svg");
  background-color: var(--appYellow);
  border: 1px solid transparent;
  padding: 15px;
}

.step__delimeter {
  width: 2px;
  height: auto;
  background-color: var(--appYellow);
}

/* ПОЛЯ ВВОДА ШАГА */
.step__step-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 570px;
}

.step__step-field {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 20px;
  border: 1px solid transparent;

  resize: none;

  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  display: flex;
  align-items: center;

  color: #171717;
}
.step__step-field::placeholder {
  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  display: flex;
  align-items: center;

  color: var(--lightGray);
}

.step__file-picker-wrapper {
  position: relative;
  cursor: pointer;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.step__file-picker-placeholder {
  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;

  user-select: none;

  color: var(--appBlue);
}

.step__file-picker {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.step__submit-button {
  width: fit-content;
  align-self: center;
  padding: 20px 40px;
  background: transparent;
  border: 2px solid var(--appYellow);
  border-radius: 10px;

  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;

  color: #171717;
  cursor: pointer;

  transition: all .2s;
}

.step__submit-button:hover {
  color: #fff;
  background-color: var(--appYellow);
}

.mf-captcha {
  width: fit-content !important; 
}

select[name='theme'] {
  display: none;
}

.select-wrapper {
  position: relative;
  cursor: pointer;

  z-index: 3;
}

.select-title {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 20px;
  border: none;

  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--lightGray);

  user-select: none;
}

.select-title * {
  /* opacity: 0.5; */
}

.select-title-active {
  color: #171717;
}

.select-title-active svg path {
  fill: #171717;
}

.select-title-active * {
  opacity: 1;
}

.select-body {
  position: absolute;
  top: calc(100% + 4px);

  width: 100%;

  box-shadow: 0 0 15px 0.1px #17171788;

  background: #ffffff;
  border-radius: 10px;
  border: 1px solid transparent;

  font-family: "Europe";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  display: flex;
  align-items: center;
  color: #171717;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.select-body__item {
  background-color: transparent;
  padding: 10px 20px;

  width: 100%;
  height: 100%;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.select-body__item:first-child {
  padding-top: 20px;
}

.select-body__item:last-child {
  padding-bottom: 20px;
}

.select-body-hidden {
  display: none;
}

.step__step-field_error {
  border: 1px solid red;
}

@media screen and (max-width: 1200px) {
  div.wrapper {
    gap: 30px;
  }

  .form-appeal {
    gap: 30px;
    align-items: center;
  }

  .form-appeal .step {
    max-width: 100%;
  }

  .step__step-info {
    display: none;
  }

  .step__step-delimeter {
    display: none;
  }

  .step__submit-button {
    color: #fff;
    background: var(--appYellow);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}
