@media (max-width: 767px) {
	.to-the-top.stick {
		right: 20px !important;
		bottom: 40px !important;
	}
}

@media (max-width: 600px) { 
 .to-the-top.stick {
 	bottom: 40px !important;
 }
}


.to-the-top.stick {
  opacity: 0.9 !important;
  pointer-events: auto !important;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.to-the-top {
  position: fixed;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 0 0 5px 5px;
  text-align: center;
  font-size: 11px;
  padding: 10px 4px 0 4px;
  line-height: 11px;
  font-weight: 100;
  color: #fff;
  background-color: #333;
  cursor: pointer;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.to-the-top:before {
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-bottom: 13px solid #333;
  border-top: 13px solid transparent;
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
}