.flex-container {
	display: flex;
	flex-flow: row wrap;

	column-gap: 15px;
	row-gap: 0px;

	height: auto;
	min-height: 30px;
}

.form-front {
	flex: 1 1 auto;
	display: block;
	width: auto;
	height: auto;
	margin-bottom: 2px;
	outline: none;
	position: relative;
}

.form-front.no-flex {
	flex: 0;
}

.form-front.semi-flex {
	flex: 1 0 200px;
}

.form-front input[type="date"],
.form-front input[type="text"],
.form-front input[type="password"] {
	width: 100%;
	min-width: 50px;
	height: 40px;
	margin-bottom: 16px;
	padding: 0px 15px;
	border: 1px solid var(--border-color-input);
	border-radius: 0.4rem;
	outline: none;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
	font-size: 14px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form-front input:focus {
	border: 1px solid var(--border-color-input-focus);
}

.form-front input::placeholder {
	font-family: 'Inter-Medium', sans-serif;
	font-size: 13px;
	color: #A2A9AD00;
}

.form-front input {
	filter: none;
}

.form-front label {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	bottom: 0px;
	pointer-events: none;
	-webkit-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}

.label-name,
.label-name_bigger {
	position: absolute;
	left: 15px;
	top: 13px;

	font-family: 'Inter-Regular', sans-serif;
	font-size: 12px;
	color: var(--label-name-color);

	-webkit-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}

.form-front input::placeholder {
	font-family: 'Inter-Regular', sans-serif;
	font-size: 13px;
	color: #A2A9AD00;
}

.form-front input:valid+label>.label-name,
.form-front input:focus+label>.label-name {
	transform: translateY(-90%);
	font-size: 12px;
	color: var(--label-color-input);

	top: -1px;
	left: 5px;

	transition: transform 0.5s ease;
}

.form-front input.code {
	min-width: 180px;
	text-transform: uppercase;
}

.form-front input.doc {
	min-width: 180px;
}

.form-front input.birthdate {
	width: 100%;
	max-width: 360px;
	height: 40px;
	padding: 0px 15px;
	font-family: 'Inter-Regular', sans-serif;
	font-size: 14px;

	box-sizing: border-box;
}

.form-front input.birthdate+label>.label-name {
	transform: translateY(-90%);
	font-size: 12px;
	color: var(--label-color-input);

	top: -1px;
	left: 5px;
}

input.birthdate:invalid {
	-webkit-text-fill-color: #CFD5DA;
}

input.birthdate::-webkit-datetime-edit-text {
	color: #212327;
	padding: 0 0.2em;
}

input.birthdate::-webkit-datetime-edit-day-field {
	color: #212327;
}

input.birthdate::-webkit-datetime-edit-month-field {
	color: #212327;
}

input.birthdate::-webkit-datetime-edit-year-field {
	color: #212327;
}

input.birthdate::-webkit-calendar-picker-indicator,
input.birthdate::-webkit-calendar-picker-indicator {
	filter: invert(81%)
}

.form-front input.birthdate:focus::placeholder {
	color: #CFD5DA;
}

.form-front input.phone {
	width: 100%;
	max-width: 180px;
}


.form-front select,
.form-front select option {
	width: 100%;
	height: 40px;
	margin-bottom: 16px;
	padding: 0px 15px;
	border: 1px solid var(--border-color-select);
	border-radius: 0.4rem;
	outline: none;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
	font-size: 14px;
	color: #000;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	background: transparent;
	background-image: url("data:image/svg+xml;utf8,<svg fill='grey' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: calc(100% - 10px);
	background-position-y: 6px;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form-front select option {
	color: #000000;
}

.form-front select:invalid,
.form-front select option[value=""] {
	color: var(--label-name-color);
}

.form-front select.__fixed_select {
	font-size: 14px;
}

.form-front select.fixed+label>.label-name {
	transform: translateY(-90%);
	font-size: 12px;
	color: var(--label-color-input);

	top: -1px;
	left: 5px;
}

.form-front select:focus {
	border: 1px solid var(--border-color-input-focus);
}

.form-front select::placeholder {
	font-family: 'Inter-Medium', sans-serif;
	font-size: 13px;
	color: #A2A9AD;
}

.form-front textarea {
	width: 100%;
	min-width: 60px;
	height: auto;
	min-height: 80px;

	margin-bottom: 16px;
	padding: 0px 15px;
	border: 1px solid var(--border-color-input);
	border-radius: 0.4rem;
	outline: none;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
	font-size: 14px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	resize: none;
}

.form-front textarea::placeholder {
	font-family: 'Inter-Regular', sans-serif;
	font-size: 13px;
	color: #A2A9AD00;
}

.form-front textarea:focus {
	border: 1px solid var(--border-color-input-focus);
	box-shadow: 0px 0px 8px #5F83A690;
}








fieldset {
	height: auto;
	min-height: 80px;
	font-size: 13px;
	border: 1px solid #D4D8E0;
	border-radius: 3px;
	background-color: var(--white);
}

fieldset legend {
	font-size: 13px;
	color: #C2C5C8;
	transform: translateY(-30%);
}

fieldset .item-company {
	display: flex;
	float: left;
	padding: 5px 12px;
	margin-right: 10px;
	margin-bottom: 5px;
	font-size: 12px;
	background-color: rgb(246, 246, 246, 1);
	border: 1px solid rgba(100, 100, 100, 0.3);
	border-radius: 3px;
	cursor: pointer;
}



.content-toggle-encrypt {
	flex: 1 1 auto;
	display: flex;
	width: auto;
	height: auto;
	outline: none;
	position: relative;
}

.toggle-encrypt {
	display: flex;
	width: 40px;
	height: 38px;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 99;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: 22px 22px;
	background-position: center;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%2250px%22%20height%3D%2250px%22%20version%3D%221.1%22%20viewBox%3D%220%200%2050%2050%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cpath%20style%3D%22fill%3A%20rgba%28112%2C112%2C112%2C0.7%29%22%20d%3D%22M25%2013.89c8.92%2C0.36%2013.47%2C4.92%2016.22%2C11.11%20-2.37%2C5.79%20-7.86%2C10.77%20-16.22%2C11.12%20-9.02%2C-0.59%20-13.94%2C-5.18%20-16.22%2C-11.12%202.31%2C-5.72%207.05%2C-10.63%2016.22%2C-11.11zm0%203.74c-4.07%2C0%20-7.37%2C3.3%20-7.37%2C7.37%200%2C4.07%203.3%2C7.37%207.37%2C7.37%204.07%2C0%207.37%2C-3.3%207.37%2C-7.37%200%2C-4.07%20-3.3%2C-7.37%20-7.37%2C-7.37z%22%2F%3E%3Ccircle%20style%3D%22fill%3A%20rgba%28112%2C112%2C112%2C0.7%29%3Bstroke%3A%20rgba%28112%2C112%2C112%2C0.7%29%3Bstroke-width%3A0.12%3Bstroke-miterlimit%3A22.9256%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%224.69%22%2F%3E%3C%2Fsvg%3E');
}

.toggle-encrypt:hover {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%2250px%22%20height%3D%2250px%22%20version%3D%221.1%22%20viewBox%3D%220%200%2050%2050%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cpath%20style%3D%22fill%3A%20rgba%28112%2C112%2C112%2C1.00%29%22%20d%3D%22M25%2013.89c8.92%2C0.36%2013.47%2C4.92%2016.22%2C11.11%20-2.37%2C5.79%20-7.86%2C10.77%20-16.22%2C11.12%20-9.02%2C-0.59%20-13.94%2C-5.18%20-16.22%2C-11.12%202.31%2C-5.72%207.05%2C-10.63%2016.22%2C-11.11zm0%203.74c-4.07%2C0%20-7.37%2C3.3%20-7.37%2C7.37%200%2C4.07%203.3%2C7.37%207.37%2C7.37%204.07%2C0%207.37%2C-3.3%207.37%2C-7.37%200%2C-4.07%20-3.3%2C-7.37%20-7.37%2C-7.37z%22%2F%3E%3Ccircle%20style%3D%22fill%3A%20rgba%28112%2C112%2C112%2C1.00%29%3Bstroke%3A%20rgba%28112%2C112%2C112%2C1.00%29%3Bstroke-width%3A0.12%3Bstroke-miterlimit%3A22.9256%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%224.69%22%2F%3E%3C%2Fsvg%3E');
}

.toggle-encrypt.toggle-checked {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%2250px%22%20height%3D%2250px%22%20version%3D%221.1%22%20viewBox%3D%220%200%2050%2050%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cpath%20style%3D%22fill%3A%20rgba%2831%2C31%2C31%2C0.7%29%22%20d%3D%22M25%2013.12c8.92%2C0.36%2013.47%2C4.92%2016.22%2C11.11%20-1.25%2C3.06%20-3.38%2C5.89%20-6.34%2C7.94l-3.55%20-4.16c0.66%2C-1.11%201.04%2C-2.4%201.04%2C-3.78%200%2C-4.07%20-3.3%2C-7.37%20-7.37%2C-7.37%20-0.97%2C0%20-1.89%2C0.19%20-2.74%2C0.53l-2.82%20-3.31c1.65%2C-0.52%203.49%2C-0.85%205.56%2C-0.96zm0%206.42c-0.28%2C0%20-0.56%2C0.03%20-0.83%2C0.08l5.26%206.16c0.17%2C-0.48%200.26%2C-1%200.26%2C-1.55%200%2C-2.59%20-2.1%2C-4.69%20-4.69%2C-4.69zm-12.18%20-9.57l4.3%205.03%200%200%203.1%203.63%20-0.01%200%201.74%202.04%200.01%20-0.01%206.09%207.14%200%200%201.73%202.04%200.01%200%203.03%203.55%200%200%204.35%205.1%20-1.79%201.54%20-4.85%20-5.68c-1.68%2C0.57%20-3.52%2C0.91%20-5.53%2C1%20-9.02%2C-0.59%20-13.94%2C-5.17%20-16.22%2C-11.12%201.26%2C-3.11%203.24%2C-5.98%206.25%2C-8.03l-4%20-4.69%201.79%20-1.54zm14.92%2021.11l-1.9%20-2.23c-0.28%2C0.05%20-0.56%2C0.07%20-0.84%2C0.07%20-2.59%2C0%20-4.69%2C-2.1%20-4.69%2C-4.69%200%2C-0.54%200.09%2C-1.06%200.26%2C-1.55l-1.9%20-2.22c-0.66%2C1.1%20-1.04%2C2.39%20-1.04%2C3.77%200%2C4.07%203.3%2C7.37%207.37%2C7.37%200.97%2C0%201.89%2C-0.19%202.74%2C-0.52z%22%2F%3E%3C%2Fsvg%3E');
}

.toggle-encrypt.toggle-checked:hover {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%2250px%22%20height%3D%2250px%22%20version%3D%221.1%22%20viewBox%3D%220%200%2050%2050%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cpath%20style%3D%22fill%3A%20rgba%2830%2C30%2C30%2C1.00%29%22%20d%3D%22M25%2013.12c8.92%2C0.36%2013.47%2C4.92%2016.22%2C11.11%20-1.25%2C3.06%20-3.38%2C5.89%20-6.34%2C7.94l-3.55%20-4.16c0.66%2C-1.11%201.04%2C-2.4%201.04%2C-3.78%200%2C-4.07%20-3.3%2C-7.37%20-7.37%2C-7.37%20-0.97%2C0%20-1.89%2C0.19%20-2.74%2C0.53l-2.82%20-3.31c1.65%2C-0.52%203.49%2C-0.85%205.56%2C-0.96zm0%206.42c-0.28%2C0%20-0.56%2C0.03%20-0.83%2C0.08l5.26%206.16c0.17%2C-0.48%200.26%2C-1%200.26%2C-1.55%200%2C-2.59%20-2.1%2C-4.69%20-4.69%2C-4.69zm-12.18%20-9.57l4.3%205.03%200%200%203.1%203.63%20-0.01%200%201.74%202.04%200.01%20-0.01%206.09%207.14%200%200%201.73%202.04%200.01%200%203.03%203.55%200%200%204.35%205.1%20-1.79%201.54%20-4.85%20-5.68c-1.68%2C0.57%20-3.52%2C0.91%20-5.53%2C1%20-9.02%2C-0.59%20-13.94%2C-5.17%20-16.22%2C-11.12%201.26%2C-3.11%203.24%2C-5.98%206.25%2C-8.03l-4%20-4.69%201.79%20-1.54zm14.92%2021.11l-1.9%20-2.23c-0.28%2C0.05%20-0.56%2C0.07%20-0.84%2C0.07%20-2.59%2C0%20-4.69%2C-2.1%20-4.69%2C-4.69%200%2C-0.54%200.09%2C-1.06%200.26%2C-1.55l-1.9%20-2.22c-0.66%2C1.1%20-1.04%2C2.39%20-1.04%2C3.77%200%2C4.07%203.3%2C7.37%207.37%2C7.37%200.97%2C0%201.89%2C-0.19%202.74%2C-0.52z%22%2F%3E%3C%2Fsvg%3E');
}

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
	display: none;
}




.__form_actions {
	display: flex;
	gap: 20px;
	padding: 20px 0px;
}

.__form_actions.flex_end {
	justify-content: flex-end;
}





@media (max-width: 800px) {

	.form-front.no-flex {
		flex: 1 1 auto;
	}


	.form-front input.birthdate {
		max-width: 100% !important;
	}

	.form-front input.phone {
		max-width: 100% !important;
	}


}
