.theme-button {
    color: inherit;
    display: inline-block;
    border: 1px solid;
    border-color: inherit;
    border-radius: 75px;
    font-family: degular, sans-serif;
    font-size: 0.844em;
    font-style: normal;
    line-height: 1.333em;
    letter-spacing: 0.02em;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    /* padding: 0.6em 2.4em 0.7em 1em; */
    padding: 0.6em 1em 0.7em 1em;
    text-decoration: none;
    position: relative;
    transition: all .3s;
    overflow: hidden;
}

.theme-button:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: var(--theme-gold);
    margin-right: .5em;
    margin-bottom: -.15em;
    will-change: transform;
    transition: transform .3s;
}

.theme-button:hover {
    background-color: var(--theme-gold);
    color: #fff;
}

.has-off-white-background-color .theme-button {
    border-color: var(--theme-lt-green);
}

.theme-button-back {
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8125 12.0571L0.5625 0.5625M0.5625 0.5625H9M0.5625 0.5625V9.18342' stroke='%23C5A458' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 24px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.125rem;
}

.theme-button-next {
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5625 12.0571L11.8125 0.5625M11.8125 0.5625H3.375M11.8125 0.5625V9.18342' stroke='%23C5A458' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 24px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.125rem;
}

.theme-button-next:hover,
.theme-button-next:focus,
.theme-button-back:hover,
.theme-button-back:focus {
    text-decoration: underline;
    outline: none;
}