.Alert {
  padding: 12px 16px;
  border-radius: @border-radius;
  background: @alert-bg;
  line-height: 1.5;

  &, a, a:hover, button, button:hover {
    color: @alert-color;
  }
}
.Alert--error {
  background: @alert-error-bg;

  &, a, a:hover, button, button:hover {
    color: @alert-error-color;
  }
}
.Alert--success {
  background: @alert-success-bg;

  &, a, a:hover, button, button:hover {
    color: @alert-success-color;
  }
}
.Alert-controls {
  list-style-type: none;
  padding: 0;
  margin: 0 -8px 0 8px;
  display: inline-block;

  > li {
    display: inline-block;
    margin: 0 5px;

    > a {
      text-transform: uppercase;
      font-size: 12px;
      font-weight: bold;

      &.disabled {
        cursor: default;
        text-decoration: none;
        opacity: 0.5;
      }
    }

    > .Button {
      margin: -10px;
      vertical-align: 0;
    }
  }
}