@mixin input-error-message {
  color: $state-danger-text;
  min-height: 30px;
  padding-top: 4px;
  display: table;
  &:before {
    position: relative;
    top: 1px;
    vertical-align: middle;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\f071" / "";
  }
  &-item {
    display: table-cell;
    vertical-align: middle;
    padding-left: 7px;
    line-height: 1.3
  }
}

@mixin outline {
  border: 1.5px #0071E2 solid;
  box-shadow: 0 0 6px 0 rgba(0, 113, 226, 0.75);
}

@mixin text-input {
  border: border(1);
  border-radius: 3px;
  font-size: 15px;
  min-height: spacing(42);
  padding: spacing(10);
  width: 100%;
}

@mixin select-dropdown {
  background-color: white;
  height: 42px;
  &:after {
    content: '\f078';
    font: {
      family: FontAwesome;
      size: 12px;
    }
    pointer-events: none;
    position: absolute;
    right: 2.25em;
    top: 1.5em;
  }
  & select {
    appearance: none;
    border-radius: $bb-studio-border-radius;
    min-width: 210px;
    padding: {
      top: spacing(10);
      right: spacing(15);
      bottom: spacing(10);
      left: spacing(10);
    }
    position: relative;
    -webkit-appearance: none;
  }
}
