@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
:root {
  --grid-max-width: calc(1300px + 2 * var(--grid-padding));
  --grid-padding: 16px;
}
@media screen and (min-width: 1440px) {
  :root {
    --grid-padding: 40px;
  }
}

lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: 720px;
}

/* gradient */
lite-youtube::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  top: 0;
  /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
  background-image: linear-gradient(180deg, rgb(0 0 0/67%) 0%, rgb(0 0 0/54%) 14%, rgb(0 0 0/15%) 54%, rgb(0 0 0/5%) 72%, rgb(0 0 0/0%) 94%);
  height: 99px;
  width: 100%;
  font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
  color: hsl(0deg 0% 93.33%);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  padding: 25px 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

lite-youtube:hover::before {
  color: white;
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

/* play button */
lite-youtube > .lty-playbtn {
  display: block;
  /* Make the button element cover the whole area for a large hover/click target… */
  width: 100%;
  height: 100%;
  /* …but visually it's still the same size */
  background: no-repeat center/68px 48px;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
  position: absolute;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: 0;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
  filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
  cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}

.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.header-hero {
  background-color: var(--white);
  margin-top: -40px;
  padding-top: 40px;
}
@media screen and (min-width: 651px) {
  .header-hero {
    margin-top: -64px;
    padding-top: 64px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero {
    background-color: var(--factory-white);
    margin-top: -94px;
    padding-top: 94px;
  }
}

.header-hero__main {
  padding-top: 32px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  .header-hero__main {
    background-color: var(--white);
    padding: 32px 48px 24px;
    border-radius: var(--border-radius-medium);
    flex-grow: 1;
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.header-hero__intro {
  text-align: center;
}

.header-hero__title {
  font-size: var(--heading-bold-font-size);
  line-height: var(--heading-bold-line-height);
  font-family: var(--font-family-headlines);
  text-transform: var(--heading-text-transform);
  letter-spacing: var(--heading-bold-letter-spacing);
  text-wrap: balance;
  margin-top: 0;
  margin-bottom: 0;
}

.header-hero__title--long {
  font-size: var(--heading-1-font-size);
  line-height: var(--heading-1-line-height);
  font-weight: var(--bold);
  font-family: var(--font-family-headlines);
  text-transform: var(--heading-text-transform);
  letter-spacing: var(--heading-1-letter-spacing);
}

.header-hero__desc {
  margin-top: 0;
  margin-bottom: 0;
}

.header-hero__actions-inner {
  margin-top: 16px;
}
@media screen and (min-width: 651px) {
  .header-hero__actions-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
  }
}

@media screen and (max-width: 650px) {
  .header-hero__actions-inner > .btn {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .header-hero__actions-inner > .btn + .btn {
    margin-top: 12px;
  }
}

.header-hero__confidence-strip {
  justify-self: center;
  margin-top: 16px;
}
@media screen and (min-width: 651px) {
  .header-hero__confidence-strip {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero__confidence-strip {
    align-self: center;
  }
}

@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__main {
    flex-grow: 1;
    flex-basis: 75%;
  }
}

.header-hero__media {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header-hero__media {
    display: block;
    flex-basis: 25%;
  }
}

.header-hero__image-wrap {
  height: 100%;
}

.header-hero__image {
  display: block;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-medium);
}

.header-hero--article .header-hero__main {
  padding-bottom: 48px;
}
.header-hero--article .header-hero__title {
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-2-font-family);
  letter-spacing: var(--heading-2-letter-spacing);
  font-family: var(--font-family-body);
  text-transform: none;
  margin-bottom: 16px;
}

@media screen and (max-width: 650px) {
  .header-hero--breadcrumbs {
    margin-top: -88px;
    padding-top: 88px;
  }
}
@media screen and (min-width: 651px) {
  .header-hero--breadcrumbs {
    margin-top: -112px;
    padding-top: 112px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--breadcrumbs {
    margin-top: -142px;
    padding-top: 142px;
  }
}
.header-hero--breadcrumbs .header-hero__inner {
  margin-top: -48px;
}
.header-hero--breadcrumbs .header-hero__main {
  padding-top: 80px;
}

body:has(.header-hero--breadcrumbs) .breadcrumb {
  background-color: transparent;
}
@media screen and (min-width: 651px) {
  body:has(.header-hero--breadcrumbs) .breadcrumb__container {
    padding-left: calc(var(--grid-padding) + 16px);
  }
}

.makes-models-menu__spinner {
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.makes-models-menu__list-title {
  padding: 8px 28px;
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  font-weight: var(--bold);
  background-color: var(--grey-extra-light);
  border-bottom: 1px solid var(--border-colour);
}

.makes-models-menu__list {
  margin-top: 0;
}
@media screen and (max-width: 650px) {
  .makes-models-menu__list:last-child {
    margin-bottom: 88px;
  }
}

.makes-models-menu__list-item {
  padding: 0;
  border-bottom: 1px solid var(--border-colour);
}

.makes-models-menu__make-new-on-carwow {
  display: flex;
  padding-left: 8px;
}

.makes-models-menu__make-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  margin-right: 16px;
}

.makes-models-menu-icons {
  margin-left: auto;
  align-self: center;
  display: flex;
}

.makes-models-menu-icons--model-step {
  align-items: center;
  display: flex;
}

.makes-models-menu-icon {
  margin-left: 8px;
}

.makes-models-menu-footer {
  height: 48px;
  display: flex;
  justify-content: center;
}

.makes-models-menu-footer-legend {
  display: flex;
  align-items: center;
}
.makes-models-menu-footer-legend:first-child {
  margin-right: 24px;
}

.makes-models-menu-footer-legend__description {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  margin-left: 8px;
}

.makes-models-menu__model {
  padding-left: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.makes-models-menu__list-recommendation {
  border-bottom: 1px solid var(--border-colour);
}

.makes-models-menu__recommendation-link {
  background-color: var(--grey-extra-light);
  box-shadow: 0 2px 4px 0 var(--shadow-colour);
  padding-top: 18px;
  padding-left: 28px;
  padding-bottom: 18px;
}
.makes-models-menu__recommendation-link:hover {
  box-shadow: 0 3px 6px 0 var(--shadow-colour);
}

.makes-models-menu__recommendation-copy {
  flex-grow: 1;
  padding-left: 16px;
}

.makes-models-menu__recommendation-name {
  font-weight: var(--bold);
}

.makes-models-menu__recommendation-subheading {
  color: var(--text-black-dim);
}

.makes-models-menu__model-izmo-photo {
  width: 68px;
  height: 46px;
}

.makes-models-menu__recommendation-caret-right {
  margin-right: -8px;
}

.makes-models-menu__link {
  color: var(--black);
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 24px;
  text-decoration: none;
  cursor: pointer;
}
.makes-models-menu__link:hover {
  background-color: var(--grey-extra-light);
}

.makes-models-menu__link-with-image {
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
}
.makes-models-menu__link-with-image:hover {
  background-color: var(--grey-extra-light);
}

.makes-models-menu__name {
  display: flex;
  flex-direction: column;
}

.makes-models-menu__subtitle {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  font-weight: var(--normal);
}

.makes-models-menu__container {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}

.makes-models-menu__izmo-image {
  height: 72px;
  width: 120px;
}

.makes-models-menu__imagin-image {
  height: 72px;
  width: 120px;
}

.makes-models-menu__izmo-image--logo {
  background-color: var(--grey-extra-light);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .makes-list-one-column {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 650px) {
  .makes-models-menu__spinner {
    height: 100%;
  }
  .makes-models-menu__model-izmo-photo {
    width: 60px;
    height: 41px;
  }
  .makes-models-menu__recommendation-caret-right {
    margin-right: -16px;
  }
}
figure,
.figure {
  margin: 0;
}

.figure-horizontal {
  display: table;
}
.figure-horizontal .inline-icon {
  display: block;
}

.figure-icon {
  display: table-cell;
  vertical-align: middle;
}

.figure-caption {
  display: table-cell;
  padding-left: 16px;
  padding-right: 16px;
  vertical-align: middle;
}
.figure-caption > h5,
.figure-caption > p {
  margin-top: 0;
  margin-bottom: 0;
}

.figures-row {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.figure-in-row {
  display: table-cell;
  vertical-align: middle;
}

.figure-icon-top,
.figure-in-row-top,
.figure-caption-top {
  vertical-align: top;
}

.wowscore {
  position: relative;
  height: 48px;
  width: 48px;
}

.wowscore__numerator {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
}

.wowscore__denominator {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  color: var(--text-black-dim);
}

.wowscore--small {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
}

.wowscore--large {
  width: 80px;
  height: 80px;
}
.wowscore--large .wowscore__numerator {
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-3-font-family);
  letter-spacing: var(--heading-3-letter-spacing);
}

.wowscore--excellent .wowscore-graphic__chart {
  stroke: var(--green-dark);
}

.wowscore--good .wowscore-graphic__chart {
  stroke: var(--green-light);
}

.wowscore--average .wowscore-graphic__chart {
  stroke: var(--yellow);
}

.wowscore--bad .wowscore-graphic__chart {
  stroke: var(--red);
}

.wowscore--grey {
  color: var(--grey-light);
}

.wowscore-graphic {
  transform: rotate(-90deg);
  background: var(--grey-extra-light);
  border-radius: 50%;
}

.wowscore-graphic__inner {
  fill: var(--white);
}

.wowscore-graphic__chart {
  fill: var(--grey-extra-light);
  stroke-width: 50%;
}

@keyframes fillup-0 {
  to {
    stroke-dasharray: 0 158;
  }
}
.wowscore-graphic__chart[data-score="0"] {
  animation: fillup-0 1s linear forwards;
}

@keyframes fillup-1 {
  to {
    stroke-dasharray: 15.8 158;
  }
}
.wowscore-graphic__chart[data-score="1"] {
  animation: fillup-1 1s linear forwards;
}

@keyframes fillup-2 {
  to {
    stroke-dasharray: 31.6 158;
  }
}
.wowscore-graphic__chart[data-score="2"] {
  animation: fillup-2 1s linear forwards;
}

@keyframes fillup-3 {
  to {
    stroke-dasharray: 47.4 158;
  }
}
.wowscore-graphic__chart[data-score="3"] {
  animation: fillup-3 1s linear forwards;
}

@keyframes fillup-4 {
  to {
    stroke-dasharray: 63.2 158;
  }
}
.wowscore-graphic__chart[data-score="4"] {
  animation: fillup-4 1s linear forwards;
}

@keyframes fillup-5 {
  to {
    stroke-dasharray: 79 158;
  }
}
.wowscore-graphic__chart[data-score="5"] {
  animation: fillup-5 1s linear forwards;
}

@keyframes fillup-6 {
  to {
    stroke-dasharray: 94.8 158;
  }
}
.wowscore-graphic__chart[data-score="6"] {
  animation: fillup-6 1s linear forwards;
}

@keyframes fillup-7 {
  to {
    stroke-dasharray: 110.6 158;
  }
}
.wowscore-graphic__chart[data-score="7"] {
  animation: fillup-7 1s linear forwards;
}

@keyframes fillup-8 {
  to {
    stroke-dasharray: 126.4 158;
  }
}
.wowscore-graphic__chart[data-score="8"] {
  animation: fillup-8 1s linear forwards;
}

@keyframes fillup-9 {
  to {
    stroke-dasharray: 142.2 158;
  }
}
.wowscore-graphic__chart[data-score="9"] {
  animation: fillup-9 1s linear forwards;
}

@keyframes fillup-10 {
  to {
    stroke-dasharray: 158 158;
  }
}
.wowscore-graphic__chart[data-score="10"] {
  animation: fillup-10 1s linear forwards;
}

.wowscore__text {
  font-weight: var(--bold);
  position: absolute;
  text-align: center;
  line-height: normal;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@supports (stroke-dasharray: 1) {
  .wowscore-graphic__chart {
    stroke-dasharray: 0 158;
  }
}
.embed-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon-disc-container {
  --background-color: var(--white);
  background-color: var(--background-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-disc-container--brand-primary {
  --background-color: var(--blue);
}
.autoexpress-brand .icon-disc-container--brand-primary {
  --background-color: var(--red);
}
.autoexpress-brand .icon-disc-container--brand-primary .inline-icon {
  fill: var(--white);
}

.icon-disc-container--dark-blue {
  --background-color: var(--blue);
}

.icon-disc-container--red {
  --background-color: var(--red-extra-light);
}

.icon-disc-container--dark-red {
  --background-color: var(--red);
}

.icon-disc-container--green {
  --background-color: var(--green-extra-light);
}

.icon-disc-container--dark-green {
  --background-color: var(--green);
}

.icon-disc-container--yellow {
  --background-color: var(--yellow-extra-light);
}

.icon-disc-container--grey {
  --background-color: var(--grey-extra-light);
}

.icon-disc-container--dark-grey {
  --background-color: var(--grey);
}

.icon-disc-container--factory-white {
  --background-color: var(--factory-white);
}

.icon-disc-container--x-small {
  width: 16px;
  height: 16px;
  padding: 4px;
}

.icon-disc-container--small {
  width: 24px;
  height: 24px;
}

.icon-disc-container--medium-small {
  width: 32px;
  height: 32px;
}

.icon-disc-container--medium-large {
  width: 56px;
  height: 56px;
}

.icon-disc-container--large {
  width: 68px;
  height: 68px;
}

.icon-disc-container--x-large {
  width: 96px;
  height: 96px;
}

.card-minimalist__media-container {
  padding-top: 56.25%;
  position: relative;
}

.card-minimalist__media {
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-medium);
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
}

/* img */
.card-minimalist__media--image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-minimalist__body {
  margin-top: 8px;
}

.card-minimalist__title {
  font-weight: var(--bold);
  color: var(--black);
}

.card-minimalist__title--small {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
}

.card-minimalist__title--large {
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-3-font-family);
  letter-spacing: var(--heading-3-letter-spacing);
}

.dark-mode .card-minimalist__subtitle {
  color: var(--factory-white);
}

.card-minimalist__description {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin-top: 12px;
  margin-bottom: 0;
}

.card-minimalist__content-block {
  margin-top: 12px;
}

.blog-post {
  background-color: var(--grey-extra-light);
}

.blog-post__body {
  padding-bottom: 48px;
}

.blog-post__body .google-ad {
  padding-top: 16px;
  text-align: center;
}

.blog-post .blog-post__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 32px;
  max-width: calc(740px + var(--grid-padding) * 2);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.blog-post .blog-post__content {
  padding-left: var(--grid-padding);
  padding-right: var(--grid-padding);
}

.blog-post__content.cms-generated-content {
  flex-direction: column-reverse;
}
.blog-post__content.cms-generated-content::after {
  clear: both;
  content: "";
  display: block;
}
.blog-post__content.cms-generated-content {
  max-width: var(--grid-max-width);
  margin-left: auto;
  margin-right: auto;
}
.blog-post__content.cms-generated-content {
  padding-left: var(--grid-padding);
  padding-right: var(--grid-padding);
}
@media screen and (min-width: 1025px) {
  .blog-post__content.cms-generated-content {
    flex-direction: row;
  }
  .blog-post__content.cms-generated-content aside {
    display: block;
    flex: 0 0 auto;
    width: calc(33.3333333333% - 24px);
    margin-right: 12px;
    margin-left: 12px;
    position: sticky;
    top: 0;
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .blog-post__content.cms-generated-content .buy_sell_wow__actions-action {
    flex: 0 0 auto;
    width: calc(100% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
.blog-post__content.cms-generated-content .blog-post__text {
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .blog-post__content.cms-generated-content .blog-post__text {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

.blog-post .blog-post__content > p:first-of-type {
  font-weight: var(--bold);
  margin-top: 12px;
}

.blog-post .blog-post__content > * {
  width: 100%;
}

.blog-post .blog-post__content > table {
  padding-left: 0;
  padding-right: 0;
  max-width: 740px;
}

.blog-post figure {
  position: relative;
  overflow: hidden;
  margin: 32px 0 32px;
  padding: 0;
}

.blog-post figure figcaption {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: var(--text-black-dim);
  margin-top: 8px;
}

.blog-post iframe[src^="https://www.youtube.com/embed/"] {
  max-width: 100%;
  max-height: 300px;
}

.blog-post .embed-video iframe[src^="https://www.youtube.com/embed/"] {
  max-height: 100%;
}

.blog-post .blog-post__content img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.blog-post .blog-post__content p {
  margin-top: 16px;
  margin-bottom: 16px;
}

.blog-post .blog-post__content p:last-of-type {
  margin-bottom: 56px;
}

.blog-post .blog-post__content .embed-video + p {
  margin-top: 8px;
  margin-bottom: 16px;
}

.blog-post-meta-author {
  font-weight: var(--bold);
}

@media screen and (min-width: 651px) {
  .highlighted-model .figure-in-row {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 651px) {
  .highlighted-model .figure-in-row .figure-caption {
    padding-right: 0;
  }
}

.blog-post-image {
  display: block;
  width: 100%;
  height: auto;
}

.blog-social-share-text {
  display: none;
  line-height: 48px;
}
@media screen and (min-width: 1025px) {
  .blog-social-share-text {
    display: inline-block;
  }
}

.blog__left-floating-image {
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
@media screen and (min-width: 651px) {
  .blog__left-floating-image {
    max-width: 100%;
  }
}

.highlighted-model .figures-row {
  margin: 16px 0;
  padding: 8px 0;
  border-top: 1px solid var(--border-colour);
  border-bottom: 1px solid var(--border-colour);
  text-align: left;
}

.hightlighted-model-price {
  font-weight: var(--bold);
}

.figure-wowscore {
  width: 64px;
}

.load-more-container--blog {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.section-social {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid var(--border-colour);
  border-bottom: 1px solid var(--border-colour);
}

.sign-up-banner-v2-container {
  margin-top: 48px;
}

.sign-up-banner-v2 {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 20px 16px;
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius-medium);
}
@media screen and (min-width: 651px) {
  .sign-up-banner-v2 {
    flex-direction: row;
    align-items: center;
    padding: 32px;
  }
}

.sign-up-banner-v2__model-info-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-2-font-family);
  letter-spacing: var(--heading-2-letter-spacing);
}
@media screen and (min-width: 651px) {
  .sign-up-banner-v2__model-info-title {
    display: none;
  }
}

.sign-up-banner-v2__usp {
  display: flex;
  align-items: center;
}

.sign-up-banner-v2__usp-inner {
  width: 100%;
}

.sign-up-banner-v2__usp-title {
  display: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-2-font-family);
  letter-spacing: var(--heading-2-letter-spacing);
}
@media screen and (min-width: 651px) {
  .sign-up-banner-v2__usp-title {
    display: block;
  }
}

.sign-up-banner-v2__model-info {
  min-width: 50%;
  flex-grow: 1;
}
@media screen and (min-width: 651px) {
  .sign-up-banner-v2__model-info {
    margin-right: 72px;
  }
}

.sign-up-banner-v2__model-info .sign-up-banner-v2__usp-list {
  display: block;
}
@media screen and (min-width: 651px) {
  .sign-up-banner-v2__model-info .sign-up-banner-v2__usp-list {
    display: none;
  }
}

.sign-up-banner-v2__model-info .sign-up-banner-v2__model-info-title {
  margin-bottom: 16px;
}

.sign-up-banner-v2__model-info-image-container {
  position: relative;
  padding-bottom: 33.5%;
  margin-bottom: 12px;
}

.sign-up-banner-v2__model-info-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sign-up-banner-v2__model-info-prices-list {
  border-top: 1px solid var(--border-colour);
  padding-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 651px) {
  .sign-up-banner-v2__model-info-prices-list {
    margin-bottom: 0;
  }
}

.sign-up-banner-v2__model-info-prices-list-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
}

.sign-up-banner-v2__model-info-prices-list-item-definition {
  margin: 0;
}

.sign-up-banner-v2__usp-list {
  display: none;
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  margin-bottom: 28px;
}
@media screen and (min-width: 651px) {
  .sign-up-banner-v2__usp-list {
    display: block;
    font-size: var(--body-medium-font-size);
    line-height: var(--body-medium-line-height);
  }
}

li.sign-up-banner-v2__usp-list-item {
  display: flex;
  align-items: center;
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  margin-bottom: 8px;
}
@media screen and (max-width: 650px) {
  li.sign-up-banner-v2__usp-list-item {
    padding-left: 32px;
  }
  li.sign-up-banner-v2__usp-list-item::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 651px) {
  li.sign-up-banner-v2__usp-list-item {
    font-size: var(--body-large-font-size);
    line-height: var(--body-large-line-height);
  }
}

.st_facebook_large .stLarge,
.st_twitter_large .stLarge {
  background-image: none !important;
}

.social-share-button {
  vertical-align: middle;
  position: relative;
}
.social-share-button .stButton,
.social-share-button .stLarge {
  position: absolute !important;
  inset: 0;
}
.social-share-button .stButton {
  margin: 0;
}
.social-share-button .stLarge {
  height: auto !important;
  width: auto !important;
}

.social-share-button--facebook {
  background-color: var(--blue);
  border-color: var(--blue);
}

.social-share-button--x {
  background-color: var(--blue);
  border-color: var(--blue);
}

.social-share-button--facebook,
.social-share-button--x {
  margin-left: 16px;
}
.social-share-button--facebook:hover,
.social-share-button--x:hover {
  opacity: 0.75;
}

.highlighted-model {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
.highlighted-model::after {
  clear: both;
  content: "";
  display: block;
}
.highlighted-model {
  display: block;
}
.highlighted-model:last-of-type {
  border-bottom: 1px solid var(--border-colour);
}

.highlighted-model-hero-container {
  display: block;
  width: 50%;
  position: absolute;
  min-height: 160px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}
.highlighted-model-hero-container::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

.highlighted-model-hero {
  -o-object-fit: cover;
     object-fit: cover;
}

.highlighted-model:nth-child(odd) .highlighted-model-hero-container {
  right: 0;
}
.highlighted-model:nth-child(odd) .highlighted-model-hero-container::before {
  background-image: linear-gradient(to left, rgba(30, 87, 153, 0) 0%, rgba(255, 255, 255, 0.8) 65%, rgba(255, 255, 255, 0.9) 75%, rgb(255, 255, 255) 100%);
  left: 0;
}
.highlighted-model:nth-child(odd) .highlighted-model-copy {
  padding-right: 32px;
}

.highlighted-model:nth-child(even) .highlighted-model-hero-container {
  left: 0;
}
.highlighted-model:nth-child(even) .highlighted-model-hero-container::before {
  background-image: linear-gradient(to right, rgba(30, 87, 153, 0) 0%, rgba(255, 255, 255, 0.8) 65%, rgba(255, 255, 255, 0.9) 75%, rgb(255, 255, 255) 100%);
  right: 0;
}
.highlighted-model:nth-child(even) .highlighted-model-copy {
  margin-left: 51.1788260117%;
  padding-left: 32px;
}

.highlighted-model-copy {
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 48.8211739883%;
  display: table;
}
.highlighted-model-copy:last-child {
  margin-right: 0;
}

.highlighted-model-centrer {
  display: table-cell;
  vertical-align: middle;
  min-height: 160px;
  height: 33vw;
}

.highlighted-model-centred {
  display: inline-block;
  width: 100%;
}

.highlighted-model-btn {
  padding-left: 5px;
  padding-right: 5px;
  white-space: nowrap;
  float: left;
  display: block;
  margin-right: 4.8291588071%;
  width: 47.5854205965%;
}
.highlighted-model-btn:last-child {
  margin-right: 0;
}

.link-back-to-blog {
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
.link-back-to-blog:last-child {
  margin-right: 0;
}
.link-back-to-blog::after {
  clear: both;
  content: "";
  display: block;
}
.link-back-to-blog {
  display: block;
}

@media screen and (max-width: 1024px) {
  .highlighted-model {
    border: none;
    margin-bottom: 32px;
  }
  .highlighted-model-hero-container {
    height: 40vw;
  }
  .highlighted-model:nth-child(odd) .highlighted-model-hero-container,
  .highlighted-model:nth-child(even) .highlighted-model-hero-container {
    position: relative;
    width: 100%;
  }
  .highlighted-model:nth-child(odd) .highlighted-model-hero-container::before,
  .highlighted-model:nth-child(even) .highlighted-model-hero-container::before {
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(255, 255, 255, 0.8) 65%, rgba(255, 255, 255, 0.9) 75%, rgb(255, 255, 255) 100%);
    box-shadow: none;
    height: 50%;
    width: 100%;
  }
  .highlighted-model:nth-child(odd) .highlighted-model-copy,
  .highlighted-model:nth-child(even) .highlighted-model-copy {
    margin-left: 0%;
    padding: 0;
  }
  .highlighted-model-copy {
    float: left;
    display: block;
    margin-right: 3.5786642602%;
    width: 100%;
    min-height: 0;
    padding: 0 0 1em;
    height: auto;
    display: table;
  }
  .highlighted-model-copy:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 650px) {
  .highlighted-model-btn {
    margin-bottom: 32px;
    float: left;
    display: block;
    margin-right: 7.4229717578%;
    width: 100%;
  }
  .highlighted-model-btn:last-child {
    margin-right: 0;
  }
}
/* stylelint-disable-line */
.buy_sell_wow_wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.buy_sell_wow_wrapper .buy_sell_wow {
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  flex: 1;
  padding: 24px;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow {
    padding: 16px 24px;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__inner {
  position: relative;
}
.buy_sell_wow_wrapper .buy_sell_wow__icon {
  display: flex;
}
.buy_sell_wow_wrapper .buy_sell_wow__title {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-bottom: 12px;
}
.buy_sell_wow_wrapper .buy_sell_wow__title h2 {
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
  color: var(--white);
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-2-font-family);
  letter-spacing: var(--heading-2-letter-spacing);
  text-transform: var(--heading-text-transform);
  font-family: var(--font-family-headlines);
  line-height: var(--heading-3-line-height);
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title h2 {
    max-width: 600px;
  }
}
@media screen and (min-width: 1025px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title h2 {
    max-width: 700px;
  }
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title h2 {
    text-align: left;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__title img {
  display: block;
  margin: auto;
  padding: 6px 0;
  max-width: 200px;
}
.buy_sell_wow_wrapper .buy_sell_wow__title .inline-icon {
  margin-right: 8px;
}
.buy_sell_wow_wrapper .buy_sell_wow__sub_title {
  color: var(--white);
}
.buy_sell_wow_wrapper .buy_sell_wow__trust-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.buy_sell_wow_wrapper .buy_sell_wow__title-wow {
  height: 1rem;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title-wow {
    height: 1.5rem;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__title-fullstop {
  margin-left: -8px;
}
.buy_sell_wow_wrapper .buy_sell_wow__action-wrap {
  position: relative;
  margin-top: 16px;
  margin-bottom: 8px;
}
.buy_sell_wow_wrapper .buy_sell_wow__actions {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__actions {
    justify-content: center;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__actions-action {
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
  margin-bottom: 16px;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__actions-action {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__secondary-cta {
  border-width: 2px;
}
.buy_sell_wow_wrapper .buy_sell_wow__actions .btn:first-child {
  margin-bottom: 12px;
}
.buy_sell_wow_wrapper .buy_sell_wow__link-wrap {
  color: var(--white);
}
.buy_sell_wow_wrapper .buy_sell_wow__link-wrap a {
  color: var(--white);
  font-weight: var(--bold);
}