/*
 *  scrollToTop.css
 *  Scroll to the top of the page
*/

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 44px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0,0,0,0.4);
    z-index: 1000;
}

#scrollDown {
    position: fixed;
    bottom: 30px;
    right: 44px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0,0,0,0.4);
    z-index: 1000;
}

#scrollToTop:hover, #scrollDown:hover {
    background-color: rgba(0,0,0,0.6);
}

#scrollToTop i {
    line-height: 45px;
}

#scrollDown i {
    line-height: 50px;
}

.circle {
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  border-radius: 100% !important;
}

