/* Scroll-To-Top button (works with Bootstrap look & feel) */
#ueScroll {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #6281C1; /* Bootstrap primary */
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 18px;
    z-index: 1050; /* above content, below modals */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
    #ueScroll:hover {
        background: #6286d0;
    }
    #ueScroll:focus {
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(98,129,193,.25);
    }
#ueScroll.ue-scroll-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}