/* code here */

.back-arrow-wrap {
  position: fixed;
  right: 40px;
  bottom: 100px;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 98;
  opacity: 0;
  transform: translateY(10px);
  transition: all 300ms ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.show-scroll-top{
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .back-arrow-wrap {
    right:20px;
	bottom: 85px;
    width: 49px;
    height: 49px;
  }
}