#go-top {
	font-size: @go-top-font-size;
	line-height: @go-top-line-height;
	opacity: 1;
  position: fixed;
  right: 35px;
  bottom: 35px;
  .backface-visibility(hidden);
  .translateY(0);
  .transition(all @main-animation);

  &[disabled] {
  	opacity: 0;
  	pointer-events: none;
  	.translateY(5px);
  }
}