#product-actions div {
  position: relative;
  cursor: pointer;
  float: right;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 48px;
  height: 48px;
  display:inline-block;
}

#product-actions div .product-action-span {
	visibility: hidden;
  	position: absolute;
    width: 150px;
    margin-left: -75px;
/*     background-color: black; */
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    bottom: 100%;
    left: 50%; 
}

#product-actions div:hover {
	opacity: 0.40;
}
#product-actions div:hover .product-action-span {
	visibility: visible;
	opacity: 1 !important;
}

#product-actions {
	float: right;
    margin-bottom: 7px;
    margin-top: 10px;
}