*,
*::before,
*::after {
  user-select: none;
  box-sizing: border-box;
  margin: 0;
  -webkit-user-drag: none;
  word-break: break-word !important;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  font-family: 'Calibri-Regular', sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
  color: var(--theme_black);
}

body.no_click {
  pointer-events: none;
}

body.no_scroll {
  overflow-y: hidden;
}

a {
  text-decoration: none;
}

ul li {
	list-style-type: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

button {
  border: unset;
  outline: unset;
  box-shadow: unset;
}

textarea {
  font-family: var(--reg);
  font-size: 18px;
  resize: vertical;
  vertical-align: middle;
}

input,
input:before,
input:after,
textarea,
textarea:before,
textarea:after,
select,
select:before,
select:after {
  -webkit-appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  user-select: initial;
  background-color: transparent;
}

input::placeholder {
  color: var(--theme_black);
  opacity: 0.4;
}

textarea::placeholder {
  font-family: var(--reg);
  color: var(--theme_black);
  opacity: 0.4;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

svg,
span {
  vertical-align: middle;
}

a {
  display: inline-block;
  text-decoration: none;
}

p:empty::before {
  content: ' ';
  white-space: pre;
}
