.form-review {
  padding: 34px 40px 40px;
  background: #faf8f8;
  border-radius: 24px;
}

@media (max-width: 1200px) {
  .form-review {
    padding: 26px 32px 30px;
    border-radius: 16px;
  }
}

@media (max-width: 767px) {
  .form-review {
    padding: 36px 16px 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .form-review__wrapper {
    margin: auto 0;
    padding-bottom: 40px;
  }
}
.field-select {
  display: block;
  position: relative;
}

.field-select__help-text {
  display: none;
  margin-top: 8px;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.field-select__placeholder {
  margin-bottom: 8px;
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #838b9c;
}

.choices {
  position: relative;

  &::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-top: 2px solid #838b9c;
    border-left: 2px solid #838b9c;
    position: absolute;
    top: 17px;
    right: 19px;
    pointer-events: none;
    transition: 0.3s ease-out;
    transform: rotate(-135deg);
  }
}

.choices:hover .choices__inner .choices__item--selectable[data-id="0"] {
  color: #141414;
}

.choices:hover {
  &::after {
    border-color: #141414;
  }
}

.choices.is-open .choices__list--dropdown {
  display: block;
}

.choices.is-open .choices__item--selectable[data-id="0"] {
  color: #141414;
}

.choices.is-open {
  &::after {
    top: 22px;
    transform: rotate(45deg);
    border-color: #141414;
  }
}

.choices.is-focused .choices__inner {
  border-color: #f3d84a;
}

.choices:focus-visible {
  outline: none;
}

.choices__inner {
  padding: 10px 12px;
  display: block;
  width: 100%;
  background: #ffffff;
  border: 2px solid #f8f2f1;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  color: #141414;
  transition: border 0.3s ease-out, background 0.3s ease-out;
  cursor: pointer;
}

.choices__inner .choices__item--selectable[data-id="0"] {
  color: #838b9c;
  transition: 0.3s ease-out;
}

.choices__list--dropdown {
  display: none;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  top: calc(100% + 8px);
  z-index: 2;
}

.choices__list--dropdown .choices__item {
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #141414;
  cursor: pointer;
}

.choices__list--dropdown .choices__item.is-highlighted {
  background: #f3d84a;
}

.choices__list--dropdown .choices__list {
  padding: 0;
  max-height: 240px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.field-file {
  margin-top: 12px;
  margin-bottom: 30px;
  position: relative;
}

.field-file input {
  width: 0;
  overflow: hidden;
  height: 0;
  position: absolute;
  opacity: 0;
}

.field-file__add-file-container {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.field-file__add-file-container-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.field-file__add-file-button {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 70px;
  background: #f8f2f1;
  border: 2px dashed rgba(131, 139, 156, 0.1);
  border-radius: 8px;
  font-size: 16px;
  color: #838b9c;
  cursor: pointer;
}

.field-file__add-file-button svg {
  width: 24px;
  height: 24px;
}

.field-file__preview-container {
  display: flex;
  gap: 16px;
  overflow-x: scroll;

  &::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  &::-webkit-scrollbar-track {
    background: none;
  }

  &::-webkit-scrollbar-thumb {
    background-color: none;
    border: 0;
    width: 0;
    height: 0;
  }
}

.field-file__preview {
  margin-top: 24px;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0);
  min-width: 88px;
  max-width: 88px;
  min-height: 88px;
  max-height: 88px;
  position: relative;
}

.field-file__preview_error {
  border-color: #d44b3f;
  background: #f8f2f1;
}

.field-file__preview_error img {
  opacity: 0.2;
}

.field-file__error-messages {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 12px;
  color: #ff5d48;
  line-height: 14px;
}

.field-file__error-messages li:not(:last-child) {
  margin-bottom: 8px;
}

.field-file__preview_file-size {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: #ff5d48;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.field-file__preview-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.field-file__preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-file__preview-remove-button {
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background: #fff;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  right: -12px;
  cursor: pointer;
}

.field-file__preview-remove-button svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .field-file {
    margin-top: 0;
    margin-bottom: 23px;
    position: relative;
  }

  .field-file__preview {
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
  }
}

@media (max-width: 767px) {
  .field-file__add-file-button {
    height: 51px;
    font-size: 12px;
    line-height: 14px;
    gap: 8px;
  }

  .field-file__add-file-button svg {
    width: 16px;
    height: 16px;
  }
}
