@mixin steps{

  border: 2px solid currentColor;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
  padding-right: 1px;
  padding-top: 1px;

}

@mixin _tier_box{

  flex-shrink: 0;
  height: 186px;
  width: 312px;
  border-radius: 3px;
  background-color: #36476B;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.28);
  list-style: none;
  margin-right: 16px;
  overflow: hidden;

}

/* fonts */
@mixin _section_heading{
  color: $color-heading;
  font-size: $section_heading;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 22px;
  font-family: "Open Sans", "Arial";
}
@mixin _label_text{
  @include _section_heading;
}

/* form */
@mixin _formGroup($direction){

  .form-group.form-group-flex {
    width: 100%;
    flex-direction: $direction;

    @if($direction == 'column') {
      .form-label-flex-md{
        flex-basis: auto;
      }
    }
  }

}
@mixin  _formLabel($color){

  label{
    @if($color == 'dark'){
      color: $color-heading;
    }@else if($color == 'light'){
      color: $color-white;
    }@else{
      color: $color;
    }
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    text-transform: uppercase;
    font-family: "Open Sans", "Arial";
  }
}
@mixin _formInput{
  input, .form-control{
    color: $color-black;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid $color-heading;
    border-radius: 1px;
    height: 42px;
  }
}
@mixin defaultTransition($speed:""){
  @if($speed) {
    transition: all $speed linear;
  }
  @else {
    transition: all 300ms linear;
  }
}

@mixin border{

  border: 1px solid $color-light-blue-gray;
  box-shadow: inset 1px 1px 3px 0 #CCD1D9;
  border-radius: 1px;

  &:focus{
    border-color: $color-blue;
  }
}

@mixin success-ui-default{
  ._success-ui{

    height: 349px;
    width: 278px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;

    ._svg-icon{

    }

    ._success-heading{
      @include heading-text;
      margin-top: 28px;
    }

    ._success-message{
      @include description-text;
    }

  }
}

@mixin google-login{
  .google-login-container {
    text-align: center;
    font-weight: 300;
    color: #bbbbbb;

    ._divider{
      display: block;
      padding: 30px 0;
      position: relative;

      &:before, &:after{
        content: '';
        width: calc( 50% - 30px );
        border-bottom: 1px solid #dfdfdf;
        position: absolute;
        top: 50%;
      }

      &:before{
        left: 0;
      }

      &:after{
        right: 0;
      }
    }

    .google-button {
      height: 40px;
      border-width: 0;
      background: white;
      color: #737373;
      border-radius: 5px;
      white-space: nowrap;
      box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.05);
      transition-property: background-color, box-shadow;
      transition-duration: 150ms;
      transition-timing-function: ease-in-out;
      padding: 0;

      &:focus,
      &:hover {
        box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
        cursor: pointer;
      }

      &:active {
        background-color: #e5e5e5;
        box-shadow: none;
        transition-duration: 10ms;
      }
    }

    .google-button__icon {
      display: inline-block;
      vertical-align: middle;
      margin: 8px 0 8px 8px;
      width: 18px;
      height: 18px;
      box-sizing: border-box;
    }

    .google-button__icon--plus {
      width: 27px;
    }

    .google-button__text {
      display: inline-block;
      vertical-align: middle;
      padding: 0 24px;
      font-size: 14px;
      font-family: 'Roboto', arial, sans-serif;
    }
  }
}