
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #404041;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 1s ease-out, background-color 1s ease;
}
#back-to-top:hover {
    background: #4D4D4D;
}
#back-to-top.show {
    opacity: 1;
}