.pxrut_form * {
	box-sizing: border-box;
}
.pxrut_fields_container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	flex-wrap: wrap;
}
.pxrut_field_wrapper {
	position: relative;
	width: 100%;
	padding: 25px;
}
.pxrut_field_wrapper.-half {
	width: 50%;
	padding-left: 12.5px;
	padding-right: 12.5px;
}
.pxrut_field_wrapper.-third {
	width: 33.3%;
	padding-left: 12.5px;
	padding-right: 12.5px;
}
.pxrut_field_wrapper.-fourth {
	width: 25%;
	padding-left: 12.5px;
	padding-right: 12.5px;
}
.pxrut_field_wrapper.-half-first {
	padding-left: 0px;
}
.pxrut_field_wrapper.-half-last {
	padding-right: 0px;
}

.pxrut_field_wrapper label {
	display: block;
	margin-bottom: 5px;
}

.pxrut_field_wrapper input,
.pxrut_field_wrapper select,
.pxrut_field_wrapper textarea {
	width: 100%;
	border: 1px solid #adadad;
	padding: 10px;
	border-radius: 5px;
	display: block;
}

.pxrut_field_wrapper input:focus,
.pxrut_field_wrapper select:focus,
.pxrut_field_wrapper textarea:focus {
	outline: none;
}

.pxrut_field_wrapper input:not([type="checkbox"]),
.pxrut_field_wrapper select {
	height: 30px;
}
.pxrut_field_wrapper select {
	padding: 0px 10px;
}
.pxrut_field_wrapper select[multiple] {
	height: 75px;
}
.pxrut_field_wrapper input[type="checkbox"] {
	display: inline-block;
	width: auto;
	vertical-align: baseline;
	margin-right: 10px;
}

.pxrut_input_wrapper {
	position: relative;
	padding: 0px;
	margin: 0px;
}
.pxrut_input_wrapper.-prefixed,
.pxrut_input_wrapper.-suffixed {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.pxrut_input_wrapper.-prefixed input {
	border-radius: 0px 5px 5px 0px;
	border-left: none;
}
.pxrut_input_wrapper.-suffixed input {
	border-radius: 5px 0px 0px 5px;
	border-right: none;
}
.pxrut_input_wrapper.-prefixed.-suffixed input {
	border-radius: 0px;
	border-left: none;
	border-right: none;
}
.pxrut_input_prefix {
	padding: 5px 10px;
	border-radius: 5px 0px 0px 5px;
	border: 1px solid #adadad;
	border-right: none;
	height: 30px;
	background-color: #f3f3f3;
}
.pxrut_input_suffix {
	padding: 5px 10px;
	border-radius: 0px 5px 5px 0px;
	border: 1px solid #adadad;
	border-left: none;
	height: 30px;
	background-color: #f3f3f3;
}

.pxrut_submit_wrapper {
	display: flex;
	justify-content: center;
}
.pxrut_submit_wrapper input[type="submit"],
.pxrut_submit_wrapper button {
	position: relative;
	height: 30px;
	padding: 0px 15px;
	cursor: pointer;
}
.pxrut_submit_wrapper button .pxrut-loader {
	position: absolute;
    top: 4px;
    left: -35px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.pxrut_submit_wrapper button .pxrut-loader.-show {
	opacity: 1;
	visibility: visible;
}

.pxrut-dual-ring {
	display: inline-block;
	width: 20px;
    height: 20px;
}
.pxrut-dual-ring:after {
	content: " ";
	display: block;
	width: 20px;
    height: 20px;
	border-radius: 50%;
	border: 2px solid #878787;
	border-color: #878787 transparent #878787 transparent;
	animation: pxrut-dual-ring 1.2s linear infinite;
	box-sizing: border-box;
}
@keyframes pxrut-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.pxrut_show_password {
	position: absolute;
	top: 5px;
    right: 10px;
	width: 20px;
	height: 20px;
	background-image: url('../images/show_pw.svg');
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
.pxrut_show_password.-hide {
	background-image: url('../images/hide_pw.svg');
}
.pxrut_form_errors {
	padding: 0px 25px;
}
.pxrut_form_error,
.pxrut_field_error {
	margin: 10px 0px;
    background-color: #ededed;
    padding: 5px 10px;
    border-left: 3px solid #ef4444;
}
.pxrut_form_error.-warning,
.pxrut_field_error.-warning {
	border-left: 3px solid #efab44;
}
.pxrut_form_error.-info,
.pxrut_field_error.-info {
	border-left: 3px solid #6e85d7;
}

/* USER LOGIN AND REGISTRATION */
.pxrut_user_login_links,
.pxrut_user_lostpassword_links,
.pxrut_user_pass_recovery_links,
.pxrut_user_registration_links {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 15px 0px;
}