@media (min-width: 1600px){

    .float{
        position:fixed;
        width:50px;
        height:50px;
        bottom:40px;
        right:40px;
        background-color:#0C9;
        color:#FFF;
        border-radius:50px;
        text-align:center;
        box-shadow: 2px 2px 3px #999;
    }
    .float2{
         position:fixed;
         width:50px;
         height:50px;
         bottom:100px;
         right:40px;
         background-color:#0C9;
         color:#FFF;
         border-radius:50px;
         text-align:center;
         box-shadow: 2px 2px 3px #999;
     }
    .float3{
        position:fixed;
        width:50px;
        height:50px;
        bottom:160px;
        right:40px;
        background-color:#0C9;
        color:#FFF;
        border-radius:50px;
        text-align:center;
        box-shadow: 2px 2px 3px #999;
    }
    .float4{
        position:fixed;
        width:80px;
        height:40px;
        bottom:0px;
        right:90px;
        background-color:#0C9;
        color:#FFF;
        border-radius:0px;
        text-align:center;
        box-shadow: 2px 2px 3px #999;
    }

    .my-float{
        margin-top:17px;
        font-size: 20px !important;
    }
    .float-button {
        position: fixed;
        right: -77px;
        top: 270px;
        transition: all 0.2s ease-in 0s;//this is the key attribute
    z-index: 9999;
        cursor: pointer;
    }
    .float-button:hover {
        right: -7px;//hide it by pushing it off the screen
    }
}