/* Source: assets/css/slapio-button-1.css */
.slb-preset-button-1 *,
.slb-preset-button-1 *::before,
.slb-preset-button-1 *::after {
box-sizing: border-box;
}

.slb-preset-button-1 {
--slapio-background-neutral: #ffffff;
  --slapio-background-hover: #e5f7fb;
  --slapio-button-outline-default: #009cde;
  --slapio-button-outline-focus: #84d5e7;
  --slapio-button-text-default: #203262;
  --slapio-button-text-hover: #1a2851;
  --slapio-button-text-pressed: #142041;
  --slapio-button-height: 40px;
  --slapio-button-horizontal-padding: 24px;
}

.slb-preset-button-1 {
min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--slapio-background-neutral);
  color: var(--slapio-button-text-default);
  font-family: Lato, Arial, Helvetica, sans-serif;
}

.slb-preset-button-1 .slapio-club {
display: inline-flex;
}

.slb-preset-button-1 .slapio-button {
display: flex;
  justify-content: center;
  align-items: center;
  min-width: max-content;
  height: var(--slapio-button-height);
  padding: 0 calc(var(--slapio-button-horizontal-padding) - 1px);
  border: 1px solid transparent;
  border-radius: 64px;
  background-clip: border-box;
  color: var(--slapio-button-current-text, var(--slapio-button-text-default));
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.slb-preset-button-1 .slapio-button:focus-visible {
outline: 3px solid var(--slapio-button-outline-focus);
  outline-offset: 2px;
}

.slb-preset-button-1 .slapio-button.slapio-secondary {
--slapio-button-current-text: var(--slapio-button-text-default);
  background-color: transparent;
  border-color: var(--slapio-button-outline-default);
}

.slb-preset-button-1 .slapio-button.slapio-secondary:hover {
--slapio-button-current-text: var(--slapio-button-text-hover);
  background-color: var(--slapio-background-hover);
}

.slb-preset-button-1 .slapio-button.slapio-secondary:active {
--slapio-button-current-text: var(--slapio-button-text-pressed);
  background-color: var(--slapio-background-hover);
}

@media (max-width: 619.98px) {
.slb-preset-button-1 {
--slapio-button-height: 32px;
    --slapio-button-horizontal-padding: 13px;
}

.slb-preset-button-1 {
padding: 16px;
}

.slb-preset-button-1 .slapio-club,
.slb-preset-button-1 .slapio-button {
width: 100%;
}

.slb-preset-button-1 .slapio-button {
font-size: 12px;
}
}
