.mpage-form-feedback {
    background: url('/images/site/so_bg_form_blue.webp') no-repeat center top;
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 240px;
    padding: 0 20px;
    width: 100%;
    /* so_bg_form_blue.webp */
}
.mpage-form-feedback > div {
    box-sizing: border-box;
    gap: 120px 0;
    max-width: 1730px;
	padding-bottom: 150px;
    padding-top: 150px;
    position: relative;
    width: 100%;
}
.mpage-form-feedback > div::after {
	content: url('/images/site/so_orange_man.png');
	position: absolute;
	right: -80px;
	top: 345px;
}
.mpage-form-feedback h2 {
    transform-origin: center;
}
.mpage-fb-form-h2 {
    gap: 10px 0;
}

.form-feedback-mpage {
	margin: 0 auto;
	width: 100%;
}
.form-feedback-mpage .mpf-input-wrapper {
	box-sizing: border-box;
	margin: 0 0 35px 0;
    max-width: 1020px;
	position: relative;
	width: 100%;
	z-index: 30001;
}
.form-feedback-mpage .required-field {
    position: relative;
}
.form-feedback-mpage .required-field::after {
    color: #f66107;
    content: '*';
    font-family: 'Tahoma';
    font-size: 48px;
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-40%);
}
.form-feedback-mpage .mpf-input,
.form-feedback-mpage .mpf-textarea,
.form-feedback-mpage select {
	background: #fff;
	border: 1px solid #fff;
	border-radius: 46px;
	box-sizing: border-box;
	color: #222;
	font-family: 'Tahoma';
	font-size: 19px;
    
	outline: none;
	padding: 10px 70px;
	width: 100%;
}
.form-feedback-mpage .mpf-input,
.form-feedback-mpage select { height: 105px; }
.form-feedback-mpage .mpf-textarea {
    height: 185px;
    padding-top: 40px;
    resize: none;
}

.form-feedback-mpage .mpf-input::-webkit-input-placeholder { color: #f66107; opacity: 1; }
.form-feedback-mpage .mpf-input::-moz-placeholder { color: #f66107; opacity: 1; }
.form-feedback-mpage .mpf-input:-ms-input-placeholder { color: #f66107; opacity: 1; }
.form-feedback-mpage .mpf-textarea::-webkit-input-placeholder { color: #f66107; opacity: 1; }
.form-feedback-mpage .mpf-textarea::-moz-placeholder { color: #f66107; opacity: 1; }
.form-feedback-mpage .mpf-textarea:-ms-input-placeholder { color: #f66107; opacity: 1; }

.mpf-input-wrapper .custom-upload {
    float: none;
}
.mpf-input-wrapper .custom-upload input[type=file] {
	height: 64px;
}
.mpf-input-wrapper .custom-upload .fake-file {
	align-items: center;
	display: flex;
	gap: 0 10px;
	height: 100%;
	justify-content: flex-end;
}
.mpf-input-wrapper .custom-upload .fake-file textarea {
	background: none;
	border: none;
	box-sizing: border-box;
	color: #fff;
	font-family: 'Tahoma';
	font-size: 15px;
	font-weight: bold;
	height: 35px;
	line-height: 1;
	resize: none;
	text-align: right;
}
.mpf-input-wrapper .custom-upload .fake-file textarea::placeholder {
	opacity: 1;
	text-align: right;
}
.mpf-input-wrapper .custom-upload .fake-file input[type=button] {
	background-color: #f66107;
	border-radius: 50px;
	color: #fff;
	float: none;
	font-family: 'Tahoma';
	font-size: 24px;
	height: 100%;
	margin-left: 15px;
	width: 112px;
}

.mpf-submit {
	background: none;
	border: none;
	border-radius: 34px;
	cursor: pointer;
	display: block;
	height: 75px;
	margin: 15px auto;
	position: relative;
	width: 220px;
}
.mpf-submit::before {
	content: url('/images/site/so_icon_headset_white.png');
	position: absolute;
	right: -18px;
	top: 22px;
	z-index: 1;
}
.mpf-submit::after {
	content: url('/images/site/so_bg_fire.png');
	position: absolute;
	right: 5px;
	top: -42px;
	z-index: -1;
}
.mpf-submit__content {
	align-items: center;
	background: #f66107;
	border-radius: inherit;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	overflow: hidden;
	padding-right: 25px;
	position: relative;
	transition: .3s;
	width: 100%;
}
.mpf-submit__content > span {
	color: #fff;
	font-family: 'Tahoma';
	font-size: 19px;
	line-height: 1;
	max-width: 95px;
	text-align: right;
	transition: inherit;
	width: 100%;
}
.mpf-submit__content > span:last-child {
	font-weight: bold;
	text-transform: uppercase;
}
.mpf-submit:hover .mpf-submit__content {
	background: #fff;
}
.mpf-submit:hover .mpf-submit__content > span {
	color: #2c3e50;
}
.mpf-submit.success {
	cursor: default;
	pointer-events: none;
}
.mpf-submit__content::after {
	align-items: center;
	background-color: #00a329;
	color: #fff;
	content: attr(data-success);
	display: flex;
	font-family: inherit;
	font-size: 20px;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: -100%;
	transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
	width: 100%;
}
.mpf-submit.success .mpf-submit__content::after {
	top: 0;
}