*,
::before,
::after{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: 400;
	font-family: "Open Sans";
	font-style: normal;
	color: hsl(0, 0%, 20%);
	background-color: transparent;/* Для элементов input и т.п.*/
	transition-property: none;
	transition-duration: .2s;
	transition-timing-function: linear;
}
::-ms-clear{
	display: none;/* Скрываем кнопку "Очистить поле" в IE. */
}
::-ms-reveal{
	display: none;/* Скрываем кнопку "Показать пароль" в IE. */
}
::-webkit-input-placeholder{
	color: hsl(0, 0%, 70%);
}
::-moz-placeholder{
	color: hsl(0, 0%, 70%);
}
:-ms-input-placeholder{
	color: hsl(0, 0%, 70%);
}
::placeholder{
	color: hsl(0, 0%, 70%);
}
:focus::-webkit-input-placeholder{
	color: hsl(0, 0%, 70%);
}
:focus::-moz-placeholder{
	color: hsl(0, 0%, 70%);
}
:focus:-ms-input-placeholder{
	color: hsl(0, 0%, 70%);
}
:focus::placeholder{
	color: hsl(0, 0%, 70%);
}
:focus{
	outline: none;/* Скрываем стили фокуса в Chrome'е. */
}
input:not([type]),
input[type = "text"],
input[type = "submit"],
input[type = "password"]{
	-webkit-appearance: none;
}

html{
	overflow-y: scroll;
	position: relative;
	min-width: 320px;
	height: 100%;
	font-size: 0;
	background-color: hsl(0, 0%, 98%);
	cursor: default;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
	body{
		position: relative;
	}