 

.totop {
  width: 55px;
  height: 55px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 70px;
  right: calc(1.28125rem + 0.32143vw);
  z-index: 2;
  color: #cccccc;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1400px) {
  .totop {
    right: 1.5625rem;
  }
}

.totop::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  width: 1px;
  height: 30px;
  background-color: #cccccc;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.totop a {
  color: #cccccc;
}

.totop.show {
  opacity: 1;
  visibility: visible;
}

.totop.show::before {
  top: -15px;
  opacity: 1;
  visibility: visible;
}


 
/*# sourceMappingURL=style.css.map */