.button-element {
    width: fit-content;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
    text-align: center;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration-thickness: auto;
    text-decoration-style: solid;
    cursor: pointer;
    border: 2px solid #212529;
    background: #212529;
    color: #fff;
    transition-property: background, border-color, color;
    transition-duration: 0.3s, 0.3s, 0.3s;
    transition-timing-function: ease-in-out, ease-in-out, ease-in-out;
  }
  .button-element:hover {
    background-color: #0a0c0d;
    border-color: #0a0c0d;
  }
  .button-element.btn-sm {
    padding: 4px 12px;
    font-size: 18px;
  }
  .button-element.btn-lg {
    padding: 12px 24px;
    font-size: 24px;
  }
  .button-element.always-full-width {
    display: block;
    width: 100%;
  }
  @media (max-width: 767px) {
    .button-element.sm-full-width {
      display: block;
      width: 100%;
    }
  }
  @media (max-width: 991px) {
    .button-element.md-full-width {
      display: block;
      width: 100%;
    }
  }
  @media (max-width: 1199px) {
    .button-element.lg-full-width {
      display: block;
      width: 100%;
    }
  }
  .button-element.btn-not-rounded {
    border-radius: 0 !important;
  }
  .button-element.btn-default {
    background-color: #212529;
    border-color: #212529;
    color: #fff;
  }
  .button-element.btn-default:hover {
    background-color: #0a0c0d;
    border-color: #0a0c0d;
  }
  .button-element.btn-primary {
    background-color: #b42364;
    border-color: #b42364;
    color: #fff;
  }
  .button-element.btn-primary:hover {
    background-color: #921c51;
    border-color: #921c51;
  }
  .button-element.btn-outline-primary {
    background-color: transparent;
    border-color: #b42364;
    color: #b42364;
  }
  .button-element.btn-outline-primary:hover {
    background-color: #b42364;
    border-color: #b42364;
    color: #fff;
  }
  .button-element.btn-secondary {
    background-color: #23b473;
    border-color: #23b473;
    color: #212529;
  }
  .button-element.btn-secondary:hover {
    background-color: #2ad689;
    border-color: #2ad689;
  }
  .button-element.btn-outline-secondary {
    background-color: transparent;
    border-color: #23b473;
    color: #23b473;
  }
  .button-element.btn-outline-secondary:hover {
    background-color: #23b473;
    border-color: #23b473;
    color: #fff;
  }
  .button-element.btn-light {
    background-color: #e8e9e9;
    border-color: #e8e9e9;
    color: #212529;
  }
  .button-element.btn-light:hover {
    background-color: #d3d5d5;
    border-color: #d3d5d5;
  }
  .button-element.btn-outline-light {
    background-color: transparent;
    border-color: #e8e9e9;
    color: #e8e9e9;
  }
  .button-element.btn-outline-light:hover {
    background-color: #e8e9e9;
    border-color: #e8e9e9;
    color: #212529;
  }
  .button-element.btn-outline-light-emphasis {
    background-color: transparent;
    border-color: #797c7e;
    color: #797c7e;
  }
  .button-element.btn-outline-light-emphasis:hover {
    background-color: #f8f8f8;
    border-color: #797c7e;
    color: #797c7e;
  }
  .button-element.btn-not-styled {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #212529 !important;
    padding: 2px 0;
  }
  .button-element.btn-not-styled:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #212529 !important;
  }
  