html {
  scroll-behavior: smooth;
  /* ===== Scrollbar CSS ===== */
  /* Chrome, Edge, and Safari */
}

html * {
  scrollbar-width: thin;
  scrollbar-color: #393F94 #fff;
}

html *::-webkit-scrollbar {
  width: 5px;
}

html *::-webkit-scrollbar-track {
  background: #ddd;
}

html *::-webkit-scrollbar-thumb {
  background: #FA6501;
  border: 0px none #FA6501;
}.global-go-up-button{
  position:fixed;
  right:20px;
  bottom:24px;
  display:none;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--wb-primary);
  color:#fff;
  border:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(36,95,58,0.12);
  font-weight:700;
  gap:6px;
  padding:0 10px;
}
.global-go-up-button.show{ display:flex; }
.global-go-up-button img{ width:18px; height:18px; display:inline-block; color:#fff; }
.global-go-up-button:focus{ outline:3px solid rgba(47,122,74,0.12); outline-offset:2px }


button img{
  color: white;
}