@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic,cyrillic-ext);
* {
	font-family: 'Roboto', sans-serif;
}
ul {
	margin: 0;
	padding: 0
}
.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
main{
	min-height: 80vh;
}
.form-group {
	position: relative;
}
.error {
	position: absolute;
	right: 0;
	top: 0;
	line-height: 1;
	font-size: .8rem;
	background-color: #cf1313;
	padding: .3rem;
	color: #fff;
}
.form-control:focus {
	border-color: #fecc00;
	box-shadow: 0 0 0 .2rem rgba(254, 204, 0, 0.34);
}
.load {
	padding: 2rem .5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	min-height: 160px;
}
.load > img {
	width: auto;
	height: 150px;
}
/*flex grow*/
.fg-0{
	flex-grow: 0;
}
.fg-1{
	flex-grow: 1;
}
.fg-2{
	flex-grow: 2;
}
.fg-3{
	flex-grow: 3;
}
/*Цвета*/
.red-c{
	color: #c52f0a !important;
}
.yellow-c{
	color: #fecc00 !important;
}
.green-c{
	color: #1eb34c !important;
}
/*убрать стрелки у input number*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
  -moz-appearance: number-input;
}
