.page-scroller {
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 60px;
  right: 28px;
  z-index: 4002;
  transition: all 0.5s;
  width: 48px;
  height: 48px;
  padding: 9px;
  font-size: 12px;
  background-image: linear-gradient(0deg, #ECECEC, #F8F8F8);
  border: 1px solid #CFCFCF;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
}
.page-scroller.in {
  opacity: 1;
}
.page-scroller:hover {
  transform: scale(1.2);
}
.page-scroller:before {
  content: '\e974';
  font-size: 28px;
  color: var(--c-azure);
}
