.scroll-to-top {
        background: none;
        margin: 0;
        position: fixed;
        bottom: 35px;
        left: 10px;
        width: 55px;
        height: 50px;
        z-index: 100;
        display: none;
        text-decoration: none;
        color: #ffffff;
        background-color: #00a8ff;
        padding: 5px 10px;
        font-size: 30px;
        border-radius: 3px;

    }

    .scroll-to-top:hover {
        text-decoration: none;
        color: #fff;
    }

    .scroll-to-top:link {
        text-decoration: none;
        color: #fff;
    }

    .scroll-to-top:visited {
        text-decoration: none;
        color: #fff;
    }

    @media only screen and (max-width: 700px) {

        .scroll-to-top {
            max-width: 40px;
            max-height: 35px;
            padding: 2px 6px;
            bottom: 10px;
            left:unset;
            right:105px;
        }

        .scroll-to-top i {
            width: 100% !important;
            height: 100% !important;
        }

        .scroll-to-top i img {
            width: 100%;
            height: 100%;
            vertical-align: top;
        }
    }