@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
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: "";
  display: block;
  position: absolute;
  top: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
  background-position: top;
  background-repeat: repeat-x;
  height: 60px;
  padding-bottom: 50px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

/* 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 {
  width: 68px;
  height: 48px;
  position: absolute;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: transparent;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>');
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: none;
}

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);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.header-hero {
  background-color: var(--white);
}
@media screen and (max-width: 650px) {
  .header-hero {
    padding-top: 72px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 651px) {
  .header-hero {
    padding-top: 104px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero {
    padding-top: 68px;
  }
}

.header-hero--with-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 1025px) {
  .header-hero__intro {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
  }
}

.header-hero__title {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .header-hero__title {
    flex: 0 0 auto;
    width: calc(75% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

.header-hero__desc {
  margin-top: 8px;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .header-hero__desc {
    flex: 0 0 auto;
    width: calc(75% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

.header-hero__actions-inner {
  margin-top: 32px;
}
@media screen and (min-width: 651px) {
  .header-hero__actions-inner {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .header-hero__actions-inner {
    max-width: 640px;
  }
}

@media screen and (max-width: 650px) {
  .header-hero__actions-inner > .btn {
    width: 100%;
  }
}
@media screen and (min-width: 651px) {
  .header-hero__actions-inner > .btn {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero__actions-inner > .btn {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

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

.header-hero__confidence-strip {
  margin-top: 72px;
}
@media screen and (min-width: 651px) {
  .header-hero__confidence-strip {
    margin-top: 112px;
  }
}

@media screen and (min-width: 1025px) {
  .header-hero--media {
    padding-bottom: 68px;
  }
}
.header-hero--media .header-hero__inner {
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__inner {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__main {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__intro {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__title {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__desc {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__actions-inner > .btn {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 650px) {
  .header-hero__media {
    margin-top: 24px;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .header-hero__media {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero__media {
    flex: 0 0 auto;
    width: calc(37.5% - 24px);
    margin-right: 12px;
    margin-left: 12px;
    margin-left: auto;
  }
}

.header-hero__image-wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header-hero__image-wrap {
    padding-top: 100%;
  }
}

.header-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

@media screen and (max-width: 650px) {
  .header-hero--article {
    padding-top: 24px;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .header-hero--article {
    padding-top: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--article .header-hero__image-wrap {
    padding-top: 56.25%;
  }
}

@media screen and (min-width: 651px) {
  .header-hero--vertical-actions .header-hero__actions-inner {
    flex-direction: column;
    margin-left: -12px;
    margin-right: -12px;
  }
}
.header-hero--vertical-actions .header-hero__actions-inner > .btn + .btn {
  margin-top: 12px;
}
@media screen and (min-width: 651px) {
  .header-hero--vertical-actions .header-hero__actions-inner > .btn {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--vertical-actions .header-hero__actions-inner > .btn {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

.header-hero__video-preview {
  display: block;
  position: relative;
}

.header-hero__video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-hero__video-link-text {
  display: inline-block;
  color: rgba(0, 0, 0, 0.87);
  margin-top: 8px;
  text-decoration: underline;
}

.card-generic {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: var(--white);
  border-radius: 12px;
  height: 100%;
  width: 100%;
  position: relative;
}

.card-generic--valid {
  border-color: var(--green);
}

.card-generic,
.card-generic__media-container {
  display: flex;
  flex-direction: column;
}

.card-generic-link-wrapper {
  width: 100%;
  text-decoration: none;
}
.card-generic-link-wrapper:hover {
  box-shadow: 0 2px 10px 0 rgba(33, 34, 36, 0.3);
}
.card-generic-link-wrapper:hover .card-generic__media,
.card-generic-link-wrapper:hover .card-generic__product-img {
  transform: scale(1.05);
}

.card-generic--tappable {
  box-shadow: 0 2px 4px 0 rgba(33, 34, 36, 0.3);
  border: 0;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-generic__media-container {
  padding-top: 70%;
  position: relative;
}

.card-generic__media {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.card-generic__media-badges,
.card-generic__media-actions,
.card-generic__media-text {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  padding: 16px;
}

.card-generic__media-badges,
.card-generic__media-actions {
  top: 0;
  display: flex;
}

.card-generic__media-actions {
  left: auto;
  display: inline-flex;
}

.card-generic__media-action-link {
  cursor: pointer;
}

.card-generic__media-text {
  color: var(--white);
  text-shadow: 1px 1px 1px rgba(33, 34, 36, 0.3);
  bottom: 0;
}

.card-generic__media-container--with-overlay::before {
  position: absolute;
  background-image: linear-gradient(transparent, var(--black));
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 40%;
  opacity: 0.6;
}
.card-generic__media-container--with-overlay::before {
  z-index: 1;
}

.card-generic__media-title {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  font-weight: 800;
}
@media screen and (min-width: 651px) {
  .card-generic__media-title {
    letter-spacing: -0.25px;
  }
}

.card-generic__media-subtitle {
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: 800;
  letter-spacing: -0.25px;
}
@media screen and (min-width: 651px) {
  .card-generic__media-subtitle {
    letter-spacing: -0.5px;
  }
}

.card-generic__media-description {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
}

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

.card-generic__media-note-link {
  color: var(--white);
}

.card-generic__section {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  width: 100%;
  position: relative;
}
.card-generic__section:first-child {
  padding-top: 16px;
}
.card-generic__section:last-child {
  padding-bottom: 16px;
  flex-grow: 1;
}
.card-generic__section + .card-generic__section::before {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
}

.card-generic__title {
  font-weight: 700;
}

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

.card-generic__sub-title {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.62);
}

.card-generic__pricing {
  font-weight: 700;
}

.card-generic__pricing--strikethrough {
  text-decoration: line-through;
}

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

.card-generic__title--condensable {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.card-generic__subtitle,
.card-generic__option,
.card-generic__pricing-from {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: rgba(0, 0, 0, 0.62);
}

.card-generic__heading {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  color: rgba(0, 0, 0, 0.62);
}

.card-generic__subtitle,
.card-generic__heading,
.card-generic__pricing-from {
  font-weight: 700;
}

.card-generic__subtitle {
  margin-bottom: 8px;
}

.card-generic__vertical-split-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-generic__vertical-split-info .card-generic__pricing {
  margin-bottom: 0;
}

.card-generic__savings {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  font-weight: 700;
  color: var(--green);
}

.card-generic__option {
  display: flex;
  align-items: center;
}

.card-generic__colour-name {
  margin-left: 8px;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.card-generic__ctas {
  margin-top: auto;
  text-align: center;
}
.card-generic__ctas .btn {
  margin-top: 16px;
}
.card-generic__ctas .button-tile {
  text-align: left;
}
.card-generic__ctas .button-tile + .button-tile {
  margin-top: 12px;
}

.card-generic__promotion {
  background-color: var(--grey-extra-light);
  width: 100%;
  display: flex;
  padding: 16px;
}

.card-generic__promotion-text {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  color: rgba(0, 0, 0, 0.87);
  display: flex;
  align-items: center;
  font-weight: 700;
  flex-grow: 1;
  margin-right: 4px;
  min-width: 0;
}

.card-generic__promotion-text-content {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.card-generic__promotion-time-remaining,
.card-generic__promotion-time-remaining-countdown {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-weight: 700;
}

.card-generic__promotion-time-remaining {
  color: var(--red);
}

.card-generic__promotion-time-remaining-countdown {
  color: var(--white);
  background-color: var(--red);
  align-self: center;
  padding: 0 8px;
}

.card-generic__promotion-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.card-generic__promotion-icon-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 32px;
}

.card-generic__illustrated-content {
  display: flex;
  align-items: center;
}

.card-generic-illustrated-content__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.card-generic-illustrated-content__illustration {
  display: flex;
  margin-right: 4px;
}

.card-generic__body {
  display: flex;
  flex-flow: column wrap;
  flex-grow: 1;
  width: 100%;
}

.card-generic__details {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  color: rgba(0, 0, 0, 0.87);
}
.card-generic__details li {
  display: inline;
}
.card-generic__details li + li::before {
  content: " • ";
}
.card-generic__details .badge-arrow {
  margin-right: 12px;
}

.card-generic-review {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  display: flex;
  align-items: center;
}

.card-generic-review__rating {
  margin-left: 8px;
  margin-right: 8px;
}

.card-generic-review__rating,
.card-generic-review__link {
  padding-top: 4px;
}

.card-generic__pricing-table {
  border: 0;
  display: table;
  width: 100%;
}
.card-generic__pricing-table th {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: 400;
  text-align: left;
}
.card-generic__pricing-table td,
.card-generic__pricing-table th {
  padding: 0;
}
.card-generic__pricing-table tr:nth-child(odd) td {
  background-color: transparent;
}

.card-generic__icon-details {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.card-generic__icon-details .icon-disc-container {
  margin-right: 12px;
}

.card-generic__section .card-generic-review--direction-column {
  flex-direction: column;
  align-items: flex-start;
}

.card-generic-review__score-with-rating {
  display: flex;
  align-items: center;
}

.carousel {
  max-width: 1188px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  position: relative;
}
.carousel::after {
  clear: both;
  content: "";
  display: block;
}
@media screen and (min-width: 651px) {
  .carousel {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.carousel__activator {
  display: none;
}

.carousel__controls {
  display: none;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: -8px;
  left: -8px;
  bottom: 0;
}
.carousel__controls:first-of-type {
  justify-content: flex-end;
}
.carousel__controls:last-of-type {
  justify-content: flex-start;
}

.carousel__control {
  cursor: pointer;
  z-index: 1;
}

.carousel__control--backward .inline-icon {
  margin-right: 2px;
}

.carousel__control--forward .inline-icon {
  margin-left: 2px;
}

.carousel__controls--stick-to-card,
.carousel__controls--stick-to-image {
  right: 0;
  left: 0;
}

.carousel__controls--stick-to-image {
  height: 245px;
}

.carousel-arrow,
.slider-arrow {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 0 2px 10px 0 rgba(33, 34, 36, 0.3);
  height: 44px;
  justify-content: center;
  transition: 0.3s all;
  width: 44px;
}
.carousel-arrow:hover,
.slider-arrow:hover {
  transform: scale(1.05);
}

.carousel__activator:nth-of-type(1):checked ~ .carousel__controls:nth-of-type(1) {
  display: flex;
}

.carousel__activator:nth-of-type(1):checked ~ .carousel__screen .carousel__track {
  transform: translateX(0%);
}

.carousel__activator:nth-of-type(2):checked ~ .carousel__controls:nth-of-type(2) {
  display: flex;
}

.carousel__activator:nth-of-type(2):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-100%);
}

.carousel__activator:nth-of-type(3):checked ~ .carousel__controls:nth-of-type(3) {
  display: flex;
}

.carousel__activator:nth-of-type(3):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-200%);
}

.carousel__activator:nth-of-type(4):checked ~ .carousel__controls:nth-of-type(4) {
  display: flex;
}

.carousel__activator:nth-of-type(4):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-300%);
}

.carousel__activator:nth-of-type(5):checked ~ .carousel__controls:nth-of-type(5) {
  display: flex;
}

.carousel__activator:nth-of-type(5):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-400%);
}

.carousel__activator:nth-of-type(6):checked ~ .carousel__controls:nth-of-type(6) {
  display: flex;
}

.carousel__activator:nth-of-type(6):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-500%);
}

.carousel__activator:nth-of-type(7):checked ~ .carousel__controls:nth-of-type(7) {
  display: flex;
}

.carousel__activator:nth-of-type(7):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-600%);
}

.carousel__activator:nth-of-type(8):checked ~ .carousel__controls:nth-of-type(8) {
  display: flex;
}

.carousel__activator:nth-of-type(8):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-700%);
}

.carousel__activator:nth-of-type(9):checked ~ .carousel__controls:nth-of-type(9) {
  display: flex;
}

.carousel__activator:nth-of-type(9):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-800%);
}

.carousel__activator:nth-of-type(10):checked ~ .carousel__controls:nth-of-type(10) {
  display: flex;
}

.carousel__activator:nth-of-type(10):checked ~ .carousel__screen .carousel__track {
  transform: translateX(-900%);
}

.carousel__screen {
  overflow: hidden;
  margin-left: -16px;
  margin-right: -16px;
}

.carousel__track {
  transition: transform 0.3s ease;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0;
  display: flex;
}

.carousel__item {
  padding-left: 16px;
  padding-right: 16px;
  vertical-align: top;
  white-space: normal;
  flex-shrink: 0;
}
.carousel__item .card {
  margin-bottom: 0;
}

.carousel__item--desktop-in-1 {
  width: 100%;
}

.carousel__item--desktop-in-2 {
  width: 50%;
}

.carousel__item--desktop-in-3 {
  width: 33.3333333333%;
}

.carousel__item--desktop-in-4 {
  width: 25%;
}

@media screen and (max-width: 1024px) {
  .carousel {
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
  }
  .carousel__activator:nth-of-type(n):checked ~ .carousel__controls:nth-of-type(n) {
    display: none;
  }
  .carousel__activator:nth-of-type(n):checked ~ .carousel__screen .carousel__track {
    transform: none;
  }
  .carousel__screen {
    margin-left: 0;
    margin-right: 0;
  }
  .carousel__track {
    overflow-x: auto;
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
  }
  .carousel__item .card {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .carousel__item--tablet-in-1 {
    width: 90%;
  }
  .carousel__item--tablet-in-2 {
    width: 45%;
  }
  .carousel__item--tablet-in-3 {
    width: 30%;
  }
}
@media screen and (max-width: 650px) {
  .carousel__track {
    padding-left: 0;
    padding-right: 0;
  }
  .carousel__item .card {
    padding-left: 0;
    padding-right: 0;
  }
  .carousel__item--mobile-in-1 {
    width: 75%;
  }
  .carousel__item--mobile-in-2 {
    width: 37.5%;
  }
  .carousel__item--mobile-in-3 {
    width: 25%;
  }
}
.makes-models-menu__spinner {
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
}
.makes-models-menu__list-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.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 rgba(0, 0, 0, 0.12);
}

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

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

.makes-models-menu__recommendation-name {
  font-weight: 700;
}

.makes-models-menu__recommendation-subheading {
  color: rgba(0, 0, 0, 0.62);
}

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

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

.makes-models-menu__link {
  color: rgba(0, 0, 0, 0.87);
  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: rgba(0, 0, 0, 0.87);
  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);
}

.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: rgba(0, 0, 0, 0.62);
}

.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: 800;
  letter-spacing: -0.25px;
}
@media screen and (min-width: 651px) {
  .wowscore--large .wowscore__numerator {
    letter-spacing: -0.5px;
  }
}

.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: 700;
  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 {
  border-radius: 50%;
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.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--x-small {
  min-width: 16px;
  height: 16px;
}

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

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

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

.blog-post {
  background-color: #fafafa;
}

.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;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 788px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 651px) {
  .blog-post .blog-post__content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.blog-post__content.cms-generated-content {
  max-width: 1188px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  flex-direction: column-reverse;
}
.blog-post__content.cms-generated-content::after {
  clear: both;
  content: "";
  display: block;
}
@media screen and (min-width: 651px) {
  .blog-post__content.cms-generated-content {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@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: 700;
  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: rgba(0, 0, 0, 0.62);
  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: 700;
}

@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 rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
}

.hightlighted-model-price {
  font-weight: 700;
}

.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 rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

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

.sign-up-banner-v2 {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}
@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: 800;
  letter-spacing: -0.5px;
}
@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: 800;
  letter-spacing: -0.5px;
}
@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%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sign-up-banner-v2__model-info-prices-list {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  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);
  }
}

@media screen and (min-width: 1025px) {
  .sign-up-banner-v2-container--condensed .sign-up-banner-v2 {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 651px) {
  .sign-up-banner-v2-container--condensed .sign-up-banner-v2 {
    padding: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .sign-up-banner-v2-container--condensed .sign-up-banner-v2__model-info {
    min-width: 45%;
  }
}
@media screen and (min-width: 1025px) and (min-width: 651px) {
  .sign-up-banner-v2-container--condensed .sign-up-banner-v2__model-info {
    margin-right: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .sign-up-banner-v2-container--condensed .sign-up-banner-v2__usp-title {
    font-size: var(--heading-3-font-size);
    line-height: var(--heading-3-line-height);
    font-weight: 800;
    letter-spacing: -0.25px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 651px) {
  .sign-up-banner-v2-container--condensed .sign-up-banner-v2__usp-title {
    letter-spacing: -0.5px;
  }
}
@media screen and (min-width: 1025px) {
  .sign-up-banner-v2-container--condensed li.sign-up-banner-v2__usp-list-item {
    font-size: var(--body-medium-font-size);
    line-height: var(--body-medium-line-height);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .sign-up-banner-v2-container--condensed li.sign-up-banner-v2__usp-list-item {
    padding-left: 32px;
  }
  .sign-up-banner-v2-container--condensed li.sign-up-banner-v2__usp-list-item:before {
    width: 22px;
    height: 22px;
  }
}

.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;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.social-share-button .stButton {
  margin: 0;
}
.social-share-button .stLarge {
  height: auto !important;
  width: auto !important;
}

.social-share-button__logo {
  width: 24px;
  height: 24px;
}

.social-share-button--facebook {
  border-color: #3b5998;
  fill: #3b5998;
}

.social-share-button--twitter {
  border-color: #1da1f2;
  fill: #1da1f2;
}

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

.share-review__link {
  display: inline-block;
  padding: 4px;
}

.share-review__link--facebook {
  background-color: #3b5998;
}

.share-review__link--twitter {
  background-color: #1da1f2;
}

.share-review__logo {
  display: block;
  fill: #fff;
  height: 24px;
  width: 24px;
}

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

.highlighted-model-hero {
  display: block;
  width: 50%;
  position: absolute;
  min-height: 160px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.highlighted-model-hero: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:nth-child(odd) .highlighted-model-hero {
  right: 0;
}
.highlighted-model:nth-child(odd) .highlighted-model-hero: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 {
  left: 0;
}
.highlighted-model:nth-child(even) .highlighted-model-hero: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 {
  display: block;
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
.link-back-to-blog::after {
  clear: both;
  content: "";
  display: block;
}
.link-back-to-blog:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .highlighted-model {
    border: none;
    margin-bottom: 32px;
  }
  .highlighted-model-hero {
    height: 40vw;
  }
  .highlighted-model:nth-child(odd) .highlighted-model-hero,
  .highlighted-model:nth-child(even) .highlighted-model-hero {
    position: relative;
    width: 100%;
  }
  .highlighted-model:nth-child(odd) .highlighted-model-hero:before,
  .highlighted-model:nth-child(even) .highlighted-model-hero: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 {
    float: left;
    display: block;
    margin-right: 7.4229717578%;
    width: 100%;
    margin-bottom: 32px;
  }
  .highlighted-model-btn:last-child {
    margin-right: 0;
  }
}
/* stylelint-disable-line */
@keyframes hero-background-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-background-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.buy_sell_wow_wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.buy_sell_wow_wrapper .buy_sell_wow {
  background: linear-gradient(116.7deg, #123BF5 18.73%, #0451ce 63.32%);
  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 16px 24px;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(116.7deg, #0451ce 18.73%, #123BF5 63.32%);
  opacity: 0;
  animation: hero-background-fadein infinite alternate 2.5s ease-out;
}
.buy_sell_wow_wrapper .buy_sell_wow__background-o {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.buy_sell_wow_wrapper .buy_sell_wow__background-o::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://carwow-photos.s3.eu-west-1.amazonaws.com/homepage/hero/o-layer-one.svg");
  background-repeat: no-repeat;
  background-size: 2700px;
  background-position: bottom -384px right calc(50% + 386px);
  animation: hero-background-fadeout infinite alternate 2.5s ease-out;
}
.buy_sell_wow_wrapper .buy_sell_wow__background-o::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://carwow-photos.s3.eu-west-1.amazonaws.com/homepage/hero/o-layer-two.svg");
  background-repeat: no-repeat;
  background-size: 2700px;
  background-position: bottom -384px right calc(50% + 386px);
  opacity: 0;
  animation: hero-background-fadein infinite alternate 2.5s ease-out;
}
.buy_sell_wow_wrapper .buy_sell_wow__inner {
  position: relative;
}
.buy_sell_wow_wrapper .buy_sell_wow__title h2 {
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  color: #fff;
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  font-weight: 800;
  letter-spacing: -0.5px;
}
@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__sub_title {
  color: #fff;
}
.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: 28px;
}
.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;
}
@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;
}