.pxrut_form * {
	box-sizing: border-box;
}
.pxrut_fields_container {
	--pxrut-gap: 25px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	flex-wrap: wrap;
	gap: var(--pxrut-gap);
}
.pxrut_form_steps_container {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.pxrut_form_step {
	position: absolute;
	width: 100%;
	display: none;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	flex-wrap: wrap;
}
.pxrut_form_step.-active {
	position: relative;
	display: flex;
	width: 100%;
}
.pxrut_field_wrapper {
	position: relative;
	width: 100%;
}
.pxrut_field_wrapper.-disabled {
	pointer-events: none;
	opacity: 0.5 !important;
}
.pxrut_field_wrapper.-half {
	flex: 1 0 calc(50% - (var(--pxrut-gap) / 2));
}
.pxrut_field_wrapper.-third {
	flex: 1 0 calc(33.3% - (var(--pxrut-gap) * 2 / 3));
}
.pxrut_field_wrapper.-fourth {
	flex: 1 0 calc(25% - (var(--pxrut-gap) * 3 / 4));
}
.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:not(.select2-search__field) {
	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"], [type="file"]),
.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_field_wrapper input[type="file"] {
	padding: 0px;
	border: none;
	border-radius: 0px;
}

.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_form.-disabled .pxrut_submit_wrapper input[type="submit"],
.pxrut_form.-disabled .pxrut_submit_wrapper button {
	pointer-events: none;
	opacity: 0.5;
}

.pxrut_button .pxrut-loader,
.pxrut_submit_wrapper .button .pxrut-loader,
.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.-loader-inset,
.pxrut_submit_wrapper button.-loader-inset {
	position: relative;
}
.pxrut_submit_wrapper .button.-loader-inset .pxrut-loader,
.pxrut_submit_wrapper button.-loader-inset .pxrut-loader {
	left: 15px;
}
.pxrut_button .pxrut-loader.-show,
.pxrut_submit_wrapper .button .pxrut-loader.-show,
.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;
}

.pxrut_field_description {
	width: 100%;
}

.pxrut_length_counter {
	font-size: 12px;
}

/* DROPZONE */
.pxrut-dropzone-field {
	width: 100%;
	padding:10px;
}
.pxrut-dz-drag-n-drop {
	width: 100%;
	border: 1px dashed #c7c7c7;
	-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;
}
.dz-drag-hover .pxrut-dz-drag-n-drop {
	background-color: #f1f1f1;
}
.pxrut-dz-previews {
	width: 100%;
}
.pxrut-dz-previews .dz-preview {
	position: relative;
	display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f1f1f1;
    margin-bottom: 10px;
    padding: 10px;
}
.pxrut-dz-previews .dz-details {
	width: 100%;
    text-align: left;
	margin-bottom: 5px;
}
.pxrut-dz-previews .dz-progress {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 5px;
	background-color: #d1d1d1;
}
.dz-preview.dz-complete .dz-progress {
	display: none;
}
.pxrut-dz-previews .dz-progress .dz-upload {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0%;
	background-color: #999999;
	-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-dz-previews .dz-success-mark {
	position: absolute;
	top: 10px;
	right: 10px;
	visibility: hidden;
	opacity: 0;
	-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-dz-previews .dz-preview.dz-success .dz-success-mark {
	visibility: visible;
	opacity: 1;
}
.pxrut-dz-previews .dz-success-mark svg {
	width: 30px;
	height: 30px;
}
.pxrut-dz-previews .dz-success-mark svg g {
	stroke-width: 0;
}
.pxrut-dz-previews .dz-success-mark svg g path {
	fill: #168b5f;
}
.pxrut-dz-previews .dz-error-mark {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	-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-dz-previews .dz-preview.dz-error .dz-error-mark {
	visibility: visible;
	opacity: 1;
}
.pxrut-dz-previews .dz-error-mark svg {
	width: 30px;
	height: 30px;
}
.pxrut-dz-previews .dz-error-mark svg g {
	stroke-width: 0;
}
.pxrut-dz-previews .dz-error-mark svg g path {
	fill: #d71a1a;
}
.pxrut-dz-previews .dz-error-message {
	display: none;
	text-align: left;
	width: 100%;
	background-color: #ededed;
    padding: 5px 10px;
    border-left: 3px solid #ef4444;
}
.pxrut-dz-previews .dz-preview.dz-error .dz-error-message {
	display: block;
}

/* 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;
}

/* 2FA */
.pxrut-totp-secret {
	margin-top: 10px;
}
.pxrut-totp-secret input {
	text-align: center;
}
.pxrut-2fa-recovery-codes-container {
	min-height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0px;
}
.pxrut-2fa-recovery-codes {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	font-family: monospace !important;
	user-select: all;
}
.pxrut_totp_qr_container {
	min-height: 245px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0px;
}
.totp-deactivate-wrapper {
	padding-top: 25px;
}