html,
* {
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

body {
  font-family: "SuisseIntl", "Open Sans", sans-serif !important;
  background-color: #050506;
  color: #fff;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 1);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 1);
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 3px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 1);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 1);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar {
  width: 6px;
}

.animate-skeleton {
  animation: skeleton 800ms linear infinite alternate;
}
@keyframes skeleton {
  0% {
    opacity: 0.8;
    background-color: #777;
  }
  100% {
    opacity: 0.7;
    background-color: #777;
  }
}
