@media only screen and (min-width: 800px){

html{
  scroll-behavior: smooth;
}
/*-------------------------------------------*/
#pagetop {
  position: fixed;
  right: 0px;
  bottom: 20px;
  z-index: 5500;
  display: block;
  width: 42px;
  height:42px;
  cursor: pointer;
  background: #6b848d;
  border: 1px solid #ffffff;
  border-radius: 4px;
  opacity: 0;
  transition: .5s;
}
#pagetop.visible {
  opacity: 0.6;
  pointer-events: auto;
}
#pagetop span {
  position: absolute;
  top: 16px;
  left: 15px;
  display: block;
  width:9px;
  height:9px;
  content:"";
  border-top:4px solid #ffffff;
  border-right:4px solid #ffffff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

#scroll div {
  height: calc(200vh);
}

}