@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;
}
#errorContainer{
	max-width: 450px;
	min-width: 250px;
	position: fixed;
	right: 15px;
	bottom: 15px;
	padding: 10px;
	background-color: #333;
	color: #ddd;
	font-size: 16px;
	border: 1px solid #c52f0a;
	border-radius: 5px;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.4);
	z-index: 1100;
}
#errorContainer div{
	display: flex;
	align-items: center;
	gap: .5rem;
}
#errorContainer div::before{
	content: "";
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: #c52f0a;
	display: inline-block;
	padding-right: 5px;
}
.form-control:focus {
	border-color: #fecc00;
	box-shadow: 0 0 0 .2rem rgba(254, 204, 0, 0.34);
}
.load {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	min-height: 160px;
	padding: 2rem .5rem;
}
.load > img {
	width: auto;
	height: 100px;
}
/*flex grow*/
.fg-0{
	flex-grow: 0 !important;
}
.fg-1{
	flex-grow: 1 !important;
}
.fg-2{
	flex-grow: 2 !important;
}
.fg-3{
	flex-grow: 3 !important;
}
.fb-0{
	flex-basis: 0 !important;
}
/*Цвета*/
.red-c{
	color: #c52f0a !important;
}
.red-border{
	border-color: #c52f0a !important;
}
.yellow-c{
	color: #fecc00 !important;
}
.yellow-border{
	border-color: #fecc00 !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;
}
.form-control:disabled,
.form-control[readonly]{
	cursor: not-allowed;
	background-color: inherit;
	opacity: 1;
}
@media print {
	.header-left-top, .a-right-bottom, .time-right-bottom {
		display: none;
	}
	*{
		background-color: white;
	}

}
@media (max-width: 676px) {
	#errorContainer{
		left: 15px;
		top: 15px;
		bottom: inherit;
		max-width: inherit;
		width: auto;
	}
}