/**
 * @file
 * Visual styles for Style+'s scroll to top button.
 */
.to-top {
  position: absolute;
  top: -35px;
  right: 100px;
  width: 65px;
  height: 65px;
  z-index: 5;
}
.to-top:hover {
  cursor: pointer;
}
.to-top__text {
  color: #ffffff;
  position: absolute;
  top: 29px;
  width: 100%;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 992px) {
  .to-top {
    right: 40px;
  }
}
@media (max-width: 767px) {
  .to-top {
    right: auto;
    left: 50%;
    margin-left: -32px;
  }
}
