.up-btn {
  min-width: 48px;
  min-height: 48px;
  right: 20px;
  bottom: 20px;
  /*opacity: .7;
  background: #333;*/
  cursor: pointer;
  position: fixed;
  z-index: 2000;
  transition: all .4s ease-in-out;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  background: rgba(0,0,0,.6);
  background: var(--color1);
  box-shadow: 0px 0px 5px #fff;
}

.up-btn.up-btn__hide {
  opacity: 0;
  transform: scale(0);
  transition: all .4s ease-in-out;
}

.up-btn:hover {
  opacity: 1;
}

.up-btn.up-btn_circle {
  border-radius: 50%;
}

.up-btn__img {
  width: 100%;
  max-width: 100%;
}

i.up-btn__icon {
    font-size: 1.9rem;
    color: #fff;
    line-height: 0;
}