/* New branding colours */
/**
Buttons

Add `.abb-button` class to create a button. The default button size is medium and is not skinned. Add `.abb-button--primary` class to change button skin.

Markup:
<button class="abb-button">Button</button>
<button class="abb-button abb-button--primary">Primary button</button>

Styleguide: Buttons
*/
/**
Buttons Size

Add `.abb-button--large` or `.abb-button--small` to change button size.

Markup:
<div>
  <button class="abb-button abb-button--large abb-button--primary">Primary large button</button>
  <button class="abb-button abb-button--large">Standard large button</button>
</div>
<div>
  <button class="abb-button abb-button--primary">Primary medium button</button>
  <button class="abb-button">Standard medium button</button>
</div>
<div>
  <button class="abb-button abb-button--small abb-button--primary">Primary small button</button>
  <button class="abb-button abb-button--small">Standard small button</button>
</div>

Styleguide: Buttons.Size
*/
/**
Buttons Availability

Add `disabled` attribute or to disable button;

Markup:
<button class="abb-button" disabled>Button</button>
<button class="abb-button abb-button--primary" disabled>Primary button</button>

Styleguide: Buttons.Availability
*/
.abb-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  text-align: center;
  display: inline-block;
  border: none;
  margin: 0 0 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  color: #444444;
  background: #f0f0f0; }
  .abb-button:hover {
    background: #dddddd; }
  .abb-button[disabled] {
    color: #a0a0a0;
    background: #dddddd; }
  .abb-button--primary {
    color: #ffffff;
    background: #004b7a; }
    .abb-button--primary:hover {
      background: #0076b7; }
    .abb-button--primary[disabled] {
      color: #6E6E6E;
      background: #004b7a; }
  .abb-button--ghost {
    background: transparent;
    color: #004b7a; }
    .abb-button--ghost:hover {
      color: #0076b7; }
  .abb-button--large {
    font-size: 1.125rem;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .abb-button--small {
    font-size: 0.625rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
  .abb-button--no-margins {
    margin: 0; }
  .abb-button--full-width {
    width: 100%; }
