.btn-Button {
    position: relative;
    z-index: 1;
  
    align-items: center;
  
    display: flex;
  
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
  
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .btn-Button[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
  }
  
  .btn-Button-primary {
    justify-content: space-between;
    background-color: black;
    color: white;
  
    transition: background-color 0.3s ease, opacity 0.2s ease;
  }
  .btn-Button-primary:not([disabled]):hover {
    background-color: var(--Color_Brand);
    color: var(--Color_White);
  }
  
  .btn-Button-secondary {
    justify-content: space-between;
  
    background-color: var(--Color_Grey-light);
    border-radius: 50px;
    color: var(--Color_Body);
  
    transition: background-color 0.3s ease, opacity 0.2s ease;
  }
  .btn-Button-secondary:not([disabled]):not([aria-pressed='true']):hover {
    background-color: var(--Color_Grey);
  }
  .btn-Button-secondary[aria-pressed='true'] {
    background-color: var(--Color_Brand);
    color: var(--Color_White);
  }
  
  .btn-Button-tertiary {
    padding: 0;
  }
  
  .btn-Button-error {
    background-color: var(--Color_Red);
    color: #fff;
  }
  
  /*
  |--------------------------------------------------------------------------
  | Revealing text
  |--------------------------------------------------------------------------
  |
  */
  .btn-Button_Text {
    display: none;
  }
  @media only screen and (min-width: 1201px) {
    .btn-Button_Text {
      display: block;
  
      white-space: nowrap;
  
      overflow: hidden;
  
      transition: width 0.2s ease;
    }
  }
  .btn-Button-revealingText .btn-Button_Text {
    width: 0;
  }
  .btn-Button-revealingTextActive .btn-Button_Text,
  .btn-Button-revealingText:hover .btn-Button_Text {
    width: var(--Width, 80px);
  }
  
  /*
  |--------------------------------------------------------------------------
  | Button sizings
  |--------------------------------------------------------------------------
  |
  */
  
  .btn-Button-wide {
    min-width: 285px;
    width: 285px;
  }
  .btn-Button-wide.btn-Button-small {
    min-width: 220px;
    width: 220px;
  }
  
  .btn-Button-fullWidth {
    width: 100%;
  }
  
  .btn-Button-small {
    padding: 4px 15px;
  
    font-size: 13px;
    line-height: 19px;
  }
  
  /*
  |--------------------------------------------------------------------------
  | Arrow
  |--------------------------------------------------------------------------
  |
  */
  .btn-Button_Arrow {
    display: block;
    width: 16px;
    height: 16px;
  
    transition: transform 0.2s ease;
  }
  .btn-Button:hover .btn-Button_Arrow {
    transform: translateX(5px);
  }
  .btn-Button-tertiary .btn-Button_Arrow {
    margin-right: 10px;
  }
  [data-loading='true'] .btn-Button_Arrow,
  .btn-Button-loading .btn-Button_Arrow {
    display: none;
  }
  
  /*
  |--------------------------------------------------------------------------
  | Loading
  |--------------------------------------------------------------------------
  |
  */
  .btn-Button_Loading {
    display: none;
    width: 10px;
    height: 18px;
  
    will-change: transform;
  
    animation: 1s ease infinite ButtonLoadingRotate;
  }
  /* stylelint-disable-next-line selector-max-type, selector-no-qualifying-type */
  [data-loading='true'] .btn-Button_Loading,
  .btn-Button-loading .btn-Button_Loading {
    display: block;
  }
  
  @keyframes ButtonLoadingRotate {
    0% {
      transform: rotate(0deg);
      transform-origin: center;
    }
  
    100% {
      transform: rotate(360deg);
      transform-origin: center;
    }
  }
  