#mark
{
	width: 100%;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 20px;
	display: none;
}

#motor, #model
{
	display: none;
}

#mark .logos {
	display: flex;
	justify-content: center;
	column-gap: .7em;
	flex-direction: row;
	flex-wrap: wrap
}

#mark .logos a
{

	top: 0px;
	background-color: white;
	display: inline-block;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	width: 150px;
	height: 150px;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 5px 5px rgba(0,0,0,0.3);
	margin-bottom: 30px;
	transition: top 300ms, box-shadow 300ms, transform 300ms;
}

#mark .logos a img
{
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80px;

	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

#mark .logos a:hover
{
	top: -10px;
	box-shadow: 0px 15px 10px rgba(0,0,0,0.3);
	transition: top 80ms, box-shadow 80ms, transform 80ms;
	/*	transform: scale(1.1);*/
}


@media screen and (max-width: 650px)
{
	#mark .logos a
	{

		top: 0px;
		background-color: white;
		display: inline-block;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		width: 80px;
		height: 80px;
		position: relative;
		overflow: hidden;
		box-shadow: 0px 5px 5px rgba(0,0,0,0.3);
		margin-bottom: 30px;
		transition: top 300ms, box-shadow 300ms, transform 300ms;
	}

	#mark .logos a img
	{
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		width: 50px;

		-webkit-transform: translateX(-50%) translateY(-50%);
		-o-transform: translateX(-50%) translateY(-50%);
		transform: translateX(-50%) translateY(-50%);
	}
}


#mark .all
{
	line-height: 2em;
	padding-top: 30px;
}

#mark .all a
{
	color: black;
	font-size: 18px;
	margin-right: 15px;
}

#mark .all a:last-of-type,
#mark .logos a:last-of-type
{
	margin-right: 0px;
}

#mark .all a:hover
{
	text-decoration: underline;
}

#mark p,
#model p,
#motor p
{
	margin: 0px;
	padding: 0px;
	color: black;
	text-align: center;
	line-height: 1.5em;
}



/*
input.comfort {
	font-weight: bold;
	float: left;
	background-color: white;
	display: block;
	content: "";
	width: 25px;
	height: 25px;
	position: relative;
	border: 1px solid #525252;
	-webkit-box-shadow: inset 5px 5px 10px rgba(0,0,0,0.3);
	box-shadow: inset 5px 5px 10px rgba(0,0,0,0.3);
	margin-right: 10px;
}
*/


.model-figure {
	display: none;
	position: absolute;
	right: 5em;
	z-index: 5;
	top:0;
}

.model-figure img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-height: 200px;
	max-width: 100%;
}

#sel figure {
	text-align: center;
	padding-bottom: 20px;
}


.model-collapse {
	color: #3d3d3d;
	font-size: 18px;
}

#model a.modelLink {
	color: black;
	font-size: 18px;
	line-height: 1.7em;
	padding-left:15px;
}
#model a.modelLink:hover {
	text-decoration: underline;
}

#motor a.motorLink {
	color: black;
	font-size: 15px;
	line-height: 1.7em;
	padding-left:15px;
}

#motor a.motorLink:hover {
	text-decoration: underline;
}


#imark.loading,
#imodel.loading,
#imotor.loading
{
	background-image: url("../img/loader.svg");
	background-size: auto 50%;
	background-repeat: no-repeat;
	background-position: 95% center;
}


#nabidka.loading
{
	min-height: 50px;
}

#nabidka.loading::after,
#form2 .loading::after
{
	content: "";
	background-color: rgba(255,255,255,0.8);
	background-image: url("../img/loader.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}


#sel
{
	width: 100%;
	position: relative;
	padding-bottom: 10px;
}

#sel > div:not(.subn)
{
	margin-left: auto;
	margin-right: auto;
	max-width: 1650px;
}

#sel::after
{
	transition: all 200ms;
	content: "";
	opacity: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50px;
}


#sel.loading::after
{
	opacity: 1;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background-color: rgba(255,255,255,0.8);
	background-image: url("../img/loader.svg");
	background-position: top;
	transition: all 200ms;
}



@supports (-webkit-appearance: none) or (-moz-appearance: none) {
	input[type='checkbox'], input[type='radio'] {
		--active: #f6921e;
		--active-inner: #fff;
		--focus: 2px rgba(39, 94, 254, 0.3);
		--border: #BBC1E1;
		--border-hover: #f6921e;
		--background: #fff;
		--disabled: #F6F8FF;
		--disabled-inner: #E1E6F9;
		-webkit-appearance: none;
		-moz-appearance: none;
		height: 25px;
		outline: none;
		display: inline-block;
		vertical-align: top;
		position: relative;
		margin: 0;
		cursor: pointer;
		border: 1px solid var(--bc, var(--border));
		background: var(--b, var(--background));
		transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
	}
	input[type='checkbox']:after, input[type='radio']:after {
		content: '';
		display: block;
		left: 0;
		top: 0;
		position: absolute;
		transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
	}
	input[type='checkbox']:checked, input[type='radio']:checked {
		--b: var(--active);
		--bc: var(--active);
		--d-o: 0.3s;
		--d-t: 0.6s;
		--d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
	}
	input[type='checkbox']:disabled, input[type='radio']:disabled {
		--b: var(--disabled);
		cursor: not-allowed;
		opacity: 0.9;
	}
	input[type='checkbox']:disabled:checked, input[type='radio']:disabled:checked {
		--b: var(--disabled-inner);
		--bc: var(--border);
	}
	input[type='checkbox']:disabled + label, input[type='radio']:disabled + label {
		cursor: not-allowed;
	}
	input[type='checkbox']:hover:not(:checked):not(:disabled), input[type='radio']:hover:not(:checked):not(:disabled) {
		--bc: var(--border-hover);
	}
	input[type='checkbox']:focus, input[type='radio']:focus {
		box-shadow: 0 0 0 var(--focus);
	}
	input[type='checkbox']:not(.switch), input[type='radio']:not(.switch) {
		width: 25px;
	}
	input[type='checkbox']:not(.switch):after, input[type='radio']:not(.switch):after {
		opacity: var(--o, 0);
	}
	input[type='checkbox']:not(.switch):checked, input[type='radio']:not(.switch):checked {
		--o: 1;
	}
	input[type='checkbox'] + label, input[type='radio'] + label {
		font-size: 18px;
		line-height: 25px;
		display: inline-block;
		vertical-align: top;
		cursor: pointer;
		margin-left: 4px;
	}
	input[type='checkbox']:not(.switch) {
		border-radius: 5px;
	}
	input[type='checkbox']:not(.switch):after {
		width: 7px;
		height: 11px;
		border: 2px solid var(--active-inner);
		border-top: 0;
		border-left: 0;
		left: 8px;
		top: 4px;
		transform: rotate(var(--r, 20deg));
	}
	input[type='checkbox']:not(.switch):checked {
		--r: 43deg;
	}
	input[type='checkbox'].switch {
		width: 38px;
		border-radius: 11px;
	}
	input[type='checkbox'].switch:after {
		left: 2px;
		top: 2px;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		background: var(--ab, var(--border));
		transform: translateX(var(--x, 0));
	}
	input[type='checkbox'].switch:checked {
		--ab: var(--active-inner);
		--x: 17px;
	}
	input[type='checkbox'].switch:disabled:not(:checked):after {
		opacity: 0.6;
	}
	input[type='radio'] {
		border-radius: 50%;
	}
	input[type='radio']:after {
		width: 23px;
		height: 23px;
		border-radius: 50%;
		background: var(--active-inner);
		opacity: 0;
		transform: scale(var(--s, 0.7));
	}
	input[type='radio']:checked {
		--s: 0.5;
	}
}


.table-calculator {
	border-bottom: 2px solid #6e6e6e;
}

.table-calculator tr {
	border-bottom: 1px solid #d7d7d7;
}

.table-calculator h3 {
	font-size:22px;
}

@media screen and (max-width: 650px)
{
	.table-calculator h3 {
		font-size:15px;
	}
	.table-calculator td label {
		font-size:13px !important;
	}
}


#form .inputs > div p {
	float: left;
	clear: left;
	margin-top: 5px;
	font-size: 12px;
	color: #d50000;
	margin-left: 20px;
	display: none;
}

.final_loader {
	display: none;
	position: fixed;
	left: 0px;
	top: 50%;
	z-index: 100;
	width: 100%;
	pointer-events: none;
	text-align: center;
	font-family: osb, Arial, Helvetica, sans-serif;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.final_loader div
{
	display: inline-block;
	font-size: 20px;
	text-transform: uppercase;
	background-color: white;
	padding: 30px;
	box-shadow: 0px 0px 50px rgba(0,0,0,0.5);
	animation: flanim 500ms infinite;
}