/*
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
*/

a { all: unset; }

::-webkit-scrollbar {
  display: none;
}

[contenteditable][placeholder]:empty:before {
  content: attr(placeholder);
  pointer-events: none;
  color: gray;
  background-color: transparent;
}

input, textarea, button { outline: none; }
input[type="color"] {
  -webkit-appearance: none;
}
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type="color"]::-webkit-color-swatch {
  border: none;
}

html {
  overflow: hidden;
}

body {
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  position: relative;
  word-break: keep-all;
  white-space: nowrap;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  background-position: center;
  background-size: cover;
}

* {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;

  box-sizing: border-box;
  background: unset;
  border: 0 solid transparent;
  padding: 0;
  margin: 0;

  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  line-height: 1.35;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
