@charset "UTF-8";

/*------------------------------------------------*/

.vehicle-wrap {
	background-color: white;
	display: flex;
	flex-flow: column;
	align-items: center;
	color: rgb(10,10,10);
}

.vehicle-content {
	background-color: rgb(44,84,120);
	padding: 2em;
	width: calc(100% - 4em);
	max-width: calc(1280px - 4em);
}

.vehicle-group {
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	width: calc(100% - 4em);
	padding: 2em;
	z-index: 1;
}

.vehicle-group::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(145deg, rgba(250,250,250,0.9), white, rgba(240,240,240,0.9));
	border-radius: 6px;
	box-shadow: 5px 5px 2px rgba(10,10,10,0.3);
	backdrop-filter: blur(3px);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.vehicle-group:not(:last-child) {
	margin-bottom: 2em;
}

.vehicle-group h3 {
	/*background-color: rgb(90,90,90);*/
	/*border: solid 1px silver;*/
	/*border-radius: 0.5em;*/
	margin-top: 1.0em;
	margin-bottom: 0.5em;
	width: 40%;
	text-align: center;
	color: rgb(90,90,90);
}

.vehicle-item {
	border-bottom: solid 1px rgb(120,120,120);
	display: flex;
	width: 80%;
	line-height: 2.4em;
}

.vehicle-item:last-child {
	margin-bottom: 1em;
}

.item1 {
	padding-top: 1.0em;
	padding-left: 1em;
	width: calc(60% - 1em);
}

.item2 {
	padding-top: 1.0em;
	padding-right: 1em;
	width: calc(40% - 1em);
	text-align: right;
}


/*------------------------------------------------*/

@media screen and (max-width: 800px) {
.vehicle-wrap {
	font-size: 0.7rem;
}
.vehicle-content {
	padding: 1em;
	width: calc(100% - 2em);
}
.vehicle-group {
	padding: 1em;
	width: calc(100% - 2em);
}
.vehicle-item {
	width: calc(100% - 2em);
}



}

/*------------------------------------------------*/


