#back_to_top.sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

#back_to_top.sticky i,
#back_to_top.sticky i::before {
  color: #ffffff !important;
}

#back_to_top.sticky:hover {
  background-color: #eb2222;
}

#back_to_top.sticky:hover i,
#back_to_top.sticky:hover i::before {
  color: #ffffff !important;
}

#back_to_top.sticky.scroll {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#back_to_top.sticky.scroll.is-visible,
#back_to_top.sticky.scroll.focus,
#back_to_top.sticky.scroll:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media only screen and (min-width: 1240px) {
  #back_to_top.sticky {
    right: 75px;
  }
}
