.ptt-calculator {
	width: 100%;
}

.ptt-calculator ul {
	margin: 0;
	padding: 0;
	display: flex;
	gap: 40px;
}

.form-block {
	width: 100%;
	padding: 41px 48px;
	box-shadow: 0 0 13px 0 rgba(0 0 0 / 0.12);
	border-radius: 8px;
	height: fit-content;
}

.form-block:first-child li {
	display: flex;
	justify-content: space-between;
}

.form-block:last-child,
.form-block:last-child input{
	background: rgba(225,232,252, 0.2);
}

.radio-row {
	display: flex;
    gap: 24px;
    align-items: center;
}

.radio-row label {
	display: flex !important;
    gap: 12px;
}

.form-block--data {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.form-block--data a {
	font-size: 16px;
	font-weight: 500;
	text-decoration: underline;
	color: #0078EF;
}

.form-block--title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 40px;
}

.ptt-calculator ul li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	list-style-type: none;
	margin: 0px 0px 40px;
	padding: 14px 0;
}

.ptt-calculator label {
	display: inline-block;
	line-height: 1.5;
	margin: 0px;
	padding: 0px;
	text-align: left;
	width: 65%;
}

.ptt-calculator input,
.ptt-calculator select {
	background-color: transparent !important;
	border: none !important;
	color: #999 !important;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 400;
	float: right;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: right;
	width: 40% !important;
}

.ptt-calculator select {
	max-width: 50px !important;
	text-align: left;
}

.ptt-calculator .editable {
	background-color: #ffffff;
}

.ptt-calculator .editable input,
.ptt-calculator .editable select {
	color: #494c4d !important;
}

.ptt-calculator .editable input[type="number"]::-webkit-outer-spin-button,
.ptt-calculator .editable input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ptt-calculator .editable input[type="number"] {
	-moz-appearance: textfield;
}

.ptt-calculator button {
	background-color: #0078EF;
	color: #fff;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
	font-size: 16px;
	line-height: 1.3;
	min-width: 128px;
	padding: 12px 40px;
}

label[for="property-transfer-tax-payable"] {
	font-weight: bold;
	color: #3d85c6;
}

.form-block:last-child li {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 24px;
    padding: 0;
}

.form-block:last-child li input,
.form-block:first-child .price input{
	border: 1px solid #A6A6A6 !important;
    padding: 14px 20px !important;
    width: 100% !important;
	border-radius: 4px;
}

.form-block:first-child .price {
	display: flex;
	flex-direction: column;
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.ptt-calculator ul {
		flex-direction: column;
		gap: 28px;
	}
	
	.ptt-calculator ul li {
		margin: 0 0 12px;
	}
}