.backToTop {
  height: 40px;
  left: auto;
  position: fixed;
  top: auto;
  width: 40px;
  background: transparent;
  border: 2px solid #ffffff;
  bottom: 30px;
  right: 50px;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.backToTop.active {
  bottom: 50px;
  opacity: 0.2;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.backToTop.active:hover {
  border-color: #1ca6fe;
  background: #1ca6fe;
  opacity: 1;
}
.backToTop i {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: auto;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -moz-transform: translate(-50%, -50%) rotate(-90deg);
  -o-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 10px;
}
@media all and (max-width: 1024px) {
  .backToTop {
    display: none;
  }
}
/*# sourceMappingURL=back_to_top.css.map */