@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,,500,600,700,900,&subset=cyrillic,cyrillic-ext);
:root {
	--main: #29282f;
	--black: #1d1c21;
	--orange: #f96031;
	--white: #ffffff;
}
*{
	font-family: Montserrat, sans-serif;
}
body{
	background-color: #f6f6f6;
}
.color-orange{
	color: #f96031;
}
.border-b-5-orange{
	border-bottom: 5px solid #f96031;
}
.border-b-5-white{
	border-bottom: 5px solid #ffffff;
}
.border-b-5-gray{
	border-bottom: 5px solid #888888;
}
.load {
	padding: 2rem .5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	min-height: 180px;
	width: 100%;
}

.load > img {
	width: auto;
	height: 150px;
}
.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/*flex grow*/
.fg-0{
	flex-grow: 0;
}
.fg-1{
	flex-grow: 1;
}
.fg-2{
	flex-grow: 2;
}
.fg-3{
	flex-grow: 3;
}
