@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
	--orange: #ff6638;
	--orange-h: #f26135;
	--yellow: #fecc00;
	--yellow-h: #e3b601;
	--dark-blue: #0e0a6d;
	--blue: #120d8b;
	--blue-h: #150fa2;
	--red: #e9242e;
	--red-h: #d3222b;
	--green: #56b218;
	--green-h: #4fa216;
}
* {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.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: calc(100vh - 204px);
	padding-top: 100px;
}
.form-group {
	position: relative;
}
.load > img {
	width: auto;
	height: 100px;
}
/*container*/
@media (min-width:768px) {
	.container {
		max-width:750px
	}
}
@media (min-width:992px) {
	.container {
		max-width:1000px
	}
}
@media (min-width: 1101px) {
	.container {
		padding-left: 25px;
		padding-right: 25px;
	}
}
@media (max-width: 1101px) {
	main{
		padding-top: 135px;
	}
}
@media (min-width:1260px) {
	.container {
		max-width:1230px
	}
}
@media (min-width:1480px) {
	.container {
		max-width:1490px
	}
}
@media (max-width: 1479px) {
	.container {
		width: 100% !important;
		max-width: 100%;
	}
}
/*flex grow*/
.fg-0{
	flex-grow: 0;
}
.fg-1{
	flex-grow: 1;
}
.fg-2{
	flex-grow: 2;
}
.fg-3{
	flex-grow: 3;
}
/*Поворот*/
.r90{
	transform: rotate(90deg);
}

.no-resize {
	resize: none;
}

.form-control:disabled,
.form-control[readonly]{
	cursor: not-allowed;
	background-color: inherit;
	opacity: 1;
}

@keyframes spinner {
	to {
		transform:rotate(360deg)
	}
}
.load{
	display: flex;
	align-items: center;
	min-height: 100px;
	width: 100%;
}
.load .spinner{
	display: block;
	height: 150px;
	width: 100%;
	min-width: 50px;
	position: relative;
	margin: 0 auto;
}
.load .spinner::before{
	position: absolute;
	width: 70px;
	height: 70px;
	margin-top: -35px;
	margin-left: -35px;
	border-radius: 50%;
	border: 6px solid #fa9e0f;
	border-top-color: #0e0a6d;
	animation: spinner 1s linear infinite;
}
.spinner::before {
	content: "";
	box-sizing: border-box;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	border-radius: 50%;
	border: 4px solid #fa9e0f;
	border-top-color: rgb(250, 158, 15);
	border-top-color: #0e0a6d;
	animation: spinner .6s linear infinite;
	background-color: #fff;
	z-index: 1;
}