html {
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  background: transparent;
}

.scroll_drag_icon {
  position: fixed;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  z-index: 9999;
  will-change: top;
  height: auto;
  transition: top 0.1s linear;
}

.scroll_drag_icon.no-transition {
  transition: none;
}

.scroll_drag_icon.default_icon {
  background: #1e3a8a;
  border-radius: 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.scroll_drag_icon:active {
  cursor: grabbing;
}

@media screen and (max-width: 768px) {
  .scroll_drag_icon.default_icon {
    font-size: 16px;
  }
}
