.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;
  padding: 8px 20px;
  border: 1px solid;
  border-color: inherit;
  cursor: pointer;
  min-width: 126px;
  font-family: "Jost Medium";
  font-size: 16px;
  line-height: 150%;
  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="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; }
