/* @override 
	http://p551036.webspaceconfig.de/fileadmin/templates/ext/backtotop/backtotop.css */

.cd-top {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 32px;
  right: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(cd-top-arrow-white.svg) center 50% no-repeat rgba(204, 77, 65, 1);
  background-size: 20px;
  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: 998;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
  -webkit-transition: all 0.2s ease-in, all 0.2s ease-out; /* Safari / Chrome */
  -moz-transition: all 0.2s ease-in, all 0.2s ease-out; /* Firefox */
  -o-transition: all 0.2s ease-in, all 0.2s ease-out; /* Opera */
  transition: all 0.2s ease-in, all 0.2s ease-out; /* Standard */
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: .5;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  /*opacity: .7;*/
}
.no-touch .cd-top:hover {
  background-color: rgba(204, 77, 65, 1);
  opacity: 1;
}
.cd-top.cd-is-visible:hover {
  background-color: rgba(204, 77, 65, 1);
  opacity: 1;
}