.test-drive .td__title {
	font-weight: 500;
	font-size: 36px;
	line-height: 100%;
	color : #212529;
	text-align: center;
	margin-bottom: 30px;
}

.test-drive .td__subtitle {
	font-weight: 500;
	font-size: 25px;
	line-height: 100%;
	color : #212529;
}

.test-drive .td__inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.test-drive .td__left {
	width: auto;
	
}
.test-drive .td__right {
	width: 621px;
}
.test-drive .td__models.models {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px 69px;
	margin-top: 40px;
}

.test-drive .models__item {
	border: 1px solid transparent;
	cursor: pointer;
}
.test-drive .models__item.active,
.test-drive .models__item:hover{
	border: 1px solid #CA0012;
}
.models__image {
	width: 100%;
	height: 89px;
	margin-bottom: 11px;
}
.models__image picture{
	
}
.models__image picture img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.models__title {
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	line-height: 20.7px;
	margin-bottom: 20px;
}



.td-form {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.td-form__item--col {
	display: flex;
	flex-direction: column;
}
.td-form__item--wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.td-form__title {
	display: block;
	font-weight: 500;
	font-size: 25px;
	line-height: 100%;
	color: #212529;
	margin-bottom: 15px;
	width: 100%;
}
.td-form__input-inner {
	display: flex;
	flex-direction: column;
}
.td-form__item--wrap .td-form__input-inner {
	width: calc(50% - 10px);
}
.td-form__input-inner label {
	margin-bottom: 15px;
}

.td-form__input {
	padding: 10px 15px;
	border: 1px solid #D3D3D3;
}
.td-form__input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
}
.td-form__input::placeholder{
	color: #2125294D;
	font-family: "Tactic Round Reg", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
}

.td-form__textarea-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.td-form__textarea {
	padding: 10px 15px;
	border: 1px solid #D3D3D3;
	width: 100%;
	resize: none;
	min-height: 155px;
}
.td-form__textarea::placeholder{
	color: #2125294D;
	font-family: "Tactic Round Reg", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
}
.td-form__textarea-inner label {
	margin-bottom: 15px;
}

.td-form__checkbox-inner:first-child{
	margin-bottom: 10px;
}
.td-form__checkbox-inner label {
	cursor: pointer;
}

.td-form__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 186px;
	height: 52px;
	padding: 10px 40px;
	border: 1px solid #CA0012;	
	background-color: #CA0012;
	font-weight: 300;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
}
.td-form__btn[disabled]{
	background-color: #D3D3D3;
	border: 1px solid #D3D3D3;
}
