/* Null. */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 0;
	color: var(--color);
	font-size: var(--body);
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	font-family: var(--family);
	background-color: var(--bg);
}

img,
svg {
	display: block;

	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: var(--color);
}

li {
	list-style-type: none;
}

input,
button,
textarea {
	display: block;
	font-family: var(--family);
	background-color: transparent;
	border: 0 none;
	box-shadow: none;
	appearance: none;
	outline: none;
	resize: none !important;
}

button {
	cursor: pointer;
}

input::placeholder,
textarea::placeholder {
	color: var(--color);
	font-family: var(--family);
}

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

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

/* Null. */