﻿
/* ================= BACK TO TOP BUTTON ================== */
/*@media only screen and (max-width:1024px) {
    .buy-now-corner {
        display: none !important;
    }
}*/

 .buy-now-corner  {
    background-color: red;
    position: fixed;
    bottom: 1.5em;
    right: 1.5em;
    display: none;
    background-image:url('../images/shopping.png');
    background-repeat:no-repeat;
    background-position:center center;
    width:60px;
    height:60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition:background 0.2s ease-in-out;
    -moz-transition:background 0.2s ease-in-out;
    -o-transition:background 0.2s ease-in-out;
    -ms-transition:background 0.2s ease-in-out;
    transition:background 0.2s ease-in-out;
}

.buy-now-corner:hover  {
    background-image:url('../images/shopping-invert.png');
}
