.buy-button{
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 10px 0;
    position: fixed;
    bottom: 55px;
    right: 15px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    z-index: 100;
    
    -webkit-transition: all 0.17s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.17s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.17s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.17s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.17s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    
}

.buy-button:before{
    content: "";
    display: block;
    width: 110%;
    height: 110%;
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-border-radius: 90%;
    -moz-border-radius: 90%;
    border-radius: 90%;
}
.buy-button:hover,
.buy-button:focus{
    color: #ffffff;
    text-decoration: none;
    
    /*-moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);*/
    transform: scale(1.2);    
}
.buy-button i{
    position: relative;
    left: -1px;
}
.buy-button span{
    display: block;
    position: relative;
    margin-top: 1px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
}