html {
  scroll-behavior: smooth;
}

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(--color-primary-dark);
  color: #fff;
  border: none;
  align-items: center;
  justify-content: center;
  z-index: 4999;
  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: 13  px;
  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;
}
