* {
	box-sizing: border-box;
}

body {
	margin: 40;
	padding: 0px;
	font-family: sans-serif;
	/* line-height: 30px; */
	/* user-select: none; */
}

.top-title {
	font-family: sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #545454;
	cursor: default;
	line-height: 40px;
}

.top-title-disabled {
	font-family: sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #979797;
	cursor: default;
	line-height: 70px;
}

.notation-title {
	font-family: sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #545454;
	cursor: default;
	line-height: 20px;
}

.notation {
	font-family: sans-serif;
	font-weight: normal;
	font-size: 14px;
	color: #545454;
	cursor: default;
	line-height: 15px;
}

.form-group-title {
	font-style: 20px;
	font-weight: 400;
	color: #454545;
	width: 1px;
}

.form-group-Modificators{
	font-style: 20px;
	font-weight: 400;
	color: #454545;
}

.form-group-title2 {
	font-style: 20px;
	font-weight: 400;
	width: 5px;
	color: #454545;
}

.form-group+.form-group {
	/* margin-top: 10px; */
}

label {
	cursor: pointer;
}

.about {
	display: inline-block;
	line-height: 28px;
}

.about img {
	display: block;
}

.checkbox_all {
	position: relative;
	padding-top: 0px;
}

/* *******************
Select c dropdown на JS
******************* */
.input-key {
	position: relative;
}

.input-key_field {
	position: relative;
	display: block;
	width: 120px;
	text-align: left;

	background: #FFFFFF;
	border: 1px solid #7E9BBD;
	border-radius: 6px;
	height: 25px;

	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;

	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
}

.dropdown {
	position: relative;
}

.dropdown__button {
	position: relative;
	display: block;
	width: 75px;
	text-align: left;

	background: #FFFFFF;
	border: 1px solid #7E9BBD;
	border-radius: 6px;
	height: 25px;

	padding-top: 3px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;

	font-weight: 400;
	font-size: 14px;
	line-height: 20px;

	cursor: pointer;
}

/* .dropdown__button:focus,
.dropdown__button--active {
	outline: none;
	box-shadow: 0px 0px 0px 4px rgba(176, 198, 225, 0.6);
} */

.dropdown__button::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);

	/* Make triangle sing */
	width: 0;
	height: 0;
	border-width: 8px 6px 0 6px;
	border-color: #79849B transparent transparent transparent;
	border-style: solid;

	/* Doesn't clicable */
	pointer-events: none;
}


.dropdown__list {
	display: none;

	position: absolute;
	left: 0;
	top: 10px;

	margin: 0;
	padding: 0px;
	list-style-type: none;
	text-align: center;

	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(176, 198, 225, 0.6);
	overflow: hidden;

	border-radius: 6px;
	width: 70px;
	line-height: 14px;
	z-index: 1;
}

.dropdown__list--visible {
	display: block;
}

.dropdown__list-item {
	margin: 0;
	border: 1px solid #7E9BBD;
	border-bottom: 0px;
	padding: 6px;
	cursor: pointer;

}

.dropdown__list-item:first-child {
	border-radius: 6px 6px 0 0;
}

.dropdown__list-item:last-child {
	border-radius: 0 0 6px 6px;
	border-bottom: 1px solid #7E9BBD;
}

.dropdown__list-item:hover {
	background: rgba(176, 198, 225, 0.26);
}

.dropdown__input-hidden {
	display: none;
}