:root {
  --e-global-color-primary: #EAA638;
}

#easyel-top-to-bottom {
  position: fixed;
  bottom: 0;
  cursor: pointer;
  right: 28px;
  z-index: 9999;
  transform: translateY(120px);
  transition: all 0.5s ease 0s;
  opacity: 1;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--e-global-color-primary);
  border-radius: 100px;
  color: var(--e-global-color-secondary);
  display: grid;
  place-content: center;
  opacity: 0;
  visibility: hidden;
}
#easyel-top-to-bottom svg {
  height: 1em;
  width: 1em;
}

#easyel-top-to-bottom.eel-scroll-visible {
  transform: translateY(-20px);
  opacity: 1;
  visibility: visible;
}