@charset "utf-8";
/* CSS Document */



.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background: #009fff;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 35px;
    right: 0px;
    bottom: 20px;
    padding-top: 2px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	font-size:24px;
}

.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}
.scroll-top-wrapper i.fa {
	line-height: inherit;
}

