.user-favorite-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 221, 119, .62);
    border-radius: 999px;
    color: #fff0af;
    background: rgba(73, 40, 19, .62);
    box-shadow: 0 5px 14px rgba(0, 0, 0, .16);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, transform .2s ease, opacity .2s ease;
}

.user-favorite-button:hover:not(:disabled),
.user-favorite-button:focus-visible {
    color: #fff;
    background: rgba(151, 100, 25, .86);
    transform: translateY(-1px);
    outline: none;
}

.user-favorite-button.is-favorite {
    color: #3d2603;
    background: #ffd45f;
    border-color: #fff0ae;
}

.user-favorite-button.is-loading {
    opacity: .55;
}

.user-favorite-button:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.user-favorite-button .fa {
    position: static;
    margin: 0;
    color: inherit;
    font-size: 17px;
    line-height: 1;
}

