@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto_regular/roboto_regular.eot');
    src: url('../fonts/roboto_regular/roboto_regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto_regular/roboto_regular.woff2') format('woff2'),
         url('../fonts/roboto_regular/roboto_regular.woff') format('woff'),
         url('../fonts/roboto_regular/roboto_regular.ttf') format('truetype'),
		 url('../fonts/roboto_regular/roboto_regular.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto_bold/roboto_bold.eot');
    src: url('../fonts/roboto_bold/roboto_bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto_bold/roboto_bold.woff2') format('woff2'),
         url('../fonts/roboto_bold/roboto_bold.woff') format('woff'),
         url('../fonts/roboto_bold/roboto_bold.ttf') format('truetype'),
		 url('../fonts/roboto_bold/roboto_bold.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_condensedregular';
    src: url('../fonts/roboto_condenced/robotocondensed-webfont.eot');
    src: url('../fonts/roboto_condenced/robotocondensed-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto_condenced/robotocondensed-webfont.woff2') format('woff2'),
         url('../fonts/roboto_condenced/robotocondensed-webfont.woff') format('woff'),
         url('../fonts/roboto_condenced/robotocondensed-webfont.ttf') format('truetype'),
         url('../fonts/roboto_condenced/robotocondensed-webfont.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

html, body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #000;
	font-family: 'robotoregular';
}
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper {
	max-width: 800px;
	overflow: hidden;
	margin: 0 auto;
}
.block_form {
	width: 100%;
	padding: 0 30px;
	margin: 30px auto;
}
.block_form .name_form {
	display: block;
	font-size: 24px;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	font-family: 'robotobold';
	margin-bottom: 10px;
}
.form_into {
	border: 2px solid #000;
	padding: 15px 12.5px 10px 12.5px;
}
.form_into .form_report {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.row_form {
	flex-basis: 100%;
	overflow: hidden;
	margin: 0 0 15px 0;
	display: flex;
	/*align-items: flex-start;*/
	align-items: flex-end;
}
.row_form.w50 {
	flex-basis: 50%;
	padding: 0 7.5px;
	margin: 0 0 15px 0;
}
.row_form.w50 .w50 {
	flex-basis: 100%;
	padding: 0;
}
.row_form .w50 {
	flex-basis: 50%;
	padding: 0 7.5px;
}
.row_form .w100 {
	flex-basis: 100%;
	padding: 0 7.5px;
}
.row_form .w50 input[type="text"],
.row_form .w50 select,
.row_form .w100 select {
	width: 100%;
	height: 42px;
	background: #fff;
	border: 1px solid #d0d0d0;
	outline: none;
	font-size: 16px;
	padding: 0 10px;
}
.row_form .w50 input::placeholder {
	font-size: 14px;
	color: #666;
	opacity: .69;
}
.row_form .w50 input[type="text"]:focus {
	border-color: #00ad1d;
}
.row_form .w50 input[type="file"] {
	display: none;
}
.row_form .w50 label {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}
.row_form .w100 label {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}
.row_form .w50.block_picture {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.row_form .w50.block_picture label {
	font-size: 16px;
	background: #cacaca;
	padding: 6px 20px;
	text-align: center;
	align-self: center;
	cursor: pointer;
	border-radius: 10px;
	color: #3a3a3a;
	margin-left: auto;
	transition: background .15s ease;
    margin-top:10px;
}
.row_form .w50.block_picture label:hover {
	background: #b1b1b1;
	transition: background .15s ease;
}
.span_remove {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url(../image/remove_red.png) 0 0 no-repeat;
	margin-left: 10px;
	cursor: pointer;
}
.span_row {
	display: block;
	margin-bottom: 5px;
    word-wrap:break-word;
}
.span_row:last-child {
	margin: 0;
}
.row_form .name_row {
	display: block;
	font-family: 'robotobold';
	margin-bottom: 5px;
}
.row_form .row_check {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.row_form .row_check:last-child {
	margin-bottom: 0;
}
.row_form .row_check input {
	margin: 0;
	padding: 0;
	width: 17px;
	height: 17px;
}
.row_form .row_check label {
	margin-left: 5px;
	cursor: pointer;
	transition: opacity .15s ease;
}
.row_form .row_check label:hover {
	opacity: .7;
	transition: opacity .15s ease;
}
input.hide {
	display: none;
}
.row_form .row_check input:checked + label + .hide {
	display: block;
	margin-top: 10px;
}
.row_form .row_check input:checked + label + .hide + .hide {
	display: block;
	margin-top: 10px;
}
textarea {
	resize: none;
	width: 100%;
	background: #fff;
	border: 1px solid #d0d0d0;
	outline: none;
	font-size: 16px;
	padding: 10px;
}
textarea:focus {
	border-color: #00ad1d;
}
.btn_send {
	font-size: 16px;
	font-family: 'robotobold';
	color: #fff;
	text-transform: uppercase;
	background: #ce0f0f;
	padding: 15px;
	width: 300px;
	margin: 0 auto;
	border: none;
	outline: none;
	cursor: pointer;
	transition: background .15s ease;
}
.btn_send:hover {
	background: #a50909;
	transition: background .15s ease;
}

#signature_wrap {
    border: 1px solid #d0d0d0;
    height:156px;
    position: relative;
}

#signature_wrap canvas {
    width:100%;
}

#signature_wrap i {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
}

#modal {
    display: none;
    padding: 50px 50px 40px;
    text-align: center;
}

#modal_message, .modal_message {
    color: #00495e;
    font-family: 'robotoregular';
    font-size: 22px;
}

#modal_close, .modal_close {
    background-color: #333333;
    border: medium none;
    color: #ffffff;
    display: inline-block;
    font-family: 'roboto_condensedregular';
    font-size: 15px;
    margin-top: 55px;
    padding: 10px 60px;
    text-transform: uppercase;
    vertical-align: top;
    white-space: normal;
    text-decoration:none;
}

.load_mask {
    min-height: 40px;
    min-width: 50px;
}

label[for="unit"] {
    visibility:hidden;
}

.align_bottom {
    align-items: flex-end;
}

.error {
    border: 1px #ff0000 solid !important;
}

label.error {
    display:none !important;
}

.g-recaptcha > div {
	margin:auto;
}