/* stylelint-disable no-descending-specificity */
.to-top-right #toTop {
  right: 75px;
}
.to-top-left #toTop {
  left: 75px;
}
.to-top-floating #toTop {
  bottom: 30px;
  height: 44px;
  width: 44px;
}
.to-top-floating #toTop:before {
  line-height: 42px;
}
#toTop {
  background-color: #333;
  border-radius: 4px 4px 0 0;
  bottom: 0;
  height: 35px;
  position: fixed;
  text-align: center;
  width: 48px;
  opacity: 0;
  z-index: 100000;
  transition: opacity 0.4s ease-in-out, background 0.2s ease-in-out;
  line-height: 1;
  pointer-events: none;
}
#toTop:before {
  line-height: 35px;
  content: "\f106";
  -webkit-font-smoothing: antialiased;
  font-family: "icomoon";
  font-size: 22px;
  color: #fff;
}
#toTop:active,
#toTop:focus {
  outline: none;
  background-color: #333;
}
#toTop.fusion-to-top-active {
  pointer-events: auto;
  opacity: 0.9;
  transition: opacity 0.4s ease-in-out, background 0.2s ease-in-out;
}
