/* SCROLL */
.scroll-top {
    position: fixed;
    display: block;
    bottom: 2.6rem;
    right: 1.5625rem;
    z-index: 999;
    background: rgba(255, 255, 255, .9);
    height: 2.375rem;
    width: 2.375rem;
    line-height: 2.25rem;
    text-align: center;
    font-size: .875rem;
    border-radius: 100%;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .05);
    transition: .5s all ease;
    -webkit-transform: translateY(4.25rem);
    transform: translateY(4.25rem);
    color: #788487;
}

.scroll-top.scroll-top-visible {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.scroll-top:hover {
    -webkit-transform: translateY(-0.3125rem);
    transform: translateY(-0.3125rem);
}
