@charset "utf-8";
/* CSS Document */

@media only screen and (min-width: 320px) {
		
	.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99;
    background-color:none;
    color: #fff;
    border: 0px solid #fff;
    /* width: 50px; */
    /* height: 48px; */
    /* line-height: 48px; */
    right: -2px;
    bottom: -2px;
    padding: 2px 6px 0px 12px;
   
   -webkit-border-top-left-radius: 40px;
-moz-border-radius-topleft: 40px;
border-top-left-radius: 40px;
   
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}	
}



@media only screen and (min-width: 768px) {
.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: none;
    color: #fff;
    border: 0px solid #fff;
    /* width: 50px; */
    /* height: 48px; */
    /* line-height: 48px; */
    right: 30px;
    bottom: 30px;
    padding: 0px 6px 2px 6px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}	
	
}	
	
		

.scroll-top-wrapper:hover {
	background-color: none;
	opacity:0.6 !important;
	color:#971515;
	border: 0px solid #971515;
}
.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}
.scroll-top-wrapper i.fa {
	line-height: inherit;
}