
#nyt_tractor_selector {
	--border-radius: 99em;
	--color-light: #ffffff;
	--color-dark: #006400;
	--color-inactive: #646464;
}

#nyt_tractor_selector select {
	border-radius: var(--border-radius);
}
.nytts-wrapper {
	display: grid;
	grid-template-columns: 3fr 3fr 3fr 1fr;
	gap: 1rem;
	}

@media screen and (max-width: 800px) {
    .nytts-wrapper {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	#nytts-manufacturer-wrapper,
	#nytts-series-wrapper,
	#nytts-model-wrapper {
		width: 100%;
	}
}

#nytts-result-button {
	max-width: 7em;
	padding: 2px 1em;
	background-color: var(--color-inactive);
	color: var(--color-light);
	border-radius: var(--border-radius);
	text-align: center;
}

#nytts-result-button.nytts-has-link {
	background-color: var(--color-dark);
}

#nytts-result-button a {
	color: var(--color-light);
}

/* Select2 specific styles*/
.select2-container--default .select2-selection--single .select2-selection__rendered  {
	line-height: 14px!important;
}

body:has(.select2-container--open){
	overflow-x: hidden!important;
}

