.page-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05)!important;
  /* image replacement properties */
  overflow: hidden!important;
  text-indent: 100%!important;
  white-space: nowrap!important;
  background: rgba(50, 129, 196, 0.7) url(/icons/arrows/page-top-arrow.svg) no-repeat center 50%!important;
  visibility: hidden!important;
  opacity: 0!important;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s!important;
  -moz-transition: opacity .3s 0s, visibility 0s .3s!important;
  transition: opacity .3s 0s, visibility 0s .3s!important;
}

#bodytext a:hover.page-top {background: rgba(50, 129, 196, 0.8) url(/icons/arrows/page-top-arrow.svg) no-repeat center 50%!important;}

.page-top.arrow-is-visible, .page-top.arrow-fade-out, .no-touch .page-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s!important;
  -moz-transition: opacity .3s 0s, visibility 0s 0s!important;
  transition: opacity .3s 0s, visibility 0s 0s!important;
}

.page-top:hover.arrow-is-visible {background: rgba(50, 129, 196, 0.8) url(/icons/arrows/page-top-arrow.svg) no-repeat center 50%!important;}

.page-top.arrow-is-visible {
  /* the button becomes visible */
  visibility: visible!important;
  opacity: 1!important;
}
.page-top.arrow-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5!important;
}
.no-touch .page-top:hover {
  background: #28429F!important;
  opacity: 1!important;
}
@media only screen and (min-width: 768px) {
  .page-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-top {
    height: 40px;
    width: 40px;
    right: 25px;
    bottom: 25px;
  }
}
a:link.page-top, a:visited.page-top{border-bottom:0!important;}