/*******************************************************
 * Back to Top - Layout A
 *
 * @since 1.2.0 <26/09/2023>
 *******************************************************/
.hsbg-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--hsbg-neutral-color-9);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--hsbg-border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  cursor: pointer;
}

.hsbg-back-to-top svg {
  stroke: var(--hsbg-neutral-color-1);
  width: 30px;
  min-width: 30px;
  height: 30px;
}

/*
.hsbg-back-to-top {
  position: sticky;
  bottom: 20px;
  right: 0;
  background: var(--hsbg-neutral-color-9);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  margin-left: calc(100% + 40px);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}*/