/*----------------------------------------------------*/
/* Wizard Settings */
/*----------------------------------------------------*/

.wizard-setup {

  max-width: 959px;
  margin: 0 auto;
  font-family: $font-compensate;

  .logo-container {
    display: flex;
    justify-content: center;
  }

  /*----------------------------------------------------*/
  /* Steps */
  /*----------------------------------------------------*/
  .step-container {
    background-color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 9px;
  }

  .step {
    font-size: 15px;
    font-weight: $font-bold;
    opacity: 0.3;
    padding: 0 25px;

    color: $color-black;
    opacity: 0.3;

    cursor: not-allowed;

    &.active {
      opacity: 1;
      color: $color-primary;
      cursor: pointer;
    }
  }

  .step-divier {
    display: block;
    flex: 1;
    height: 1px;
    background-color: rgba($color-black, 0.3);

    &.active {
      background-color: $color-primary;
    }
  }

  /*----------------------------------------------------*/
  /* Form */
  /*----------------------------------------------------*/
  .form-container {
    padding: 50px;
    background-image: url("../admin/assets/images/bg-settings.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    @include respond(phone) {
      padding: 15px;
    }
  }

  .wizard-setup-form {
    background-color: $color-white;
    position: relative;

    &__close-button {
      position: absolute;
      cursor: pointer;
      top: 7px;
      right: 7px;
      background-color: rgba(123, 123, 123, 0.2);
      width: 17px;
      height: 17px;

      display: flex;
      justify-content: center;
      align-items: center;
    }

    a:link, a:visited {
      color: $color-primary;
      text-decoration: none;
    }

    .tab {
      display: none;
    }

    /*----------------------------------------------------*/
    /* Contact section */
    /*----------------------------------------------------*/
    .contacts {

      margin-top: 65px;

      & > p:first-child {
        font-weight: $font-bold;
        text-align: center;
        margin-bottom: 0;
      }

      &__contact-info {
        display: flex;
        justify-content: center;

        p {
          font-size: 11px;

          &:not(:last-child) {
            margin-right: 50px;
          }
        }
      }
    }

    /*----------------------------------------------------*/
    /* Button group */
    /*----------------------------------------------------*/
    .buttons-container {
      display: flex;
      justify-content: center;

      .backBtn {
        margin-right: 16px;
      }
    }

    /*----------------------------------------------------*/
    /* Tab 1 */
    /*----------------------------------------------------*/

    .tab-1 {
      padding: 0 30px 30px;

      @include respond(phone) {
        padding: 15px;
      }

      h1.wizard-setup-form__heading {
        font-size: 30px;
        color: $color-primary;
        font-weight: $font-bold;
        text-align: center;
      }

      &__content {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
      }

      &__cta {
        margin: 30px 0;
      }

      .buttons-container {
        margin-bottom: 43px;
      }

      &__checkbox-container {

        max-width: 300px;
        margin: 0 auto;

        .compensate-form-row:not(:last-child) {
          margin-bottom: 20px;
        }

        label.checkbox {
          font-size: 8px;
        }
      }
    }

    /*----------------------------------------------------*/
    /* Tab 2 */
    /*----------------------------------------------------*/

    .tab-2 {

      padding: 0 15px 104px;

      @include respond(phone) {
        padding: 15px;
      }

      &__leading-text {
        margin-bottom: 48px;
        margin-top: 0px;
      }

      .inputs-section {

        margin-bottom: 40px;


        &__heading {
          font-size: 15px;
          margin-bottom: 40px;
          color: $color-primary;

          display: flex;
          align-items: center;
          justify-content: center;

          &:before, &:after {
            display: inline-block;
            content: "";
            height: 1px;
            width: 136px;
            background-color: $color-primary;
          }

          &:before {
            margin-right: 20px;
          }

          &:after {
            margin-left: 20px;
          }
        }
      }

      .billing-address-form-row > label, .compensate-form-row > label {
        font-weight: $font-bold;
        margin-bottom: 16px;
        display: block;
      }

      .compensate-form-row .compensate-weight-input {
        margin: 0 auto;
      }

      .compensate-button {
        margin-bottom: 35px
      }

      .compensate-form-row:not(:last-child) {
        margin-bottom: 39px;
      }

      .billing-address-form-row {

        .compensate-form-row {
          margin-bottom: 14px;
        }

        .city-postcode-group {
          display: flex;
          justify-content: center;

          #company_city_field {
            margin-right: 14px;
          }

          input[type=text] {
            width: 134px;
          }
        }

        .compensate-form-row {
          display: inline-block;
        }

        .compensate-form-row > label {
          font-weight: $font-normal;
          font-size: 10px;
          text-align: left;
          margin-bottom: 4px;
          display: block;
        }
      }


      &__content {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
      }

      &__readmore-text {
        font-size: 8.5px;
        text-align: center;
      }
    }

    /*----------------------------------------------------*/
    /* Tab 3 */
    /*----------------------------------------------------*/

    .tab-3 {
      padding: 0 61px 104px;

      @include respond(phone) {
        padding: 15px;
      }

      .compensate-button {
        margin-bottom: 8px
      }

      h2.wizard-setup-form__heading {
        font-size: 20px;
        color: $color-primary;
        font-weight: $font-bold;
        margin-bottom: 26px;
      }

      &__leading-text {
        margin-bottom: 40px;
      }

      &__text-container {
        margin-bottom: 65px;

        .statement-section {
          margin-bottom: 40px;

          h3 {
            margin-bottom: 13px;
          }
        }
      }

      &__learnmore {
        display: block;
        text-align: center;
        font-size: 8px;
      }
    }
  }
}