/* Scroll to top button */
#totop {
    height: 9px;
    opacity: 0;
    position: fixed;
    right: -60px;
    width: 49px;
    z-index: 111;
    display: block;
    bottom: 15%;
    background-repeat: no-repeat;
    background-position: center 15px;
    background-color: #404040;
    font-size: 9px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1;
    border-radius: 8px;
    padding: 28px 0 21px 0;
    right: 10px;
    opacity: 0.7;
}

#totop:before {
    position: absolute;
    content: "^";
    top: 10px;
    left: 50%;
    margin-left: -6px;
    font-size: 13px;
    display: inline-block;
    /*font-family: 'Font Awesome 5 Free';*/
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#totop.show {
    right: 10px;
    opacity: 0.7;
}

#totop:hover {
    opacity: 1;
}