.order-price-line {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    padding: 50px 0;
    overflow: hidden;
}
.order-price-line .order-price-title {
    font-size: 46px;
    font-weight: 200;
    color: #373737;
    margin-bottom: 31px;
}
.order-price-line .order-price-form {
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.order-price-line .input-container {
	position: relative;
	width: 280px;
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 15px;
	vertical-align: top;
	background-color: #fff;
	z-index: 0;
}
.order-price-line .input-container input {
	display: block;
	box-sizing: border-box;
	width: 100%;
	-webkit-appearance: none;
	border: none;
	margin: 0;
	padding: 0 30px;
	z-index: 1;
	font-family: "HelveticaNeueCyrl", sans-serif;
	font-size: 14px;
	line-height: 50px;
	height: 50px;
	background-color: transparent;
	outline-color: #96bf01;
}
.order-price-line .input-container-submit {
	margin: 0 0 15px;
	background-color: #96bf01;
	border-radius: 25px;
	border: 2px solid #96bf01;
	box-shadow: 1px 1px 1px 1px rgba(150, 191, 1, 0.5);
}
.order-price-line .input-container-submit:hover {
	box-shadow: none;
	background-color: white;
}
.order-price-line .input-container-submit:hover .btn-submit {
	color: #96bf01;
}
.order-price-line .input-container-name {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 50px;
	line-height: 50px;
	padding: 0 30px;
	z-index: -1;
	color: #1f1f1f;
	font-size: 18px;
	font-weight: 500;
	transition: all .2s linear;
}
.order-price-line .input-container-name--focus {
	top: -30px;
	height: 30px;
	padding: 0;
	font-size: 16px;
	line-height: 30px;
}
.order-price-line .btn {
	display: block;
	box-sizing: border-box;
	width: 100%;
	-webkit-appearance: none;
	border: none;
	margin: 0;
	padding: 0 30px;
	z-index: 1;
	line-height: 50px;
	height: 50px;
	background-color: transparent;
	outline-color: #96bf01;
}
.order-price-line .btn-submit {
	cursor: pointer;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	outline: none;
	line-height: 46px;
	height: 46px;
	font-weight: 400;
}
.order-price-line .personal-info {
	width: 100%;
	color: rgb(51, 51, 51);
	font-size: 13px;
	line-height: 1.1em;
	margin: 0;
	padding: 0 5px;
	letter-spacing: 0px;
	text-align: left;
}
.order-price-line .personal-info a {
	font-size: 13px;
	line-height: 1.1em;
	color: #646464;
	text-decoration: none;
}
.order-price-line .personal-info a:hover {
	color: #969696;
}
.order-price-line .form-message-success {
	position: relative;
	display: none;
	color: #000;
	font-weight: bold;
	line-height: 30px;
	border-style: none;
	font-size: 16px;
	text-align: left;
	transition: all .2s linear;
}
.order-price-line .form-message-success::before {
	content: '';
	display: inline-block;
	width: 35px;
	height: 25px;
	vertical-align: middle;
	background-attachment: inherit;
	background-image: url(img/type-text__li_after.png);
	background-position: 50%;
	background-repeat: no-repeat;
}

.form-message-success.active {
	display: block;
}

@media only screen and (max-width: 620px) {
	.order-price-line .order-price-title {
		font-size: 30px;
		text-align: center;
	}
	.order-price-line .order-price-form {
		justify-content: center;
		padding: 0 10px;
	}
	.order-price-line .input-container {
		margin-right: 0;
		margin-bottom: 25px;
	}
	.order-price-line .personal-info {
		text-align: center;
	}
}