.anycomment-app {
  .anycomment-btn,
  .input[type="submit"],
  input + .input[type="button"] {
    @include button();

    &:not([disabled]):hover,
    &:not([disabled]):active,
    &:not([disabled]):focus {
      @include button();
      background-color: $btn-background-color-active !important;
    }
  }

  .anycomment-btn[disabled] {
    background-color: $semi-hidden-color;

    &:hover,
    &:active,
    &:focus {
      background-color: darken($semi-hidden-color, 5%);
    }
  }
}
