.sq_actionbutton {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
}

.sq_actionbutton a {
  position: relative;
  display: inline-block;
  background-color: #F44336;
  border-radius: 100px;
  padding: 5px;
  height: 50px;
  width: 50px;
  box-shadow: 0px 1px 2px rgba(33,33,33,0.5);
}

.sq_actionbutton a img {
  position: absolute;
  width: 50%;
  height: 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sq_actionbutton ul {
  position: absolute;
  display: none;
  list-style: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  height: auto;
  padding: 0;
  transition: 0.2s;
}

    .sq_actionbutton ul.show {
        display: block;
    }

.sq_actionbutton ul li a {
  transition: 0.2s;
  width: 40px;
  height: 40px;
  right: 0px;
}

.sq_actionbutton ul li a:after {
  content: attr(data-label);
  display: none;
  float: right;
  color: white;
  padding: 1mm 2mm;
  margin-right: 11mm;
  margin-top: 1mm;
  text-align: right;
  background-color: rgba(33,33,33,0.5);
  font-size: 10px; 
}

.sq_actionbutton ul.showlabel li a:hover:after {
  display: block;
}

.sq_actionbutton ul li a:hover {
  right: 5px;
}

.sq_actionbutton ul li {
  text-align: center;
}