button.favorite-button {
    font-size: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    background-image: url(../../images/icons/favorite.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px;
    opacity: 1;
    transition: .2s ease;
    z-index: 2;
}

button.favorite-button.favorite-button__remove {
    background-image: url(../../images/icons/favorite-added.svg);
}

button.favorite-button.loading {
    opacity: .5;
    cursor: wait;
}

button.favorite-button:hover {
    opacity: .5;
}

.products .product>button.favorite-button {
    position: absolute;
    right: 0px;
    top: 0px;
}

.entry-summary button.favorite-button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    background-size: 20px;
}

.entry-summary button.favorite-button:hover {
    opacity: 1;
    box-shadow: 0px 3px 3px -1px rgba(0, 0, 0, 0.1);
}

@media(max-width:1124px) {
    button.favorite-button:hover {
        opacity: 1;
    }
}