.sbh-button {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 32px !important;
  padding: 8px 20px;
  border: 1px solid;
  border-color: inherit;
  cursor: pointer;
  min-width: 126px;
  font-family: "Jost Medium";
  font-size: 16px !important;
  line-height: 150%;
  font-weight: 500 !important;
  transition: 0.2s background-color, 0.2s color;
  text-decoration: none !important; }
  .sbh-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 2px solid #1973e1;
    opacity: 0;
    transition: 0.15s opacity;
    border-radius: 32px; }
  .sbh-button[data-state="focus"], .sbh-button:focus {
    border-color: white !important; }
    .sbh-button[data-state="focus"]::before, .sbh-button:focus::before {
      opacity: 1; }
  .sbh-button[data-state="disabled"] {
    background: #d5d5d5 !important;
    color: #464646 !important;
    border-color: #d5d5d5 !important;
    pointer-events: none; }
  .sbh-button[data-width="fluid"] {
    width: 100%; }
  .sbh-button[data-use="link"] {
    border: none;
    text-decoration: underline !important;
    color: #111111; }
    .sbh-button[data-use="link"]:focus {
      text-decoration: underline !important; }
      .sbh-button[data-use="link"]:focus::before {
        border: none; }

.sbh-button[data-use="primary"] {
  background-color: #dc1e35;
  border-color: #dc1e35;
  color: #fff; }
  .sbh-button[data-use="primary"][data-state="hover"]:not([data-state="focus"]):not(:focus), .sbh-button[data-use="primary"]:hover:not([data-state="focus"]):not(:focus) {
    background-color: #b61a2d; }
  .sbh-button[data-use="primary"][data-state="white"] {
    background: transparent;
    border: 1px solid #fff;
    color: #fff; }

.sbh-button[data-use="secondary"] {
  background: transparent;
  color: #464646;
  border-color: #464646; }
  .sbh-button[data-use="secondary"][data-state="hover"]:not([data-state="focus"]):not(:focus), .sbh-button[data-use="secondary"]:hover:not([data-state="focus"]):not(:focus) {
    background-color: #6d6d6d;
    color: #fff; }
  .sbh-button[data-use="secondary"][data-state="focus"], .sbh-button[data-use="secondary"]:focus {
    background-color: #6d6d6d;
    color: #fff; }

.sbh-button[data-use="input"] {
  background-color: #dc1e35;
  border-color: #dc1e35;
  color: #fff;
  height: 40px;
  border-radius: 0 2px 2px 0; }
  .sbh-button[data-use="input"]:focus {
    outline: none; }
  .sbh-button[data-use="input"]::before {
    border-radius: 2px;
    z-index: 2; }

.sbh-button[data-use="disable"] {
  border: none;
  background: #D5D5D5;
  color: #454545;
  line-height: 1.25rem;
  font-size: 0.875rem;
  width: 100%; }
  .sbh-button[data-use="disable"]:focus {
    outline: none; }
  @media (min-width: 1200px) {
    .sbh-button[data-use="disable"] {
      font-size: 1rem;
      line-height: 1.5rem; } }
  @media (min-width: 544px) and (max-width: 991.98px) {
    .sbh-button[data-use="disable"] {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center; } }

.sbh-button[data-use="active"] {
  border: none;
  background: #dc1e35;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%; }
  @media (min-width: 1200px) {
    .sbh-button[data-use="active"] {
      font-size: 1rem;
      line-height: 1.5rem; } }
  @media (min-width: 544px) and (max-width: 991.98px) {
    .sbh-button[data-use="active"] {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center; } }
  .sbh-button[data-use="active"]:hover, .sbh-button[data-use="active"]:focus {
    background-color: #be0024; }
