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

:root {
  --color-redlight: rgba(245, 123, 140, 1);
}

.cd-top {
  display: inline-block;
  width: 40px;
  height: 47px;
  position: fixed;
  bottom: 60px;
  right: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  
  background-image: url(cd-top-arrow.png);
  background-position: center 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 40px 47px;
  
  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: 1;
}

.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: transparent;
  opacity: 1;
}
.cd-top.cd-is-visible:hover {
  background-color: transparent;
  opacity: 1;
}