#breadcrumbs {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumb-navigation {
    list-style: outside none none;
    padding: 0;
    margin: 5px 10px;
}

.breadcrumb-navigation li {
    display: inline;
}

.breadcrumb-navigation img {
    vertical-align: middle;
}

li.navlink {
    color: black;
}

.breadcrumb-navigation li {
    display: inline;
}
.navlink {
    color: #929497;
    font-size: 12px;
}

#himg{
	margin: 0 10px;
}


h1{
	margin: 10px 0;
}

.blocks{
	display: flex;
}

.blocks div{
	width: 50%;
}

fieldset{
	padding: 5px 10px;
}

label.container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 8px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.xls-check{
	margin-top: 50px;
	font-weight: 600;
}

input[type="submit"]{
	margin: 0;
}

.container input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	background-color: #214288;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 6px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	border-radius: 2px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#loader-error{
	color: red;
	font-size: 17px;
}

[name="Tree"] fieldset {border: none;}
[name="Tree"] label:after {content: '\A'; white-space: pre;} /* после label идёт как бы br */ 

fieldset.head{
	padding-left: 0px;
	margin-left: -25px;
}

/* если нужно скрыть дочерние чекбоксы, если на родителе не стоит флажок или :indeterminate
[name="Tree"] fieldset fieldset {padding-left: 20px; display: none;}  
[name="Tree"] [type="checkbox"]:checked + label + fieldset,
[name="Tree"] [type="checkbox"]:indeterminate + label + fieldset {display: block;} */

form .act{
	margin: 40px 0;
	width: fit-content;
}

#form_back{
	margin-bottom: 20px;
	width: 100%;
}

#form_result, #form_result div{
	width: 100%;
}

#loader-text{
	display: none;
	width: 100%;
	margin-top: 10px;
}

#loader-error{
	width: 100%;
	margin-top: 20px;
}

#loader {
	display: none;
	border: 10px solid #f3f3f3; 
	border-top: 10px solid #214288;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 2s linear infinite;
	margin: 15px 30px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}