.igloo-hsteps-container {
  width: 100%;

  .igloo-hsteps-bar {
    display: flex;

    .igloo-hsteps-bar-item {
      text-align: center;
      flex: auto;
      border-bottom: 3px solid #eeeeee;
      padding-bottom: 16px;

      .igloo-hsteps-bar-item-icon {
        color: @primary-color;
        margin-right: 8px;
        font-size: 24px;
      }
    }

    .igloo-hsteps-bar-item-current {
      border-bottom-color: @primary-color;
    }
  }

  .igloo-hsteps-content {
    width: 100%;

    .igloo-hsteps-step {
      width: 100%;
    }

    .igloo-hsteps-confirmation-container {
      background: #f9f9f9;
      padding: 0;
      margin: 0;
    }

    .igloo-hsteps-button {
      margin-top: 24px;
      min-width: 221px;
    }

    .igloo-hsteps-confirmation {
      width: 100%;
      padding: 32px;
      background: #ffffff;
      margin-top: 32px;
      border-radius: 3px;
    }
  }
}

@media screen and (max-width: 768px) {
  .igloo-hsteps-container {
    .igloo-hsteps-content {
      width: 100%;

      .igloo-hsteps-confirmation-container {
        background: #ffffff;
        padding: 24px 16px;

        .igloo-hsteps-confirmation {
          padding: 16px;
          margin-top: 8px;
        }

        .igloo-hstep-container {
          width: 100%;
          padding: 16px;
          border-radius: 10px;

          &:not(:first-child) {
            margin-top: 24px;
          }

          .igloo-hstep-label {
            margin-bottom: 8px;
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }

    .igloo-hsteps-button-container {
      width: 100%;
      position: sticky;
      bottom: 0;
      box-shadow: 0px 0px 1px rgba(20, 20, 20, 0.04),
        0px 1px 8px 2px rgba(20, 20, 20, 0.08);

      padding: 24px 16px;
      background: #ffffff;

      .igloo-hsteps-button {
        width: 100%;
      }
    }
  }
}
