#myBtn {
    width: 45px;
    height:45px;
	display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
	border-radius: 50%;
    border:1px solid #789A7B;
    bottom: 60px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    outline: none; /* Remove outline */
    background-color: #789A7B; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    
	vertical-align: middle;
	text-align:center;
	font-family: Arial;
	font-size: 20px;
    letter-spacing: 0px;
	font-weight:none;
	text-decoration: none;
}

.icon-size{font-size:20px;}

#myBtn:hover {
    background-color: rgba(75,98,77,1.00); /* Add a dark-grey background on hover */
} 