#TopOfPage {
  display: inline-block;
  background-color: #0a7dbf;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 10px;
  right: 0px;
  transition: background-color .3s, 
	opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#TopOfPage::after {
  font-family: FontAwesome, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#TopOfPage:hover {
  cursor: pointer;
  background-color: #333;
}
#TopOfPage:active {
  background-color: #555;
}
#TopOfPage.show {
  opacity: 1;
  visibility: visible;
}
 @media only screen and (max-width: 600px) {
  #TopOfPage {
	display: none;
  }
}