button.vdb-back-to-top,
.vdb-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 2px solid rgb(227, 116, 3) !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  color: #06131a !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(8px);
  pointer-events: none;
  visibility: hidden;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, visibility 0s linear 180ms;
}

.vdb-back-to-top.is-visible {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

button.vdb-back-to-top:hover,
.vdb-back-to-top:hover {
  background: #06131a !important;
  background-color: #06131a !important;
  background-image: none !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  color: #ffffff !important;
}

.vdb-back-to-top:focus-visible {
  outline: none !important;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.34),
    0 0 0 3px rgb(227, 116, 3);
}

.vdb-back-to-top__icon {
  font-size: 18px;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .vdb-back-to-top {
    transition: none;
  }
}
