@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
:root {
  --blue: #0b66fa;
  --blue-dark: #0451ce;
  --blue-extra-dark: #022a6a;
  --blue-light: #3d85fb;
  --blue-extra-light: #ecf3ff;
  --carwow-blue: #00a4ff;
  --carwow-blue-dark: #0083cc;
  --carwow-blue-extra-dark: #004266;
  --carwow-blue-light: #33b6ff;
  --carwow-blue-extra-light: #e6f6ff;
  --green: #03a561;
  --green-dark: #02844e;
  --green-extra-dark: #014227;
  --green-light: #35b781;
  --green-extra-light: #e1f4ec;
  --red: #f04813;
  --red-dark: #c4380c;
  --red-extra-dark: #942b09;
  --red-light: #f36d43;
  --red-extra-light: #feefeb;
  --yellow: #fed500;
  --yellow-dark: #cbaa00;
  --yellow-extra-dark: #655500;
  --yellow-light: #ffde32;
  --yellow-extra-light: #fffbe5;
  --orange: #ff9800;
  --orange-dark: #cc7a00;
  --orange-extra-dark: #663d00;
  --orange-light: #ffad33;
  --orange-extra-light: #fff5e6;
  --black: #212224;
  --black-rgb: 33, 34, 36;
  --grey: #9e9e9e;
  --grey-dark: #616161;
  --grey-light: #e0e0e0;
  --grey-extra-light: #fafafa;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --text-black: rgba(0, 0, 0, 0.87);
  --text-black-dim: rgba(0, 0, 0, 0.62);
  --text-black-disabled: rgba(0, 0, 0, 0.32);
  --text-white: #fff;
  --text-white-dim: rgba(255, 255, 255, 0.62);
  --text-white-disabled: rgba(255, 255, 255, 0.32);
  --disabled-bg: rgba(0, 0, 0, 0.04);
  --disabled-border: rgba(0, 0, 0, 0.07);
  --border-colour: rgba(0, 0, 0, 0.12);
  --border-colour-hover: rgba(0, 0, 0, 0.87);
  --shadow-colour: rgba(33, 34, 36, 0.3);
  --shadow-light-colour: rgba(33, 34, 36, 0.07);
  --shadow: 0 2px 10px 0 rgba(33, 34, 36, 0.3);
  --text-shadow-small: 1px 1px 1px rgba(33, 34, 36, 0.3);
  --text-shadow-large: 0 0 12px #212224;
  --box-shadow-active: 0 0 0 1px #0b66fa;
  --box-shadow-focus: 0 0 0 4px #fed500;
  --colour-twitter: #1da1f2;
  --colour-facebook: #3b5998;
  --colour-google-blue: #4285f4;
  --colour-whatsapp: #25d366;
}

:root {
  --caption-font-size: 12px;
  --caption-line-height: 18px;
  --body-small-font-size: 14px;
  --body-small-line-height: 22px;
  --body-medium-font-size: 16px;
  --body-medium-line-height: 24px;
  --body-large-font-size: 18px;
  --body-large-line-height: 28px;
  --heading-4-font-size: 18px;
  --heading-4-line-height: 30px;
  --heading-3-font-size: 20px;
  --heading-3-line-height: 24px;
  --heading-2-font-size: 24px;
  --heading-2-line-height: 28px;
  --heading-1-font-size: 32px;
  --heading-1-line-height: 34px;
}
@media screen and (min-width: 651px) {
  :root {
    --heading-4-font-size: 20px;
    --heading-4-line-height: 32px;
    --heading-3-font-size: 22px;
    --heading-3-line-height: 26px;
    --heading-2-font-size: 28px;
    --heading-2-line-height: 32px;
    --heading-1-font-size: 50px;
    --heading-1-line-height: 52px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --heading-3-font-size: 24px;
    --heading-3-line-height: 32px;
    --heading-2-font-size: 32px;
    --heading-2-line-height: 42px;
    --heading-1-font-size: 56px;
    --heading-1-line-height: 60px;
  }
}

.content-separator::after {
  content: " •";
}
.content-separator:last-child::after {
  content: " ";
}

.no-scroll {
  height: 100%;
  overflow: hidden;
}

.hidden-content {
  display: none;
}

.value,
.price--no-wrap,
.text--no-wrap {
  white-space: nowrap;
}

.centred-outer {
  display: flex;
  justify-content: center;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

@font-face {
  font-family: proxima-nova;
  src: url("/assets/proximanova-bold-d982bdc7ff16ca5274486f212fd53dc44e8e9116.woff2") format("woff2"), url("/assets/proximanova-bold-b5d60c41ec17bf479be5852740987e71e3f33b35.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: proxima-nova;
  src: url("/assets/proximanova-extrabold-8b6dc572dfda456014b09a82ce6c9ed0cb7858ec.woff2") format("woff2"), url("/assets/proximanova-extrabold-9c2d76897740ba8eec271af70f240991f7ef288b.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: proxima-nova;
  src: url("/assets/proximanova-regular-b48ad59f72608fe54621259471151e74ae55a2a9.woff2") format("woff2"), url("/assets/proximanova-regular-f3b52ece3049d22420571f5c89291324728b49ca.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: proxima-nova;
  src: url("/assets/proximanova-italic-4bdc43403c8d01bbf22f14bfc04c079348073ce2.woff2") format("woff2"), url("/assets/proximanova-italic-17400aed1725007b224b8a88a804a07d10f03ea2.woff") format("woff");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}
body,
button {
  font-family: proxima-nova, "Segoe UI", Roboto, "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
}

p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

html,
li,
blockquote,
pre,
code {
  margin: 0;
}

p,
ul,
ol {
  margin: 32px 0;
}

h1,
.as-h1 {
  font-size: var(--heading-1-font-size);
  line-height: var(--heading-1-line-height);
  font-weight: 800;
  letter-spacing: -1px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 32px;
}

h2,
.as-h2 {
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 16px;
}

h3,
.as-h3 {
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: 800;
  letter-spacing: -0.25px;
  margin-bottom: 24px;
}
@media screen and (min-width: 651px) {
  h3,
  .as-h3 {
    letter-spacing: -0.5px;
  }
}

h4,
.as-h4 {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  font-weight: 800;
  margin-bottom: 24px;
}
@media screen and (min-width: 651px) {
  h4,
  .as-h4 {
    letter-spacing: -0.25px;
  }
}

h5,
.as-h5 {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  margin-bottom: 24px;
}

h6,
.as-h6 {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  margin-bottom: 32px;
}

.cms-generated-content h1 {
  margin-top: 32px;
}
.cms-generated-content h2 {
  margin-top: 16px;
}
.cms-generated-content h3,
.cms-generated-content h4,
.cms-generated-content h5 {
  margin-top: 48px;
}
.cms-generated-content h6 {
  margin-top: 40px;
}

small,
.small {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
}

a {
  color: var(--blue);
}

.heading-title {
  margin-bottom: 0;
}

.heading-top,
.heading-sub-title {
  margin-top: 0;
}

.secondary {
  color: rgba(0, 0, 0, 0.62);
}

.highlight {
  color: var(--blue);
}

@media screen and (max-width: 650px) {
  h1 {
    margin: 48px 0 32px 0;
  }
  h2 {
    margin: 32px 0 32px 0;
  }
  h3 {
    margin: 32px 0 32px 0;
  }
  h4 {
    margin: 32px 0;
  }
}
.strikethrough {
  text-decoration: line-through;
}

body {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizespeed;
  background-color: var(--white);
}

img {
  height: auto;
  max-width: 100%;
}
img:not([src], [srcset]) {
  visibility: hidden;
}

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

.grid-container-reduced {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 788px;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 651px) {
  .grid-container-reduced {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.footer {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background-color: var(--white);
  flex-shrink: 0;
}
@media screen and (max-width: 650px) {
  .footer {
    padding-bottom: 60px;
  }
}

.footer__content-wrapper--spaced {
  padding-bottom: 16px;
}

.footer__featured .featured-on {
  padding-left: 0;
  padding-right: 0;
}

.footer__column-container {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
@media screen and (min-width: 651px) {
  .footer__column-container {
    justify-content: space-between;
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 650px) {
  .footer__column {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .footer__column {
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 650px) {
  .footer__column--help {
    flex: 0 0 auto;
    width: calc(100% - 24px);
    margin-right: 12px;
    margin-left: 12px;
    padding-bottom: 32px;
  }
}

.footer__social-media-logo {
  height: 100%;
  width: 100%;
}

.footer__international-site-list {
  display: flex;
  margin-bottom: 32px;
}

.footer__international-site {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  margin-right: 16px;
  display: flex;
  padding-left: 0;
}

.footer__international-site-link {
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.87);
}

.footer__international-site-icon {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  margin-right: 4px;
  background-size: contain;
  background-position: center;
  -webkit-clip-path: circle();
          clip-path: circle();
  height: 16px;
  width: 24px;
}

.footer__links {
  padding-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 1025px) {
  .footer__links {
    padding-top: 40px;
    padding-bottom: 32px;
  }
}

.footer__link-list {
  margin: 0;
  list-style-type: none;
}

.footer__list-item {
  padding-left: 0;
  padding-bottom: 8px;
}
.footer__list-item a {
  color: rgba(0, 0, 0, 0.87);
}

.footer__social-proof {
  width: 100%;
  margin-top: 32px;
}
@media screen and (min-width: 651px) {
  .footer__social-proof {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__social-proof {
    margin-top: 0;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .footer__social-proof .trustpilot {
    width: auto;
  }
}

.footer__tuv-logo {
  display: block;
  max-width: 130px;
}
@media screen and (max-width: 650px) {
  .footer__tuv-logo {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .footer__tuv-logo {
    margin-right: 32px;
  }
}
@media screen and (min-width: 651px) {
  .footer__tuv-logo {
    margin-left: 0;
  }
}
@media screen and (min-width: 1025px) {
  .footer__tuv-logo {
    margin-bottom: 28px;
  }
}

.footer__social-media-link {
  color: rgba(0, 0, 0, 0.62);
  margin-right: 24px;
  text-decoration: none;
}
.footer__social-media-link:last-child {
  margin-right: 0;
}

.footer-smallprint {
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer-smallprint__copyright,
.footer-smallprint__legal {
  color: rgba(0, 0, 0, 0.62);
}

.footer-smallprint__legal {
  margin-bottom: 32px;
}
@media screen and (min-width: 651px) {
  .footer-smallprint__legal {
    display: flex;
    justify-content: space-between;
  }
}

.footer-smallprint__legal--align-right {
  justify-content: flex-end;
}

.footer-smallprint__legal-link {
  color: rgba(0, 0, 0, 0.87);
  display: inline-block;
}
.footer-smallprint__legal-link:not(:last-child) {
  margin-right: 12px;
}

.footer-fca {
  color: rgba(0, 0, 0, 0.62);
  margin-top: 0;
  margin-bottom: 0;
}
.footer-fca a {
  color: rgba(0, 0, 0, 0.62);
  text-decoration: underline;
}

@media screen and (max-width: 650px) {
  .footer-smallprint__copyright {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 651px) {
  .footer-smallprint__copyright {
    margin-right: 24px;
  }
}

img[src*="r.turn.com"] {
  display: flex;
  height: 0;
}

.contact-details {
  margin-bottom: 24px;
}

.contact-details__title {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.contact-details__time {
  margin-bottom: 12px;
  font-weight: 400;
}

.contact-details__links {
  list-style: none;
  margin-top: 0;
  margin-bottom: 16px;
}

.contact-details__links-item {
  padding-left: 0;
}

.contact-details__info {
  color: rgba(0, 0, 0, 0.62);
}

html[data-useragent*=CarwowApp] {
  height: 100%;
}
html[data-useragent*=CarwowApp] [data-mobile-app=hide] {
  display: none;
}
html[data-useragent*=CarwowApp] body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
html[data-useragent*=CarwowApp] .page-content {
  flex: 1 0 auto;
}

.badge {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  line-height: normal;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  height: 24px;
  border-radius: 16px;
  padding-left: 8px;
  padding-right: 8px;
  min-width: 24px;
  text-align: center;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--blue);
}

.badge--small {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  padding-left: 4px;
  padding-right: 4px;
  height: 20px;
  min-width: 20px;
}

.badge--outlined {
  border: 1px solid var(--blue);
  color: var(--blue);
  background-color: var(--white);
}

.badge-wide {
  vertical-align: baseline;
}

.badge--featured {
  background-color: var(--orange);
}
.badge--featured.badge--outlined {
  border: 1px solid var(--orange);
  color: var(--orange);
  background-color: var(--white);
}

.badge--red,
.badge-notification {
  background-color: var(--red);
}
.badge--red.badge--outlined,
.badge-notification.badge--outlined {
  border: 1px solid var(--red);
  color: var(--red);
  background-color: var(--white);
}

.badge--yellow {
  background-color: var(--yellow);
}
.badge--yellow.badge--outlined {
  border: 1px solid var(--yellow);
  color: var(--yellow);
  background-color: var(--white);
}

.badge--grey {
  background-color: var(--grey);
}
.badge--grey.badge--outlined {
  border: 1px solid var(--grey);
  color: rgba(0, 0, 0, 0.62);
  background-color: var(--white);
}

.badge--green {
  background-color: var(--green);
}
.badge--green.badge--outlined {
  border: 1px solid var(--green);
  color: var(--green);
  background-color: var(--white);
}

.badge--blue {
  background-color: var(--blue);
}
.badge--blue.badge--outlined {
  border: 1px solid var(--blue);
  color: var(--blue);
  background-color: var(--white);
}

.badge--black {
  background-color: var(--black);
}
.badge--black.badge--outlined {
  border: 1px solid var(--black);
  color: rgba(0, 0, 0, 0.87);
  background-color: var(--white);
}

.badge--orange-extra-light {
  background-color: var(--orange-extra-light);
  color: var(--orange-extra-dark);
}

.badge--blue-extra-light {
  color: var(--blue-extra-dark);
  background-color: var(--blue-extra-light);
}

.badge--green-extra-light {
  color: var(--green-extra-dark);
  background-color: var(--green-extra-light);
}

.badge--yellow-extra-light {
  background-color: var(--yellow-extra-light);
  color: var(--yellow-extra-dark);
}

.badge--red-extra-light {
  color: var(--red-extra-dark);
  background-color: var(--red-extra-light);
}

.badge--grey-extra-light {
  color: rgba(0, 0, 0, 0.87);
  background-color: var(--grey-extra-light);
}

.badge--label {
  border-radius: 12px;
}

.badge-arrow {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-left: 4px;
  margin-right: 8px;
  color: var(--white);
  text-transform: uppercase;
}
.badge-arrow::before {
  padding-left: 4px;
}
.badge-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 8px solid;
}

.badge-arrow--grade-a-plus-plus-plus {
  background-color: #42944a;
}
.badge-arrow--grade-a-plus-plus-plus::after {
  border-left-color: #42944a;
}

.badge-arrow--grade-a-plus-plus {
  background-color: #42944a;
}
.badge-arrow--grade-a-plus-plus::after {
  border-left-color: #42944a;
}

.badge-arrow--grade-a-plus {
  background-color: #6aac46;
}
.badge-arrow--grade-a-plus::after {
  border-left-color: #6aac46;
}

.badge-arrow--grade-a {
  background-color: #cad444;
}
.badge-arrow--grade-a::after {
  border-left-color: #cad444;
}

.badge-arrow--grade-b {
  background-color: #cad444;
}
.badge-arrow--grade-b::after {
  border-left-color: #cad444;
}

.badge-arrow--grade-c {
  background-color: #fcee50;
}
.badge-arrow--grade-c::after {
  border-left-color: #fcee50;
}

.badge-arrow--grade-d {
  background-color: #dc6e2d;
}
.badge-arrow--grade-d::after {
  border-left-color: #dc6e2d;
}

.badge-arrow--grade-e {
  background-color: #d02e26;
}
.badge-arrow--grade-e::after {
  border-left-color: #d02e26;
}

.badge-arrow--grade-f {
  background-color: #d02e26;
}
.badge-arrow--grade-f::after {
  border-left-color: #d02e26;
}

.badge-arrow--grade-g {
  background-color: #d02e26;
}
.badge-arrow--grade-g::after {
  border-left-color: #d02e26;
}

.badge-arrow--grade-missing {
  background-color: #212224;
}
.badge-arrow--grade-missing::after {
  border-left-color: #212224;
}

button,
.clickable {
  cursor: pointer;
}

.btn {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  padding: 11px;
  color: var(--blue);
  background-color: var(--white);
  font-weight: 700;
  min-width: 180px;
  text-decoration: none;
  transition: background-color 0.15s, box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}
.btn:hover, .btn:focus, .btn:active {
  text-decoration: none;
}
.btn:hover, .btn:focus {
  color: var(--blue-extra-dark);
  border: 1px solid var(--blue-extra-dark);
}
.btn:active {
  transform: scale(0.95);
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 4px #fed500;
}
.btn:disabled, .btn.btn--disabled {
  cursor: not-allowed;
}
.btn:disabled, .btn:disabled:hover, .btn:disabled:focus, .btn:disabled:active, .btn.btn--disabled, .btn.btn--disabled:hover, .btn.btn--disabled:focus, .btn.btn--disabled:active {
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.32);
}
.btn:disabled:active, .btn.btn--disabled:active {
  transform: none;
}

.btn-action {
  background-color: var(--blue);
  color: var(--white);
  border: 0;
  padding: 12px;
}
.btn-action:hover, .btn-action:focus {
  color: var(--white);
  background-color: var(--carwow-blue);
  border: 0;
}
.btn-action:disabled, .btn-action:disabled:hover, .btn-action:disabled:focus, .btn-action:disabled:active, .btn-action.btn--disabled, .btn-action.btn--disabled:hover, .btn-action.btn--disabled:focus, .btn-action.btn--disabled:active {
  color: var(--white);
  border: 0;
  background-color: #bbd0fd;
}

.btn.btn-secondary,
.btn.btn-transparent {
  padding: 11px;
}

.btn--success {
  background-color: var(--green);
  color: var(--white);
  border: 0;
  padding: 12px;
}
.btn--success:hover, .btn--success:focus {
  background-color: var(--green-dark);
  color: var(--white);
  border: 0;
}
.btn--success:disabled, .btn--success:disabled:hover, .btn--success:disabled:focus, .btn--success:disabled:active, .btn--success.btn--disabled, .btn--success.btn--disabled:hover, .btn--success.btn--disabled:focus, .btn--success.btn--disabled:active {
  color: var(--white);
  border: 0;
  background-color: #b9e2cf;
}

.btn--negative {
  background-color: var(--red);
  color: var(--white);
  border: 0;
  padding: 12px;
}
.btn--negative:hover, .btn--negative:focus {
  background-color: var(--red-dark);
  color: var(--white);
  border: 0;
}
.btn--negative:disabled, .btn--negative:disabled:hover, .btn--negative:disabled:focus, .btn--negative:disabled:active, .btn--negative.btn--disabled, .btn--negative.btn--disabled:hover, .btn--negative.btn--disabled:focus, .btn--negative.btn--disabled:active {
  color: var(--white);
  border: 0;
  background-color: #fac8bd;
}

.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: var(--white);
  color: rgba(0, 0, 0, 0.87);
}
.btn-secondary:hover, .btn-secondary:focus {
  color: rgba(0, 0, 0, 0.87);
  background-color: var(--white);
  border-color: rgba(0, 0, 0, 0.87);
}
.btn-secondary:disabled, .btn-secondary:disabled:hover, .btn-secondary:disabled:focus, .btn-secondary:disabled:active, .btn-secondary.btn--disabled, .btn-secondary.btn--disabled:hover, .btn-secondary.btn--disabled:focus, .btn-secondary.btn--disabled:active {
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.32);
}

.btn-transparent {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-transparent:hover, .btn-transparent:focus {
  background-color: rgba(var(--white-rgb), 0.2);
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-transparent:active {
  border: 1px solid var(--white);
  background-color: rgba(var(--white-rgb), 0.4);
}

.btn-white {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 1px 4px 0 rgba(33, 34, 36, 0.07);
}
.btn-white:hover, .btn-white:focus {
  color: rgba(0, 0, 0, 0.87);
  background-color: var(--grey-extra-light);
}
.btn-white:active {
  background-color: var(--grey-extra-light);
}

.btn-full-width {
  width: 100%;
}

.btn-title,
.btn-subtitle,
.btn-line {
  display: block;
  text-align: center;
}

.btn-subtitle {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  opacity: 0.7;
  line-height: 20px;
  margin-bottom: 4px;
}

.btn-line {
  line-height: 24px;
}

.btn-short,
.btn-short.btn-secondary {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  padding: 9px 11px;
}

.btn-short.btn--success,
.btn-short.btn--negative,
.btn-short.btn-action {
  padding: 10px 12px;
}

.btn-extra-short.btn--disabled,
.btn-extra-short.btn-secondary,
.btn-extra-short {
  padding: 4px 8px;
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  min-width: 64px;
}

.btn-icon-text {
  flex-direction: row;
}
.btn-icon-text .inline-icon {
  margin-right: 8px;
}
.btn-icon-text span + .inline-icon {
  margin-left: 8px;
  margin-right: 0;
}

.btn.btn--arrow {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke-miterlimit='10' d='M7 2l10 10L7 22' stroke-linecap='round' stroke-linejoin='round' vector-effect='non-scaling-stroke' fill='none' stroke-width='2px' stroke='%230b66fa'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px 24px;
  background-position: right 14px center;
  padding-right: 35px;
  padding-left: 35px;
}
.btn.btn--arrow:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke-miterlimit='10' d='M7 2l10 10L7 22' stroke-linecap='round' stroke-linejoin='round' vector-effect='non-scaling-stroke' fill='none' stroke-width='2px' stroke='%23022a6a'/%3E%3C/svg%3E");
}

.btn-action.btn--arrow, .btn-action.btn--arrow:hover,
.btn-transparent.btn--arrow,
.btn-transparent.btn--arrow:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke-miterlimit='10' d='M7 2l10 10L7 22' stroke-linecap='round' stroke-linejoin='round' vector-effect='non-scaling-stroke' fill='none' stroke-width='2px' stroke='%23fff'/%3E%3C/svg%3E");
}

.btn-secondary.btn--arrow, .btn-secondary.btn--arrow:hover,
.btn-white.btn--arrow,
.btn-white.btn--arrow:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke-miterlimit='10' d='M7 2l10 10L7 22' stroke-linecap='round' stroke-linejoin='round' vector-effect='non-scaling-stroke' fill='none' stroke-width='2px' stroke='%23212224'/%3E%3C/svg%3E");
}

@media screen and (max-width: 1024px) {
  .btn {
    min-width: 0;
  }
}
.btn-link {
  border: none;
  outline: 0;
  background: transparent;
  padding: 0;
  color: var(--blue);
}
.btn-link:hover {
  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;
}

.card-generic__features {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  margin-top: 0;
  margin-bottom: 0;
}

.card-generic-features__list-item {
  color: rgba(0, 0, 0, 0.62);
  display: inline-block;
  padding-left: 0;
}
.card-generic-features__list-item + .card-generic-features__list-item::before {
  content: " • ";
}

.card-generic__product-branded-name {
  display: flex;
  margin-bottom: 8px;
}

.card-generic__product-full-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-generic__product-brand-logo {
  display: flex;
  margin-right: 16px;
}

.card-generic__product-brand-name,
.card-generic__product-name {
  font-weight: 700;
}

.card-generic__product-brand-name {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: rgba(0, 0, 0, 0.62);
}

.card-generic__product-name {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
}

.card-generic__product-img-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 70%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.card-generic__product-img-container .badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.card-generic__product-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-generic__product-img,
.card-generic__product-rounded-shadow {
  position: absolute;
  z-index: -1;
}

.card-generic__product-rounded-shadow {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.card-generic__product-rounded-shadow::before {
  content: "";
  background-color: var(--grey-extra-light);
  height: 50%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@supports (filter: blur()) {
  .card-generic__product-rounded-shadow::after {
    content: "";
    filter: blur(20px);
    background: var(--grey);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 40px;
    z-index: 0;
  }
}

.card-generic__product-img-missing {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-generic__product-img-legal {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  color: rgba(0, 0, 0, 0.62);
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.card-generic__top-strip {
  font-weight: 700;
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 4px 12px;
  z-index: 1;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-generic--valid .card-generic__top-strip {
  background-color: var(--green-extra-light);
  color: var(--green-extra-dark);
}

.card-generic--neutral .card-generic__top-strip {
  background-color: var(--grey-extra-light);
  color: rgba(0, 0, 0, 0.62);
}

.card-generic__table {
  border: 0;
  display: table;
  width: 100%;
}
.card-generic__table tbody tr:nth-child(odd) td {
  background-color: var(--white);
}

.card-generic__table-row {
  border: 0;
}

.card-generic__table-heading,
.card-generic__table-cell {
  display: table-cell;
}

.card-generic__table-heading {
  font-weight: 400;
  padding: 0;
  text-align: left;
}

.card-generic__table-cell {
  padding: 0;
  text-align: right;
  font-weight: 700;
}

.card-generic__table-cell--striken-through {
  text-decoration: line-through;
}

.section-content.related-content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  float: none;
  padding-top: 32px;
  padding-bottom: 32px;
}
.section-content.related-content:last-of-type {
  border-bottom: 0;
}

.cards-container {
  display: block;
}
.cards-container::after {
  clear: both;
  content: "";
  display: block;
}

carwow-remote-content {
  display: block;
}

.checkbox {
  display: inline-flex;
  align-items: center;
}

.checkbox > input[type=checkbox] {
  margin-right: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox > label {
  cursor: pointer;
}

@supports (-webkit-appearance: none) {
  .checkbox:focus {
    outline: none;
  }
  .checkbox > input[type=checkbox] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    height: 24px;
    width: 24px;
    background-color: var(--white);
    border-radius: 4px;
  }
  .checkbox > input[type=checkbox]:focus {
    border-color: var(--blue);
    box-shadow: inset 0 0 0 1px #0b66fa, 0 0 0 4px #fed500;
  }
  .checkbox > input[type=checkbox]:checked {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg stroke='%23fff' stroke-width='2px' fill='none'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 24px;
    background-position: center;
    background-color: var(--blue);
    border-color: var(--blue);
  }
  .checkbox > input[type=checkbox]:disabled, .checkbox > input[type=checkbox]:disabled:hover {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.07);
  }
  .checkbox > input[type=checkbox]:disabled,
  .checkbox > input[type=checkbox]:disabled + label {
    cursor: default;
  }
  .checkbox > input[type=checkbox]:disabled + label {
    color: rgba(0, 0, 0, 0.62);
  }
}
.radio {
  display: inline-flex;
  align-items: center;
}

.radio > input[type=radio] {
  margin-right: 12px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.radio > label {
  cursor: pointer;
}

@supports (-webkit-appearance: none) {
  .radio:focus {
    outline: none;
  }
  .radio > input[type=radio] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    background-color: var(--white);
    border-radius: 50%;
  }
  .radio:hover > input[type=radio],
  .radio:focus > input[type=radio] {
    border-color: rgba(0, 0, 0, 0.87);
  }
  .radio > input[type=radio]:checked {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue);
  }
  .radio > input[type=radio]:checked::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--blue);
  }
  .radio > input[type=radio]:focus {
    border-color: var(--blue);
    box-shadow: inset 0 0 0 1px #0b66fa, 0 0 0 4px #fed500;
  }
  .radio > input[type=radio]:disabled, .radio > input[type=radio]:disabled:hover {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.07);
  }
  .radio > input[type=radio]:disabled,
  .radio > input[type=radio]:disabled + label {
    cursor: default;
  }
  .radio > input[type=radio]:disabled + label {
    color: rgba(0, 0, 0, 0.62);
  }
}
.empty-state-container {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
  justify-content: center;
}

.empty-state {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 16px;
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .empty-state {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (min-width: 1025px) {
  .empty-state--full-width {
    flex: 0 0 auto;
    width: calc(100% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

.empty-state__media {
  width: 192px;
  position: relative;
  margin: 0 auto 24px;
}

.empty-state__title {
  color: rgba(0, 0, 0, 0.87);
  margin-top: 0;
  margin-bottom: 8px;
}

.empty-state__text {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: rgba(0, 0, 0, 0.62);
  margin-top: 0;
  margin-bottom: 0;
}

.empty-state__content {
  margin-top: 16px;
}

.empty-state__icon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: var(--blue-extra-light);
  width: 96px;
  border-radius: 50%;
  height: 96px;
}

.empty-state__confetti {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 181 68'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%230B66FA' fill-rule='nonzero' stroke='%230B66FA' d='M163.8 18.4c0-3.5-3-6.4-6.4-6.4-3.5 0-6.4 3-6.4 6.4 0 3.5 3 6.4 6.4 6.4 3.5 0 6.3-3 6.3-6.4zm-11 0c0-2.5 2-4.6 4.6-4.6 2.5 0 4.5 2 4.5 4.6 0 2.5-2 4.5-4.6 4.5-2.5 0-4.6-2-4.6-4.6zM27 62c0-2.8-2.2-5-5-5s-5 2.2-5 5 2.2 5 5 5 5-2.2 5-5zm-8.6 0c0-2 1.6-3.6 3.6-3.6s3.6 1.6 3.6 3.6-1.6 3.6-3.6 3.6-3.6-1.6-3.6-3.6z'/%3E%3Cpath fill='%23666B76' fill-rule='nonzero' stroke='%23666B76' d='M8 44.5c0-2-1.6-3.5-3.5-3.5-2 0-3.5 1.6-3.5 3.5 0 2 1.6 3.5 3.5 3.5 2 0 3.5-1.6 3.5-3.5zm-6 0C2 43 3 42 4.5 42 6 42 7 43 7 44.5 7 46 6 47 4.5 47 3 47 2 46 2 44.5z'/%3E%3Cpath fill='%23666B76' stroke='%23666B76' d='M177.5 2.4L175.8.7c-.3-.3-.8-.3-1 0-.4.3-.4.8 0 1l1.6 1.8-1.7 1.6c-.3.4-.3 1 0 1.2.3.3.8.3 1 0l1.8-1.6 1.6 1.6c.4.3 1 .3 1.2 0 .3-.3.3-.8 0-1l-1.6-1.7 1.6-1.7c.3-.3.3-.8 0-1-.3-.4-.8-.4-1 0l-1.7 1.6z'/%3E%3Cpath fill='%230B66FA' stroke='%230B66FA' d='M25 26H23c-.4 0-.8.4-.8 1 0 .3.3.6.8.6H25V30c0 .4.4.7 1 .7.3 0 .6-.3.6-.7v-2.4H29c.4 0 .7-.3.7-.7 0-.6-.3-1-.7-1h-2.4V24c0-.4-.3-.8-.7-.8-.6 0-1 .3-1 .8V26zM171 35h-1.5c-.3 0-.5 0-.5.4 0 .2.2.4.5.4h1.4v1.5c0 .2 0 .4.4.4.2 0 .4-.2.4-.4v-1.5h1.5c.2 0 .4-.2.4-.4 0-.3-.2-.5-.4-.5h-1.5v-1.5c0-.3-.2-.5-.4-.5-.3 0-.5.2-.5.5V35z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 192px;
  height: 100%;
}

.expandable-content__head {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.expandable-content__content {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.expandable-content__checkbox {
  position: absolute;
  left: -1000000px;
}

.expandable-content__checkbox:checked ~ .expandable-content .expandable-content__content {
  opacity: 1;
  overflow: visible;
  visibility: inherit;
  max-height: 100%;
}

.title-content-expander__heading {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  font-weight: 700;
  margin: 16px 0;
}

.title-content-expander__state {
  display: flex;
  align-items: center;
}

.title-content-expander {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.expandable-content-container:first-of-type .title-content-expander {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.expandable-content-container:last-of-type .title-content-expander {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.expandable-content-container ~ .expandable-content-container .title-content-expander {
  border-top: 0;
}

.title-content-expander__icon,
.title-content-expander__state {
  height: 24px;
}

.title-content-expander__icon {
  margin: 0 16px 0 0;
}

.title-content-expander__state {
  margin: 0 0 0 16px;
  transition: transform 0.15s linear;
}

.expandable-content__checkbox:checked ~ .expandable-content .title-content-expander__state {
  transform: rotate(180deg);
}

.title-content-expander__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
}

.title-content-expander__heading {
  flex-grow: 2;
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  margin: 8px 0;
}

.title-content-expander__content {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.title-content-expander__content-wrapper {
  padding: 16px;
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
}

.expander--with-caret__title,
.expander--with-caret__content {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
}

.expander--with-caret__title {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.expander--with-caret__icon {
  margin-left: 4px;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.expandable-content__checkbox:checked + .expandable-content .expander--with-caret__icon {
  transform: rotate(180deg);
}

.expander--with-caret__content {
  margin: 0 0 0 16px;
}

.expander--with-caret__content--small {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  margin: 0 0 0 16px;
}

.expander--with-caret__content--no-indentation {
  margin-left: 0;
  padding-left: 0;
}

.expandable-content--reverse {
  display: flex;
  flex-direction: column-reverse;
}
.expandable-content--reverse .expander--with-caret__title {
  color: var(--blue);
}

.featured-on {
  max-width: 1188px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 0;
  padding-top: 16px;
}
.featured-on::after {
  clear: both;
  content: "";
  display: block;
}
@media screen and (min-width: 651px) {
  .featured-on {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .featured-on {
    padding-bottom: 16px;
  }
}

.featured-on--light {
  color: rgba(0, 0, 0, 0.62);
}

.featured-on--dark {
  color: var(--grey-light);
}

.featured-on__title {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  font-weight: 700;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .featured-on__title {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .featured-on__title {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .featured-on__title {
    text-align: left;
    width: auto;
    display: flex;
    align-items: center;
  }
}

.featured-on-entries {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 650px) {
  .featured-on-entries {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
  }
}
@media screen and (min-width: 651px) {
  .featured-on-entries {
    justify-content: space-between;
  }
}

.featured-on-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  margin-bottom: 16px;
}
@media screen and (max-width: 650px) {
  .featured-on-logo {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .featured-on-logo {
    max-width: 20%;
  }
}
@media screen and (min-width: 1025px) {
  .featured-on-logo {
    max-height: 32px;
    margin-bottom: 0;
  }
}
.featured-on-logo img {
  max-height: 100%;
}

.flag--uk {
  background-image: url("/assets/flags/uk-79ce753410963436f69fd23e27aeac4bf72c2828.svg");
}

.flag--de {
  background-image: url("/assets/flags/de-5331fe8efb6b1a4c2e32813e4a8c09ddcf80d24a.svg");
}

.flag--es {
  background-image: url("/assets/flags/es-a39a66bda92fb1b9842bde88af739d6ce2fd4366.svg");
}

input,
.select select {
  overflow: hidden;
}

input,
.select select,
textarea {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 400;
  transition: border 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: rgba(0, 0, 0, 0.87);
  vertical-align: middle;
  display: inline-block;
  border-radius: 6px;
  background-color: var(--white);
  margin: 0;
}
input:hover,
.select select:hover,
textarea:hover {
  border-color: rgba(0, 0, 0, 0.87);
}
input:focus,
.select select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px #0b66fa, 0 0 0 4px #fed500;
}

input,
textarea {
  padding: 9px 12px;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.62);
}
input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.62);
}
input:disabled::-moz-placeholder, input[readonly]::-moz-placeholder, textarea:disabled::-moz-placeholder, textarea[readonly]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.32);
}
input:disabled::placeholder, input[readonly]::placeholder,
textarea:disabled::placeholder,
textarea[readonly]::placeholder {
  color: rgba(0, 0, 0, 0.32);
}

input:not([type=checkbox], [type=radio]),
.select select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input:disabled, input:disabled:hover, input:disabled:focus,
input[readonly],
input[readonly]:hover,
input[readonly]:focus,
.select select:disabled,
.select select:disabled:hover,
.select select:disabled:focus,
textarea:disabled,
textarea:disabled:hover,
textarea:disabled:focus,
textarea[readonly],
textarea[readonly]:hover,
textarea[readonly]:focus {
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.32);
  box-shadow: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  display: block;
  width: 100%;
  resize: vertical;
}

.input--inline {
  display: inline-block;
}

.input--number {
  text-align: right;
  width: 144px;
}

.input-wide {
  width: 400px;
}

.input-full-width {
  width: 100%;
}

.input-with-icon {
  padding-left: 48px;
}

.form-row,
.form-input {
  margin-bottom: 32px;
}
.form-row:last-of-type,
.form-input:last-of-type {
  margin-bottom: 16px;
}

.form-input {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
}

.form-input-hint {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  color: rgba(0, 0, 0, 0.87);
  margin-top: 8px;
  margin-bottom: 8px;
}

label.error,
.form-input-label {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: rgba(0, 0, 0, 0.87);
  display: block;
}

.form-input-label {
  margin-bottom: 4px;
}
.form-input-label + .form-input-hint {
  margin-top: -4px;
}

.form-input-label--inline {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
}

.form-input-label--inline + input,
input + .form-input-label--inline {
  margin-left: 4px;
}

.form-input-label__info {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  font-weight: 400;
}

@keyframes form-error {
  from {
    max-height: 0;
  }
  to {
    max-height: 64px;
  }
}
label.error {
  animation-duration: 0.3s;
  animation-name: form-error;
  color: var(--red);
  margin-top: 8px;
}
label.error:not(.form-input-label) {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
}

.select {
  display: inline-block;
  position: relative;
}
.select::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23212224' stroke-width='2px' stroke='none' stroke-miterlimit='10' d='M2 7l10 10L22 7' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center center;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 48px;
  pointer-events: none;
}
.select select {
  background-color: var(--white);
  white-space: nowrap;
  width: 100%;
  position: relative;
  padding: 9px 48px 9px 12px;
}
.select select::-ms-expand {
  display: none;
}
.select select option {
  text-shadow: none;
}
.select select:disabled {
  z-index: auto;
}

.select--disabled::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239da5b2' stroke-width='2px' stroke='none' stroke-miterlimit='10' d='M2 7l10 10L22 7' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
}

.input-infield-container {
  position: relative;
}

.input-infield {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
}

.input-infield-license-plate {
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: 700;
  padding-left: 40px;
  text-transform: uppercase;
  height: 48px;
  vertical-align: middle;
  margin: 0;
}
.input-infield-license-plate::-moz-placeholder {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  font-weight: 400;
  text-transform: none;
  text-align: left;
}
.input-infield-license-plate::placeholder {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  font-weight: 400;
  text-transform: none;
  text-align: left;
}

.input-infield-license-plate-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  width: 32px;
  background-color: var(--blue);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 8px 4px;
  text-align: center;
}

.input__flag {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
}
.input__flag::after {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  font-weight: 700;
  color: var(--white);
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
}
.input__flag.flag--uk::after {
  content: "GB";
}

.input__infield-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 48px;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .input-wide {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .form-row,
  .form-input {
    margin-bottom: 16px;
  }
}
.icon {
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: no-repeat;
}

i.icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.icon-circled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

.icon-circled--blue {
  border-color: var(--blue);
}

.ss-icon-centred::before {
  position: relative;
  top: 0.125em;
}

.inline-icon {
  stroke-width: 2px;
  fill: none;
  stroke: none;
  color: transparent;
}
.inline-icon * {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-icon--blue,
.inline-icon__filled--blue {
  fill: var(--blue);
}

.inline-icon__outline--blue,
.inline-icon--outline.inline-icon--blue {
  stroke: var(--blue);
}

.inline-icon__filled-inner--blue {
  color: var(--blue);
}

.inline-icon--black,
.inline-icon__filled--black {
  fill: rgba(0, 0, 0, 0.87);
}

.inline-icon__outline--black,
.inline-icon--outline.inline-icon--black {
  stroke: rgba(0, 0, 0, 0.87);
}

.inline-icon__filled-inner--black {
  color: rgba(0, 0, 0, 0.87);
}

.inline-icon--green,
.inline-icon__filled--green {
  fill: var(--green);
}

.inline-icon__outline--green,
.inline-icon--outline.inline-icon--green {
  stroke: var(--green);
}

.inline-icon__filled-inner--green {
  color: var(--green);
}

.inline-icon--grey,
.inline-icon__filled--grey {
  fill: rgba(0, 0, 0, 0.62);
}

.inline-icon__outline--grey,
.inline-icon--outline.inline-icon--grey {
  stroke: rgba(0, 0, 0, 0.62);
}

.inline-icon__filled-inner--grey {
  color: rgba(0, 0, 0, 0.62);
}

.inline-icon--dark-grey,
.inline-icon__filled--dark-grey {
  fill: rgba(0, 0, 0, 0.62);
}

.inline-icon__outline--dark-grey,
.inline-icon--outline.inline-icon--dark-grey {
  stroke: rgba(0, 0, 0, 0.62);
}

.inline-icon__filled-inner--dark-grey {
  color: rgba(0, 0, 0, 0.62);
}

.inline-icon--light-grey,
.inline-icon__filled--light-grey {
  fill: var(--grey-light);
}

.inline-icon__outline--light-grey,
.inline-icon--outline.inline-icon--light-grey {
  stroke: var(--grey-light);
}

.inline-icon__filled-inner--light-grey {
  color: var(--grey-light);
}

.inline-icon--lighter-grey,
.inline-icon__filled--lighter-grey {
  fill: rgba(255, 255, 255, 0.62);
}

.inline-icon__outline--lighter-grey,
.inline-icon--outline.inline-icon--lighter-grey {
  stroke: rgba(255, 255, 255, 0.62);
}

.inline-icon__filled-inner--lighter-grey {
  color: rgba(255, 255, 255, 0.62);
}

.inline-icon--white,
.inline-icon__filled--white {
  fill: #fff;
}

.inline-icon__outline--white,
.inline-icon--outline.inline-icon--white {
  stroke: #fff;
}

.inline-icon__filled-inner--white {
  color: #fff;
}

.inline-icon--yellow,
.inline-icon__filled--yellow {
  fill: var(--yellow);
}

.inline-icon__outline--yellow,
.inline-icon--outline.inline-icon--yellow {
  stroke: var(--yellow);
}

.inline-icon__filled-inner--yellow {
  color: var(--yellow);
}

.inline-icon--red,
.inline-icon__filled--red {
  fill: var(--red);
}

.inline-icon__outline--red,
.inline-icon--outline.inline-icon--red {
  stroke: var(--red);
}

.inline-icon__filled-inner--red {
  color: var(--red);
}

.inline-icon--outline {
  fill: none;
}

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

.inline-icon--x-small,
.inline-icon--smaller {
  width: 16px;
  height: 16px;
  stroke-width: 1.5px;
}

.inline-icon--xx-small {
  height: 12px;
  width: 12px;
  stroke-width: 1.5px;
}

.inline-icon--medium {
  width: 32px;
  height: 32px;
}

.inline-icon--large {
  width: 48px;
  height: 48px;
}

.inline-icon--x-large {
  width: 64px;
  height: 64px;
}

.inline-icon--xx-large {
  width: 96px;
  height: 96px;
}

.inline-icon--stretch {
  width: 100%;
  height: 100%;
}

.inline-make-icon--large-shape.inline-icon--small {
  padding: 2px;
}
.inline-make-icon--large-shape.inline-icon--medium {
  padding: 4px;
}
.inline-make-icon--large-shape.inline-icon--large {
  padding: 8px;
}
.inline-make-icon--large-shape.inline-icon--x-large {
  padding: 10px;
}
.inline-make-icon--large-shape.inline-icon--xx-large {
  padding: 20px;
}

.illustration {
  height: 100%;
  width: 100%;
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
}

ul > li {
  padding-left: 20px;
}

ol {
  position: relative;
  list-style-type: none;
  counter-reset: ol-counter;
}
ol > li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 4px;
}
ol > li:last-child {
  margin-bottom: 0;
}
ol > li::before {
  font-weight: 700;
  position: absolute;
  left: 0;
  content: counter(ol-counter);
  counter-increment: ol-counter;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-right: 16px;
}

.ordered-list-multiline {
  position: relative;
  padding-left: 18px;
}
.ordered-list-multiline > li::before {
  position: absolute;
  left: 0;
}

.list-unstyled {
  list-style: none;
  margin: 0;
}
.list-unstyled > li {
  padding-left: 0;
}

.list-horizontal {
  font-size: 0;
  margin: 0;
}
.list-horizontal li:first-child {
  padding-left: 0;
}
.list-horizontal i {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  top: 0.2em;
  position: relative;
}
.list-horizontal li {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  display: inline-block;
  padding: 0 10px;
}

.list-multiline {
  list-style-position: outside;
  padding-left: 20px;
}
.list-multiline > li {
  padding-left: 0;
  margin-bottom: 8px;
}

.list-icon {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

.list-icon__item {
  position: relative;
  padding-left: 36px;
  margin-bottom: 8px;
}
.list-icon__item::before {
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  border-radius: 100%;
  background-size: contain;
  margin-right: 8px;
  content: "";
  width: 24px;
  height: 24px;
}

.list-icon__item--positive::before,
.list-icon__item--check::before {
  background-color: var(--green);
}

.list-icon__item--check-disabled::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%239e9e9e' stroke-width='2px' vector-effect='non-scaling-stroke' fill='none' d='M6 12l4 4 8-8'/%3E%3C/svg%3E");
  background-size: 100%;
  background-color: var(--white);
  border: 2px solid var(--grey);
}

.list-icon__item--negative::before,
.list-icon__item--cross::before {
  background-color: var(--red);
}

.list-icon__item--check::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%23fff' stroke-width='2px' vector-effect='non-scaling-stroke' fill='none' d='M6 12l4 4 8-8'/%3E%3C/svg%3E");
  background-size: 100%;
}

.list-icon__item--cross::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%23fff' stroke-width='2px' vector-effect='non-scaling-stroke' fill='none' d='M19 5L5 19M19 19L5 5'/%3E%3C/svg%3E");
  background-size: 16px;
}

.list-icon__item--positive::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke-width='2px' stroke='%23fff' d='M12 2v20M22 12H2'/%3E%3C/svg%3E");
  background-size: 16px;
}

.list-icon__item--negative::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke-width='2px' stroke='%23fff' d='M22 12H2'/%3E%3C/svg%3E");
  background-size: 16px;
}

.list-icon--large {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
}
@media screen and (min-width: 651px) {
  .list-icon--large .list-icon__item::before {
    top: 2px;
  }
}

.definition-list-horizontal {
  display: table;
  width: 100%;
  margin-bottom: 16px;
  margin-top: 0;
}
.definition-list-horizontal dt {
  width: 75%;
}
.definition-list-horizontal dd {
  width: 25%;
  text-align: right;
}
.definition-list-horizontal dt,
.definition-list-horizontal dd {
  display: table-cell;
}

.ordered-list-nested li ol {
  margin-top: 24px;
}
.ordered-list-nested li ol li ol li {
  padding-left: 64px;
}
.ordered-list-nested li::before {
  content: counters(ol-counter, ".") " ";
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
  width: auto;
  height: auto;
  float: left;
  display: block;
  padding-top: 0;
}
.ordered-list-nested .corporate-article-heading {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
}

@media screen and (max-width: 1024px) {
  .ordered-list-nested li {
    padding-left: 32px;
  }
  .ordered-list-nested li ol li {
    padding-left: 40px;
  }
  .ordered-list-nested li ol li ol li {
    padding-left: 56px;
  }
}
@media screen and (max-width: 650px) {
  .ordered-list-nested li {
    padding-left: 20px;
  }
  .ordered-list-nested li ol li {
    padding-left: 32px;
  }
  .ordered-list-nested li ol li ol li {
    padding-left: 48px;
  }
}
@keyframes loading-shimmer {
  from {
    background-position: -400px 0;
  }
  to {
    background-position: 400px 0;
  }
}
.loading-placeholder-text,
.loading-placeholder-filler,
.loading-placeholder-cta {
  background: linear-gradient(to right, var(--grey-light) 10%, var(--white) 50%, var(--grey-light) 100%);
  animation-name: loading-shimmer;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background-size: 800px;
}

.loading-placeholder-text,
.loading-placeholder-cta {
  border-radius: 12px;
}

.loading-placeholder-text {
  min-width: 20px;
  height: 16px;
}

.loading-placeholder-filler {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.loading-placeholder-cta {
  height: 48px;
}

.modal__open-link,
.modal__close-icon,
.modal__close-button {
  cursor: pointer;
}

.modal__open-link {
  color: var(--blue);
  text-decoration: underline;
}
.modal__open-link:hover {
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--black-rgb), 0.65);
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

.modal-radio-button--open,
.modal-radio-button--close {
  display: none;
}

.modal-radio-button--open:checked ~ .modal-overlay {
  visibility: visible;
  opacity: 1;
  z-index: 999999;
}
.modal-radio-button--open:checked ~ .modal-overlay .modal {
  transform: scale(1);
}

.modal-overlay__cancel {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: default;
}

.modal {
  border-radius: 12px;
  width: 640px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white);
  box-shadow: 0 2px 10px 0 rgba(33, 34, 36, 0.3);
  position: relative;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal--light-theme {
  background-color: var(--white);
  color: var(--black);
}

.modal--dark-theme {
  background-color: var(--black);
  color: var(--white);
}

.modal--drawer {
  width: 400px;
  border-radius: 0;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  flex-direction: column;
}

.modal--drawer-left {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  margin-left: 0;
}

.modal--drawer-right {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  margin-right: 0;
}

.modal--fullscreen {
  width: 100%;
  height: 100%;
}

.modal__header,
.modal__body,
.modal__footer {
  padding-left: 24px;
  padding-right: 24px;
}

.modal__header--drawer,
.modal__body--drawer,
.modal__footer--drawer {
  padding-left: 16px;
  padding-right: 16px;
}

.modal__header,
.modal__footer,
.modal__footer--spaced-out {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
}

.modal__header {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: 700;
  min-height: 64px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.modal__header--with-border.modal__header--light-theme {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.modal__header--with-border.modal__header--dark-theme {
  border-bottom: 1px solid var(--grey-dark);
}

.modal__title--centered {
  position: absolute;
  text-align: center;
  padding-left: inherit;
  padding-right: inherit;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.modal__header-button {
  display: inline-block;
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.modal__close-icon {
  cursor: pointer;
  margin-left: auto;
  display: flex;
}

.modal__custom-header .modal__header-button {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 999999;
}

.modal__body {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px;
  max-height: 544px;
  max-height: 65vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}
.modal__body p {
  margin-top: 0;
  margin-bottom: 16px;
}
.modal__body::-webkit-scrollbar {
  -webkit-appearance: none;
          appearance: none;
  width: 7px;
}
.modal__body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.modal__body--light-theme::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal__body--dark-theme::-webkit-scrollbar-thumb {
  background-color: var(--grey-dark);
}

.modal__body--drawer {
  max-height: none;
  background-color: var(--grey-extra-light);
}

.modal__body--no-padding {
  padding: 0;
}

.modal__body--fullscreen {
  max-height: 100%;
}

.modal__footer {
  min-height: 80px;
  /* the following ensures footers are sticky for modals of all heights: */
  margin-top: auto;
}

.modal__footer--light-theme {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.modal__footer--dark-theme {
  border-top: 1px solid var(--grey-dark);
}

@media screen and (max-width: 1024px) {
  .modal--drawer {
    width: 50%;
  }
}
@media screen and (max-width: 650px) {
  .modal,
  .modal__body {
    display: flex;
    flex-direction: column;
  }
  .modal {
    position: absolute;
    border-radius: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    transform: translateY(100%);
  }
  .modal__body {
    height: 100%;
    max-height: none;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .modal__header,
  .modal__body,
  .modal__footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .modal__header {
    min-height: 48px;
  }
  .modal__body--no-padding {
    padding: 0;
  }
}
@media screen and (max-width: 650px) {
  .modal.modal--compact {
    position: static;
    display: block;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 12px;
  }
  .modal.modal--compact .modal__body {
    padding-top: 24px;
    padding-bottom: 0;
  }
  .modal.modal--compact .modal__header + .modal__body {
    padding-top: 0;
  }
  .modal.modal--compact .modal__footer,
  .modal.modal--compact .modal__header {
    border: none;
  }
}

.note {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  background: var(--blue-extra-light);
  color: var(--blue-extra-dark);
  border-radius: 12px;
  padding: 16px;
}
@media screen and (min-width: 651px) {
  .note {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.note label {
  cursor: pointer;
  text-decoration: underline;
}

.note-radio-button--close {
  position: absolute;
  left: -1000000px;
}
.note-radio-button--close:checked ~ .note {
  display: none;
}

.note__info-link {
  font-weight: 700;
  text-decoration: underline;
  color: var(--blue-extra-dark);
}

.note__icon {
  display: flex;
  margin-right: 16px;
  align-items: center;
}

.note__content {
  display: flex;
}

.note__heading {
  font-weight: 700;
}

.note__link {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
@media screen and (max-width: 650px) {
  .note__link {
    margin-top: 16px;
  }
}
@media screen and (min-width: 651px) {
  .note__link {
    margin-left: 16px;
  }
}
.note__link a,
.note__link label {
  border-color: var(--blue-extra-dark);
  color: var(--blue-extra-dark);
}

.note--error {
  background: var(--red-extra-light);
  color: var(--red-dark);
}
.note--error .note__info-link {
  color: var(--red-dark);
}
.note--error .note__link a,
.note--error .note__link label {
  border-color: var(--red-dark);
  color: var(--red-dark);
}
.note--error .note__icon .inline-icon {
  stroke: var(--red-dark);
}

.note--success {
  background: var(--green-extra-light);
  color: var(--green-extra-dark);
}
.note--success .note__link a,
.note--success .note__link label {
  border-color: var(--green-extra-dark);
  color: var(--green-extra-dark);
}
.note--success .note__icon .inline-icon {
  stroke: var(--green-extra-dark);
}

.note--tip {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: rgba(0, 0, 0, 0.87);
}
.note--tip .note__link a,
.note--tip .note__link label {
  border-color: var(--grey);
  color: rgba(0, 0, 0, 0.87);
}
.note--tip .note__info-link {
  color: var(--blue);
}

.note--warning {
  background: var(--yellow-extra-light);
  color: var(--yellow-extra-dark);
}
.note--warning .note__info-link {
  color: rgba(0, 0, 0, 0.87);
}
.note--warning .note__link a,
.note--warning .note__link label {
  border-color: var(--yellow-extra-dark);
  color: var(--yellow-extra-dark);
}
.note--warning .note__icon .inline-icon {
  stroke: var(--yellow-extra-dark);
}

.note--on-top {
  margin-bottom: 4px;
}

.note__body p {
  margin-top: 0;
  margin-bottom: 0;
}

.notification {
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  background-color: var(--white);
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-grow: 1;
  padding-left: 10px;
  flex-wrap: wrap;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  transition: box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.notification:hover {
  box-shadow: 0 2px 10px 0 rgba(33, 34, 36, 0.3);
}

.notification__head {
  display: flex;
  height: 48px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.notification__body {
  width: 100%;
}

.notification__make-icon,
.notification__icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification__icon {
  height: 32px;
  width: 32px;
}
.notification__icon .inline-icon {
  width: 20px;
}

.notification__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8px;
  padding-right: 8px;
  overflow: hidden;
}

.notification__sub-title {
  color: rgba(0, 0, 0, 0.62);
}

.notification__image {
  margin-left: auto;
  margin-right: 16px;
}

.notification__contact-photo {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.notification__summary {
  margin-bottom: 16px;
  margin-right: 8px;
}

.notification__footer {
  height: 32px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification__footer-time {
  color: rgba(0, 0, 0, 0.62);
  display: block;
}

.notification__footer-link {
  color: var(--blue);
}
.notification__footer-link:hover {
  text-decoration: underline;
}

.notification__icon--message {
  background: var(--blue-extra-light);
}

.notification__icon--offer {
  background: var(--green-extra-light);
}

.notification__icon--recommendation {
  background: var(--grey-extra-light);
}

.notification__status--unread {
  border-left: 12px solid;
}
.notification__status--unread.notification__type--offer {
  border-left-color: var(--green);
}
.notification__status--unread.notification__type--message {
  border-left-color: var(--blue);
}
.notification__status--unread.notification__type--recommendation {
  border-left-color: rgba(0, 0, 0, 0.87);
}
.notification__status--unread .notification__title,
.notification__status--unread .notification__sub-title,
.notification__status--unread .notification__footer {
  font-weight: 700;
}

.notification__type,
.notification__image {
  display: flex;
  align-items: center;
}

.notification-drawer__list {
  margin-top: 0;
  margin-bottom: 32px;
}

.notification-drawer__list-item {
  padding-left: 0;
}
.notification-drawer__list-item:not(:last-child) {
  margin-bottom: 16px;
}

.notification-drawer__load_more {
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .notification-drawer__load_more {
    margin-bottom: 88px;
  }
}

@media screen and (max-width: 650px) {
  .notification-drawer {
    border: none;
    width: 100%;
  }
  .notification-drawer .empty-state__title {
    font-size: var(--body-large-font-size);
    line-height: var(--body-large-line-height);
  }
  .notification-drawer .empty-state__text {
    font-size: var(--body-medium-font-size);
    line-height: var(--body-medium-line-height);
  }
}
.promotion-banner__clickable {
  background-color: var(--white);
}
.promotion-banner__clickable a,
.promotion-banner__clickable a:active,
.promotion-banner__clickable a:visited,
.promotion-banner__clickable a:hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
}

.promotion-banner__grid-container {
  display: flex;
  min-height: 68px;
}
@media screen and (min-width: 651px) {
  .promotion-banner__grid-container {
    min-height: 48px;
  }
}

.promotion-banner-container {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promotion-banner__description {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  margin-top: 8px;
}
@media screen and (min-width: 651px) {
  .promotion-banner__description {
    flex-direction: row;
  }
}

.promotion-banner__title {
  font-weight: 700;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 651px) {
  .promotion-banner__separator {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    border-image-slice: 1;
    border-width: 0 2px 0 0;
    margin-left: 12px;
    margin-right: 12px;
  }
}

.promotion-banner__description-post,
.promotion-banner__dates {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.promotion-banner__action {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.promotion-banner__close {
  display: flex;
}
.promotion-banner__close:hover {
  cursor: pointer;
}

.promotion-banner__deals-cta {
  flex-shrink: 0;
}

.promotion-banner__deals-cta-link {
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
  border-radius: 12px;
  padding: 2px 4px;
}
@media screen and (min-width: 651px) {
  .promotion-banner__deals-cta-link {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.promotion-banner__content-container {
  display: flex;
  align-items: center;
}

.promotion-banner__image {
  display: inline-flex;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-right: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 651px) {
  .promotion-banner__image {
    width: 48px;
    height: 48px;
  }
}

.promotion-banner--closed {
  display: none;
}

.promotion-banner__separator,
.promotion-banner__deals-cta-link {
  border-color: rgba(0, 0, 0, 0.87);
}

.promotion-banner--text-light .promotion-banner__title,
.promotion-banner--text-light .promotion-banner__description-post,
.promotion-banner--text-light .promotion-banner__deals-cta-link {
  color: var(--white);
}
.promotion-banner--text-light .promotion-banner__separator,
.promotion-banner--text-light .promotion-banner__deals-cta-link {
  border-color: var(--white);
}

.tabs-container .tab__link::before {
  content: none;
}

.tabs__navigation-container {
  box-shadow: 0 1px rgba(0, 0, 0, 0.12);
  position: relative;
  background-color: var(--white);
  height: 56px;
}
@media screen and (min-width: 651px) {
  .tabs__navigation-container {
    height: 64px;
  }
}

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

.tabs__navigation--centered-aligned .tabs__navigation-list {
  justify-content: center;
}
.tabs__navigation--centered-aligned .tabs--with-scroll__navigation {
  text-align: center;
}

.tabs__navigation-list {
  display: flex;
  height: 100%;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.tabs--with-scroll__navigation {
  overflow-x: auto;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .tabs--with-scroll__navigation {
    overflow-x: hidden;
  }
}
.tabs--with-scroll__navigation .tabs__navigation-list-item {
  display: flex;
}

.tabs--with-scroll__navigation-list {
  display: inline-flex;
  width: auto;
}
@media screen and (max-width: 650px) {
  .tabs--with-scroll__navigation-list {
    min-width: 100%;
  }
}

.tabs__navigation-list-item {
  display: flex;
  flex-grow: 1;
  height: 100%;
  padding-left: 0;
}
@media screen and (min-width: 1025px) {
  .tabs__navigation-list-item {
    flex-grow: 0;
  }
}

.tabs-with-notifications__navigation-list .tab__link {
  flex-direction: row;
}

.tab__link {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: rgba(0, 0, 0, 0.62);
  cursor: pointer;
  height: 100%;
  display: inline-flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 651px) {
  .tab__link {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .tab__link {
    flex-direction: row;
    flex-grow: 0;
  }
}
.tab__link > * {
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  .tab__link .inline-icon {
    margin-right: 16px;
  }
}

.tab__link .badge-notification {
  margin-left: 8px;
}

.tab-link__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab-link-content__subtitle {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.62);
}

.tab__link:hover,
.tab__link--active {
  color: rgba(0, 0, 0, 0.87);
}
.tab__link:hover .tab-link-content__subtitle,
.tab__link--active .tab-link-content__subtitle {
  color: rgba(0, 0, 0, 0.62);
}
.tab__link:hover::after,
.tab__link--active::after {
  content: "";
  display: block;
  background-color: var(--blue);
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.tab__link:hover .inline-icon,
.tab__link--active .inline-icon {
  stroke: var(--black);
}

.tab__content {
  display: none;
  width: 100%;
}

.tab__anchor-target-container {
  position: relative;
}

.tab__anchor-hitbox {
  position: absolute;
  top: 300px;
  top: 50vh;
  bottom: 300px;
  bottom: 50vh;
}

.tab__radio-button {
  display: none;
}
.tab__radio-button:checked + .tab__content {
  display: block;
}

.tabs__arrow {
  position: absolute;
  height: 100%;
  top: 0;
  justify-content: center;
  align-items: center;
  display: none;
  width: 32px;
}

.tabs__arrow-icon {
  display: flex;
}

.tabs__arrow--left {
  background-image: linear-gradient(to left, rgba(var(--white-rgb), 0) 0%, rgba(var(--white-rgb), 1) 25%);
  left: 0;
}
@media screen and (min-width: 1025px) {
  .tabs__arrow--left {
    left: 24px;
  }
}

.tabs__arrow--right {
  background-image: linear-gradient(to right, rgba(var(--white-rgb), 0) 0%, rgba(var(--white-rgb), 1) 25%);
  right: 0;
}
@media screen and (min-width: 1025px) {
  .tabs__arrow--right {
    right: 24px;
  }
}

.responsive-table,
.cms-generated-content table {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: var(--white);
  border-radius: 12px;
  display: inline-block;
  overflow-x: auto;
  max-width: 100%;
}
.responsive-table::-webkit-scrollbar,
.cms-generated-content table::-webkit-scrollbar {
  -webkit-appearance: none;
          appearance: none;
  height: 4px;
}
.responsive-table::-webkit-scrollbar-thumb,
.cms-generated-content table::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.responsive-table caption,
.cms-generated-content table caption {
  font-weight: 700;
  background-color: var(--blue);
  color: var(--white);
  padding: 16px;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .responsive-table caption,
  .cms-generated-content table caption {
    text-align: center;
  }
}
.responsive-table thead,
.cms-generated-content table thead {
  font-weight: 700;
}
.responsive-table thead tr,
.cms-generated-content table thead tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.responsive-table tbody tr,
.cms-generated-content table tbody tr {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.responsive-table tbody tr:nth-child(odd) td,
.cms-generated-content table tbody tr:nth-child(odd) td {
  background-color: var(--grey-extra-light);
}
.responsive-table tbody tr:first-child,
.cms-generated-content table tbody tr:first-child {
  border-top: 0;
}
.responsive-table td,
.responsive-table th,
.cms-generated-content table td,
.cms-generated-content table th {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  text-align: left;
  padding: 16px;
  white-space: nowrap;
}

.trustpilot__container {
  padding-top: 24px;
  padding-bottom: 24px;
}

.trustpilot {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  align-items: center;
  justify-content: flex-start;
  display: flex;
}

.trustpilot--wide-layout {
  justify-content: center;
}

.trustpilot--default-layout .trustpilot__stars,
.trustpilot--wide-layout .trustpilot__stars {
  margin-left: 16px;
}

.trustpilot__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: sub;
  margin-left: 8px;
}
.trustpilot__link:hover {
  text-decoration: none;
}

.trustpilot__logo--default-layout,
.trustpilot__logo--wide-layout {
  margin-top: -2px;
  max-height: 24px;
  width: 96px;
}

.trustpilot__stars {
  height: 24px;
  width: 128px;
}

.trustpilot--footer-layout {
  align-self: flex-start;
}
.trustpilot--footer-layout .trustpilot__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-top: 8px;
}
.trustpilot--footer-layout .trustpilot__stars {
  margin-top: 8px;
}

.trustpilot__logo--footer-layout {
  max-height: 32px;
  width: 132px;
  margin-bottom: 8px;
}

.trustpilot--dark-text {
  color: rgba(0, 0, 0, 0.87);
}

.trustpilot__rating--light-color {
  text-shadow: 0 1px 0 rgba(var(--black-rgb), 0.5);
  color: var(--white);
}

.trustpilot__logo--dark-color__wording {
  fill: var(--black);
}

@media screen and (max-width: 1024px) {
  .trustpilot--footer-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .trustpilot--footer-layout .trustpilot__rating {
    display: flex;
  }
  .trustpilot--footer-layout .trustpilot__link {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    margin-top: 0;
  }
  .trustpilot--footer-layout .trustpilot__stars {
    margin-top: 0;
  }
  .trustpilot__logo--footer-layout {
    max-height: 24px;
    width: 100px;
    margin: 0 12px;
  }
}
@media screen and (max-width: 650px) {
  .trustpilot--default-layout {
    display: flex;
    justify-content: center;
  }
  .trustpilot--wide-layout,
  .trustpilot--default-layout,
  .trustpilot__link {
    text-align: center;
  }
  .trustpilot__link,
  .trustpilot__logo--footer-layout {
    margin-left: 0;
  }
  .trustpilot--footer-layout .trustpilot__rating {
    flex-direction: column;
  }
}
.badge--default {
  background-color: #ffde32;
}

.badge--default {
  background-color: #f04813;
}

.badge--navy-flame {
  background-color: #022a6a;
}

/* stylelint-disable */
/* stylelint-enable */
.badge--royal-purple {
  background-color: #f05213;
}

.sale-campaign-stripe--royal-purple .sale-campaign-stripe-container {
  background-color: #800D5F;
  color: #fff;
}

:not(.show-campaign-hero) .affiliate-banner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.affiliate-banner__container {
  display: flex;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
}
@media screen and (min-width: 1025px) {
  .affiliate-banner__container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.affiliate-banner__copy {
  padding-right: 12px;
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
}

.affiliate-banner__logo {
  max-height: 40px;
  max-width: 168px;
  display: block;
}