@charset "utf-8";

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  /* background: #fff; */
  border: solid 2px #494949;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #494949;
  border-right: 3px solid #494949;
  transform: translateY(20%) rotate(-45deg);
}

@media screen and (max-width:480px){

  .pagetop{
      display: none;
  }
}