/* 
	Standard layout definitions 
*/
/* darker blue */
/* website text blue */
/* gray */
/* orange */
/* darker gray */
/* gray */
/* light gray */
/* small device width */
/* website styles */
/* orange text background (used for BETA) */
/* text styles */
.text-style-small {
  font-size: 1.2em;
  line-height: 1.5em;
  letter-spacing: 0.03125em;
}
.text-style-standard {
  font-size: 1.6em;
  line-height: 1.5em;
  letter-spacing: 0.03125em;
}
.text-style-large {
  font-size: 2.8em;
  line-height: 1.18em;
}
/* Roboto Regular */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
/* Roboto Black */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
/* Roboto Black Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-BlackItalic.ttf') format('truetype');
font-weight: 900;
font-style: italic;
}
/* Roboto Bold */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
/* Roboto Bold Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-BoldItalic.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}
/* Roboto Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-Italic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
/* Roboto Light */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
/* Roboto Light Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-LightItalic.ttf') format('truetype');
font-weight: 300;
font-style: italic;
}
/* Roboto Medium Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
/* Roboto Medium Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-MediumItalic.ttf') format('truetype');
font-weight: 500;
font-style: italic;
}
/* Roboto Thin Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-Thin.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}
/* Roboto Thin Italic */
@font-face {
  font-family: 'Roboto';
src: url('../fonts/roboto/Roboto-ThinItalic.ttf') format('truetype');
font-weight: 100;
font-style: italic;
}
.vehicle-descriptors {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.vehicle-descriptors .label-wrapper {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.5px;
}
.vehicle-descriptors .value-wrapper {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-style: normal;
}
.vehicle-descriptors .vehicle-descriptor {
  padding-top: 16px;
}
.vehicle-descriptors .first-vehicle-descriptors-column {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.vehicle-descriptors .second-vehicle-descriptors-column {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.vehicle-descriptors .desktop-and-print-only,
.vehicle-descriptors .mobile-only,
.vehicle-descriptors .non-print-display {
  width: 100%;
}
@media screen and (max-width: 740px) {
  .descriptors-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}

}
@media not (max-width: 740px) {
  .descriptors-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.descriptors-grid .vehicle-descriptor {
  width: 25%;
}

}
@media print {
  .descriptors-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
}

}
