.scroll-to-top {
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 1000;
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #262626;
    background-image: url("/images/navbar_background.jpg");
    background-position: center;
    background-size: 120px;
    color: #ddd;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .35);
    cursor: pointer;
}

.scroll-to-top--visible {
    display: block;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    border-color: #777;
    color: #fff;
    outline: none;
}

@media (max-width: 600px) {
    .scroll-to-top {
        bottom: 12px;
        left: 12px;
    }
}
