.style-button {
    --font-color-highlight: #C3AB82;

    position: relative;
    display: inline-block;
    -webkit-appearance: none;
    text-transform: none;
    font-style: normal;
    letter-spacing: 0;
    font-family: var(--emg-font-open-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    padding: 13px 24px;
    border: 1px solid var(--font-color-highlight);
    color: var(--font-color-highlight);
    --font-color-override: var(--font-color-highlight);
    border-radius: 25px;
    background: transparent;
    transition: background var(--emg-transition-time--m), border var(--emg-transition-time--m);
}

.style-button:hover,
:where(.button-hover-container:hover) .style-button {
    border-color: color-mix(in srgb, var(--font-color-highlight) 20%, transparent);
    background: color-mix(in srgb, var(--font-color-highlight) 20%, transparent);
}

/* button-element */

/* .button-element--align-no-select */

.button-element--align-left {
    text-align: left;
}

.button-element--align-center {
    text-align: center;
}

.button-element--align-right {
    text-align: right;
}
