.caption-wrapper {
  flex: 1;
}

.field-caption {
  flex: 1;
  border: none;
  outline: none;

  *:focus {
    outline: none;
  }
}

.choice {
  margin-bottom: 25px;
}

.choices {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;

  .choice-item {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 5px;

    border: 1px solid var(--color-gray-eee);
    border-radius: 5px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);

    .close-choice {
      cursor: pointer;
      position: relative;
      top: 3px;
    }

    .drag-icon {
      position: relative;
      top: 0;
      left: 1px;
    }

    .value {
      display: flex;
      flex: 1;
      gap: 5px;
      align-items: center;
    }

    .action-disable {
      cursor: pointer;
      width: 80px;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

.control {
  display: flex;
  flex-direction: column;

  &.new-choice {
    display: flex;
  }

  .add-choice {
    cursor: pointer;
    position: relative;
    top: 3px;
  }
}

.icon-info {
  cursor: help;
}

.field-label {
  cursor: pointer;
  display: flex;
  margin-bottom: 3px;
  font-size: 12px;

  .field-label-text {
    margin-right: 5px;
    color: #888;
  }
}
