/* Button GO TO UP */
#back-top {
  position: fixed;
  bottom: 4rem;
  right: 46px;
  transform: translate(50%, -50%);
  padding: 0px;
  margin-left: 0;
  z-index: 14;
  display: none;
}
#back-top img {
  position: absolute;
  top: 20%;
  left: 44%;
}
#back-top span {
  margin-top: 15px;
  font-size:1rem;
}
#back-top a {
  display: block;
  text-decoration: none;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
  color: var(--secondary-light-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  background-color: var(--primary-accent-color);
  box-shadow: 0px 4px 20px rgba(30, 30, 52, 0.05);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
}

#back-top a:hover {
  background-color: var(--bg-dark-color);
  border-color: var(--primary-accent-color);
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

@media print {
  #back-top {
    display:none!important;
  }
}
