.tool-form-block {
	padding: 40px;
	border: solid 1px #ddd;
	border-radius: 10px;
}
.tool-form-block-content {
    margin-top: 50px;
}
.tool-form-block-title {
	text-align: center;
}
.tool-form-block-title .header-1 {
	font-size: 42px;
	font-weight: bold;
}
.tool-form-meta-description {
	display: none;
}
.tool-form-line {
	margin-bottom: 20px;
}
.tool-form-list-group {
	display: flex;
	gap: 30px;
	width: 100%;
	overflow: hidden;
}
.tool-form-list-group.vertical {
	flex-direction: column;
	gap: 12px;
}
.tool-form-list-group.list {
    gap: 0;
    border: solid 1px #ddd;
    border-radius: 6px;
}
.tool-form-list {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 15px;
	width: 100%;
	background-color: #fff;
	border: solid 1px #ddd;
	border-radius: 6px;
	transition: .5s all;
	cursor: pointer;
}
.tool-form-list-group.list .tool-form-list {
	border: none;
	border-bottom: solid 1px #ddd;
	border-radius: 0;
}
.tool-form-list-group.list .tool-form-list:last-child {
	border-bottom: none;
}
.tool-form-list.small {
    padding: 9px 15px;
    font-size: 14px;
}
.tool-form-list.small:hover {
	background-color: #f5f5f5;
}
.tool-form-list, .tool-checkbox-field {
	user-select: none;
}
.tool-form-list input, .tool-checkbox-field input {
	display: none;
}
.tool-form-list p, .tool-checkbox-field p {
	margin: 0;
	line-height: 1;
}
.tool-form-list .radio, .tool-form-list .check, .tool-checkbox-field .check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-color: #fff;
	border: solid 1px #ddd;
	border-radius: 50%;
}
.tool-form-list.small .check {
	width: 16px;
	min-width: 16px;
	height: 16px;
}
.tool-form-list .check, .tool-checkbox-field .check {
	border-radius: 3px;
}
.tool-form-list:hover, .tool-form-list.active, .tool-checkbox-field.active {
	border-color: rgb(var(--orange-color));
}
.tool-form-list.active .radio, .tool-form-list.active .check, .tool-checkbox-field.active .check {
	border-color: rgb(var(--orange-color));
}
.tool-form-list .radio:before, .tool-form-list .check:before, .tool-checkbox-field .check:before {
	content: '';
	position: absolute;
	width: 14px;
	height: 14px;
	background-color: #fff;
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.tool-form-list.small .check:before {
	width: 8px;
	height: 8px;
}
.tool-form-list .check:before, .tool-checkbox-field .check:before {
	border-radius: 3px;
}
.tool-form-list.active .radio:before, .tool-form-list.active .check:before, .tool-checkbox-field.active .check:before {
	background-color: rgb(var(--orange-color));
	transform: scale(1);
}
.tool-checkbox-field {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.tool-form-input {
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: relative;
	padding: 15px;
	background-color: #fff;
	border: solid 1px #ddd;
	border-radius: 3px;
}
.tool-form-input input {
	height: 30px;
	border: none;
	outline: none;
	font-size: 20px;
}
.tool-form-input input::-webkit-outer-spin-button,
.tool-form-input input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.tool-form-input input[type=number] {
	-moz-appearance: textfield;
}
.tool-form-input p {
	margin: 0;
	user-select: none;
}
.tool-form-input span.helper {
	position: absolute;
	bottom: 21px;
	right: 15px;
	user-select: none;
}
.tax-benefits-block:not(.active) {
	display: none;
}
.salary-calculator-form button {
	width: 100%;
}
.salary-calculator-form-result {
	display: block;
	margin-top: 30px;
    border-radius: 10px;
}
.salary-calculator-form-result.success {
	border: solid 1px #ececec;
	overflow: auto;
}
.salary-calculator-form-result.fail {
    display: block;
    margin-top: 20px;
    line-height: 1.6em;
	border: none;
	color: rgb(230, 87, 87);
}
.salary-calculator-table {
    width: 100%;
    border-collapse: collapse;
}
.salary-calculator-table td {
    padding: 12px 15px;
    border: solid 1px #ececec;
}
.salary-calculator-table tr:first-child td {
	border-top: none;
}
.salary-calculator-table tr:last-child td {
	border-bottom: none;
}
.salary-calculator-table tr td:first-child {
	border-left: none;
}
.salary-calculator-table tr td:last-child {
	border-right: none;
	font-weight: 500;
	text-align: center;
}
.salary-calculator-table .table-row-header {
	background-color: #fafafa;
}
.salary-calculator-form button {
	margin-top: 10px;
}
@media (max-width: 768px) {
    .tool-form-block {
        padding: 0;
        border: none;
    }
	.tool-form-block .row:not(.tp) {
		gap: 0;
	}
	.tool-form-list-group {
		gap: 20px;
	}
	.tool-form-list-group.mobile-split {
		flex-direction: column;
	}
	.tool-form-block-title .header-1 {
		font-size: 24px;
	}
}