Just a few lines of css to transform your button into a floating button
.floating {
position: -webkit-sticky;
position: sticky;
top: 10px;
z-index: 9999;
}
.floating button {
border: 2px solid black;
}
.floating svg {
color: black;
}