.back2top{
  position: fixed;
  z-index: 2 !important;
  display: block;
  box-sizing: border-box;
  height: 50px;
  width: 50px;
  border: none;
  background-color: #074b83;
  border-radius: 3px;
  bottom: 30px;
  right: 30px;
  margin-right: -30px;
  outline: none;
  opacity: 0;
  transition: opacity .3s ease, margin-right .5s ease-out;
}

.visible{
  transition: opacity .3s ease, margin-right .5s ease-out;
  margin-right: 0px;
  opacity: .6;
}

.back2top::before, .back2top::after{
  content: '';
  position: absolute;
  height: 18px;
  width: 2px;
  background-color: #fff;
  top: 16px;
}
.back2top::before{
  left: 18px;
  transform: rotate(45deg);
}
.back2top::after{
  right: 18px;
  transform: rotate(-45deg);
}
