.floating-button-menu {
    z-index: 5;
    position: fixed;
    right: 0px;
    cursor: pointer;
    min-width: 80px;
    top: 232px;
    max-width: 0px;
    max-height: 0px;
    transition: all ease-in-out 0.3s;
}
.floating-button-menu:hover {
  background: #fff;
}
.floating-button-menu .floating-button-menu-links {
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.floating-button-menu .floating-button-menu-links a {
  position: relative;
  color: #454545;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 50px;
  display: block;
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  transition: background ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0);
}
.floating-button-menu .floating-button-menu-links a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.floating-button-menu .floating-button-menu-links a:last-child {
  border-bottom: 0px solid #fff;
}
.floating-button-menu .floating-button-menu-links.menu-on {
  background: #fff;
  width: 450px;
  height: 400px;
  border-radius: 10px;
  opacity: 1;
  transition: all ease-in-out 0.5s;
}
.floating-button-menu .floating-button-menu-label {
  text-align: center;
  font-size: 10px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.floating-button-menu .floating-button-menu-label img {
  width: 80px;
  height: 50px;
  border-radius: 5px;
  margin-top: 20px;
  object-fit: cover;
  display: block;
}
.floating-button-menu .floating-button-menu-label p {
  margin-top: 6px; /* space below image */
  font-size: 12px;
  line-height: normal;
  color: #fff;
}
.floating-button-menu.menu-on {
  background: #fff;
  max-width: 340px;
  max-height: 3300px;
  border-radius: 10px;
}
.floating-button-menu.menu-on .floating-button-menu-links {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 1s;
}
.floating-button-menu.menu-on .floating-button-menu-label {
  height: 0px;
  overflow: hidden;
}
.floating-button-menu-close {
  position: fixed;
  z-index: 2;
  width: 0%;
  height: 0%;
}
.floating-button-menu-close.menu-on {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}


