@charset "utf-8";
/* CSS Document */
.btnFloat {
       display:flex;
       width:20px;
       height:20px;
       color:#fff;
       position: fixed;
       right:30px;
       bottom:120px;
       text-align:center;
       z-index:999;
	   align-items: center;
	   justify-content: center;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  		transition:.3s;
}
.imgBtn{
	max-width:45px;
	width: 45px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.3), 0 3px 6px rgba(0,0,0,0.3);
	border-radius: 100px;
}

@media only screen and (max-width: 900px) {
	.btnFloat {

       bottom:50px;
	}
}