Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
.wishlist_button{
background: none;
border: none;
display: flex;
align-items: center;
}
.wishlist_button svg{
border-radius: 50%;
margin: 10px 0;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: 1px solid #000;
padding: 5px;
}
.heart-filled path{
fill: red;
}
.button-floating{
position: fixed;
transform: translateY(-50%);
z-index: 1;
padding: 8px;
display: inline-flex;
align-items: center;
text-decoration: none;
color: #000;
background-color: #efefef;
border-radius: 6px 0 0 6px;
transition: all .5s ease;
}
.button-floating:hover{
background-color: #000;
}
.button-floating:hover svg, .button-floating:hover .wishlist_text{
fill: #fff;
color: #fff;
}
.wishlist_text{
margin-left: 7px !important;;
margin: 0px;
text-decoration: none;
}
.button-floating{
top: 50%;
transform: translateY(-50%);
right: 0px;
width: fit-content;
border-radius: 6px 0 0 6px;
z-index: 11;
}
}