div.pps_error {
	color: white;
	background: var(--color-error);
	background-size: 15px 15px;;
	padding-left: var(--step2);
	padding-right: var(--step6);
	min-height: calc(var(--step6) - 2px);
	border-radius: 1px;
	cursor: pointer;
	position: absolute;
	z-index: 10;
	right: 1px;
	top: 1px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
div.pps_error:after {
	content: '\f057';
	font-family: 'FontAwesome';
	font-size: 18px;
	position: absolute;
	top: 50%;
	right: 10px;
  	transform: translate(0,-50%);
}
div.pps_error:before {
	content: ''; 
    position: absolute;
    border: 5px solid transparent;
    border-right: 5px solid var(--color-error);
	top: 50%;
	left: -10px;
  	transform: translate(0,-50%);    
}

form.pps_success {
	text-align: center;
	font-size: var(--font-medium);
	padding: var(--step4) var(--step4);
	background: var(--color2);
	border: 1px solid var(--color-success);
	border-radius: 0;
}

label.pps {
	position: relative;
	cursor: pointer;
	display: block;
	margin:0;
	padding: 0px;
}

label.pps.pps_require {
	position: relative;
}

label.pps.pps_require:after {
	content: '\f111';
	font-family: 'FontAwesome';
	font-size: 7px;
	position: absolute;
	right: 10px;
	top: 6px;
	color: var(--color5);
}

label.pps * {
	font-size: 16px;
	font-family: 'ProximaNova','arial';
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

label.pps.pps_checkbox input[type="checkbox"] {
	display: none;
}
label.pps.pps_checkbox {
	
}
label.pps.pps_checkbox input[type="checkbox"]+span {
	display: inline-block;
	padding: 5px 5px 5px 30px;
}
label.pps.pps_checkbox input[type="checkbox"]+span:before {
	content: "\f096";
	color: #9a9a9a;
	font-size: 22px;
	height: 100%;
	line-height: 100%;
	font-family: 'FontAwesome';
	position:absolute;
	top: 7px;
	left: 5px;
}

label.pps.pps_checkbox input[type="checkbox"]:checked+span:before {
	content: "\f046";
}

label.pps.pps_checkbox input[type="checkbox"][disabled]+span {
	color: silver;
	cursor: default;
}

label.pps.pps_checkbox input[type="checkbox"][disabled]+span:before {
	color: silver;
}
label.pps.pps_radio {
	
}
label.pps.pps_radio input[type="radio"] {
	display: none;
}

label.pps.pps_radio input[type="radio"]+span {
	display: inline-block;
	padding: 5px 5px 5px 30px;
}
label.pps.pps_radio input[type="radio"]+span:before {
	content: "\f10c";
	color: #9a9a9a;
	font-size: 20px;
	height: 100%;
	line-height: 100%;
	font-family: 'FontAwesome';
	position:absolute;
	top: 5px;
	left: 5px;
}

label.pps.pps_radio input[type="radio"]:checked+span:before {
	content: "\f192";
}

label.pps.pps_radio input[type="radio"][disabled]+span {
	color: silver;
	cursor: default;
}

label.pps.pps_radio input[type="radio"][disabled]+span:before {
	color: silver;
}

label.pps.pps_select>select {
	width: 100%;
}
label.pps.pps_upload input[type="file"] {
	opacity: 0;
	display: none;
}

label.pps.pps_upload span {
	color: #666;
	background: transparent;
	border: 1px solid #9a9a9a;
	margin: 0;
	padding: 0 12px 0 12px;
	width: auto;
	max-width: max-content;
	min-height: var(--step6);
	line-height: inherit;
	border-radius: 3px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
label.pps.pps_upload span:hover {
	background-color: #f7f7f7;
	box-shadow: 0 0 5px #ededed;
}
label.pps.pps_upload span:active {
	background-color: #f7f7f7;
	box-shadow:inset 0 0 5px #d2d2d2;
}
label.pps.pps_input input {
	width: 100%;
	border: 1px solid #c4c4c4;
	border-radius: 3px;
	padding: 0px 15px;
	height: var(--step6);
	margin: 0;
	display: block;
	outline: none;
}

label.pps.pps_area textarea {
	width: 100%;
	min-height: calc(var(--step) * 20);
	border: 1px solid #9a9a9a;
	border-radius: 3px;
	padding: 4px 5px;
	margin: 0 !important;
	display: block;
}

label.pps.pps_select select:focus,
label.pps.pps_area textarea:focus,
label.pps.pps_input input:focus {
	box-shadow:inset 0 0 5px #d2d2d2;
}
label.pps.pps_button {
	display: inline-block;
}
a.pps_button,span.pps_button,
label.pps.pps_button input {
	text-transform: uppercase;
	letter-spacing: 1px;
	color: white;
	background: #087fc4;
	border: 1px solid #087fc4;
	padding: 0 var(--step4);
	min-height: var(--step6);
	display: inline-flex;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	position: relative;
}
a.pps_button:hover,
span.pps_button:hover,
label.pps.pps_button input:hover {
	background-color: #05507c;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
a.pps_button:active,
span.pps_button:active,
label.pps.pps_button input:active {
	background-color: #05507c;
	box-shadow: none;
	cursor: default;
}
a.pps_button:disabled,
span.pps_button:disabled,
label.pps.pps_button input:disabled,
label.pps.pps_button input:disabled:hover {
	background-color: #808080;
	border-color: #808080;
	box-shadow: none;
	cursor: default;
}
a.pps_button,span.pps_button {
	text-decoration: none;
	min-height: var(--step6);
	align-items: center;
	justify-content: center;
}
form {
	width: auto;
	margin:0px;
	padding:0px;
}
form.pps_form {
	background: #f0f0f0;
	padding: 20px;
}
form.pps_form span.title {
	font-weight: 600;
}
form.pps_form span.title.pps_require {
	position: relative;
}
form.pps_form span.title.pps_require:after {
	content: '\f111';
	font-family: 'FontAwesome';
	font-size: 7px;
	position: absolute;
	right: calc(var(--step2) * -1);
	color: var(--color-error);
}
form.pps_form span.descr.pps_require {
	position: relative;
	padding-left: 10px;
	color: #808080;
}
form.pps_form span.descr.pps_require:after {
	content: '\f111';
	font-family: 'FontAwesome';
	font-size: 7px;
	position: absolute;
	left: 0px;
	color: var(--color-error);
}