.add_to_favorites{
    float: left;
    margin: 0 0 20px;
    width: 177px;
    height: 40px;
    background: #8A73B4;
    border: 1px solid #7159A6;
    box-sizing: border-box;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    background-image: url("../images/cross-mark.svg");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: 10px 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 18px;
    padding: 0 0 0 29px;
    transition: .2s;
}
.add_to_favorites:hover{
    background: #7159A6;
    background-image: url("../images/cross-mark.svg");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: 10px 13px;
    transition: .2s;
}
.added_to_favorites{
    width: 40px;
    height: 40px;
    background-color: #8A73B4;
    border: 1px solid #7159A6;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: auto;
    transition: .2s;
    background-image: url("../images/added_to_favorites.svg");
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 25px 24px;
}
.added_to_favorites span {
    display: none;
}
.added_to_favorites:hover{
    background-image: url("../images/added_to_favorites.svg");
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 25px 24px;
    background-color: #764696;
    transition: .2s;
    border: 1px solid #7159A6;
}
.add_to_favorites_disabled {
    background-color: #DDD3CA;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.15);
    background-image: url("../images/cross-mark.svg");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: 10px 13px;
}
.add_to_favorites_disabled:hover {
    background-color: #DDD3CA;
}