label.active {
  background-color: $brand-success !important;
  border-color: $brand-success !important;
}

.input-group-addon { text-transform: uppercase; }

// DEFAULT | LG | SM
.form-control {
  font-size: $font-size-15;
  &.form-control-lg { 
    font-size: $font-size-16;
  }
  &.form-control-sm {
    font-size: $font-size-14;  
  }
}

// DEFAULT
.input-group{
  .input-group-addon {
    font-size: $font-size-13;
  }
  .input-group-btn .btn {
    font-size: $font-size-13;
    padding: .625rem .8125rem;
  }
  .dropdown-toggle {
    font-size: $font-size-15;
    text-transform: capitalize;    
  }
}

//LG
.input-group-lg{
  .input-group-addon, .btn {
    font-size: $font-size-15;
  }
  .input-group-btn .btn {
    font-size: $font-size-15;
    padding: .75rem .99rem;
  }
  .dropdown-toggle {
    font-size: $font-size-16 !important;    
    padding: .688rem .99rem !important;
  }
}

//SM
.input-group-sm{
  .input-group-addon, .btn {
    font-size: $font-size-12;
  }
  .input-group-btn .btn {
    font-size: $font-size-12;
    padding: .313rem .75rem;
  }
  .dropdown-toggle {
    font-size: $font-size-14;    
    padding: .313rem .75rem !important;
  }
}