.wizard-editor {
  width: 500px;
  background-color: white;
  border-radius: 2px;
  border: 1px solid #ececec;
  .info {
    opacity: .6;
  }
  &__footer {
    display: flex;
    padding: 1rem .5rem 1rem;
    margin: 1rem .5rem 0;
    align-items: flex-start;
    border-top: 1px solid #e5e5e5;
    &--left {
      flex-grow: 1;
    }
  }
  &__body {
    padding: .5rem 1rem;
  }
  &__header {
    padding: .5rem;
  }
  &__button {
    display: inline-block;
    border-radius: 4px;
    padding: 2px 4px;
    width: 100px;
    text-align: center;
    margin-right: 8px;
    background-color: #fff;
    color: #2c3339;
    border-color: #e5e5e5;

    &--primary {
      margin-right: 0;
      background-color: #0b92da;
      color: white;
    }
  }
  &__input {
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    color: #7a7a7a;

    &--placeholder {
      border: none;
      display: flex;
      margin: 0 -2px;
      cursor: not-allowed;

      & + .wizard-editor__input--placeholder {
        margin-top: 4px;
      }
    }
  }
  &__word {
    $color: #eeeeee;
    display: inline-block;
    height: 12px;
    margin: 3px;
    background-color: $color;
    vertical-align: middle;
  }
  &__solid {
    $color: #f5f5f5;
    font-size: 14px;
    padding: 3px 5px;
    color: $color;
    background-color: $color;
    margin: 0 2px;
    flex-grow: 1;
    min-height: 22px;
    border-radius: 4px;
  }
  &__title {
    font-size: 20px;
    text-align: center;
    font-weight: 300;
  }
  .wizard-steps {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: .5rem 0;
    position: relative;
    margin: .5rem -.5rem 0;

    &:before {
      position: absolute;
      top: 21px;
      left: 0;
      height: 4px;
      width: 100%;
      display: block;
      content: '';
      background-color: #e5e5e5;
    }

    &__item {
      width: 30px;
      height: 30px;
      border-radius: 100px;
      background-color: #e5e5e5;
      position: relative;
      cursor: pointer;

      &--active {
        background-color: #0b92da;
      }
    }
  }

  .wizard-info {
    padding: .75rem;
    border: 1px solid #e5e5e5;
    text-align: center;
    margin: 0 0 1rem;

    hr {
      margin-bottom: .75rem;
    }

    .form-row__label {
      text-align: left;
      font-weight: normal !important;
    }

    &--wider {
      padding: 1rem;
      margin-bottom: 2rem;
    }
  }
}

.form-row--wizard {
  .form-row__label {
    padding-top: 0;
    width: 185px !important;
  }
  .drag-icon {
    padding-top: 4px;
    opacity: .4;
    cursor: move;
  }
}