#scroll_to_top {
    background-color      : #FD7401;
    border-radius         : 4px;
    -webkit-border-radius : 4px;
    -moz-border-radius    : 4px;
    bottom                : 50px;
    display               : inline-block;
    height                : 50px;
    opacity               : 0;
    position              : fixed;
    right                 : 30px;
    text-align            : center;
    transition            : background-color .3s, opacity .5s, visibility .5s;
    visibility            : hidden;
    width                 : 50px;
}

#scroll_to_top::after {
    background        : none;
    border            : 5px solid #FFFFFF;
    border-right      : none;
    border-bottom     : none;
    content           : "";
    display           : block;
    height            : 12px;
    margin            : 20px auto;
    transform         : rotate(45deg);
    -webkit-transform : rotate(45deg);
    -moz-transform    : rotate(45deg);
    -o-transform      : rotate(45deg);
    width             : 12px;
}

#scroll_to_top:hover {
    background-color : #A56734;
    cursor           : pointer;
}

#scroll_to_top:active {
    background-color : #777777;
}

#scroll_to_top.show {
    opacity    : 1;
    visibility : visible;
}