/**
 * Base / Reset
 */
html, body {
	margin: 0;
	padding: 0;
}

* {
	font-family: "Kanit", Arial, sans-serif;
}

html, body, .app {
	height: 100%;
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-weight: 300;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
	outline: none;
}

fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

input {
	outline: none;
	border: none;
	box-shadow: none;
	background-color: transparent;
	padding: 0;
	box-sizing: border-box;
	font-family: inherit;
}

input::placeholder {
	color: inherit;
}

button {
	outline: none;
	border: none;
	padding: 0;
	font-family: inherit;
}

figure {
	margin: 0;
	padding: 0;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	outline: none;
	font-family: inherit;
}

select optgroup {
	font-style: normal;
	font-family: inherit;
}

select option {
	font-family: inherit;
}