button {
    text-transform: uppercase;
    border: none;
    border-radius: 28px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.08s ease-out;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 900;
    vertical-align: middle;
    letter-spacing: 1px;
    line-height: 20px;
    outline: none;
    box-sizing: border-box;
    height: 48px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

button:active:not(:disabled),
div[type]:active:not([disabled]) {
    outline: none;
    transform: scale(0.96);
}

button:focus-visible {
    box-shadow: var(--f);
}

button[type="solid"]:focus-visible {
    border: 2px solid var(--a2);
}

button[type="outline"]:focus-visible {
    border-color: var(--a2);
}

button[type="white"]:focus-visible {
    border-color: white;
    box-shadow: var(--wf);
}

button[type="solid"],
button[type="solid"]:disabled:hover {
    background: var(--a1);
    color: white;
    border: 2px solid var(--a1);
}

button[type="solid"]:hover {
    background: var(--a2);
    border-color: var(--a2);
}

button[type="outline"],
button[type="outline"]:disabled:hover {
    background: transparent;
    color: var(--a1);
    border: 2px solid var(--a1);
}

button[type="outline"]:hover {
    background: var(--a2);
    color: white;
    border-color: var(--a2);
}

button[type="white"],
button[type="white"]:disabled:hover {
    background: rgba(255, 255, 255, 0);
    color: white;
    border: 2px solid white;
}

button[type="white"]:hover {
    background: rgba(255, 255, 255, var(--o2));
    color: white;
    border-color: white;
}

button:disabled {
    opacity: var(--o3);
    cursor: not-allowed;
}
