.back-to-top {
  display: inline-block;
  background-color: #111d30;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-to-top img {
  width: 25px;
}

.back-to-top:hover {
  cursor: pointer;
  background-color: #333;
}

.back-to-top:active {
  background-color: #555;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=back-to-top.css.map */