.cd-top {
  display: inline-block;
  height: 20px;
  width: 20px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);*/
  /* image replacement properties */
  overflow: hidden;
  font-family: 'Satoshi-Medium', sans-serif;
  font-weight: normal;
  font-size: 22px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index: 5000;
  /*-webkit-border-radius: 20%;
  -moz-border-radius: 20%;
  border-radius: 20%;*/
  /*border-radius: 100%;*/
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  /*opacity: .5;*/
  opacity: 1;
}
.no-touch .cd-top:hover {
  opacity: 1;
  color: #000 !important;
}
a.cd-top {
	text-decoration: none;
}
a.cd-top:hover {
	color: #000 !important;
}
