.floating {
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 400;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.floating .ibtn.gotop {
    background: #7F7F7F url(../images/gotop.png) no-repeat;
    width:  54px;
    height: 54px;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    -webkit-border-radius: 5px 0 0 5px;
            border-radius: 5px 0 0 5px;
}
.floating .ibtn.gotop:hover {
    width: 88px;
    background-color: #404040;
}

@media screen and (max-width: 767px) {
    .floating {
        display: none;
    }
}