/**
* CARS 2025 PAGE
* The main SCSS file for the our-thinking/cars page.
*
* BASE (Settings, Tools and Base styles, i.e. variables, mixins, etc...)
* W3C ...................... Styles from gs.w3c.css that need to be applied when viewing mobile.
* Variables ................ Variables to reduce repetiveness
* Mixins ................... Some useful mixins.
* Structures ............... Base structures used, such as wrappers, containers.
* Typography ............... Typography elements, i.e. headings, paragraphs, icons, etc...
*
* COMPONENTS (Common elements, widgets)
* Social ................... Social widget styles.
* Range Slider ............. The range slider shown in various trends.
* Charts ................... Styles associates with the charts.
*
* SECTIONS (Each individual section styles, hero, etc...)
* Hero ..................... The top section, hero.
* Intro .................... Has the charts and tabset/carousel on mobile.
* Trends ................... The 7 Key Trends + Trend navigation.
* Takeaway ................. The takeway section: The Car, The Industry, etc...
*/
body {
  font: .75em/1em Arial, Helvetica, sans-serif;
  color: #2f3338;
}

.wf-inactive body {
  font: .88em/1em Arial, Helvetica, sans-serif;
}

sup {
  vertical-align: super;
  font-size: .8em;
}

sub {
  vertical-align: sub;
  font-size: .8em;
}

h1 {
  font: 3.916666667em/0.936170213 'UniversLTW01-59UltraCn', 'Arial Narrow', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  padding-top: .425531915em;
  margin: 0 0 .5em;
}

h2 {
  font: 1.333em/1.5 'UniversLTW01-67BoldCn', 'Arial Narrow', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 2em 0 .55em;
}

h3 {
  font: 1.167em/1.5 'UniversLTW01-67BoldCn', 'Arial Narrow', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 2em 0 .55em;
}

h4 {
  font: 1.000em/1.5 'UniversLTW01-67BoldCn', 'Arial Narrow', Arial, Helvetica, sans-serif;
}

h5 {
  font: .833em/1.5 'UniversLTW01-67BoldCn', 'Arial Narrow', Arial, Helvetica, sans-serif;
}

h6 {
  font: .667em/1.5 'UniversLTW01-67BoldCn', 'Arial Narrow', Arial, Helvetica, sans-serif;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (min-width: 1230px) {
  body.full-width > div#wrapper {
      overflow: hidden;
  }
  #wrapper, header, #content, footer {
    width: 1200px;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.333em;
  }

  h4 {
    font-size: 1.167em;
  }

  h5 {
    font-size: 1em;
  }

  h6 {
    font-size: 0.833em;
  }
}
/*------------------------------------*\
    #Mixins
    1. Breakpoints
    2. Colors
    3. File Paths
    4. Pixel values, widths, etc...
    5. Fonts
    6. Arrays
\*------------------------------------*/
/**
* Breakpoints
*/
/**
* Colors
*/
/**
* File Paths
*/
/**
* Pixel Values
*/
/**
* Fonts
*/
/**
* Arrays
*/
/*------------------------------------*\
    #Mixins
    1. clearfix
    2. breakpoint
    3. overlay
    4. vendor prefix
    5. font size in rem with px fallback
    6. theme (light or dark)
\*------------------------------------*/
/**
* @mixin clearfix
* Used to clear elements that are floated. Usually used within a container.
*
* @example
*   @include clearfix();
*/
/**
* @mixin breakpoint
* To define different styles based on a different media breakpoint.
*
* @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
* @example
*   @include breakpoint(500px) {
        color: #000;
    }
*/
/**
* @mixin overlay
* Styles applied to overlay the page
*/
/**
* @mixin vendor
* Easily apply styles and adding vendor prefixes will be added with ease.
*
* @param $name - css property
* @param $arg - css values
* @example
*   @include vendor(transform, rotate(5deg));
*/
/**
* @mixin font-size
* Font size in rem with px fallback
*
* @param $pxVal - font size in pixels.
* @example
*   @include font-size(18px);
*/
/**
* @mixin theme
* Section theme
*
* @param $theme - the type of theme (light or dark)
* @example
*   @include theme(light);
*/
/*------------------------------------*\
    #Structures
    1. Wrappers/Containers
    2. Sections (each section)
\*------------------------------------*/
/**
* Wrappers
* Allows for full width.
*/
#wrapper.full-width,
#content.cars2025-page {
  width: auto;
  padding-bottom: 0;
}

#wrapper.full-width {
  overflow: visible;
  /* need to allow horizontal scrollbar in case page width is less than the min header width of 960 */
}

footer {
  margin-bottom: 0;
  margin-top: 0;
  padding: 22px 0 29px;
}
footer:before {
  display: none !important;
}

body.interim-footer footer {
  box-shadow: 0 5px 5px 5px rgba(204, 204, 204, 0.8);
}

body.interim-footer > img:last-of-type {
  z-index: -99;
  display: flex;
  float: left;
}

body.mobile footer:not(.footer-skin) {
  padding: 29px 0;
  margin: 0;
  background-color: #f2f2f2;
  width: auto;
}
body.mobile footer:before {
  background-image: none;
  background-color: transparent;
}
body.mobile footer ul {
  padding: 0;
}
body.mobile footer ul li {
  display: block;
  padding: 0;
}
body.mobile footer ul li:after {
  content: none;
  display: none;
}
body.mobile footer ul li a {
  font: 10px/30px Arial, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
body.mobile footer section {
  border: 0;
  text-align: center;
  padding: 16px 0 30px;
}
body.mobile footer div.label {
  float: none;
  font: 10px/1 Arial, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
body.mobile footer .social-icons .social-button {
  float: none;
  display: inline-block;
  margin-left: 25px;
  background: url(/a/pgs/mobile/images/progress/social-sprite.png) no-repeat;
  background-size: 30px;
}
body.mobile footer .social-icons .social-button.gplus {
  background-position: 0 -90px;
}
body.mobile footer .social-icons .social-button.twitter {
  background-position: 0 -60px;
}
body.mobile footer .social-icons .social-button.linkedin {
  background-position: 0 -30px;
}
body.mobile footer .social-icons .twitter:after {
  content: none;
  display: none;
}
body.mobile footer #footer_twitter_box {
  display: none !important;
}
body.mobile footer #footer_utils {
  border-bottom: 0;
  padding: 0;
  margin: 0;
}
body.mobile footer #footer_utils a {
  font: 10px/30px Arial, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
body.mobile footer .cp-notice {
  font: 8px/1 Arial, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin: 20px 0;
}

.breadcrumb-container {
  *zoom: 1;
  background: #8a9fb7;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #8a9fb7 0%, #8a9fb7 50%, #526277 50%, #526277 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8a9fb7', endColorstr='#526277',GradientType=1 );
  /* IE6-9 */
}
.breadcrumb-container:before, .breadcrumb-container:after {
  content: " ";
  display: table;
}
.breadcrumb-container:after {
  clear: both;
}
.breadcrumb-container > div {
  margin: 0 auto;
}

.breadcrumbs {
  padding-left: 30px;
  margin: 0 auto;
}
@media (min-width: 1230px) {
  .breadcrumbs {
    float: none;
    padding-left: 0;
  }
}

.container, .cars2025-intro--navigation ul {
  padding: 0 6%;
  width: auto;
  *zoom: 1;
}
.container:before, .cars2025-intro--navigation ul:before, .container:after, .cars2025-intro--navigation ul:after {
  content: " ";
  display: table;
}
.container:after, .cars2025-intro--navigation ul:after {
  clear: both;
}
.container.sm-container, .cars2025-intro--navigation ul.sm-container,
.container .container,
.cars2025-intro--navigation ul .container,
.container .cars2025-intro--navigation ul,
.cars2025-intro--navigation .container ul,
.cars2025-intro--navigation ul ul {
  padding: 0;
}
@media (min-width: 320px) and (max-width: 1230px) {
  .container a:focus, .cars2025-intro--navigation ul a:focus {
    outline: none;
  }
  #fillingup-pluggingin .share-buttons {
  	top: 15%;
  }
  #internetofcars .share-buttons {
  	top: 15%;
  }
}
@media (min-width: 320px) and (max-width: 1000px) {
  .cars2025-intro .social-share-bar {
  	top: 0;
  }
}

@media (min-width: 768px) {
  .container, .cars2025-intro--navigation ul {
    padding: 0 2.8125%;
  }
}
@media (min-width: 1000px) {
  .container, .cars2025-intro--navigation ul {
    width: 960px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .container.sm-container, .cars2025-intro--navigation ul.sm-container {
    width: 100%;
    max-width: 828px;
    margin: 0 auto !important;
  }
}
@media (min-width: 1230px) {
  .container, .cars2025-intro--navigation ul {
    width: 1115px;
  }
}
@media (min-width: 1300px) {
  .container, .cars2025-intro--navigation ul {
    width: 1200px;
  }
}

/**
* Sections
* Used for each individual section.
*/
.cars2025-section {
  position: relative;
  padding: 50px 0;
  /* Owl Overrides */
  /* Background image associated which each section */
}
@media (min-width: 1000px) {
  .cars2025-section {
    padding: 70px 0;
  }
}
.cars2025-section a,
.cars2025-section div {
  -webkit-tap-highlight-color: transparent;
}
.cars2025-section .owl-wrapper.grabbing {
  cursor: move;
}
.cars2025-section .owl-controls {
  margin: 0;
}
.cars2025-section .owl-theme .owl-buttons div {
  font-family: "icomoon";
  font-size: 14px;
  background: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  opacity: 1;
  width: 24px;
  background: #00adef;
  line-height: 24px;
  transition: all 0.2s linear;
}
.cars2025-section .owl-theme .owl-buttons div:hover {
  opacity: 1;
}
.cars2025-section .owl-theme .owl-buttons div.disabled {
  opacity: 0.15;
}
.cars2025-section .owl-theme .owl-buttons div.disabled:hover {
  opacity: 0.15;
}
.cars2025-section .owl-prev {
  left: 0;
}
.cars2025-section .owl-next {
  right: 0;
}
.cars2025-section .container, .cars2025-section .cars2025-intro--navigation ul, .cars2025-intro--navigation .cars2025-section ul {
  position: relative;
  z-index: 1;
}
@media (min-width: 1000px) {
  .cars2025-section .container, .cars2025-section .cars2025-intro--navigation ul, .cars2025-intro--navigation .cars2025-section ul {
    margin: 0 26px;
  }
}
.cars2025-section .container + .bg-img, .cars2025-section .cars2025-intro--navigation ul + .bg-img, .cars2025-intro--navigation .cars2025-section ul + .bg-img {
  position: absolute;
}

/* Background image */
.bg-img {
  z-index: 0;
  text-align: center;
  width: 100%;
}
.bg-img img {
  max-width: 100%;
  margin: 0 auto;
}

/* Line Segement */
.line-segement {
  height: 4px;
  width: 100%;
  position: relative;
}
.line-segement:before, .line-segement:after {
  content: '';
  border-width: 0px;
  border-style: solid;
  border-radius: 100%;
  width: 4px;
  height: 4px;
}
@media (min-width: 768px) {
  .line-segement:before, .line-segement:after {
    width: 7px;
    height: 7px;
  }
}
.line-segement.capped:before, .line-segement.capped-left:before {
  display: block;
  position: absolute;
  border-width: 1px;
  left: -5px;
  top: -4px;
}
@media (min-width: 768px) {
  .line-segement.capped:before, .line-segement.capped-left:before {
    left: -8px;
    top: -5px;
  }
}
.line-segement.capped:after, .line-segement.capped-right:after {
  display: block;
  position: absolute;
  border-width: 1px;
  right: -5px;
  top: -4px;
}
@media (min-width: 768px) {
  .line-segement.capped:after, .line-segement.capped-right:after {
    right: -8px;
    top: -5px;
  }
}
.line-segement.light, .line-segement:not(.dark) {
  border-top: 1px solid #FFF;
  opacity: 0.15;
}
.line-segement.light:before, .line-segement.light:after, .line-segement:not(.dark):before, .line-segement:not(.dark):after {
  border-color: #FFF;
}
.line-segement.dark {
  border-top: 1px solid #2f2f2f;
  opacity: 0.6;
}
.line-segement.dark:before, .line-segement.dark:after {
  border-color: #2f2f2f;
}

/*------------------------------------*\
    #Typography
    1. Global typography
    2. Section header
    3. Trend header
    4. Icons
\*------------------------------------*/
/**
* Global Typography
* Globalized typography styles.
*/
.cars2025-page h1,
.cars2025-page h2,
.cars2025-page h3,
.cars2025-page h4,
.cars2025-page h5,
.cars2025-page h6 {
  text-transform: uppercase;
  margin: 0;
}
.cars2025-page h3 {
  font-family: "Univers LT W01 55 Roman";
  letter-spacing: 4px;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
}
.cars2025-page p {
  font-family: "UniversLTStdLight";
  line-height: 25px;
  text-align: center;
  margin-bottom: 12px;
  font-size: 16px;
  font-size: 1rem;
}
.cars2025-page p:last-child {
  margin-bottom: 0;
}
.cars2025-page p + .cars2025-trend--header {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .cars2025-page p {
    max-width: 675px;
    margin-right: auto;
    margin-left: auto;
  }
}
.cars2025-page em {
  font-style: italic;
}
.cars2025-page .subtext {
  color: rgba(255, 255, 255, 0.7);
}
.cars2025-page .legal {
  font-size: 9px;
  line-height: 14px;
  font-family: "UniversLTStdLight";
}
@media (min-width: 768px) {
  .cars2025-page .legal {
    font-size: 11px;
  }
}
.cars2025-page small {
  font-size: 80%;
}

/**
* Heading for each section
* For example: Cars, The Changing Car, etc...
*/
.cars2025-section--header {
  position: relative;
  min-height: 0;
  overflow: visible;
  text-align: center;
  height: auto;
  width: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cars2025-section--header {
    margin: 80px auto 0 auto;
  }
}
.cars2025-section--header svg {
  overflow: visible;
  display: block;
  width: 100%;
  height: 4em;
}
@media (min-width: 768px) {
  .cars2025-section--header svg {
    height: 9em;
  }
}
.cars2025-section--header text {
  font-family: "UniversLTStdLightUltraCn";
  letter-spacing: 3px;
  margin-top: 8px;
  text-anchor: middle;
  text-transform: uppercase;
  font-size: 52px;
  font-size: 3.25rem;
}
@media (min-width: 768px) {
  .cars2025-section--header text {
    letter-spacing: 6px;
    font-size: 100px;
    font-size: 6.25rem;
  }
}
.cars2025-section--header span {
  display: block;
  letter-spacing: 6px;
  font-family: "Univers LT W01 55 Roman";
  font-size: 14px;
  text-transform: uppercase;
}
.cars2025-section--header + p {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .cars2025-section--header + p {
    width: 35em;
    margin: 0 auto;
  }
}

/**
* Trend Heading
* Trend One: Filling Up, Plugging In, etc...
*/
.cars2025-trend--header {
  text-align: center;
  line-height: 18px;
  color: inherit;
  margin-bottom: 50px;
  height: auto;
  width: auto;
}
.cars2025-trend--header i {
  font-size: 35px;
}
.cars2025-trend--header h3 {
  font-size: 13px;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .cars2025-trend--header h3 {
    font-size: 18px;
    letter-spacing: 4px;
  }
}
.cars2025-trend--header span {
  color: #00adef;
  display: block;
  font-size: 10px;
}
.cars2025-trend--header .line-segement {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .cars2025-trend--header {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .paragraph-block p, .paragraph-block h4 {
    float: left;
    text-align: left;
    width: 49%;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .paragraph-block > * + p {
    float: right;
    width: 49%;
    text-align: left;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .paragraph-block.mobile-stack p, .paragraph-block.mobile-stack h4 {
    float: none;
    width: 100%;
  }
}

/**
* Icons
* Set of clases generated from Icomoon.
* Please use the JSON file located in ../fonts
*/
@font-face {
  font-family: "icomoon";
  src: url("/a/pgs/Fonts/cars2025/icomoon.eot?-jay7by");
  src: url("/a/pgs/Fonts/cars2025/icomoon.eot?#iefix-jay7by") format("embedded-opentype"), url("/a/pgs/Fonts/cars2025/icomoon.ttf?-jay7by") format("truetype"), url("/a/pgs/Fonts/cars2025/icomoon.woff?-jay7by") format("woff"), url("/a/pgs/Fonts/cars2025/icomoon.svg?-jay7by#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-trend-5:before {
  content: "\e600";
}

.icon-trend-7:before {
  content: "\e603";
}

.icon-trend-6:before {
  content: "\e605";
}

.icon-trend-4:before {
  content: "\e606";
}

.icon-trend-3:before {
  content: "\e609";
}

.icon-trend-2:before {
  content: "\e60a";
}

.icon-trend-1:before {
  content: "\e612";
}

.icon-share:before {
  content: "\e608";
}

.icon-arrow-left-thick:before {
  content: "\e610";
}

.icon-arrow-right-thick:before {
  content: "\e611";
}

.icon-facebook:before {
  content: "\e60b";
}

.icon-linkedin:before {
  content: "\e60c";
}

.icon-mail:before {
  content: "\e60d";
}

.icon-plusone:before {
  content: "\e60e";
}

.icon-twitter:before {
  content: "\e60f";
}

.icon-arrow-left:before, .cars2025-section .owl-prev:before {
  content: "\e601";
}

.icon-arrow-right:before, .cars2025-section .owl-next:before {
  content: "\e602";
}

.icon-close:before {
  content: "\e604";
}

.icon-plus:before {
  content: "\e607";
}

/* Color palettes found in Intro */
i.blue,
i.dark-gray,
i.gray {
  text-indent: -9999em;
  display: inline-block;
  width: 5px;
  height: 5px;
  vertical-align: middle;
}

i.blue {
  background: #00adef;
}

i.dark-gray {
  background: #5c5e5e;
}

i.gray {
  background: #cacaca;
}

/* Hidden By Breakpoint*/
.hidden-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .hidden-tablet-portrait {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .hidden-tablet-landscape {
    display: none !important;
  }
}
@media (min-width: 1230px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .hidden-large-screens {
    display: none !important;
  }
}

/* Visible by breakpoint */
.visible-mobile {
  display: block;
}
@media (min-width: 768px) {
  .visible-tablet-portrait {
    display: block !important;
  }
}
@media (min-width: 1000px) {
  .visible-tablet-landscape {
    display: block !important;
  }
}
@media (min-width: 1230px) {
  .visible-desktop {
    display: block !important;
  }
}
@media (min-width: 1400px) {
  .visible-large-screens {
    display: block !important;
  }
}

.center-block {
  float: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

[data-src] {
  opacity: 0;
  transition: all .5s ease-in-out;
}
[data-src].js-img-uploaded {
  opacity: 1;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/*------------------------------------*\
    #Social Elements
    1. Social bar found in hero
    2. Social widget in each section
\*------------------------------------*/
/**
* Social bar found in hero
*/
.social-share-bar {
  margin: 15px auto;
  text-align: center;
  border-bottom: 0;
}
@media (min-width: 768px) {
  .social-share-bar {
    overflow: auto;
  }
}
.social-share-bar a {
  border-left: 1px solid rgba(235, 235, 235, 0.4);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px;
  height: 20px;
  float: none;
  text-decoration: none;
  transition: color 0.5s ease;
  text-decoration: none;
}
.social-share-bar.share-buttons a:not(.icon-share):not(.icon-close) {
	border: none;
	margin-right: 24px!important;
}
.social-share-bar.share-buttons a.icon-close {
	border: none;
}

.social-share-bar a:first-child {
  border-left: 0;
}
.social-share-bar a:hover, .social-share-bar a:active {
  color: white;
}
.social-share-bar a.more {
  font: 12px/25px 'UniversLTStdCn', sans-serif;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .social-share-bar a {
    font-size: 25px;
    height: auto;
  }
}

/**
* Social buttons found in each section, expands
*/
.share-buttons {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 44px;
  overflow: hidden;
  text-align: center;
  position: absolute;
  z-index: 10;
  top: 30px;
  right: 30px;
  display: none;
  transition: all 250ms ease;
  /* Themes */
}
@media (min-width: 768px) {
  .share-buttons {
    display: block;
  }
}
@media (min-width: 1230px) {
  .share-buttons {
    width: 44px;
    height: 44px;
  }
}
.share-buttons a {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.3);
  line-height: 34px;
  display: block;
  text-decoration: none;
  transition: all 200ms ease;
}
@media (min-width: 1230px) {
  .share-buttons a {
    font-size: 18px;
    line-height: 46px;
  }
}
.share-buttons a:before {
  margin-left: -2px;
}
.share-buttons a.icon-share {
  line-height: 33px;
}
@media (min-width: 1230px) {
  .share-buttons a.icon-share {
    line-height: 43px;
  }
}
.share-buttons.expanded {
  width: 339px;
  border-radius: 22px;
  background-color: #15171b;
  border-color: #15171b;
}
@media (min-width: 1230px) {
  .share-buttons.expanded {
    width: 379px;
  }
}
.share-buttons.expanded a {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #fff;
  margin-right: 24px;
}
@media (min-width: 1230px) {
  .share-buttons.expanded a {
    font-size: 25px;
  }
}
.share-buttons.expanded a:first-child {
  display: none;
}
.share-buttons.expanded a.more {
  font: 14px/39px 'UniversLTStdCn', sans-serif;
  text-transform: uppercase;
}
@media (min-width: 1230px) {
  .share-buttons.expanded a.more {
    line-height: 49px;
  }
}
.share-buttons.expanded a.icon-close {
  font-size: 12px;
  color: #7296c4;
  margin-right: 0;
  position: absolute;
  top: 0;
  right: 15px;
}
@media (min-width: 1230px) {
  .share-buttons.expanded a.icon-close {
    font-size: 15px;
  }
}
.share-buttons.light, .cars2025-hero .share-buttons, .cars2025-trends .cars2025-trend--one .share-buttons, .cars2025-trends .cars2025-trend--four .share-buttons, .cars2025-trends .cars2025-trend--six .share-buttons, .cars2025-takeaway .share-buttons {
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.share-buttons.light.expanded, .cars2025-hero .expanded.share-buttons, .cars2025-trends .cars2025-trend--one .expanded.share-buttons, .cars2025-trends .cars2025-trend--four .expanded.share-buttons, .cars2025-trends .cars2025-trend--six .expanded.share-buttons, .cars2025-takeaway .expanded.share-buttons {
  border: 0;
}
.share-buttons.light a, .cars2025-hero .share-buttons a, .cars2025-trends .cars2025-trend--one .share-buttons a, .cars2025-trends .cars2025-trend--four .share-buttons a, .cars2025-trends .cars2025-trend--six .share-buttons a, .cars2025-takeaway .share-buttons a {
  color: #fff;
}
.share-buttons.dark {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background-color: rgba(0, 0, 0, 0.45);
}
.share-buttons.dark.expanded {
  border: 0;
}
.share-buttons.dark a {
  color: #fff;
}

/*------------------------------------*\
    #Range Slider
\*------------------------------------*/
.cars2025-ui--slider {
  background-image: none;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#141414+0,1a1a1a+14,1a1a1a+57,202020+71,202020+86,1d1d1d+100 */
  background: #141414;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #141414 0%, #1a1a1a 14%, #1a1a1a 57%, #202020 71%, #202020 86%, #1d1d1d 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#141414', endColorstr='#1d1d1d',GradientType=0 );
  /* IE6-9 */
  border: 1px solid #000;
  height: 6.5px;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  /* Thumb */
  /* Slide range */
}
.cars2025-ui--slider.ui-slider-disabled {
  cursor: default;
}
.cars2025-ui--slider .ui-widget-header,
.cars2025-ui--slider .ui-slider-handle {
  background-image: none;
}
.cars2025-ui--slider .ui-slider-handle {
  width: 17px;
  height: 17px;
  position: absolute;
  top: -5px;
  margin-left: -.6em;
  display: block;
  background: linear-gradient(0deg, rgba(94, 88, 88, 0), rgba(94, 88, 88, 0.5), rgba(94, 88, 88, 0)) 50% 50%, radial-gradient(at 50% 0, #5e5858, rgba(94, 88, 88, 0) 71%) 50% 0, radial-gradient(at 0 50%, #5e5858, rgba(94, 88, 88, 0) 71%) 0 50%, linear-gradient(90deg, rgba(94, 88, 88, 0), rgba(94, 88, 88, 0.5), rgba(94, 88, 88, 0)) 50% 50%, radial-gradient(at 50% 100%, #5e5858, rgba(94, 88, 88, 0) 71%) 50% 100%, radial-gradient(at 100% 50%, #5e5858, rgba(94, 88, 88, 0) 71%) 100% 50%, #fefefe;
  background-repeat: no-repeat;
  background-size: 100% .125em, 50% 50%, 50% 50%, .125em 100%, 50% 50%, 50% 50%;
  border: 0;
  border-radius: 50%;
}
.cars2025-ui--slider .ui-slider-range {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0ca2d9+0,0490c7+20,0593ca+40,066f97+60,06658a+80,05698f+100 */
  background: #0ca2d9;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #0ca2d9 0%, #0490c7 20%, #0593ca 40%, #066f97 60%, #06658a 80%, #05698f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0ca2d9', endColorstr='#05698f',GradientType=0 );
  /* IE6-9 */
  border-radius: 10px;
  height: 100%;
}

.no-cssgradients .ui-slider-handle {
  background-image: url("/a/pgs/images/cars2025/slider-handle.png");
  background-size: 100%;
}

.slider-increments {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.slider-increments ul {
  list-style: none;
  display: inline-block;
  width: 100%;
}
.slider-increments li p {
  width: 73px;
  margin: 0 auto;
  text-transform: uppercase;
  font-family: "Univers LT W01 55 Roman";
  font-size: 11px;
  line-height: 1.6em;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
}

/*------------------------------------*\
    #Charts
    1. Base
    2. Text relating to chart
    3. White box (statistics)
\*------------------------------------*/
.chart {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.chart .main-number {
  position: absolute;
  width: 200px;
  height: 204px;
  top: 0;
  left: 50%;
  margin-left: -100px;
  overflow: visible;
  z-index: 1;
}
@media (min-width: 1000px) {
  .chart .main-number {
    width: 100%;
    height: 100%;
    left: 5px;
    margin-left: 0;
  }
}
.chart canvas {
  margin: 0 auto;
  display: none;
}

/**
* Chart Text
* Text labeling the chart
*/
/* Unit measurement */
.num-desc {
  display: block;
  text-transform: lowercase;
  color: #2F3338;
  font-family: "Univers LT W01 55 Roman";
  font-size: 12px;
  position: relative;
  top: -10px;
}

/* Chart Label/Description */
.chart + .chart-descrip,
[class*="chart-"] .chart-descrip,
p.chart-descrip {
  width: auto;
  margin: 20px 0 0 0;
  font-family: "UniversLTW01-57Condense 723821";
  text-transform: uppercase;
  font-size: 12px;
  color: #7e7d7d;
  line-height: 16px;
}
@media (min-width: 768px) {
  .chart + .chart-descrip,
  [class*="chart-"] .chart-descrip,
  p.chart-descrip {
    line-height: 14px;
  }
}
@media (min-width: 1000px) {
  .chart + .chart-descrip,
  [class*="chart-"] .chart-descrip,
  p.chart-descrip {
    font-size: 14px;
    line-height: 18px;
  }
}

/* Number in chart */
.main-number {
  overflow: visible;
  line-height: normal;
}
.main-number text {
  font-family: "UniversLTStdLightUltraCn";
  text-anchor: middle;
  display: block !important;
  font-size: 45px;
  font-size: 2.8125rem;
}
.main-number text tspan:last-child {
  font-size: 50px;
  font-size: 3.125rem;
}
.main-number rect {
  fill: #FFF;
}

/**
* Box Stats
* White box that has chart statistics.
*/
.box-stats {
  background: #FFF;
  padding: 40px 28px;
  text-align: center;
  *zoom: 1;
}
.box-stats:before, .box-stats:after {
  content: " ";
  display: table;
}
.box-stats:after {
  clear: both;
}

/*------------------------------------*\
    #Hero
\*------------------------------------*/
.cars2025-hero {
  color: #FFF;
  background-image: url("/a/pgs/images/cars2025/bgs/shadow-mobile.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #161616;
  /* 2025 title */
}
@media (min-width: 768px) {
  .cars2025-hero {
    background-image: url("/a/pgs/images/cars2025/bgs/shadow.png");
  }
}
@media (min-width: 768px) {
  .cars2025-hero .cars2025-section--header {
    margin-top: 22px;
  }
}
.cars2025-hero h2 {
  font-family: "UniversLTStdThinUltraCn";
  text-indent: -9999em;
  background: url("/a/pgs/images/cars2025/cars-logo.png") center center no-repeat;
  width: 100%;
  line-height: normal;
  background-size: contain;
  font-size: 150px;
  font-size: 9.375rem;
}
@media (min-width: 768px) {
  .cars2025-hero h2 {
    letter-spacing: 20px;
    font-size: 200px;
    font-size: 12.5rem;
  }
}
@media (min-width: 1000px) {
  .cars2025-hero h2 {
    font-size: 210px;
    font-size: 13.125rem;
  }
}
@media (min-width: 1230px) {
  .cars2025-hero h2 {
    height: 315px;
  }
}
.cars2025-hero span {
  letter-spacing: 10px;
  margin-top: 8px;
  font-size: 22px;
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  .cars2025-hero span {
    letter-spacing: 20px;
    line-height: 28px;
    margin-top: 20px;
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.cars2025-hero .social-share-bar {
  margin: 50px 0 40px 0;
  border: 0 !important;
}
@media (min-width: 768px) {
  .cars2025-hero .social-share-bar {
    margin: 60px 0 30px 0;
  }
}
@media (min-width: 1000px) {
  .cars2025-hero .social-share-bar {
    margin: 90px 0 60px 0;
  }
}
.cars2025-hero .bg-img {
  top: 7%;
}
.cars2025-hero .bg-img img {
  max-height: 230px;
}
@media (min-width: 768px) {
  .cars2025-hero .bg-img img {
    max-height: none;
    max-width: 600px;
  }
}
@media (min-width: 1230px) {
  .cars2025-hero .bg-img img {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .cars2025-hero .bg-img {
    width: 70%;
    left: 50%;
    margin-left: -35%;
  }
}

/*------------------------------------*\
    #Intro
\*------------------------------------*/
/* Tabs */
.cars2025-intro--navigation {
  background: url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left repeat-x;
  position: relative;
  z-index: 2;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.cars2025-intro--navigation li {
  float: left;
  width: 25%;
}
.cars2025-intro--navigation a {
  color: rgba(32, 32, 32, 0.5);
  font-family: "Univers LT W01 55 Roman";
  font-size: 16px;
  display: block;
  padding: 3em 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}
.cars2025-intro--navigation a:active {
  background: none;
}
.cars2025-intro--navigation .active {
  position: relative;
}
.cars2025-intro--navigation .active a {
  color: #161616;
}
.cars2025-intro--navigation .active:after {
  content: "";
  width: 50px;
  height: 50px;
  background: url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left repeat-x;
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -25px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Main Content */
.cars2025-section.cars2025-intro {
  background: #FFF;
}
@media (min-width: 768px) {
  .cars2025-section.cars2025-intro {
    padding-top: 0;
    padding-bottom: 0;
    color: #202020;
    background: #ebebeb;
    background-size: cover;
    box-shadow: inset 0px 0px 30px 17px rgba(196, 196, 196, 0.5);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cars2025-section.cars2025-intro {
    box-shadow: inset 0px 0px 100px 47px rgba(196, 196, 196, 0.76);
  }
}
@media (min-width: 768px) {
  .cars2025-section.cars2025-intro h4 {
    color: #2F3338;
  }
  .cars2025-section.cars2025-intro:after {
    content: "";
    width: 100%;
    height: 26%;
    background: #FFF;
    position: absolute;
    opacity: 0.62;
    top: 50%;
    left: 0;
    margin-top: -13%;
    box-shadow: 0 0 80px 46px #FFF;
    border-radius: 50%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cars2025-section.cars2025-intro:after {
    height: 65%;
    opacity: 0.5;
    top: 60%;
  }
}
@media (min-width: 768px) {
  .cars2025-section.cars2025-intro p {
    color: #2F3338;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1000px) {
  .cars2025-section.cars2025-intro .share-buttons {
    margin-top: -1%;
  }
}
.cars2025-section.cars2025-intro .social-container {
  z-index: 3;
}
.cars2025-section.cars2025-intro h3 {
  margin: 0;
}
.cars2025-section.cars2025-intro p.legal {
  color: #2F3338;
  text-transform: none;
}
@media (min-width: 768px) {
  .cars2025-section.cars2025-intro p.legal {
    line-height: 18px;
  }
}

.cars2025-intro--carousel {
  z-index: 1;
  /* Owl Carousel Overrides */
}
@media (min-width: 768px) {
  .cars2025-intro--carousel {
    box-shadow: inset 0px 0px 100px 47px rgba(196, 196, 196, 0.76);
  }
}
.cars2025-intro--carousel p:not(.legal) {
  margin-top: 25px;
}
.cars2025-intro--carousel .container .charts-col, .cars2025-intro--carousel .cars2025-intro--navigation ul .charts-col, .cars2025-intro--navigation .cars2025-intro--carousel ul .charts-col {
  margin: 25px auto 0;
}
@media (min-width: 768px) {
  .cars2025-intro--carousel .container .charts-col, .cars2025-intro--carousel .cars2025-intro--navigation ul .charts-col, .cars2025-intro--navigation .cars2025-intro--carousel ul .charts-col {
    float: left;
    margin: 0;
    width: 62%;
    padding: 0 5%;
  }
}
@media (min-width: 768px) {
  .cars2025-intro--carousel .container, .cars2025-intro--carousel .cars2025-intro--navigation ul, .cars2025-intro--navigation .cars2025-intro--carousel ul {
    padding: 70px 20px;
  }
}
.cars2025-intro--carousel .main-number text {
  font-size: 100px;
  font-size: 6.25rem;
}
@media (min-width: 1000px) {
  .cars2025-intro--carousel .main-number text {
    font-size: 108px;
    font-size: 6.75rem;
  }
}
.cars2025-intro--carousel .owl-buttons .owl-next {
  right: 2.8125%;
}
.cars2025-intro--carousel .owl-buttons .owl-prev {
  left: 2.8125%;
}
.cars2025-intro--carousel .owl-pagination {
  margin-top: 34px;
}
.cars2025-intro--carousel .owl-pagination .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 25px;
}
.cars2025-intro--carousel .owl-pagination .owl-page span {
  background: #FFF;
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #FFF;
  display: inline-block;
  vertical-align: middle;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
.cars2025-intro--carousel .owl-pagination .owl-page.active span {
  padding: 3px;
  background: #2080d5;
}
@media (min-width: 768px) {
  .cars2025-intro--carousel .owl-controls {
    display: none !important;
  }
}

.source-copy--green {
  margin-top: 9em;
}
@media (min-width: 1300px) {
  .source-copy--green {
    margin-top: 13em;
  }
}

.source-copy--convenient {
  margin-top: 5em;
}
@media (min-width: 1300px) {
  .source-copy--convenient {
    margin-top: 7em;
  }
}

.source-copy--safe {
  margin-top: 4em;
}
@media (min-width: 1300px) {
  .source-copy--safe {
    margin-top: 12em;
  }
}

.source-copy--affordable {
  margin-top: 7em;
}
@media (min-width: 1300px) {
  .source-copy--affordable {
    margin-top: 7em;
  }
}

@media (min-width: 768px) {
  .text-col {
    float: left;
    width: 28%;
  }
  .text-col p:not(.legal) {
    line-height: 28px;
    margin-top: 15px;
  }
  .text-col h3, .text-col p {
    text-align: left;
  }

  .chart-col {
    float: left;
  }

  .chart-col + .chart-col {
    float: right;
  }
}
@media (min-width: 1000px) {
  .chart-col {
    padding: 0 2%;
  }
}
/**
* Specific Content Styles
* Individual section
*/
/* Convenient slide */
@media (min-width: 1230px) {
  .cars2025-convenient .chart-col {
    padding: 0 8%;
  }
}

/* Safe slide */
.cars2025-safe h6 {
  color: #7e7d7d;
  color: #777676;
  font-family: "Univers LT W01 55 Roman";
  font-size: 10px;
  letter-spacing: 4px;
  line-height: 18px;
}
@media (min-width: 768px) {
  .cars2025-safe h6 {
    line-height: 22px;
    font-size: 13px;
  }
}
.cars2025-safe .box-stats .main-number {
  width: 100%;
  height: 3.5em;
}
.cars2025-safe .box-stats .main-number text {
  font-size: 60px;
  font-size: 3.75rem;
}
@media (min-width: 768px) {
  .cars2025-safe .box-stats .main-number text {
    font-size: 65px;
    font-size: 4.0625rem;
  }
}
@media (min-width: 768px) {
  .cars2025-safe .box-stats .main-number {
    height: 5em;
  }
}
.cars2025-safe .box-stats p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
}
@media (min-width: 768px) {
  .cars2025-safe .box-stats p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .cars2025-safe .box-stats {
    float: right;
    max-width: 244px;
    width: 30%;
  }
}
@media (min-width: 1000px) {
  .cars2025-safe .box-stats {
    margin-right: 3%;
    width: 36%;
  }
}
@media (min-width: 1230px) {
  .cars2025-safe .box-stats {
    margin-right: 7%;
  }
}
.cars2025-safe .bar-chart {
  margin-top: 30px;
  width: 6em;
  height: 23.5em;
  position: relative;
  float: left;
  z-index: 1;
}
.cars2025-safe .bar-chart span {
  background: #00acee;
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
  height: 0em;
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cars2025-safe .bar-chart:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#555555+0,000000+50,555555+100 */
  background: #555555;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #555555 0%, black 50%, #555555 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#555555',GradientType=1 );
  /* IE6-9 */
}
@media (min-width: 1000px) {
  .cars2025-safe .bar-chart {
    height: 24.5em;
  }
}
.cars2025-safe .chart-details {
  float: right;
  position: relative;
  padding: 30px 13% 0 0;
}
.cars2025-safe .chart-details p {
  text-align: left;
  margin: 0 0 0 10px;
}
.cars2025-safe .chart-details .main-number {
  width: 6em;
  height: 7.35em;
}
@media (min-width: 1230px) {
  .cars2025-safe .chart-details .main-number {
    margin-bottom: 10px;
    height: 6.1em;
  }
}
.cars2025-safe .chart-details .main-number text {
  text-anchor: inherit;
}
@media (min-width: 1230px) {
  .cars2025-safe .chart-details {
    padding-right: 28%;
  }
}
@media (min-width: 768px) {
  .cars2025-safe .charts-col {
    width: 67% !important;
    padding-right: 0 !important;
  }
}
.cars2025-safe .chart-col {
  position: relative;
  overflow: hidden;
  width: 52%;
}
@media (min-width: 1000px) {
  .cars2025-safe .chart-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cars2025-safe .line-segement {
  position: absolute;
  top: 42px;
  left: -55%;
  z-index: -1;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1000px) {
  .cars2025-safe .line-segement {
    left: -64%;
  }
}
.cars2025-safe .js-el-inview span {
  height: 2em;
}
.cars2025-safe .js-el-inview + .line-segement {
  width: 100%;
}

/* Affordable slide */
.cars2025-affordable {
  /* china, india, global */
}
.cars2025-affordable i {
  margin-top: -2px;
}
.cars2025-affordable .sales-header {
  font-size: 13px;
  color: #2F3338;
  font-family: "UniversLTW01-57Condense 723821";
}
@media (min-width: 768px) {
  .cars2025-affordable .sales-header {
    font-size: 15px;
    text-align: left;
  }
}
.cars2025-affordable .main-number {
  margin-top: 5px;
  width: 100%;
  height: 3em;
}
.cars2025-affordable .main-number text {
  font-size: 25px;
}
@media (min-width: 768px) {
  .cars2025-affordable .main-number text {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media (min-width: 1000px) {
  .cars2025-affordable .main-number text {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
@media (min-width: 768px) {
  .cars2025-affordable .main-number {
    height: 5.5em;
    float: left;
    margin-top: 3px;
    width: 10em;
  }
}
@media (min-width: 1000px) {
  .cars2025-affordable .main-number {
    width: 11em;
    margin-top: 10px;
  }
}
.cars2025-affordable h6 {
  font-family: "UniversLTW01-57Condense 723821";
  margin-top: 6px;
  font-size: 13px;
  color: #2F3338;
}
@media (min-width: 768px) {
  .cars2025-affordable h6 {
    font-size: 15px;
    width: 7em;
    text-align: left;
    margin: 0 0 20px 0;
  }
}
.cars2025-affordable .box-stats {
  padding: 0;
  margin: 0 -10px;
  background: none;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .cars2025-affordable .box-stats {
    width: 22%;
    float: right;
    margin: 0 -26px;
  }
}
.cars2025-affordable .box-stats .legal {
  margin-right: 26px;
  margin-left: 26px;
}
.cars2025-affordable .map-label {
  float: left;
  width: 33.33%;
}
@media (min-width: 768px) {
  .cars2025-affordable .map-label {
    float: none;
    clear: both;
    width: auto;
  }
}
@media (min-width: 768px) {
  .cars2025-affordable .bg-img {
    position: absolute;
    left: 0;
    z-index: -1;
  }
}
@media (min-width: 1000px) {
  .cars2025-affordable .bg-img {
    margin: -5% 0 0 0;
  }
}
@media (min-width: 1000px) {
  .cars2025-affordable img {
    height: 30em;
  }
}

/* Chart Specifics */
.chart-greenhouse,
.chart-urban,
.chart-traffic {
  height: 201px;
  margin: 0 auto;
}

.chart-greenhouse {
  background-image: url("/a/pgs/images/cars2025/charts/green-1.svg");
}
.chart-greenhouse canvas {
  padding: 17px;
}
@media (min-width: 1000px) {
  .chart-greenhouse canvas {
    padding: 21px;
  }
}
@media (min-width: 1000px) {
  .chart-greenhouse {
    height: 245px;
  }
}

/* CO2 column */
.chart-col-co2 {
  padding-top: 14px;
  width: 43%;
  max-width: 265px;
}
.chart-col-co2 svg {
  display: block;
  clear: both;
  width: 100%;
  height: 8.5em;
}
@media (min-width: 1000px) {
  .chart-col-co2 svg {
    height: 10.5em;
  }
}

.chart-co2 {
  height: 85px;
  background-image: url("/a/pgs/images/cars2025/charts/green-2.svg"), url("/a/pgs/images/cars2025/charts/green-3.svg");
  background-position: top left, top right;
  margin: 0 5%;
  overflow: hidden;
}
.chart-co2 div {
  float: left;
  padding: 7px 0 0 2px;
}
@media (min-width: 1000px) {
  .chart-co2 div {
    padding-top: 8px;
  }
}
.chart-co2 div + div {
  float: right;
  padding: 6px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 1000px) {
  .chart-co2 div + div {
    padding: 8px 7px;
  }
}
@media (min-width: 1000px) {
  .chart-co2 {
    height: 103px;
    margin: 0;
  }
}

.chart-urban {
  background-image: url("/a/pgs/images/cars2025/charts/con-1.svg");
}
.chart-urban canvas {
  padding: 10px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 1000px) {
  .chart-urban {
    height: 233px;
  }
}

.chart-traffic {
  background-image: url("/a/pgs/images/cars2025/charts/con-2.svg");
}
.chart-traffic canvas {
  padding: 13px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (min-width: 1000px) {
  .chart-traffic {
    height: 233px;
  }
}

/*------------------------------------*\
    #Trends
\*------------------------------------*/
/**
* Navigation
* The 7 Key trend Navigation holder
*/
.cars2025-trend--navigation {
  background: #FFF url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left repeat;
}
@media (min-width: 1000px) {
  .cars2025-trend--navigation {
    padding: 18px 0;
    height: 217px;
    transition: top 0.3s ease-in-out;
  }
}
@media (min-width: 1000px) {
  .cars2025-trend--navigation .container, .cars2025-trend--navigation .cars2025-intro--navigation ul, .cars2025-intro--navigation .cars2025-trend--navigation ul {
    padding: 12px 0;
  }
}
.cars2025-trend--navigation + .js-nav-spacer {
  display: none;
}
.cars2025-trend--navigation.sticky-nav, .cars2025-trend--navigation.sticky-nav-hidden {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 3px 0;
  height: 73px;
}
.cars2025-trend--navigation.sticky-nav + .js-nav-spacer, .cars2025-trend--navigation.sticky-nav-hidden + .js-nav-spacer {
  display: block;
  height: 217px;
}
.cars2025-trend--navigation.sticky-nav .cars2025-trend--navigation--header, .cars2025-trend--navigation.sticky-nav-hidden .cars2025-trend--navigation--header {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.cars2025-trend--navigation.sticky-nav .cars2025-trend--navigation--nav, .cars2025-trend--navigation.sticky-nav-hidden .cars2025-trend--navigation--nav {
  height: 47px;
  position: absolute;
  left: 50%;
  margin-left: -480px !important;
  top: 0;
}
@media (min-width: 1230px) {
  .cars2025-trend--navigation.sticky-nav .cars2025-trend--navigation--nav, .cars2025-trend--navigation.sticky-nav-hidden .cars2025-trend--navigation--nav {
    margin-left: -557px !important;
  }
}
@media (min-width: 1300px) {
  .cars2025-trend--navigation.sticky-nav .cars2025-trend--navigation--nav, .cars2025-trend--navigation.sticky-nav-hidden .cars2025-trend--navigation--nav {
    margin-left: -600px !important;
  }
}
.cars2025-trend--navigation.sticky-nav .cars2025-trend--navigation--nav div, .cars2025-trend--navigation.sticky-nav-hidden .cars2025-trend--navigation--nav div {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.cars2025-trend--navigation.sticky-nav-hidden {
  top: -82px;
}

/* Navigation Header */
.cars2025-trend--navigation--header {
  margin-bottom: 16px;
}
.cars2025-trend--navigation--header span {
  display: block;
}
@media (min-width: 768px) {
  .cars2025-trend--navigation--header span {
    display: inline-block;
  }
}
@media (min-width: 1000px) {
  .cars2025-trend--navigation--header {
    margin-bottom: 0;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.cars2025-trend--navigation--header h3 {
  line-height: 28px;
  margin: 0;
}
.cars2025-trend--navigation--header p {
  margin-top: 16px;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}
@media (min-width: 320px) and (max-width: 768px) {
  .cars2025-trend--navigation--header p {
    width: 18em;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .cars2025-trend--navigation--header p {
    width: 27em;
    line-height: 25px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Navigation Element */
.cars2025-trend--navigation--nav {
  text-align: center;
}
@media (min-width: 1000px) {
  .cars2025-trend--navigation--nav {
    height: 82px;
    overflow: hidden;
    padding: 0;
  }
}
.cars2025-trend--navigation--nav i {
  clear: both;
  display: block;
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
}
.cars2025-trend--navigation--nav li {
  display: inline-block;
  width: 13.7%;
}
.cars2025-trend--navigation--nav div {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.cars2025-trend--navigation--nav a {
  color: #757474;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "UniversLTW01-57Condense 723821";
  display: block;
  line-height: 16px;
  padding: 6px 0;
  text-decoration: none;
}
@media (min-width: 1000px) {
  .cars2025-trend--navigation--nav a {
    font-size: 14px;
  }
}
.cars2025-trend--navigation--nav .active i, .cars2025-trend--navigation--nav .active a {
  color: #00adef;
}

/* Common Styles among trends */
.cars2025-trend--one h4,
.cars2025-trend--two h4,
.cars2025-trend--three h4,
.cars2025-trend--four h4,
.cars2025-trend--six h4,
.cars2025-trend--seven h4 {
  font-family: "UniversLTW01-47LightCn";
  font-size: 21px;
  text-align: center;
  margin-top: 80px;
  line-height: 1.3em;
}
@media (min-width: 768px) {
  .cars2025-trend--one h4,
  .cars2025-trend--two h4,
  .cars2025-trend--three h4,
  .cars2025-trend--four h4,
  .cars2025-trend--six h4,
  .cars2025-trend--seven h4 {
    font-size: 24px;
  }
}

.cars2025-trend--two h4,
.cars2025-trend--three h4,
.cars2025-trend--six h4,
.cars2025-trend--seven h4 {
  margin: 0 0 50px 0;
  line-height: 1.3em;
}
@media (min-width: 768px) {
  .cars2025-trend--two h4,
  .cars2025-trend--three h4,
  .cars2025-trend--six h4,
  .cars2025-trend--seven h4 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.cars2025-trend--two,
.cars2025-trend--seven {
  overflow: hidden;
}
.cars2025-trend--two .legal,
.cars2025-trend--seven .legal {
  font-size: 10px;
  margin-top: 20px;
}
.cars2025-trend--two .box-stats,
.cars2025-trend--seven .box-stats {
  padding-right: 14px;
  padding-left: 14px;
  text-align: center;
  margin: 45px -22px 0 -22px;
}
@media (min-width: 768px) {
  .cars2025-trend--two .box-stats,
  .cars2025-trend--seven .box-stats {
    margin-right: -8px;
    margin-left: -8px;
  }
}
@media (min-width: 1000px) {
  .cars2025-trend--two .box-stats,
  .cars2025-trend--seven .box-stats {
    margin-right: 0;
    margin-left: 0;
  }
}
.cars2025-trend--two .box-stats h4,
.cars2025-trend--seven .box-stats h4 {
  margin: 0;
  width: auto;
  text-align: center;
  padding: 0 5%;
}
.cars2025-trend--two .box-stats p,
.cars2025-trend--seven .box-stats p {
  margin: 10px  auto 0 auto;
  font-size: 15px;
  text-align: center;
  max-width: 100%;
  width: 24em;
}
@media (min-width: 768px) {
  .cars2025-trend--two .box-stats p,
  .cars2025-trend--seven .box-stats p {
    width: 27em;
  }
}
@media (min-width: 1000px) {
  .cars2025-trend--two .box-stats p,
  .cars2025-trend--seven .box-stats p {
    margin-top: 20px;
  }
}

/**
* The 7 Trends
* All styles specific to a trend
*/
.cars2025-trends {
  padding: 0;
  /*------------------------------------*\
      #Trend One
  \*------------------------------------*/
  /* Main Content */
  /* Car diagram */
  /*
  * Range Slider
  * Associated with car diagram
  */
  /* Car diagram: Labels */
  /* border style */
  /* border style */
  /* border style */
  /* border style */
  /* positioning/widths */
  /* Car diagram tooltip */
  /*------------------------------------*\
      #Trend Two
  \*------------------------------------*/
  /* Main Container */
  /* Chart Container */
  /*------------------------------------*\
      #Trend Three
  \*------------------------------------*/
  /*------------------------------------*\
      #Trend Four
  \*------------------------------------*/
  /* Bar Graph */
  /*------------------------------------*\
      #Trend Five
  \*------------------------------------*/
  /* Main content */
  /* Column Wrapper + Column Globals */
  /**
  * Columns
  * Chart columns: Gasoline and Electric Vehicle
  */
  /* Gasoline column */
  /* Gasoline Bar Chart */
  /* Electric Vehicle Column */
  /* Electric Vehicle Chart */
  /*------------------------------------*\
      #Trend Six
  \*------------------------------------*/
  /*------------------------------------*\
      #Trend Seven
  \*------------------------------------*/
  /* Bar Graph */
  /* Specific bar styles (animate) */
}
.cars2025-trends .cars2025-trend--one {
  overflow: hidden;
  color: #FFF;
  background-image: url("/a/pgs/images/cars2025/bgs/shadow-mobile.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #161616;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--one {
    background-image: url("/a/pgs/images/cars2025/bgs/shadow.png");
  }
}
.cars2025-trends .cars2025-trend--one .bg-img {
  top: 2%;
}
.cars2025-trends .cars2025-trend--one .share-buttons {
  top: 30%;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--one .share-buttons {
    top: 26%;
  }
}
.cars2025-trends .cars2025-trend--one .container, .cars2025-trends .cars2025-trend--one .cars2025-intro--navigation ul, .cars2025-intro--navigation .cars2025-trends .cars2025-trend--one ul {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.cars2025-trends .cars2025-trend-one--carousel {
  margin-top: 30px;
  /* Car */
}
.cars2025-trends .cars2025-trend-one--carousel .owl-next,
.cars2025-trends .cars2025-trend-one--carousel .owl-prev {
  top: 33% !important;
}
.cars2025-trends .cars2025-trend-one--carousel h5 {
  text-align: center;
  font-family: "Univers LT W01 55 Roman";
  margin: 20px 0;
  letter-spacing: 4px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend-one--carousel h5 {
    display: none;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend-one--carousel h5 + p {
    margin: 20px auto;
    color: rgba(255, 255, 255, 0.7);
  }
}
.cars2025-trends .cars2025-trend-one--carousel .label {
  position: absolute;
  color: #FFF;
  font-family: "UniversLTW01-57Condense 723821";
  text-transform: uppercase;
  font-size: 13px;
  z-index: 1;
  cursor: default;
}
.cars2025-trends .cars2025-trend-one--carousel .label span {
  width: 34px;
  height: 10px;
  border: 1px solid #2F3338;
  border-width: 1px 1px 0 0;
  display: inline-block;
  margin-top: 14px;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend-one--carousel .label br {
    display: none;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend-one--carousel .label {
    font-size: 16px;
    line-height: normal;
  }
}
.cars2025-trends .cars2025-trend-one--carousel .bg-img {
  height: 364px;
  position: relative;
}
.cars2025-trends .cars2025-trend-one--carousel .bg-img img {
  max-width: 30em;
  max-height: 100%;
  position: absolute;
  top: 104px;
  left: 50%;
  margin-left: -15em;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend-one--carousel .bg-img img {
    margin: 0;
    position: static;
    max-width: none;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend-one--carousel .bg-img {
    height: auto;
    min-height: 342px;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend-one--carousel .owl-controls {
    display: none !important;
  }
}
.cars2025-trends .cars2025-trend-one--carousel .owl-item.loading {
  background: url("/a/pgs/images/cars2025/preloader.gif") center 37% no-repeat;
  max-height: none;
}
.cars2025-trends .cars2025-trend--one--slider {
  width: 738px;
  margin: 0 auto;
}
.cars2025-trends .cars2025-trend--one--slider .cars2025-ui--slider {
  margin: 0 40px 0 50px;
}
.cars2025-trends .cars2025-trend--one--slider .cars2025-ui--slider .ui-slider-handle {
  margin-left: 0;
}
.cars2025-trends .cars2025-trend--one--slider .cars2025-ui--slider .ui-slider-handle.bump {
  margin-left: -14px;
}
.cars2025-trends .cars2025-trend--one--slider ul {
  color: #FFF;
  font-family: "Univers LT W01 55 Roman";
  font-size: 11px;
  text-transform: uppercase;
  *zoom: 1;
}
.cars2025-trends .cars2025-trend--one--slider ul:before, .cars2025-trends .cars2025-trend--one--slider ul:after {
  content: " ";
  display: table;
}
.cars2025-trends .cars2025-trend--one--slider ul:after {
  clear: both;
}
.cars2025-trends .cars2025-trend--one--slider li {
  width: 20%;
  text-align: center;
  padding: 2em 0;
  float: left;
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
}
.cars2025-trends .cars2025-trend--one--slider li:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 10px;
  width: 1px;
  background: #2F3338;
  left: 50%;
  margin-left: -0.5px;
}
.cars2025-trends .cars2025-trend--one--slider li:first-child {
  left: -13px;
}
.cars2025-trends .cars2025-trend--one--slider li:nth-child(2) {
  top: 8px;
  left: 1px;
  padding: 2.2em 0;
}
.cars2025-trends .cars2025-trend--one--slider li:nth-child(3) {
  left: 13px;
}
.cars2025-trends .cars2025-trend--one--slider li:nth-child(4) {
  left: 27px;
}
.cars2025-trends .cars2025-trend--one--slider li:last-child {
  left: 28px;
}
.cars2025-trends .label.internal-label-1 div,
.cars2025-trends .label.electric-label-1 div,
.cars2025-trends .label.fuel-label-1 div,
.cars2025-trends .label.plug-label-1 div,
.cars2025-trends .label.hybrids-label-1 div {
  float: left;
}
.cars2025-trends .label.internal-label-1 span,
.cars2025-trends .label.electric-label-1 span,
.cars2025-trends .label.fuel-label-1 span,
.cars2025-trends .label.plug-label-1 span,
.cars2025-trends .label.hybrids-label-1 span {
  border-width: 0 1px 1px 0;
}
.cars2025-trends .label.internal-label-2 div,
.cars2025-trends .label.electric-label-2 div,
.cars2025-trends .label.fuel-label-2 div,
.cars2025-trends .label.fuel-label-4 div,
.cars2025-trends .label.plug-label-4 div,
.cars2025-trends .label.hybrids-label-3 div,
.cars2025-trends .label.hybrids-label-5 div,
.cars2025-trends .label.plug-label-5 div,
.cars2025-trends .label.plug-label-6 div,
.cars2025-trends .label.electric-label-3 div {
  float: right;
  text-align: left;
}
.cars2025-trends .label.internal-label-2 span,
.cars2025-trends .label.electric-label-2 span,
.cars2025-trends .label.fuel-label-2 span,
.cars2025-trends .label.fuel-label-4 span,
.cars2025-trends .label.plug-label-4 span,
.cars2025-trends .label.hybrids-label-3 span,
.cars2025-trends .label.hybrids-label-5 span,
.cars2025-trends .label.plug-label-5 span,
.cars2025-trends .label.plug-label-6 span,
.cars2025-trends .label.electric-label-3 span {
  border-width: 1px 0 0 1px;
}
.cars2025-trends .label.plug-label-2,
.cars2025-trends .label.hybrids-label-2 {
  text-align: right;
}
.cars2025-trends .label.plug-label-2 span,
.cars2025-trends .label.hybrids-label-2 span {
  float: right;
  margin-top: 25px;
}
.cars2025-trends .label.plug-label-2 div,
.cars2025-trends .label.hybrids-label-2 div {
  float: left;
}
.cars2025-trends .label.fuel-label-3 div,
.cars2025-trends .label.plug-label-3 div,
.cars2025-trends .label.hybrids-label-4 div,
.cars2025-trends .label.hybrids-label-6 div {
  float: right;
  text-align: left;
}
.cars2025-trends .label.fuel-label-3 span,
.cars2025-trends .label.plug-label-3 span,
.cars2025-trends .label.hybrids-label-4 span,
.cars2025-trends .label.hybrids-label-6 span {
  border-width: 0 0 1px 1px;
}
.cars2025-trends .label.internal-label-1,
.cars2025-trends .label.electric-label-1,
.cars2025-trends .label.fuel-label-1,
.cars2025-trends .label.fuel-label-3,
.cars2025-trends .label.fuel-label-4,
.cars2025-trends .label.plug-label-1,
.cars2025-trends .label.plug-label-3,
.cars2025-trends .label.hybrids-label-1,
.cars2025-trends .label.hybrids-label-4 {
  bottom: 19%;
  right: 50.5%;
}
@media (min-width: 768px) {
  .cars2025-trends .label.internal-label-1,
  .cars2025-trends .label.electric-label-1,
  .cars2025-trends .label.fuel-label-1,
  .cars2025-trends .label.fuel-label-3,
  .cars2025-trends .label.fuel-label-4,
  .cars2025-trends .label.plug-label-1,
  .cars2025-trends .label.plug-label-3,
  .cars2025-trends .label.hybrids-label-1,
  .cars2025-trends .label.hybrids-label-4 {
    right: auto;
    left: 50%;
    margin-left: -23.35em;
    bottom: auto;
    top: 37%;
  }
}
.cars2025-trends .label.internal-label-2,
.cars2025-trends .label.internal-label-3,
.cars2025-trends .label.electric-label-2,
.cars2025-trends .label.fuel-label-2,
.cars2025-trends .label.plug-label-2,
.cars2025-trends .label.hybrids-label-3,
.cars2025-trends .label.hybrids-label-2,
.cars2025-trends .label.hybrids-label-6 {
  top: 17%;
  left: 49%;
}
@media (min-width: 768px) {
  .cars2025-trends .label.internal-label-2,
  .cars2025-trends .label.internal-label-3,
  .cars2025-trends .label.electric-label-2,
  .cars2025-trends .label.fuel-label-2,
  .cars2025-trends .label.plug-label-2,
  .cars2025-trends .label.hybrids-label-3,
  .cars2025-trends .label.hybrids-label-2,
  .cars2025-trends .label.hybrids-label-6 {
    left: auto;
    right: 50%;
    top: 37%;
    margin-right: -17.75em;
  }
}
.cars2025-trends .label.internal-label-3 {
  top: 27.5%;
  left: 52%;
}
@media (min-width: 768px) {
  .cars2025-trends .label.internal-label-3 {
    left: auto;
    right: 50%;
    top: 37%;
    margin-right: -9em;
  }
}
.cars2025-trends .label.internal-label-3 div {
  float: right;
}
@media (min-width: 768px) {
  .cars2025-trends .label.internal-label-3 div {
    float: left;
  }
}
.cars2025-trends .label.internal-label-3 span {
  float: left;
  border-width: 1px 0 0 0;
}
@media (min-width: 768px) {
  .cars2025-trends .label.internal-label-3 span {
    float: right;
    border-width: 1px 1px 0 0;
  }
}
.cars2025-trends .label.plug-label-4,
.cars2025-trends .label.hybrids-label-5,
.cars2025-trends .label.plug-label-5 {
  top: 17%;
  right: 49%;
}
.cars2025-trends .label.hybrids-label-6 {
  top: 38%;
}
.cars2025-trends .label.hybrids-label-6 span {
  margin-top: 3px;
}
@media (min-width: 768px) {
  .cars2025-trends .label.hybrids-label-6 {
    top: 45%;
    margin-right: -6.6em;
  }
  .cars2025-trends .label.hybrids-label-6 div {
    float: left;
  }
  .cars2025-trends .label.hybrids-label-6 span {
    float: right;
    border-width: 0 0 1px 0;
  }
}
.cars2025-trends .label.fuel-label-1,
.cars2025-trends .label.plug-label-1,
.cars2025-trends .label.plug-label-2,
.cars2025-trends .label.hybrids-label-1,
.cars2025-trends .label.hybrids-label-2 {
  bottom: 19%;
  left: 50%;
  margin-left: -126px;
  width: 90px;
}
@media (min-width: 768px) {
  .cars2025-trends .label.fuel-label-1,
  .cars2025-trends .label.plug-label-1,
  .cars2025-trends .label.plug-label-2,
  .cars2025-trends .label.hybrids-label-1,
  .cars2025-trends .label.hybrids-label-2 {
    width: auto;
    bottom: auto;
    top: 10%;
    margin-left: -20.5em;
  }
  .cars2025-trends .label.fuel-label-1 span,
  .cars2025-trends .label.plug-label-1 span,
  .cars2025-trends .label.plug-label-2 span,
  .cars2025-trends .label.hybrids-label-1 span,
  .cars2025-trends .label.hybrids-label-2 span {
    border-width: 1px 1px 0 0;
  }
}
.cars2025-trends .label.fuel-label-3,
.cars2025-trends .label.fuel-label-4,
.cars2025-trends .label.fuel-label-3,
.cars2025-trends .label.plug-label-3,
.cars2025-trends .label.hybrids-label-4 {
  margin-right: -130px;
}
.cars2025-trends .label.fuel-label-3 span,
.cars2025-trends .label.fuel-label-4 span,
.cars2025-trends .label.fuel-label-3 span,
.cars2025-trends .label.plug-label-3 span,
.cars2025-trends .label.hybrids-label-4 span {
  width: 26px;
}
@media (min-width: 340px) {
  .cars2025-trends .label.fuel-label-3,
  .cars2025-trends .label.fuel-label-4,
  .cars2025-trends .label.fuel-label-3,
  .cars2025-trends .label.plug-label-3,
  .cars2025-trends .label.hybrids-label-4 {
    margin-right: -140px;
  }
  .cars2025-trends .label.fuel-label-3 span,
  .cars2025-trends .label.fuel-label-4 span,
  .cars2025-trends .label.fuel-label-3 span,
  .cars2025-trends .label.plug-label-3 span,
  .cars2025-trends .label.hybrids-label-4 span {
    width: 34px;
  }
}
.cars2025-trends .label.plug-label-1,
.cars2025-trends .label.hybrids-label-1 {
  margin-left: -124px;
}
@media (min-width: 768px) {
  .cars2025-trends .label.plug-label-1,
  .cars2025-trends .label.hybrids-label-1 {
    top: 15%;
    bottom: auto;
    margin-left: -22.5em;
  }
}
.cars2025-trends .label.plug-label-2,
.cars2025-trends .label.hybrids-label-2 {
  top: 14%;
  margin-left: -125px;
  bottom: auto;
}
@media (min-width: 768px) {
  .cars2025-trends .label.plug-label-2,
  .cars2025-trends .label.hybrids-label-2 {
    top: 15%;
    bottom: auto;
    margin-left: 0;
    right: 50%;
    margin-right: -21.6em;
  }
  .cars2025-trends .label.plug-label-2 div,
  .cars2025-trends .label.hybrids-label-2 div {
    float: right;
  }
  .cars2025-trends .label.plug-label-2 span,
  .cars2025-trends .label.hybrids-label-2 span {
    margin-top: 14px;
    border-width: 1px 0 0 1px;
  }
}
.cars2025-trends .label.plug-label-3,
.cars2025-trends .label.hybrids-label-4 {
  margin-right: -115px;
}
@media (min-width: 340px) {
  .cars2025-trends .label.plug-label-3,
  .cars2025-trends .label.hybrids-label-4 {
    margin-right: -122px;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.plug-label-3,
  .cars2025-trends .label.hybrids-label-4 {
    top: auto;
    bottom: 27%;
  }
  .cars2025-trends .label.plug-label-3 div,
  .cars2025-trends .label.hybrids-label-4 div {
    float: left;
  }
  .cars2025-trends .label.plug-label-3 span,
  .cars2025-trends .label.hybrids-label-4 span {
    float: right;
    margin-top: 6px;
    border-width: 0 1px 1px 0;
  }
}
.cars2025-trends .label.plug-label-4,
.cars2025-trends .label.hybrids-label-5,
.cars2025-trends .label.plug-label-5 {
  margin-right: -101px;
}
@media (min-width: 768px) {
  .cars2025-trends .label.plug-label-4,
  .cars2025-trends .label.hybrids-label-5,
  .cars2025-trends .label.plug-label-5 {
    top: auto;
    bottom: 27%;
    left: auto;
    right: 50%;
    margin-left: 0;
    margin-right: -17.8em;
  }
  .cars2025-trends .label.plug-label-4 span,
  .cars2025-trends .label.hybrids-label-5 span,
  .cars2025-trends .label.plug-label-5 span {
    border-width: 0 0 1px 1px;
    margin-top: 6px;
  }
}
.cars2025-trends .label.plug-label-5 {
  top: 25%;
  right: 39%;
}
.cars2025-trends .label.plug-label-5 span {
  width: 15px;
  border-width: 1px 0 0 0;
}
@media (min-width: 768px) {
  .cars2025-trends .label.plug-label-5 span {
    float: right;
    width: 34px;
    border-width: 1px 1px 0 0;
    margin-top: 16px;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.plug-label-5 {
    bottom: 37%;
    top: auto;
    right: 50%;
    margin-right: -10.4em;
  }
  .cars2025-trends .label.plug-label-5 div {
    float: left;
  }
}
.cars2025-trends .label.hybrids-label-2 {
  margin-left: -134px;
  top: 28%;
  width: auto;
}
.cars2025-trends .label.hybrids-label-2 span {
  margin-top: 14px;
  width: 33px;
}
@media (min-width: 768px) {
  .cars2025-trends .label.hybrids-label-2 {
    top: 15%;
    right: 50%;
    left: auto;
    margin-right: -13.95em;
  }
}
.cars2025-trends .label.plug-label-6,
.cars2025-trends .label.electric-label-3 {
  bottom: 5%;
  left: 50%;
  margin-left: -19px;
}
.cars2025-trends .label.plug-label-6 span,
.cars2025-trends .label.electric-label-3 span {
  margin-top: 28px;
}
.cars2025-trends .label.plug-label-6 br {
  display: block;
}
@media (min-width: 768px) {
  .cars2025-trends .label.plug-label-6 {
    margin-left: -22.3em;
    top: 35%;
    bottom: auto;
  }
  .cars2025-trends .label.plug-label-6 div {
    text-align: right;
  }
  .cars2025-trends .label.plug-label-6 span {
    float: right;
    border-width: 0 0 1px 1px;
  }
}
@media (min-width: 1230px) {
  .cars2025-trends .label.plug-label-6 {
    top: 24%;
    margin-left: -32.3em;
  }
  .cars2025-trends .label.plug-label-6 div {
    float: left;
  }
  .cars2025-trends .label.plug-label-6 span {
    border-width: 1px 1px 0 0;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.hybrids-label-3 {
    margin-right: -21.6em;
  }
}
.cars2025-trends .label.hybrids-label-5 {
  top: 28%;
}
@media (min-width: 768px) {
  .cars2025-trends .label.hybrids-label-5 {
    top: auto;
    margin-right: -12.1em;
  }
}
.cars2025-trends .label.electric-label-1 div {
  width: 4.5em;
}
@media (min-width: 768px) {
  .cars2025-trends .label.electric-label-1 div {
    width: auto;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.electric-label-1 {
    margin-left: -22.4em;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.electric-label-2,
  .cars2025-trends .label.fuel-label-2 {
    margin-right: -21.6em;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.fuel-label-3 {
    bottom: 19%;
    top: auto;
    margin-right: 0;
    right: auto;
    left: 50%;
    margin-left: -21.6em;
  }
  .cars2025-trends .label.fuel-label-3 div {
    float: left;
  }
  .cars2025-trends .label.fuel-label-3 span {
    float: right;
    border-width: 0 1px 1px 0;
    margin-top: 6px;
  }
}
.cars2025-trends .label.fuel-label-4 {
  bottom: 35%;
  margin-right: -124px;
}
@media (min-width: 340px) {
  .cars2025-trends .label.fuel-label-4 {
    margin-right: -132px;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.fuel-label-4 {
    bottom: 19%;
    top: auto;
    margin-right: 0;
    right: auto;
    left: 50%;
    margin-left: -7.7em;
  }
  .cars2025-trends .label.fuel-label-4 span {
    border-width: 0 0 1px 1px;
    margin-top: 6px;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .label.internal-label-1 span,
  .cars2025-trends .label.electric-label-1 span {
    border-width: 1px 1px 0 0;
  }
}
.cars2025-trends .label.electric-label-3 {
  bottom: 3%;
  margin-left: -44px;
}
@media (min-width: 768px) {
  .cars2025-trends .label.electric-label-3 {
    bottom: auto;
    top: 9%;
    margin-left: -22.8em;
  }
  .cars2025-trends .label.electric-label-3 div {
    text-align: right;
  }
  .cars2025-trends .label.electric-label-3 br {
    display: block;
  }
}
@media (min-width: 1230px) {
  .cars2025-trends .label.electric-label-3 {
    top: 8%;
    margin-left: -33em;
  }
  .cars2025-trends .label.electric-label-3 div {
    float: left;
  }
  .cars2025-trends .label.electric-label-3 span {
    border-width: 1px 1px 0 0;
  }
}
.cars2025-trends .cars2025-trend--one--tooltip {
  width: 326px !important;
  position: absolute;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease-in-out;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--one--tooltip {
    display: block;
  }
}
.cars2025-trends .cars2025-trend--one--tooltip p {
  padding: 13px;
  background: #FFF;
  color: #595959;
  font-size: 12px;
  font-family: "Univers LT W01 55 Roman";
  text-transform: none;
  text-align: left;
}
.cars2025-trends .cars2025-trend--one--tooltip.show {
  opacity: 1;
}
.cars2025-trends .cars2025-trend--one--tooltip:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-width: 10px;
  margin-left: -10px;
  bottom: 100%;
  left: 50%;
  border-bottom-color: #fff;
}
.cars2025-trends .cars2025-trend--one--tooltip.internal-label-1, .cars2025-trends .cars2025-trend--one--tooltip.internal-label-2, .cars2025-trends .cars2025-trend--one--tooltip.electric-label-1, .cars2025-trends .cars2025-trend--one--tooltip.electric-label-2, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-3 {
  margin-top: 45px;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-1, .cars2025-trends .cars2025-trend--one--tooltip.fuel-label-2, .cars2025-trends .cars2025-trend--one--tooltip.plug-label-1, .cars2025-trends .cars2025-trend--one--tooltip.plug-label-2, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-1, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-2 {
  margin-left: -15em;
  margin-top: 3.5em;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-2 {
  margin-right: -30em;
  margin-left: 0;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-3, .cars2025-trends .cars2025-trend--one--tooltip.fuel-label-4, .cars2025-trends .cars2025-trend--one--tooltip.plug-label-3, .cars2025-trends .cars2025-trend--one--tooltip.plug-label-4, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-4 {
  margin-bottom: 38px;
  margin-left: -30em;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-4 {
  margin-left: -8em;
}
.cars2025-trends .cars2025-trend--one--tooltip.plug-label-1, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-1 {
  margin-left: -12em;
}
.cars2025-trends .cars2025-trend--one--tooltip.plug-label-2 {
  margin-left: 8em;
}
.cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-2 {
  margin-right: -9em;
}
.cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-5 {
  margin-bottom: 2.5em;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-3:after, .cars2025-trends .cars2025-trend--one--tooltip.fuel-label-4:after, .cars2025-trends .cars2025-trend--one--tooltip.plug-label-3:after, .cars2025-trends .cars2025-trend--one--tooltip.plug-label-4:after, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-4:after, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-5:after {
  left: 86%;
  bottom: auto;
  top: 100%;
  border-top-color: #FFF;
  border-bottom-color: rgba(255, 255, 255, 0);
}
.cars2025-trends .cars2025-trend--one--tooltip.internal-label-2:after, .cars2025-trends .cars2025-trend--one--tooltip.plug-label-4:after, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-5:after {
  left: 75%;
}
.cars2025-trends .cars2025-trend--one--tooltip.internal-label-1:after {
  left: 48%;
}
.cars2025-trends .cars2025-trend--one--tooltip.electric-label-1:after {
  left: 45%;
}
.cars2025-trends .cars2025-trend--one--tooltip.electric-label-2:after, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-3:after {
  left: 58%;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-1:after {
  left: 22%;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-2:after {
  left: 18%;
}
.cars2025-trends .cars2025-trend--one--tooltip.fuel-label-4:after {
  left: 8%;
}
.cars2025-trends .cars2025-trend--one--tooltip.plug-label-1:after, .cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-1:after {
  left: 8%;
}
.cars2025-trends .cars2025-trend--one--tooltip.plug-label-2:after {
  left: 13%;
}
.cars2025-trends .cars2025-trend--one--tooltip.hybrids-label-2:after {
  left: 88%;
}
.cars2025-trends .cars2025-trend--two {
  color: #202020;
  background: #ebebeb;
  background-size: cover;
  box-shadow: inset 0px 0px 30px 17px rgba(196, 196, 196, 0.5);
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--two {
    box-shadow: inset 0px 0px 100px 47px rgba(196, 196, 196, 0.76);
  }
}
.cars2025-trends .cars2025-trend--two h4 {
  color: #2F3338;
}
.cars2025-trends .cars2025-trend--two:after {
  content: "";
  width: 100%;
  height: 26%;
  background: #FFF;
  position: absolute;
  opacity: 0.62;
  top: 50%;
  left: 0;
  margin-top: -13%;
  box-shadow: 0 0 80px 46px #FFF;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--two:after {
    height: 65%;
    opacity: 0.5;
    top: 60%;
  }
}
.cars2025-trends .cars2025-trend--two p {
  color: #2F3338;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}
.cars2025-trends .cars2025-trend--two .sm-container span {
  padding-left: 5px;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--two .sm-container span {
    padding: 0;
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 768px) {
  .cars2025-trends .cars2025-trend--two {
    padding-bottom: 0;
  }
}
.cars2025-trends .cars2025-chart--container .legal {
  color: inherit;
  font-size: 9px;
  margin-top: 40px;
  line-height: 14px;
  clear: both;
  width: auto;
}
@media (min-width: 320px) and (max-width: 768px) {
  .cars2025-trends .cars2025-chart--container h4 {
    width: 12em;
    margin-right: auto;
    margin-left: auto;
  }
}
.cars2025-trends .cars2025-chart--container .charts-col {
  clear: both;
  *zoom: 1;
}
.cars2025-trends .cars2025-chart--container .charts-col:before, .cars2025-trends .cars2025-chart--container .charts-col:after {
  content: " ";
  display: table;
}
.cars2025-trends .cars2025-chart--container .charts-col:after {
  clear: both;
}
.cars2025-trends .cars2025-chart--container .chart-col {
  float: left;
  width: 50%;
  margin-top: 30px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-chart--container .chart-col {
    padding: 0;
  }
}
.cars2025-trends .cars2025-chart--container .chart-col:last-child {
  width: 100%;
  clear: both;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-chart--container .chart-col:last-child p.chart-descrip {
    width: 10em;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-chart--container .charts-col .chart-col {
    width: 19%;
    float: none;
    clear: none;
    display: inline-block;
  }
}
.cars2025-trends .cars2025-chart--container .chart-descrip {
  margin: 0 0 13px 0;
  color: #4b4b4b;
  width: auto;
}
@media (min-width: 320px) and (max-width: 768px) {
  .cars2025-trends .cars2025-chart--container .chart-descrip {
    font-size: 12px;
    line-height: 16px;
  }
}
.cars2025-trends .cars2025-chart--container .main-number {
  font-family: "UniversLTStdLightUltraCn";
  color: #2F3338;
  text-transform: uppercase;
  font-size: 35px;
  font-size: 2.1875rem;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-chart--container .main-number {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.cars2025-trends .cars2025-chart--container sub {
  position: relative;
  top: -1px;
  vertical-align: baseline;
  font-size: 25px;
  font-size: 1.5625rem;
}
.cars2025-trends .cars2025-chart--container .chart {
  height: 112px;
  background-image: url("/a/pgs/images/cars2025/charts/cost.svg");
  background-position: center 0;
  margin-bottom: 11px;
  padding: 1px 0 0 0;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-chart--container .chart {
    height: 148px;
    padding-top: 3px;
  }
}
.cars2025-trends .cars2025-chart--container .chart .chart-descrip {
  color: #2F3338;
  font-family: "Univers LT W01 55 Roman";
  font-size: 11px;
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -7px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-chart--container .chart .chart-descrip {
    font-size: 12px;
    margin-top: -9px;
  }
}
.cars2025-trends .cars2025-chart--container .chart canvas:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -49px;
  margin-left: -49px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-chart--container .chart canvas:nth-of-type(1) {
    margin-top: -65px;
    margin-left: -66px;
  }
}
@-webkit-keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  60% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  60% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
.cars2025-trends .cars2025-trend--three {
  padding: 0;
  position: relative;
  overflow: hidden;
  /* Mobile repositioning */
  /* Mobile repositioning */
}
.cars2025-trends .cars2025-trend--three h4, .cars2025-trends .cars2025-trend--three p {
  color: #2F3338;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three {
    height: 780px;
    overflow: hidden;
  }
}
.cars2025-trends .cars2025-trend--three .trend-copy {
  width: 100%;
  padding: 70px 0;
  background: url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left transparent;
  position: relative;
  z-index: 0;
}
.cars2025-trends .cars2025-trend--three .trend-copy-arrowBox {
  position: absolute;
  top: 50%;
  right: -180px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 35px;
  width: 73px;
}
.cars2025-trends .cars2025-trend--three .trend-copy-arrowBox--arrow {
  width: 36px;
  height: 42px;
  cursor: pointer;
  transition: all 0.3s linear;
  padding: 300px 1000px 300px 300px;
  margin: -300px 0 300px -300px;
}

.cars2025-trends .cars2025-trend--three .trend-copy-arrowBox--arrow.flip {
  width: 36px;
  height: 42px;
  cursor: pointer;
  transition: all 0.3s linear;
  padding: 300px 1000px 100px 0;
  margin: -300px 0 100px 0;
}

.cars2025-trends .cars2025-trend--three .trend-copy-arrowBox--arrow:not(.flip) {
  -webkit-animation: arrowBounce 2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s infinite;
  animation: arrowBounce 2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s infinite;

}
.cars2025-trends .cars2025-trend--three .trend-copy-arrowBox--arrow.flip {
  transition-delay: 0.5s;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
.cars2025-trends .cars2025-trend--three .trend-copy-arrowBox--arrow.flip svg {
	-webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.cars2025-trends .cars2025-trend--three .trend-copy-arrowBox:hover .trend-copy-arrowBox--arrow:not(.flip) {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.cars2025-trends .cars2025-trend--three .trend-copy-container {
  padding: 0 6%;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
	.cars2025-trends .cars2025-trend--three .trend-copy-container .col {
		width: 100%;
	}
}
.cars2025-trends .cars2025-trend--three .trend-copy-container p {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three .trend-copy {
    width: 50%;
    height: 100%;
    z-index: 2;
  }
  .cars2025-trends .cars2025-trend--three .trend-copy:after {
    content: '';
    display: block;
    position: absolute;
    right: -75px;
    top: 0;
    width: 175px;
    height: 100%;
    background: url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left transparent;
    -webkit-transform: skew(-12deg);
        -ms-transform: skew(-12deg);
            transform: skew(-12deg);
    box-shadow: 8px 0px 9px -5px rgba(0, 0, 0, 0.3);
  }
  .cars2025-trends .cars2025-trend--three .trend-copy .col {
    width: 440px;
    margin: 0 auto;
    float: none !important;
  }
  .cars2025-trends .cars2025-trend--three .trend-copy .cars2025-trend--header {
    text-align: left;
  }
  .cars2025-trends .cars2025-trend--three .trend-copy .cars2025-trend--header h3 {
    text-align: left;
  }
  .cars2025-trends .cars2025-trend--three .trend-copy h4, .cars2025-trends .cars2025-trend--three .trend-copy p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .cars2025-trends .cars2025-trend--three .trend-copy-container {
    padding: 0;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d {
  width: 100%;
  z-index: 0;
  background-color: #1b6fb2;
  position: relative;
}
.cars2025-trends .cars2025-trend--three #carModel-3d nav .icon {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #000;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
  transition: all 0.2s linear;
}
.cars2025-trends .cars2025-trend--three #carModel-3d nav .icon:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cars2025-trends .cars2025-trend--three #carModel-3d nav .icon-arrow-left, .cars2025-trends .cars2025-trend--three #carModel-3d nav .cars2025-section .owl-prev, .cars2025-section .cars2025-trends .cars2025-trend--three #carModel-3d nav .owl-prev {
  top: 34%;
  left: 3%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d nav .icon-arrow-right, .cars2025-trends .cars2025-trend--three #carModel-3d nav .cars2025-section .owl-next, .cars2025-section .cars2025-trends .cars2025-trend--three #carModel-3d nav .owl-next {
  top: 34%;
  right: 3%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d nav .icon-arrow-right:before, .cars2025-trends .cars2025-trend--three #carModel-3d nav .cars2025-section .owl-next:before, .cars2025-section .cars2025-trends .cars2025-trend--three #carModel-3d nav .owl-next:before {
  left: 55%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d nav .icon.disabled, .cars2025-trends .cars2025-trend--three #carModel-3d nav .icon.animating {
  cursor: default;
  opacity: 0.15;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .loader {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  display: block;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.cars2025-trends .cars2025-trend--three #carModel-3d .loader .svg-wrapper {
  width: 40px;
  height: 42px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}
.cars2025-trends .cars2025-trend--three #carModel-3d .grid {
  background: url("/a/pgs/images/cars2025/grid.png") 0 0 repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.3;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .container, .cars2025-trends .cars2025-trend--three #carModel-3d .cars2025-intro--navigation ul, .cars2025-intro--navigation .cars2025-trends .cars2025-trend--three #carModel-3d ul {
  height: 100%;
  color: #FFF;
  position: relative;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .container header, .cars2025-trends .cars2025-trend--three #carModel-3d .cars2025-intro--navigation ul header, .cars2025-intro--navigation .cars2025-trends .cars2025-trend--three #carModel-3d ul header {
  margin-top: 35px;
  width: 230px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .container header, .cars2025-trends .cars2025-trend--three #carModel-3d .cars2025-intro--navigation ul header, .cars2025-intro--navigation .cars2025-trends .cars2025-trend--three #carModel-3d ul header {
    position: absolute;
    top: 60px;
    margin-top: 0;
    z-index: 600;
    width: 100%;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .container h4, .cars2025-trends .cars2025-trend--three #carModel-3d .cars2025-intro--navigation ul h4, .cars2025-intro--navigation .cars2025-trends .cars2025-trend--three #carModel-3d ul h4 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-frames-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-frames {
  position: relative;
  z-index: 0;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-frames > img {
  width: 100%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-frames .car-frame {
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0;
  left: 0;
  text-align: center;
  z-index: 0;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-frames .car-frame img {
  max-width: 100%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-frames .car-frame.current {
  opacity: 1;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-frames .car-frame.active {
  opacity: 1;
  z-index: 1;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-frames {
    height: auto;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .level-content {
  opacity: 0;
  transition: all 0.2s linear;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .level-content.active {
  opacity: 1;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  min-height: 115px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content {
    position: absolute;
    height: 100%;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content {
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 100%;
    top: 0px;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li {
  color: #fff;
  font-family: "UniversLTW01-57Condense 723821";
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 3px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 0;
    text-align: left;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer {
    position: absolute;
    text-align: left;
    width: 150px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer:after {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #FFF;
    width: 35px;
    height: 11px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--right:after {
    border-width: 1px 0 0 0;
    right: -27px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--left:after {
    border-width: 1px 0 0 0;
    left: -45px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--right-up:after {
    border-top: none;
    border-left: none;
    right: -27px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--right-down:after {
    border-bottom: none;
    border-left: none;
    right: -27px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--left-down:after {
    border-bottom: none;
    border-right: none;
    left: -45px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--left-up:after {
    border-top: none;
    border-right: none;
    left: -45px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--top:after {
    top: 3px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li.pointer--bottom:after {
    bottom: 3px;
  }
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--1 li:nth-child(1) {
    left: 19%;
    top: 63%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(1) {
    top: 69%;
    left: 21%;
    width: 90px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(2) {
    top: 43%;
    left: 40.5%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(3) {
    top: 50%;
    left: 70%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(1) {
    left: 13%;
    top: 35%;
    width: 120px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(2) {
    top: 28%;
    left: 26%;
    width: 145px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(3) {
    left: 47%;
    top: 41%;
    width: 161px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(4) {
    left: 84%;
    top: 54%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(1) {
    top: 73%;
    left: 15%;
    width: 105px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(2) {
    top: 51%;
    left: 14.5%;
    width: 90px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(3) {
    top: 32%;
    left: 44%;
    width: 75px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(4) {
    top: 64%;
    left: 63%;
    width: 100px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(5) {
    top: 36%;
    left: 71%;
    width: 160px;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(6) {
    top: 46%;
    left: 79%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(7) {
    top: 64%;
    left: 81.5%;
    width: 90px;
  }
}
@media (min-width: 1230px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--1 li:nth-child(1) {
    left: 22%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(1) {
    left: 24%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(2) {
    left: 40%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(3) {
    left: 69%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(1) {
    left: 18%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(2) {
    left: 28%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(3) {
    left: 46%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(4) {
    left: 83.5%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(1) {
    left: 18%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(2) {
    left: 16.5%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(3) {
    left: 43%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(4) {
    left: 63%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(5) {
    left: 69%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(6) {
    left: 78%;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(7) {
    left: 81%;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber {
  position: relative;
  z-index: 3;
  width: 100%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .legal {
  padding-bottom: 10px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .scrubber {
    position: absolute;
    bottom: 25px;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber p {
  color: #fff;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-wrapper {
  width: 230px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: relative;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments {
  width: 100%;
  display: inline-block;
  height: 36px;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li {
  position: absolute;
  top: 0;
  color: #fff;
  font-family: "Univers LT W01 55 Roman";
  font-size: 13px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li span {
  display: block;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateZ(0);
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li span:after {
  content: '';
  display: block;
  width: 1px;
  height: 9px;
  margin: 15px auto 0 auto;
  background-color: #FFF;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li span i {
  font-style: normal;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li span i.visible-tablet-landscape {
    display: inline-block !important;
    margin-right: 5px;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:first-child {
  left: 0%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:last-child {
  right: 0%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:nth-child(2) {
  left: 31%;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:nth-child(3) {
  right: 32%;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:first-child {
    left: 0%;
    -webkit-transform: translateX(-48%);
        -ms-transform: translateX(-48%);
            transform: translateX(-48%);
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:last-child {
    right: 0%;
    -webkit-transform: translateX(48%);
        -ms-transform: translateX(48%);
            transform: translateX(48%);
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:nth-child(2) {
    left: 25%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-increments li:nth-child(3) {
    right: 25%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .scrubber > p {
  margin-top: 15px;
  padding: 0 6%;
  -webkit-transform: translateZ(0);
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .scrubber .slider-wrapper {
    width: 700px;
  }
}
.cars2025-trends .cars2025-trend--three #carModel-3d .share-buttons {
  border-color: rgba(255, 255, 255, 0.5);
}
.cars2025-trends .cars2025-trend--three #carModel-3d .share-buttons .icon-share {
  color: rgba(255, 255, 255, 0.5);
}
.cars2025-trends .cars2025-trend--three #carModel-3d .level-description {
  position: relative;
  min-height: 100px;
  margin-top: 25px;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .level-description h6 {
  color: #fff;
  font-family: "Univers LT W01 65 Bold";
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .level-description p {
  font-size: 15px;
  font-size: 0.9375rem;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .level-description .level-content {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 300px;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--three #carModel-3d .level-description {
    margin-top: 0;
  }
  .cars2025-trends .cars2025-trend--three #carModel-3d .level-description .level-content {
    bottom: 50px;
  }
}
.cars2025-trends .cars2025-trend--three .cars2025-ui--slider {
  background: #003860;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #003860 0%, #003860 14%, #003860 57%, #00538f 71%, #00538f 86%, #00538f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003860', endColorstr='#00538f',GradientType=0 );
  /* IE6-9 */
}
.cars2025-trends .cars2025-trend--three .ui-slider-range {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0ca2d9+0,0490c7+20,0593ca+40,066f97+60,06658a+80,05698f+100 */
  background: #c6c6c6;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #c6c6c6 0%, #c6c6c6 20%, #c6c6c6 40%, #878787 60%, #878787 80%, #878787 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c6c6c6', endColorstr='#878787',GradientType=0 );
  /* IE6-9 */
  border-radius: 10px;
  height: 100%;
}
@media (min-width: 1000px) {
  .mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-frames .car-frame {
    top: 20%;
  }
}
@media (min-width: 768px) {
  .mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content li {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--1 li:nth-child(1) {
  left: 17%;
  top: 60%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(1) {
  left: 25%;
  top: 60%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(2) {
  left: 42.5%;
  top: 41%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(3) {
  left: 67%;
  top: 48%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(1) {
  left: 17%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(2) {
  left: 31%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(3) {
  left: 47.5%;
  top: 39%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(4) {
  left: 74.5%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(1) {
  left: 20%;
  top: 64%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(2) {
  left: 18.5%;
  top: 48%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(3) {
  left: 45%;
  top: 32%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(4) {
  left: 59%;
  top: 58%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(5) {
  left: 66%;
  top: 36%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(6) {
  left: 74%;
  top: 44%;
}
.mobile .cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--4 li:nth-child(7) {
  left: 76%;
  top: 57%;
}
.cars2025-trends .cars2025-trend--four {
  color: #FFF;
  background-image: url("/a/pgs/images/cars2025/bgs/shadow-mobile.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #161616;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four {
    background-image: url("/a/pgs/images/cars2025/bgs/shadow.png");
  }
}
.cars2025-trends .cars2025-trend--four h4 {
  margin: 45px auto 0 auto;
}
@media (min-width: 320px) and (max-width: 768px) {
  .cars2025-trends .cars2025-trend--four h4 span {
    display: block;
  }
}
.cars2025-trends .cars2025-trend--four .subtext {
  margin: 10px 0 30px 0;
  max-width: none;
}
.cars2025-trends .cars2025-trend--four .subtext:not(.legal) {
  font-size: 14px;
  margin-bottom: 0;
}
@media (min-width: 320px) and (max-width: 768px) {
  .cars2025-trends .cars2025-trend--four .subtext:not(.legal) {
    margin-top: 30px;
  }
}
.cars2025-trends .cars2025-trend--four .bg-img {
  top: 3%;
  width: 90%;
  left: 50%;
  margin-left: -45%;
}
.cars2025-trends .cars2025-trend--four .share-buttons {
  top: 26%;
}
.cars2025-trends .cars2025-trend--four--graph {
  margin: 30px 0;
  *zoom: 1;
}
.cars2025-trends .cars2025-trend--four--graph:before, .cars2025-trends .cars2025-trend--four--graph:after {
  content: " ";
  display: table;
}
.cars2025-trends .cars2025-trend--four--graph:after {
  clear: both;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four--graph {
    width: 42em;
    margin-right: auto;
    margin-left: auto;
  }
}
.cars2025-trends .cars2025-trend--four--graph .bars {
  overflow: hidden;
  *zoom: 1;
}
.cars2025-trends .cars2025-trend--four--graph .bars:before, .cars2025-trends .cars2025-trend--four--graph .bars:after {
  content: " ";
  display: table;
}
.cars2025-trends .cars2025-trend--four--graph .bars:after {
  clear: both;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four--graph .bars {
    padding: 0 3em;
  }
}
.cars2025-trends .cars2025-trend--four--graph .bar {
  float: left;
  width: 23%;
  text-align: center;
  height: 245px;
  position: relative;
  margin: 0 1%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four--graph .bar {
    height: 390px;
  }
}
.cars2025-trends .cars2025-trend--four--graph .bar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.33;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#363636+1,181818+48,292828+100 */
  background: #363636;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #363636 1%, #181818 48%, #292828 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#363636', endColorstr='#292828',GradientType=1 );
  /* IE6-9 */
}
.cars2025-trends .cars2025-trend--four--graph .bar span {
  font-family: "UniversLTW01-47LightCn";
  font-size: 14px;
  position: relative;
  z-index: 1;
  opacity: 0;
  width: 100%;
  transition: opacity 0.8s ease-in-out;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four--graph .bar span {
    font-size: 24px;
    text-align: right;
    right: 50%;
  }
  .cars2025-trends .cars2025-trend--four--graph .bar span:after {
    content: "";
    width: 26px;
    height: 8px;
    border: 1px solid #2F3338;
    border-width: 1px 1px 0 0;
    float: right;
    margin-top: 6px;
  }
}
.cars2025-trends .cars2025-trend--four--graph .bar .active {
  background: #FFF;
  position: relative;
  z-index: 1;
}
.cars2025-trends .cars2025-trend--four--graph .bar div {
  width: 100%;
  height: 100%;
}
.cars2025-trends .cars2025-trend--four--graph .bar div:first-child {
  height: 98%;
  padding-bottom: 10px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four--graph .bar div:first-child {
    padding-bottom: 15px;
  }
}
.cars2025-trends .cars2025-trend--four--graph .bar-1 div:first-child,
.cars2025-trends .cars2025-trend--four--graph .bar-1 span,
.cars2025-trends .cars2025-trend--four--graph .bar-2 div:first-child,
.cars2025-trends .cars2025-trend--four--graph .bar-2 span {
  transition-duration: 0.6s;
}
.cars2025-trends .cars2025-trend--four--graph .bar-2 div:first-child,
.cars2025-trends .cars2025-trend--four--graph .bar-2 span {
  transition-delay: 0.6s;
}
.cars2025-trends .cars2025-trend--four--graph .bar-3 div:first-child,
.cars2025-trends .cars2025-trend--four--graph .bar-3 span {
  transition-delay: 1.2s;
}
.cars2025-trends .cars2025-trend--four--graph .last-bar div:first-child,
.cars2025-trends .cars2025-trend--four--graph .last-bar span {
  transition-delay: 1.8s;
}
.cars2025-trends .cars2025-trend--four--graph .last-bar .active {
  background: #00adef;
}
.cars2025-trends .cars2025-trend--four--graph .js-el-inview span {
  opacity: 1;
}
.cars2025-trends .cars2025-trend--four--graph .js-el-inview .bar-1 div:first-child {
  height: 86%;
}
.cars2025-trends .cars2025-trend--four--graph .js-el-inview .bar-2 div:first-child {
  height: 75%;
}
.cars2025-trends .cars2025-trend--four--graph .js-el-inview .bar-3 div:first-child {
  height: 28%;
}
.cars2025-trends .cars2025-trend--four--graph .js-el-inview .last-bar div:first-child {
  height: 7%;
}
.cars2025-trends .cars2025-trend--four--labels {
  color: #FFF;
  font-size: 12px;
  font-family: "Univers LT W01 55 Roman";
  *zoom: 1;
}
.cars2025-trends .cars2025-trend--four--labels:before, .cars2025-trends .cars2025-trend--four--labels:after {
  content: " ";
  display: table;
}
.cars2025-trends .cars2025-trend--four--labels:after {
  clear: both;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four--labels {
    background: url("/a/pgs/images/cars2025/meter.png") 5px 0 repeat-x;
    margin: 20px 3em 0 3em;
  }
}
.cars2025-trends .cars2025-trend--four--labels span {
  float: left;
  width: 23%;
  margin: 0 1%;
  text-align: center;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--four--labels span {
    padding: 20px 0;
  }
}
.cars2025-trends.no-flexbox .cars2025-trend--four--graph .bar span {
  position: absolute;
}
.cars2025-trends.no-flexbox .cars2025-trend--four--graph .bar-1 span {
  bottom: 51px;
}
.cars2025-trends.no-flexbox .cars2025-trend--four--graph .bar-2 span {
  bottom: 93px;
}
.cars2025-trends.no-flexbox .cars2025-trend--four--graph .bar-3 span {
  top: 100px;
}
.cars2025-trends.no-flexbox .cars2025-trend--four--graph .last-bar span {
  top: 16px;
}
.cars2025-trends .cars2025-trend--five {
  background: url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left;
  padding-bottom: 0;
  color: #202020;
  background: #ebebeb;
  background-size: cover;
  box-shadow: inset 0px 0px 30px 17px rgba(196, 196, 196, 0.5);
  box-shadow: none;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--five {
    box-shadow: inset 0px 0px 100px 47px rgba(196, 196, 196, 0.76);
  }
}
.cars2025-trends .cars2025-trend--five h4 {
  color: #2F3338;
}
.cars2025-trends .cars2025-trend--five:after {
  content: "";
  width: 100%;
  height: 26%;
  background: #FFF;
  position: absolute;
  opacity: 0.62;
  top: 50%;
  left: 0;
  margin-top: -13%;
  box-shadow: 0 0 80px 46px #FFF;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--five:after {
    height: 65%;
    opacity: 0.5;
    top: 60%;
  }
}
.cars2025-trends .cars2025-trend--five p {
  color: #2F3338;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}
.cars2025-trends .cars2025-trend--five .container, .cars2025-trends .cars2025-trend--five .cars2025-intro--navigation ul, .cars2025-intro--navigation .cars2025-trends .cars2025-trend--five ul {
  padding-bottom: 30px;
}
.cars2025-trends .cars2025-trend--five:after {
  display: none;
}
.cars2025-trends .cars2025-trend--five h4 {
  color: #5a5a5a;
  font-family: "UniversLTW01-47LightCn";
  font-size: 18px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 2em;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--five h4 {
    font-size: 24px;
  }
}
.cars2025-trends .cars2025-trend--five .subtext {
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 1em;
  z-index: 1;
  position: absolute;
  max-width: none;
}
.cars2025-trends .cars2025-trend--five .line-segement {
  top: 30px;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--five {
    padding-top: 25px;
  }
}
.cars2025-trends .gradient-cols {
  position: relative;
  overflow: auto;
  z-index: 1;
}
.cars2025-trends .gradient-cols:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 768px) {
  .cars2025-trends .gradient-cols:after {
    width: 50px;
    height: 50px;
    top: -32px;
    margin-left: -25px;
  }
}
.cars2025-trends .gradient-cols .col {
  width: 50%;
  padding: 72px 0 50px 0;
  float: left;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c7c7c7+0,b9b9b9+1,bebebe+3,bdbdbd+3,bfbfbf+4,bdbdbd+5,c1c1c1+6,c2c2c2+10,cdcdcd+21,d8d8d8+39,dedede+58,dfdfdf+69,dedede+83,dcdcdc+83,d9d9d9+97,d7d7d7+99,e4e4e4+100 */
  background: #c7c7c7;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome10+,Safari5.1+ */
  background: linear-gradient(to bottom, #c7c7c7 0%, #b9b9b9 1%, #bebebe 3%, #bdbdbd 3%, #bfbfbf 4%, #bdbdbd 5%, #c1c1c1 6%, #c2c2c2 10%, #cdcdcd 21%, #d8d8d8 39%, #dedede 58%, #dfdfdf 69%, #dedede 83%, gainsboro 83%, #d9d9d9 97%, #d7d7d7 99%, #e4e4e4 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7c7c7', endColorstr='#e4e4e4',GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 768px) {
  .cars2025-trends .gradient-cols .col {
    padding: 10em 0 8em  0;
    height: 7em;
  }
}
.cars2025-trends .gradient-cols .chart-descrip {
  padding: 0 15px;
  color: inherit;
  font-size: 12px;
  font-family: "UniversLTW01-47LightCn";
  text-transform: uppercase;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .cars2025-trends .gradient-cols .chart-descrip {
    font-size: 16px;
  }
}
.cars2025-trends .gradient-cols .main-number {
  font-family: "Univers LT W01 55 Roman";
  font-size: 23px;
  color: #2F3338;
  position: static;
  padding: 0 15px;
  margin-bottom: 15px;
  width: auto;
}
@media (min-width: 768px) {
  .cars2025-trends .gradient-cols .main-number {
    line-height: 61px;
    overflow: hidden;
    width: 23% !important;
    visibility: hidden;
    font-size: 12px;
    transition-delay: 0.9s;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
.cars2025-trends .gradient-cols .chart {
  height: 32px;
}
@media (min-width: 768px) {
  .cars2025-trends .gradient-cols .chart {
    height: 64px;
  }
}
.cars2025-trends .gradient-cols.js-el-inview .gas-chart {
  width: 133px;
}
.cars2025-trends .gradient-cols.js-el-inview .electric-chart {
  width: 45px;
}
.cars2025-trends .gradient-cols.js-el-inview .main-number {
  visibility: visible;
}
.cars2025-trends .gradient-cols.js-el-inview .gas-chart + .main-number {
  width: 28% !important;
}
.cars2025-trends .gradient-cols.js-el-inview .electric-chart + .main-number {
  width: 64% !important;
}
@media (min-width: 768px) {
  .cars2025-trends .gradient-cols.js-el-inview .gas-chart {
    width: 240px;
  }
  .cars2025-trends .gradient-cols.js-el-inview .electric-chart {
    width: 80px;
  }
}
.cars2025-trends .gas-col {
  padding-left: 0;
  text-align: right;
  color: #2f2f2f;
}
.cars2025-trends .gas-col .line-segement {
  width: 50%;
  float: right;
}
.cars2025-trends .gas-col .chart + .main-number {
  float: right;
  max-width: 116px;
}
.cars2025-trends .gas-col .chart + .main-number span {
  float: left;
}
.cars2025-trends .gas-chart {
  width: 0;
  height: 32px;
  float: right;
  position: relative;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cars2025-trends .gas-chart:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#555555+0,000000+50,555555+100 */
  background: #555555;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #555555 0%, black 50%, #555555 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#555555',GradientType=0 );
  /* IE6-9 */
}
.cars2025-trends .electric-col {
  padding-right: 0;
  text-align: left;
  box-shadow: inset 5px 5px 90px 17px rgba(50, 50, 50, 0.44);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.cars2025-trends .electric-col .line-segement {
  width: 78%;
}
.cars2025-trends .electric-col .chart + .main-number {
  float: left;
  line-height: 52px;
  text-align: right;
  max-width: 270px;
}
.cars2025-trends .electric-chart {
  width: 0;
  background: #00adef;
  float: left;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cars2025-trends .cars2025-trend--six {
  color: #FFF;
  background-image: url("/a/pgs/images/cars2025/bgs/shadow-mobile.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #161616;
  background-color: #161616;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six {
    background-image: url("/a/pgs/images/cars2025/bgs/shadow.png");
  }
}
.cars2025-trends .cars2025-trend--six .value {
  float: left;
}
.cars2025-trends .cars2025-trend--six .value.value-percentage:after {
  content: '%';
  display: block;
  float: right;
}
.cars2025-trends .cars2025-trend--six .sm-container + .paragraph-block {
  margin-top: 0px;
  margin-bottom: 90px;
}
.cars2025-trends .cars2025-trend--six .sm-container + .paragraph-block h4 {
  text-align: center;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six .sm-container + .paragraph-block h4 {
    text-align: left;
  }
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--six .sm-container + .paragraph-block {
    width: 940px;
    margin-top: 80px;
    margin-bottom: 0;
  }
  .cars2025-trends .cars2025-trend--six .sm-container + .paragraph-block h4 {
    width: 470px;
  }
  .cars2025-trends .cars2025-trend--six .sm-container + .paragraph-block p {
    width: 420px;
  }
}
.cars2025-trends .cars2025-trend--six .gray {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 2px;
}
.cars2025-trends .cars2025-trend--six .opacity-57 {
  opacity: 0.57;
}
.cars2025-trends .cars2025-trend--six .share-buttons {
  top: 22%;
}
.cars2025-trends .cars2025-trend--six .bg-img {
  top: 2%;
  width: 36%;
  left: 50%;
  margin-left: -18%;
}
.cars2025-trends .cars2025-trend--six header.dial-header {
  height: auto;
  min-height: inherit;
  width: 100%;
}
.cars2025-trends .cars2025-trend--six header.dial-header .current-region, .cars2025-trends .cars2025-trend--six header.dial-header h4 {
  text-align: center;
}
.cars2025-trends .cars2025-trend--six header.dial-header h4 {
  margin-bottom: 10px;
  font-size: 24px;
  width: 100%;
}
.cars2025-trends .cars2025-trend--six header.dial-header .current-region {
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-size: 10px;
  color: #fff;
  font-family: "Univers LT W01 55 Roman";
  text-transform: uppercase;
  line-height: 27px;
}
@media (min-width: 380px) {
  .cars2025-trends .cars2025-trend--six header.dial-header .current-region {
    font-size: 18px;
    width: 100%;
    right: auto;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six header.dial-header .current-region, .cars2025-trends .cars2025-trend--six header.dial-header h4 {
    position: absolute;
  }
  .cars2025-trends .cars2025-trend--six header.dial-header h4 {
    bottom: 25px;
    top: auto;
    left: auto;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
  }
  .cars2025-trends .cars2025-trend--six header.dial-header .current-region {
    color: rgba(255, 255, 255, 0.7);
  }
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--six header.dial-header {
    bottom: 50px;
  }
}
.cars2025-trends .cars2025-trend--six .gaugeBox {
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--six .gaugeBox {
    overflow: visible;
  }
}
.cars2025-trends .cars2025-trend--six .gaugeBox-container {
  width: 340px;
  height: 340px;
  position: relative;
  overflow: hidden;
}
.cars2025-trends .cars2025-trend--six .gaugeBox-container:after {
  content: '';
  display: block;
  position: absolute;
  right: -3px;
  top: 0;
  height: 340px;
  width: 1px;
  box-shadow: 0px 0px 35px 15px #161616;
  background-color: #161616;
}
@media (min-width: 380px) {
  .cars2025-trends .cars2025-trend--six .gaugeBox-container {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six .gaugeBox-container {
    margin: 0 auto;
    width: 680px;
    overflow: visible;
  }
  .cars2025-trends .cars2025-trend--six .gaugeBox-container:after {
    display: none;
  }
}
.cars2025-trends .cars2025-trend--six .gaugeBox-container .gauge-wrapper {
  width: 680px;
  height: 340px;
  overflow: hidden;
}
@media (min-width: 380px) and (max-width: 768px) {
  .cars2025-trends .cars2025-trend--six .gaugeBox-container .gauge-wrapper {
    width: 100%;
  }
}
.cars2025-trends .cars2025-trend--six .gaugeBox-container .gauge-dials {
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 2;
}
.cars2025-trends .cars2025-trend--six .gaugeBox-container .gauge-dials svg {
  width: 100%;
  height: 100%;
}
.cars2025-trends .cars2025-trend--six .gauge-values {
  margin: 30px 15px 40px 15px;
  position: relative;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--six .gauge-values {
    width: 680px;
    margin: 12px auto 0 auto;
    display: block;
  }
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value {
  display: table;
  width: 100%;
  margin: 0 auto 20px auto;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value .legend-key {
  width: 20px;
  height: 4px;
  margin-left: 20px;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--generationZ .legend-key {
  height: 2px;
  background-color: #fff;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--millennials .legend-key {
  background-color: #fff;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--generationX .legend-key {
  background-color: #939495;
  position: relative;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--generationX .legend-key:after {
  position: absolute;
  content: '';
  display: block;
  width: 5px;
  height: 7px;
  background-color: #000;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--babyBoomers .legend-key {
  background-color: #00ADEF;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value {
    width: 526px;
  }
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value {
    display: block;
    float: left;
    width: auto;
    position: absolute;
  }
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--generationZ {
    left: -4px;
  }
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--millennials {
    left: 29px;
  }
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--generationX {
    left: 61px;
  }
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value--babyBoomers {
    left: 120px;
  }
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div {
  display: table-cell;
  vertical-align: middle;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.gauge-demographic {
  width: auto;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.gauge-demographic h3 {
  margin-right: 28px;
  white-space: nowrap;
  font-size: 10px;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.gauge-demographic h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.line-segement {
  position: relative;
  top: 5px;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.line-segement {
    top: 12px;
  }
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.legend-key {
  width: 42px;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.value {
  width: 20px;
  margin-left: 10px;
  text-align: right;
  font-family: "UniversLTW01-47LightCn";
  font-size: 12px;
  font-size: 0.75rem;
}
.cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.value.value-percentage:after {
  font-size: 70%;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.value {
    width: 30px;
    margin-left: 28px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.value.value-percentage:after {
    margin-top: 3px;
  }
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--six .gauge-values .gauge-value > div.value {
    display: block;
    margin-left: 0;
    width: auto;
  }
}
.cars2025-trends .cars2025-trend--six .gauge-values .icon {
  font-size: 12px;
  position: absolute;
  cursor: pointer;
  top: -200px;
  background-color: #00adef;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  color: #FFF;
  font-weight: bold;
  opacity: 1;
  transition: all 0.2s linear;
}
.cars2025-trends .cars2025-trend--six .gauge-values .icon.disabled {
  opacity: 0.15;
  cursor: default;
}
.cars2025-trends .cars2025-trend--six .gauge-values .icon-arrow-left, .cars2025-trends .cars2025-trend--six .gauge-values .cars2025-section .owl-prev, .cars2025-section .cars2025-trends .cars2025-trend--six .gauge-values .owl-prev {
  left: -15px;
}
.cars2025-trends .cars2025-trend--six .gauge-values .icon-arrow-right, .cars2025-trends .cars2025-trend--six .gauge-values .cars2025-section .owl-next, .cars2025-section .cars2025-trends .cars2025-trend--six .gauge-values .owl-next {
  right: -15px;
}
.cars2025-trends .cars2025-trend--six .gauge-values .icon-arrow-left:before, .cars2025-trends .cars2025-trend--six .gauge-values .cars2025-section .owl-prev:before, .cars2025-section .cars2025-trends .cars2025-trend--six .gauge-values .owl-prev:before, .cars2025-trends .cars2025-trend--six .gauge-values .icon-arrow-right:before, .cars2025-trends .cars2025-trend--six .gauge-values .cars2025-section .owl-next:before, .cars2025-section .cars2025-trends .cars2025-trend--six .gauge-values .owl-next:before {
  display: inline-block;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: relative;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--six .gauge-values .icon {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cars2025-trends .cars2025-trend--six .gauge-values .icon-arrow-left, .cars2025-trends .cars2025-trend--six .gauge-values .cars2025-section .owl-prev, .cars2025-section .cars2025-trends .cars2025-trend--six .gauge-values .owl-prev {
    left: 15px;
  }
  .cars2025-trends .cars2025-trend--six .gauge-values .icon-arrow-right, .cars2025-trends .cars2025-trend--six .gauge-values .cars2025-section .owl-next, .cars2025-section .cars2025-trends .cars2025-trend--six .gauge-values .owl-next {
    right: 15px;
  }
}
.cars2025-trends .cars2025-trend--six .gauge-labels {
  position: absolute;
  right: -240px;
  bottom: 0;
  z-index: 5;
}
.cars2025-trends .cars2025-trend--six .gauge-labels .line-segement {
  float: right;
  margin: 6px 17px 0 0;
}
.cars2025-trends .cars2025-trend--six .gauge-labels h3 {
  float: right;
  width: 120px;
}
.cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label {
  display: inline-block;
  clear: both;
  width: 89%;
  margin-top: 12px;
}
.cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--generationZ {
  margin-top: 0;
}
.cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--generationZ .line-segement {
  width: 28px;
}
.cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--millennials .line-segement {
  width: 57px;
}
.cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--generationX .line-segement {
  width: 75px;
}
.cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--babyBoomers .line-segement {
  width: 140px;
}
@media (min-width: 1230px) {
  .cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label {
    width: 100%;
  }
  .cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--generationZ {
    margin-top: 0;
  }
  .cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--generationZ .line-segement {
    width: 110px;
  }
  .cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--millennials .line-segement {
    width: 138px;
  }
  .cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--generationX .line-segement {
    width: 160px;
  }
  .cars2025-trends .cars2025-trend--six .gauge-labels .gauge-label--babyBoomers .line-segement {
    width: 220px;
  }
}
.cars2025-trends .cars2025-trend--six .region-slider {
  margin: 70px auto 40px auto;
  width: 589px;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li {
  position: absolute;
  top: 0;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li p {
  color: #FFFFFF;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(1) {
  left: -2%;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(1) p {
  text-align: left;
  margin-top: 8px;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(2) {
  left: 15%;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(3) {
  left: 32%;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(3) p {
  width: 103px;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(4) {
  left: 55%;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(5) {
  left: 75%;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(6) {
  right: -5%;
}
.cars2025-trends .cars2025-trend--six .region-slider .slider-increments li:nth-child(6) p {
  text-align: right;
  margin-top: 8px;
}
.cars2025-trends .cars2025-trend--six .region-slider .ui-slider {
  width: 100%;
  margin-top: 56px;
}
.cars2025-trends .cars2025-trend--six .region-slider + p {
  width: 100%;
  margin-bottom: 65px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-size: 0.875rem;
}
.cars2025-trends .cars2025-trend--six .region-slider + p small {
  clear: both;
  font-family: "UniversLTStdLight";
  font-size: 11px;
  margin-top: 10px;
  display: block;
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--six .region-slider + p {
    width: 386px;
  }
}
.cars2025-trends .cars2025-trend--seven {
  color: #202020;
  background: #ebebeb;
  background-size: cover;
  box-shadow: inset 0px 0px 30px 17px rgba(196, 196, 196, 0.5);
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven {
    box-shadow: inset 0px 0px 100px 47px rgba(196, 196, 196, 0.76);
  }
}
.cars2025-trends .cars2025-trend--seven h4 {
  color: #2F3338;
}
.cars2025-trends .cars2025-trend--seven:after {
  content: "";
  width: 100%;
  height: 26%;
  background: #FFF;
  position: absolute;
  opacity: 0.62;
  top: 50%;
  left: 0;
  margin-top: -13%;
  box-shadow: 0 0 80px 46px #FFF;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven:after {
    height: 65%;
    opacity: 0.5;
    top: 60%;
  }
}
.cars2025-trends .cars2025-trend--seven p {
  color: #2F3338;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven h4 {
    width: 23em;
    margin-right: auto;
    margin-left: auto;
  }
}
.cars2025-trends .cars2025-trend--seven .box-stats {
  position: relative;
}
.cars2025-trends .cars2025-trend--seven .box-stats .subtext {
  font-size: 14px;
  margin-top: 40px;
}
.cars2025-trends .cars2025-trend--seven .box-stats .legal {
  color: inherit;
  font-size: 9px;
  margin-top: 10px;
  line-height: 14px;
  clear: both;
  width: auto;
}
@media (min-width: 320px) and (max-width: 768px) {
  .cars2025-trends .cars2025-trend--seven {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven {
    padding-bottom: 50px;
  }
}
.cars2025-trends .cars2025-trend--seven .js-el-inview span {
  opacity: 1 !important;
}
.cars2025-trends .graph-key {
  font-family: "Univers LT W01 55 Roman";
  text-transform: uppercase;
  color: #606060;
  font-size: 10px;
  letter-spacing: 2px;
  text-align: left;
  width: 16em;
  margin: 20px auto 0;
  line-height: 18px;
}
.cars2025-trends .graph-key i {
  position: relative;
  top: -1px;
}
@media (min-width: 1000px) {
  .cars2025-trends .graph-key {
    position: absolute;
    top: 23px;
    font-size: 9px;
    line-height: 14px;
    width: auto;
    left: 30px;
  }
}
.cars2025-trends .cars2025-trend--seven--graph {
  text-align: center;
}
.cars2025-trends .cars2025-trend--seven--graph div {
  width: 100%;
  height: 100%;
}
.cars2025-trends .cars2025-trend--seven--graph .bars {
  float: left;
  width: 44%;
  margin-top: 22px;
  padding: 0 3%;
  position: relative;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven--graph .bars {
    width: 11%;
    padding: 0 1%;
    float: none;
    display: inline-block !important;
    margin: 0;
    min-height: 0 !important;
  }
}
@media (min-width: 1000px) {
  .cars2025-trends .cars2025-trend--seven--graph .bars {
    width: 110px;
    padding: 0 8px;
  }
}
@media (min-width: 1230px) {
  .cars2025-trends .cars2025-trend--seven--graph .bars {
    width: 116px;
  }
}
.cars2025-trends .cars2025-trend--seven--graph .bar {
  float: left;
  width: 50%;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven--graph .bar {
    height: 265px !important;
  }
}
.cars2025-trends .cars2025-trend--seven--graph .bar span {
  font-family: "UniversLTStdLightUltraCn";
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  font-size: 35px;
  font-size: 2.1875rem;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven--graph .bar span {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.cars2025-trends .cars2025-trend--seven--graph .bar span sub {
  text-transform: uppercase;
  vertical-align: baseline;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven--graph .bar span sub {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.cars2025-trends .cars2025-trend--seven--graph .bar .active {
  position: relative;
  z-index: 1;
}
.cars2025-trends .cars2025-trend--seven--graph .bar div {
  width: 100%;
  height: 100%;
}
.cars2025-trends .cars2025-trend--seven--graph .bar div:first-child {
  height: 98%;
  padding-bottom: 5px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven--graph .bar div:first-child {
    padding-bottom: 15px;
  }
}
.cars2025-trends .cars2025-trend--seven--graph .bar-1 .active {
  background: #00adef;
}
.cars2025-trends .cars2025-trend--seven--graph .bar-1 span {
  color: #00adef;
}
.cars2025-trends .cars2025-trend--seven--graph .bar-1 div:first-child,
.cars2025-trends .cars2025-trend--seven--graph .bar-1 span {
  transition-delay: 0.8s;
}
.cars2025-trends .cars2025-trend--seven--graph .bar-2 .active {
  background: #e5e5e5;
}
.cars2025-trends .cars2025-trend--seven--graph .bar-2 span {
  color: #a5a5a5;
  color: #949494;
}
.cars2025-trends .cars2025-trend--seven--graph .label {
  color: #606060;
  font-family: "Univers LT W01 55 Roman";
  padding-top: 10px;
  letter-spacing: 3px;
  font-size: 11px;
  clear: both;
  *zoom: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  height: auto;
  text-align: center;
}
.cars2025-trends .cars2025-trend--seven--graph .label:before, .cars2025-trends .cars2025-trend--seven--graph .label:after {
  content: " ";
  display: table;
}
.cars2025-trends .cars2025-trend--seven--graph .label:after {
  clear: both;
}
@media (min-width: 768px) {
  .cars2025-trends .cars2025-trend--seven--graph .label {
    position: static;
  }
}
.cars2025-trends .cars2025-trend--seven--graph .subtext {
  margin-top: 2em;
}
.cars2025-trends .cars2025-trend--seven--graph.js-el-inview span {
  opacity: 1;
}
.cars2025-trends .bars--2010,
.cars2025-trends .bars--2015 {
  min-height: 184px;
}
.cars2025-trends .bars--2020,
.cars2025-trends .bars--2025 {
  min-height: 238px;
}
.cars2025-trends .js-el-inview .bars--1995 .bar-1 div:first-child {
  height: 83%;
}
.cars2025-trends .js-el-inview .bars--1995 .bar-2 div:first-child {
  height: 62%;
}
.cars2025-trends .js-el-inview .bars--2000 .bar-1 div:first-child {
  height: 81%;
}
.cars2025-trends .js-el-inview .bars--2000 .bar-2 div:first-child {
  height: 57%;
}
.cars2025-trends .js-el-inview .bars--2005 .bar-1 div:first-child {
  height: 74%;
}
.cars2025-trends .js-el-inview .bars--2005 .bar-2 div:first-child {
  height: 57%;
}
.cars2025-trends .js-el-inview.bars--2010 .bar {
  height: 162px;
}
.cars2025-trends .js-el-inview.bars--2010 .bar-1 div:first-child {
  height: 42%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2010 .bar-1 div:first-child {
    height: 55%;
  }
}
.cars2025-trends .js-el-inview.bars--2010 .bar-2 div:first-child {
  height: 60%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2010 .bar-2 div:first-child {
    height: 64;
  }
}
.cars2025-trends .js-el-inview.bars--2015 .bar {
  height: 162px;
}
.cars2025-trends .js-el-inview.bars--2015 .bar-1 div:first-child {
  height: 23%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2015 .bar-1 div:first-child {
    height: 43%;
  }
}
.cars2025-trends .js-el-inview.bars--2015 .bar-2 div:first-child {
  height: 52%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2015 .bar-2 div:first-child {
    height: 59%;
  }
}
.cars2025-trends .js-el-inview.bars--2020 .bar {
  height: 216px;
}
.cars2025-trends .js-el-inview.bars--2020 .bar-1 div:first-child {
  height: 35%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2020 .bar-1 div:first-child {
    height: 30%;
  }
}
.cars2025-trends .js-el-inview.bars--2020 .bar-2 div:first-child {
  height: 68%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2020 .bar-2 div:first-child {
    height: 60%;
  }
}
.cars2025-trends .js-el-inview.bars--2025 .bar {
  height: 216px;
}
.cars2025-trends .js-el-inview.bars--2025 .bar-1 div:first-child {
  height: 20%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2025 .bar-1 div:first-child {
    height: 14%;
  }
}
.cars2025-trends .js-el-inview.bars--2025 .bar-2 div:first-child {
  height: 70%;
}
@media (min-width: 768px) {
  .cars2025-trends .js-el-inview.bars--2025 .bar-2 div:first-child {
    height: 62%;
  }
}
.cars2025-trends.no-flexbox .cars2025-trend--seven--graph .bar div:first-child {
  position: relative;
}
.cars2025-trends.no-flexbox .cars2025-trend--seven--graph .bar span {
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.cars2025-trends .cars2025-trend--five,
.cars2025-trends .cars2025-trend--seven {
  background: url("/a/pgs/images/cars2025/bgs/navigation-pattern.jpg") top left;
  box-shadow: none;
}
.cars2025-trends .cars2025-trend--five:after,
.cars2025-trends .cars2025-trend--seven:after {
  display: none;
}

/*------------------------------------*\
    #The Takeaway
\*------------------------------------*/
/* Main Content */
.cars2025-takeaway {
  color: #FFF;
  background-image: url("/a/pgs/images/cars2025/bgs/shadow-mobile.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #161616;
}
@media (min-width: 768px) {
  .cars2025-takeaway {
    background-image: url("/a/pgs/images/cars2025/bgs/shadow.png");
  }
}
@media (min-width: 768px) {
  .cars2025-takeaway {
    background-position: left 1em;
  }
}
@media (min-width: 1000px) {
  .cars2025-takeaway {
    height: auto;
    padding-bottom: 4em;
  }
}
@media (min-width: 768px) {
  .cars2025-takeaway .cars2025-section--header + p {
    width: 640px;
    margin-bottom: 45px;
  }
}
@media (min-width: 1000px) {
  .cars2025-takeaway .cars2025-section--header + p {
    margin-bottom: 90px;
  }
}
.cars2025-takeaway h3 {
  margin-bottom: 21px;
  color: #00adef;
  font-family: "UniversLTW01-47LightCn";
  font-size: 20px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .cars2025-takeaway h3 {
    line-height: 24px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
@media (min-width: 1000px) {
  .cars2025-takeaway h3 {
    line-height: 30px;
    font-size: 35px;
    font-size: 2.1875rem;
  }
}
.cars2025-takeaway span {
  display: block;
  color: #FFF;
  font-family: "Univers LT W01 55 Roman";
  font-size: 11px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .cars2025-takeaway span {
    font-size: 12px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .cars2025-takeaway .cols-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.cars2025-takeaway .col {
  margin-top: 33px;
}
@media (min-width: 768px) {
  .cars2025-takeaway .col {
    margin: 0;
    padding: 2%;
  }
}
.cars2025-takeaway .bg-img {
  width: 80%;
  top: 2%;
  left: 50%;
  margin-left: -40%;
}
@media (min-width: 768px) {
  .cars2025-takeaway img {
    height: 50em;
  }
}
@media (min-width: 1000px) {
  .cars2025-takeaway img {
    height: auto;
  }
}

.back-to-top {
  max-width: 180px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: "Univers LT W01 65 Bold";
  background: #00adef;
  font-size: 12px;
  display: block;
  text-align: center;
  padding: 15px 0;
  margin: 4em auto auto;
  clear: left;
  text-decoration: none;
}
.back-to-top:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .back-to-top {
    margin-top: 2em;
  }
}

.no-flexbox .col {
  float: left;
  width: 29%;
}

.cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--2 li:nth-child(2) {
	display: none;
}
.cars2025-trends .cars2025-trend--three #carModel-3d .car-level-content .level-content--3 li:nth-child(1) {
	display: none;
}
