*::before, *::after {
	box-sizing: inherit;
}

* {
	box-sizing: border-box;
}

button {
	outline: none;
	border: none;
}

img {
	border: none;
}

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

select {
	appearance: none;
}

input, button {
	font-family: 'Open Sans', sans-serif;
}

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

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

html {
	touch-action: manipulation;
}

body {
	position: relative;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: #333333;
	min-height: 100vh;
	line-height: 20px;
	display: flex;
	background-color: #f4f5fa;
}

.html--invert body {
    background: #202020;
}

main {
	width: 100%;
	overflow-x: hidden;
}

.html--invert main {
    filter: invert(0.9);
}

.html--invert .arcticmodal-container {
    filter: invert(0.9);
}

.html--invert .waiter {
    filter: invert(0.9);
}

.html--invert main img, .html--invert .arcticmodal-container img {
    filter: invert(1.0);
}

body.front {
    flex-direction: column;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

button {
	cursor: pointer;
}

button[type="submit"] {
	padding: 0;
	background: none;
	border: none;
	outline: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input[type="submit"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.error-link {
    color: #009BFF;
    font-weight: 600;
    align-items: center;
}

.error-link:hover {
    text-decoration: underline;
}