html {
  font-size: 16px;
}

body {
  overflow: hidden;
  font-size: 14px;
  font-family: 'fregular';
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[data-pointer] {
  cursor: pointer;
}
[data-no-decoration] {
  text-decoration: none;
}
.svgicon {
  width: 1rem;
  height: 1rem;
}

svg[role='presentation'] {
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
  font-size: 20px;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  flex-shrink: 0;
  user-select: none;
}

/* Scrollbar */
::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 2px;
  height: 12px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: #cecece;
  border: 2px solid #c7c7c7;
}

/* Scrollbar */
.light-scroll ::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.light-scroll ::-webkit-scrollbar {
  display: none;
  width: 1px;
  height: 12px;
  background-color: #f5f5f5;
}

.light-scroll ::-webkit-scrollbar-thumb {
  display: none;
  background-color: #cecece;
  border: 1px solid #c7c7c7;
}

.fade-enter {
  opacity: 0;
  z-index: 1;
}

.fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 250ms ease-in;
}
