﻿h1 {
	color: var(--saa-blue);
	font-size: 27px;
	text-align: center;
	margin: 0 0 8px 0;
}

#Model > div:first-of-type > b {
	z-index: 1;
	color: #fff;
	font-size: 34px;
}

section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}
/*#region VehicleFeatures*/
#VehicleFeatures {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	padding: 2rem 0;
}

.content2BoxContainer {
	width: 100%;
}

#VehicleFeatures > div:last-of-type {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

	#VehicleFeatures > div:last-of-type::-webkit-scrollbar {
		width: 8px;
	}

	#VehicleFeatures > div:last-of-type::-webkit-scrollbar-thumb {
		background-color: var(--saa-yellow);
		border-radius: 6px;
	}

	#VehicleFeatures > div:last-of-type::-webkit-scrollbar-track {
		background-color: #e9e9e9;
		border-radius: 20px;
		width: 20px;
	}

	#VehicleFeatures > div:last-of-type > h5 {
		color: var(--saa-blue);
		font-weight: 600;
		font-size: 30px;
	}

	#VehicleFeatures > div:last-of-type > h3 {
		width: 100%;
	}

	#VehicleFeatures > div:last-of-type table {
		/*table-layout: fixed;*/
		width: 100%;
		border-collapse: collapse;
	}

		#VehicleFeatures > div:last-of-type table > tbody > tr > td:first-of-type {
			width: 24%;
		}

		#VehicleFeatures > div:last-of-type table > tbody > tr > td {
			color: var(--saa-blue);
			padding: 8px;
			border: 1px solid #8080805e;
			background: #fff;
			margin: 0;
			font-size: 16px;
			font-weight: 500;
			width: 200px;
			min-width: 200px;
		}

			#VehicleFeatures > div:last-of-type table > tbody > tr > td > div {
				position: relative;
				display: inline-block;
				cursor: pointer;
			}

				#VehicleFeatures > div:last-of-type table > tbody > tr > td > div:hover {
					text-shadow: 0px 0px 0px var(--saa-blue);
				}

				#VehicleFeatures > div:last-of-type table > tbody > tr > td > div > span {
					display: none;
					width: 25vw;
					position: absolute;
					z-index: 99;
					top: 20px;
					right: 0;
					background: var(--saa-yellow);
					padding: 10px;
				}

				#VehicleFeatures > div:last-of-type table > tbody > tr > td > div:hover > span {
					display: block;
				}

		#VehicleFeatures > div:last-of-type table > tbody > tr.active > td {
			background: #ffedbf;
		}
/*#endregion */



#CompareBox {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}


.contentContainer {
	width: 100%;
	border-radius: 10px;
	padding: 2rem;
	background: #fafbfd;
}

	.contentContainer > h2 {
		text-align: center;
		margin: 3rem 0 1rem 0;
		font-size: 17px;
	}

		.contentContainer > h2:first-of-type {
			margin: 0 0 1rem 0;
		}

.content2Box {
	display: flex;
	gap: 4px;
	margin-bottom: 0.6rem;
	width: 100%;
}

	.content2Box > div {
		width: 100%;
		background: #e0ebf4;
		padding: 1rem;
		border-radius: 7px;
	}

		.content2Box > div:first-of-type {
			border-top-right-radius: 0;
			border-bottom-right-radius: 0;
		}

		.content2Box > div:last-of-type {
			border-top-left-radius: 0;
			border-bottom-left-radius: 0;
		}

		.content2Box > div > ul {
			display: flex;
			flex-direction: column;
			gap: 0.6rem;
		}

			.content2Box > div > ul > li {
				font-size: 13px;
				color: var(--saa-blue);
				font-weight: 500;
			}

		.content2Box > div.title {
			width: 20%;
			display: flex;
			align-items: center;
			justify-content: center;
			background: #d6e0e9;
			text-align: center;
			border-radius: 0;
			font-size: 13px;
			color: var(--saa-blue);
			font-weight: 600;
			border-top-left-radius: 7px;
			border-bottom-left-radius: 7px;
			min-width: 150px;
		}


#CompareBox > h2:not(h2:first-of-type) {
	margin-top: 3rem;
}

#CompareBox > h2 {
	font-size: 30px;
}
