.scroll-up {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    position: fixed;
    font-size: 18px;
    right: 0;
    bottom: 0;
    margin-right: 32px;
    margin-bottom: 105px;
    opacity: 0;
    z-index: 999;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 2px;
    line-height: 1;
   	background-color: #1a2d32;
   	border-radius: 100%;
}

.scroll-up::before {
	content: '\f106';
	font-family: FontAwesome;
	font-size: 20px;
	color: #fff;
	display: inline-block;
}

.scroll-up.active {
    opacity: 1;
}