.car-tax-container {
	color: #000000;
}

.vehicle-type-label {

}

.tax-heading {
	text-align: center;
}

.calculator-container {
	box-shadow: 2px 4px 10px 0px #d0d8db;
	padding: 20px 0 40px 0;
	background: linear-gradient(143deg, #e1f3ff, white);
/*	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;*/
	border: 1px solid #d1d1d1;
	border-radius: 7px;
}

.options-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*justify-content: space-around;*/
	justify-content: space-evenly;
}

.label-heading {
	/*font-weight: 500;
	font-size: 17px;
	margin-top: 10px;*/
	font-weight: 600;
	font-size: 18px;
	margin-top: 10px;
}

.tax-radio-label {
	display: block;
	margin-left: 24px;
	position: relative;
	font-size: 16px;
	cursor: pointer;
	line-height: 1.6;
}

.tax-radio-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.tax-radio-label .checkmark:before {
	content: '';
	position: absolute;
	top: 4px;
	left: -25px;
	height: 18px;
	width: 18px;
	border-radius: 13px;
	border-width: 1px;
	border-style: solid;
	border-color: #006591;
	border-color: #000000;
	background: #ebf9ff;
	background: #67acca;
	background: #a2d7ef;
}

.tax-radio-label input:checked ~ .checkmark:after {
	content: '';
	position: absolute;
	display: block;
	left: -20px;
	top: 9px;
	width: 8px;
	border-radius: 20px;
	height: 8px;
	background: #006591;
	background: #ffffff;
	background: #000000;
}

.tax-sides {
	width: 290px;
}

.tax-small-span {
	font-size: 12px;
}

.tax-textbox {
	width: 100px;
	margin-top: 3px;
	border-radius: 10px;
	border: 2px solid #28637d;
	padding: 3px;
	background: #ebf9ff;
	padding-left: 5px;
	font-weight: 500;
}

.tax-submit {
	width: 140px;
	background: #28637d;
	border-radius: 10px;
	color: #ebf9ff;
	margin: 0 auto;
	margin-top: 20px;
	font-weight: 500;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	padding: 3px;
	padding-top: 6px;
	cursor: pointer;
	font-size: 20px;
}

.results-container {
	color: #00456d;
	display: flex;
	justify-content: space-around;
	padding-top: 20px;
	font-size: 24px;
	border-top: 2px solid #28637d;
	margin-top: 20px;
}

.tax-size {
	font-size: 30px;
	color: #28637d;
	text-align: center;
	margin-top: 16px;
	font-weight: 600;
}

.tax-error {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d10404;
	margin-top: 20px;
	font-weight: 400;
}


.left-block .car-tax-container .options-container label {
	margin-top: 6px;
	margin-bottom: 6px;
}









