// This file is part of Coog. The COPYRIGHT file at the top level of
// this repository contains the full copyright notices and license terms.

@import '../variables';
@import '../Button/Button';

.duplicate-6c0710df-9202-4f17-be12-5f7287995c47 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;

  .button {
    min-height: 38.5px;

    &:not(:first-child) {
      margin-left: 1em;
    }

    &.button-primary {
      @include button-action($color-primary, white, $color-primary);

      cursor: pointer;

      &:hover {
        @include button-action-hover($color-primary-hover);
      }
    }

    &.button-error {
      @include button-action($color-error, white, $color-error);

      cursor: pointer;

      &:hover {
        @include button-action-hover($color-error-hover);
      }
    }

    &.disabled,
    &.button-disabled {
      @include button-action($color-disabled, white, $color-disabled);

      cursor: initial;

      &:hover {
        @include button-action-hover(white);
      }
    }
  }
}
