
@use "sass:map";
@use "~@nuskin/ns-core-styles/src/scss/colors";

@import "./view-size.mixins";

$color-blackhole: map.get(colors.$baseColors, blackhole); // #272525

@mixin confirm-reject-button-container() {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;

  .bc-accept,
  .bc-cancel {
    margin: 0;
  }

  .bc-accept {
    order: 1;
    width: auto;
  }

  .bc-cancel {
    order: 2;
    width: auto;
    margin-top: 10px;
    background: transparent;
    color: $color-blackhole;
  }

  @include view-desktop() {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: center;
    align-items: center;

    .bc-accept {
      order: 2;
      width: 250px;
      margin: 0 0 0 20px;
    }

    .bc-cancel {
      order: 1;
      width: auto;
      height: auto;
      text-align: center;
      margin: 0;
      padding: 0 !important;
      background: transparent;
      border: transparent;
      color: $color-blackhole;
    }
  }
}
