#scrollup {
  position: fixed; /* фиксированная позиция */
  opacity: 1; /* прозрачность */
  padding: 8px 10px 10px; /* отступы */
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; /* скругление углов */
  right: 10px; /* отступ слева */
  bottom: 10px; /* отступ снизу */
  display: none; /* спрятать блок */
  cursor: pointer;
  z-index: 150;
  width: 40px;
  height: 40px;
  box-shadow: 0px 10px 20px rgba(31, 39, 58, 0.2);
  color:#545F6E ;
}
#scrollup svg {
  margin-left: 2px;
  margin-top: 2px;
}

#scrollup:hover {
  background-color: #82BCE7;
  color: #ffffff;
}
#scrollup:active {
  background-color: #5BA3D7;
  color: #ffffff;
}
