Your Wishlist
Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
.floating-button {
position: fixed;
bottom: 30px;
right: 20px;
z-index: 1000;
background: #fff;
border: 1px solid #ccc;
border-radius: 30px;
padding: 8px 14px;
display: inline-flex;
align-items: center;
cursor: pointer;
transition: all 0.3s ease;
}
.floating-button .wishlist_text {
margin-left: 8px;
white-space: nowrap;
transition: opacity 0.3s ease;
}
.floating-button.minimized .wishlist_text {
display: none;
}