// 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';

.confirmation-173c9e28-e81d-4e13-a531-40038480ce4e {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;

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

      cursor: pointer;

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

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

      cursor: initial;

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