html {
  scrollbar-width: none !important;
}
body {
  scrollbar-width: none !important;
  font-family: var(--font-family) !important;
  font-size: var(--font-base) !important;
}

h1 {
  font-weight: 800;
  font-size: 24px;
}
h2 {
  font-weight: 800;
  font-size: 20px;
}
h3 {
  font-weight: 800;
  font-size: 18px;
}
h4 {
  font-weight: 800;
  font-size: 16px;
}
h5 {
  font-weight: 800;
  font-size: 14px;
}
h6 {
  font-weight: 600;
  font-size: 12px;
}


.v-main__wrap {
  scrollbar-width: none !important;
}

.centered {
  margin: auto;
}

.move {
  cursor: move;
}

.pointer {
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
  background-color: white;
}

input[type="number"] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.pui-form {
  padding-bottom: 20px;
}
.pui-form-layout {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: var(--font-base) !important;
}
input::-moz-placeholder {
  /* Firefox 19+ */
  font-size: var(--font-base) !important;
}
input:-ms-input-placeholder {
  /* IE 10+ */
  font-size: var(--font-base) !important;
}
input:-moz-placeholder {
  /* Firefox 18- */
  font-size: var(--font-base) !important;
}

main::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
*:not(main)::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: var(--main-10);
}
*::-webkit-scrollbar-thumb {
  border-radius: 17px;
  background-color: var(--main-25);
  border: 1px solid var(--main-10);
}
*:hover > *::-webkit-scrollbar-track {
  background: var(--main-10);
}
*:hover > *::-webkit-scrollbar-thumb {
  border-radius: 17px;
  background-color: var(--main-150);
  border: 1px solid var(--main-10);
}