.box-fav-list {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fav-list {
    padding: 0 0 40px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.fav-list .product__list {
	display: flex;
    width: 100%;
}

.add-to-fav {
    border: none;
    background: none;
     height: 100%;
    width: 100%;
}

.add-to-fav svg {
	height: 100%;
    min-height: 30px;
    width: 100%;
    min-width: 30px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.add-to-fav svg.fav-on {
	display: none;
}

.add-to-fav.active svg.fav-on {
	display: block;
}
.add-to-fav.active svg.fav-off {
	display: none;
}