/* @override 
	http://foerster.bw-testserver.de/fileadmin/templates/ext/backtotop/backtotop.css?* */

.cd-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 0px;
  right: 30px;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);*/
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(cd-top-arrow-white.svg) center 50% no-repeat rgb(48, 153, 139);
	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: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: rgba(48, 153, 139);
  opacity: 1;
}
.cd-top.cd-is-visible:hover {
  background-color: rgba(48, 153, 139);
  opacity: 1;
}



@media only screen and (max-width: 1024px) {
.cd-top {
  right: 20px;
  bottom: 61px;
}
}

@media only screen and (max-width: 1023px) {
.cd-top {
  bottom: 0px;
}
}