.modal_form_wr div.wpcf7{
	margin: 0 auto;
}
.wpcf7-form br{
	display:none;
}
.wpcf7-spinner{
	position: absolute;
	left: 0;
}
.wpcf7 .screen-reader-response{
	display: none!important;
}
.wpcf7-form p {
	margin: 0 0 20px!important;
}
.wpcf7-form p:last-of-type {
	margin: 0 !important;
}
.wpcf7-form p,
.wpcf7-form-control-wrap {
	position: relative;
	display: block;
	line-height: 1;
}
.wpcf7-form .l12 p{
	line-height: 1.2;
}
.wpcf7-form .l15 p{
	line-height: 1.5;
}
span.wpcf7-list-item {
	display: block;
	width: 100%;
	margin: 0;
}
span.wpcf7-list-item:nth-last-child(n+2){
	margin-bottom: 10px;
}

.wpcf7-acceptance .wpcf7-list-item label{
	position: relative;
}

div.wpcf7 .ajax-loader {
	position: absolute;
	z-index: 5;
}

span.wpcf7-not-valid-tip{
	position: relative;
	font-size: 10px!important;
	z-index: 1;
	top: 5px;
	left: 0;
	background-color: #fff;
	background-image: url('../../images/ico_not_valid.png');
	line-height: 1;
	background-position: 10px center;
	background-repeat: no-repeat;
	margin-top: 0;
	padding: 10px 10px 10px 40px;
	border-radius: 5px;
	border: 1px solid #000;
	width: auto;
	color:#000;
}
.wpcf7-not-valid{
	border: 1px solid red!important;
	color:red!important;
}

span.wpcf7-not-valid-tip:before,
span.wpcf7-not-valid-tip:after{
	content:'';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
}
span.wpcf7-not-valid-tip:after {
	left: 11px;
	top: -8px;
	border-width:  0 4px 8px 4px;
	border-color: transparent transparent #ffffff transparent;
}

span.wpcf7-not-valid-tip:before {
	left: 10px;
	top: -10px;
	border-width: 0 5px 10px 5px;
	border-color: transparent transparent #000000 transparent;
}


div.wpcf7-response-output{
	margin: 0 auto!important;
	background: #fff;
	color: #333;
	width: 90%;
	border: none!important;
	display: block!important;
	line-height:2;
	padding: 0!important;
	float: none;
	border-radius: 5px;
	font-size: 12px;
	text-align: center;
}

.wpcf7 input[type="submit"]{
	padding: 0 30px;
}

/*style radio buttons (radio input inside label) start [radio radio-1 use_label_element default:1 "Restaurant 1" "Restaurant 2"]*/
.wpcf7-radio{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px 0;
}
.wpcf7-radio span.wpcf7-list-item{
	text-align: center;
	margin-left: 0;
}
.wpcf7-list-item input[type="radio"] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.wpcf7-list-item-label {
	display: block;
	line-height: 1.2;
	font-size: 14px;
	position: relative;
	padding: 0 0 0 35px;
	cursor: pointer;
}
.wpcf7-list-item-label:before {
	content: '';
	position: absolute;
	top: -3px;
	left: 0;
	width: 22px;
	height: 22px;
	border: 1px solid #000;
	border-radius: 50%;
	background: #FFF;
}
/*style radio buttons (radio input inside label) end*/

/*style checkbox start*/
.wpcf7-form-control-wrap input[type=checkbox]{
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

input[type="checkbox"] + .wpcf7-list-item-label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 17px;
	height: 17px;
	border: 1px solid #d69942;
	color: #d69942;
	box-sizing: border-box;
	border-radius: 0;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label:before{
	content: '\e807';
	font-family: 'Fontello', serif;
}
/*style checkbox end*/