#scrollButton {
    cursor: pointer;
    outline: none;
    width: 80px;
    height: 45px;
    position: fixed;
    bottom: 30%;
    right: 0;
    margin-right: -80px;
    border: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: rgba(18,98,188, .5);
    box-shadow: 2px 2px 2px #ccc;
    display: none;
    /*color: rgba(255, 255, 255, .75);*/
    color: rgba(255, 255, 255, 1);
    /*text-shadow: 0 0 2px #777;*/
    /*border-radius: 7px;*/
    transition: .75s;
    z-index: 9999999999;
}
#scrollButton:hover {
    background: rgba(18,98,188, .6);
    color: rgba(255, 255, 255, 1);
}