@charset "UTF-8";
@font-face {
  font-display: block;
  font-family: nissan-modernized-icons-font;
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/global/icon-fonts/nissan-modernized-icons-font.ttf) format("truetype"), url(../../assets/fonts/global/icon-fonts/nissan-modernized-icons-font.woff) format("woff"), url(../../assets/fonts/global/icon-fonts/nissan-modernized-icons-font.svg) format("svg"), url(../../assets/fonts/global/icon-fonts/nissan-modernized-icons-font.woff2) format("woff2");
}
@font-face {
  font-display: block;
  font-family: NissanBrand-Regular;
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/global/NissanBrand-Regular/NissanBrandW06-Regular.ttf) format("truetype"), url(../../assets/fonts/global/NissanBrand-Regular/NissanBrandW06-Regular.woff) format("woff"), url(../../assets/fonts/global/NissanBrand-Regular/NissanBrandW06-Regular.woff2) format("woff2"), url(../../assets/fonts/global/NissanBrand-Regular/NissanBrandW06-Regular.svg) format("svg"), url(../../assets/fonts/global/NissanBrand-Regular/NissanBrandW06-Regular.eot);
}
@font-face {
  font-display: block;
  font-family: NissanBrand-Bold;
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/global/NissanBrand-Bold/NissanBrandW06-Bold.ttf) format("truetype"), url(../../assets/fonts/global/NissanBrand-Bold/NissanBrandW06-Bold.woff) format("woff"), url(../../assets/fonts/global/NissanBrand-Bold/NissanBrandW06-Bold.woff2) format("woff2"), url(../../assets/fonts/global/NissanBrand-Bold/NissanBrandW06-Bold.svg) format("svg"), url(../../assets/fonts/global/NissanBrand-Bold/NissanBrandW06-Bold.eot);
}
@font-face {
  font-display: block;
  font-family: NissanBrand-Light;
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/global/NissanBrand-Light/NissanBrandW06-Light.ttf) format("truetype"), url(../../assets/fonts/global/NissanBrand-Light/NissanBrandW06-Light.woff) format("woff"), url(../../assets/fonts/global/NissanBrand-Light/NissanBrandW06-Light.woff2) format("woff2"), url(../../assets/fonts/global/NissanBrand-Light/NissanBrandW06-Light.svg) format("svg"), url(../../assets/fonts/global/NissanBrand-Light/NissanBrandW06-Light.eot);
}
button {
  font-family: var(--wds2-type-action-button-m-fontFamily);
  font-size: var(--wds2-type-action-button-m-fontSize);
  font-weight: var(--wds2-type-action-button-m-fontWeight);
  letter-spacing: var(--wds2-type-action-button-m-letterSpacing);
  line-height: var(--wds2-type-action-button-m-lineHeight);
  width: 100%;
  word-break: break-word;
  /* Prevent blue highlight on touch of button.
   * This is a legacy browser feature that came about to help users know what they were touching on small screens.
   * But since we have responsively designed our components this can be removed.
   * The blue highlight occurs in some browsers on touch and when 'cursor: pointer'.
   * http://phonegap-tips.com/articles/essential-phonegap-css-webkit-tap-highlight-color.html */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

button:enabled {
  cursor: pointer;
}

.button--overlay-and-hotspot {
  -webkit-border-radius: 4px;
  align-items: baseline;
  text-align: left;
  background-color: transparent;
  border-radius: 4px;
  border: none;
  display: flex;
  flex-direction: row;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve), color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve);
}

.button--overlay-and-hotspot .icon {
  align-items: center;
  background-color: transparent;
  border-radius: var(--wds2-radius-l);
  border: var(--wds2-stroke-m) solid;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  margin: 0 16px 0 0;
  transition: background-color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve), color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve);
}

.button--overlay-and-hotspot wds-icon {
  letter-spacing: 0;
  line-height: 0;
}

.button--overlay-and-hotspot.small .icon {
  font-size: 11px;
  height: 24px;
  width: 24px;
}

.button--overlay-and-hotspot.medium .icon {
  font-size: 22px;
  height: 48px;
  width: 48px;
}

.button--overlay-and-hotspot.light {
  color: var(--wds2-colour-nissanblack);
}

.button--overlay-and-hotspot.light .icon {
  border-color: var(--wds2-colour-nissanblack);
}

.button--overlay-and-hotspot.light:enabled:not(:active):hover .icon {
  background-color: var(--wds2-colour-nissanblack);
  color: var(--wds2-colour-nissanwhite);
}

.button--overlay-and-hotspot.light:disabled {
  color: var(--wds2-colour-action-disabled-onlight);
}

.button--overlay-and-hotspot.light:disabled .icon {
  border-color: var(--wds2-colour-action-disabled-onlight);
}

.button--overlay-and-hotspot.light:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  /* 'box-shadow' is reverted in forced color modes (Windows high-contrast mode),
   * while a transparent 'outline' is overridden appropriately. */
  outline: 2px solid transparent;
}

/* Remove focus style if browser supports :focus-visible. */
.button--overlay-and-hotspot.light:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

/* Reapply focus indicators for keyboard users only. */
.button--overlay-and-hotspot.light:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  outline: 2px solid transparent;
}

.button--overlay-and-hotspot.dark {
  color: var(--wds2-colour-nissanwhite);
}

.button--overlay-and-hotspot.dark .icon {
  border-color: var(--wds2-colour-nissanwhite);
}

.button--overlay-and-hotspot.dark:enabled:not(:active):hover .icon {
  background-color: var(--wds2-colour-nissanwhite);
  color: var(--wds2-colour-nissanblack);
}

.button--overlay-and-hotspot.dark:disabled {
  color: var(--wds2-colour-action-disabled-ondark);
}

.button--overlay-and-hotspot.dark:disabled .icon {
  border-color: var(--wds2-colour-action-disabled-ondark);
}

.button--overlay-and-hotspot.dark:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--overlay-and-hotspot.dark:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

.button--overlay-and-hotspot.dark:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--overlay-and-hotspot[dir=rtl] {
  text-align: right;
}

.button--overlay-and-hotspot[dir=rtl] .icon {
  margin-left: 16px;
  margin-right: 0;
}

.button--primary {
  -webkit-border-radius: var(--wds2-radius-l);
  border-radius: var(--wds2-radius-l);
  border: none;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve), box-shadow var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve), color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve);
}

.button--primary.light {
  background-color: var(--wds2-colour-nissanblack);
  color: var(--wds2-colour-nissanwhite);
}

.button--primary.light:disabled {
  background-color: var(--wds2-colour-action-disabled-onlight);
  color: var(--wds2-colour-nissangrey);
}

.button--primary.light:enabled:not(:active):hover {
  background-color: var(--wds2-colour-action-hover-onlight);
}

.button--primary.light:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  /* 'box-shadow' is reverted in forced color modes (Windows high-contrast mode),
   * while a transparent 'outline' is overridden appropriately. */
  outline: 2px solid transparent;
}

/* Remove focus style if browser supports :focus-visible. */
.button--primary.light:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

/* Reapply focus indicators for keyboard users only. */
.button--primary.light:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  outline: 2px solid transparent;
}

.button--primary.dark {
  background-color: var(--wds2-colour-nissanwhite);
  color: var(--wds2-colour-nissanblack);
}

.button--primary.dark:disabled {
  background-color: var(--wds2-colour-action-disabled-ondark);
  color: var(--wds2-colour-nissanblack);
}

.button--primary.dark:enabled:not(:active):hover {
  background-color: var(--wds2-colour-action-hover-ondark);
  color: var(--wds2-colour-action-disabled-ondark);
}

.button--primary.dark:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--primary.dark:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

.button--primary.dark:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--secondary {
  -webkit-border-radius: var(--wds2-radius-l);
  background-color: transparent;
  border-radius: var(--wds2-radius-l);
  border: none;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve), box-shadow var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve);
}

.button--secondary.light {
  /* Animating the button's border affects DOM layout and isn't smooth, so instead fake the border with box-shadow. */
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanblack) inset;
  color: var(--wds2-colour-nissanblack);
}

.button--secondary.light:disabled {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-action-disabled-onlight) inset;
  color: var(--wds2-colour-action-disabled-onlight);
}

.button--secondary.light:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanblack) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  /* 'box-shadow' is reverted in forced color modes (Windows high-contrast mode),
   * while a transparent 'outline' is overridden appropriately. */
  outline: 2px solid transparent;
}

/* Remove focus style if browser supports :focus-visible. */
.button--secondary.light:focus:not(:focus-visible) {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanblack) inset;
  outline: none;
}

/* Reapply focus indicators for keyboard users only. */
.button--secondary.light:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanblack) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  outline: 2px solid transparent;
}

.button--secondary.light:enabled:not(:active):hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanblack) inset;
}

.button--secondary.light:not(:active):focus:hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanblack) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
}

.button--secondary.light:not(:active):focus:not(:focus-visible):hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanblack) inset;
}

.button--secondary.light:not(:active):focus-visible:hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanblack) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
}

.button--secondary.dark {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanwhite) inset;
  color: var(--wds2-colour-nissanwhite);
}

.button--secondary.dark:disabled {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-action-disabled-ondark) inset;
  color: var(--wds2-colour-action-disabled-ondark);
}

.button--secondary.dark:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanwhite) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--secondary.dark:focus:not(:focus-visible) {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanwhite) inset;
  outline: none;
}

.button--secondary.dark:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-m) var(--wds2-colour-nissanwhite) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--secondary.dark:enabled:not(:active):hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanwhite) inset;
}

.button--secondary.dark:not(:active):focus:hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanwhite) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
}

.button--secondary.dark:not(:active):focus:not(:focus-visible):hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanwhite) inset;
}

.button--secondary.dark:not(:active):focus-visible:hover {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-nissanwhite) inset, 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
}

.button--tertiary {
  -webkit-border-radius: 4px;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  padding: 11px 0 13px 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve), color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve);
}

.button--tertiary:after {
  bottom: 3px;
  content: "";
  height: var(--wds2-stroke-m);
  left: 0;
  position: absolute;
  transition: background-color var(--wds2-motion-hover-on-transitionDuration) var(--wds2-motion-hover-on-bezierCurve);
  width: 100%;
}

.button--tertiary:enabled:not(:active):hover:after {
  background-color: transparent;
}

.button--tertiary.light {
  color: var(--wds2-colour-nissanblack);
}

.button--tertiary.light:after {
  background-color: var(--wds2-colour-nissanblack);
}

.button--tertiary.light:disabled {
  color: var(--wds2-colour-action-disabled-onlight);
}

.button--tertiary.light:disabled:after {
  background-color: var(--wds2-colour-action-disabled-onlight);
}

.button--tertiary.light:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  /* 'box-shadow' is reverted in forced color modes (Windows high-contrast mode),
   * while a transparent 'outline' is overridden appropriately. */
  outline: 2px solid transparent;
}

/* Remove focus style if browser supports :focus-visible. */
.button--tertiary.light:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

/* Reapply focus indicators for keyboard users only. */
.button--tertiary.light:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-onlight);
  outline: 2px solid transparent;
}

.button--tertiary.dark:after {
  background-color: var(--wds2-colour-nissanwhite);
}

.button--tertiary.dark {
  color: var(--wds2-colour-nissanwhite);
}

.button--tertiary.dark:disabled {
  color: var(--wds2-colour-action-disabled-ondark);
}

.button--tertiary.dark:disabled:after {
  background-color: var(--wds2-colour-action-disabled-ondark) !important;
}

.button--tertiary.dark:focus {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--tertiary.dark:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

.button--tertiary.dark:focus-visible {
  box-shadow: 0 0 0 var(--wds2-stroke-l) var(--wds2-colour-action-focus-ondark);
  outline: 2px solid transparent;
}

.button--tertiary[dir=rtl] {
  text-align: right;
}

.button--tertiary[dir=rtl]:after {
  left: auto;
  right: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* for safari font weight issue */
  font-synthesis: none;
  background-color: #fff;
}

:host,
:root {
  /**
  * @tokens Colors
  * @presenter Color
  */
  --wds2-colour-nissanblack: rgba(0, 0, 0, 1);
  --wds2-colour-nissangrey: rgba(239, 239, 239, 1);
  --wds2-colour-nissanwhite: rgba(255, 255, 255, 1);
  --wds2-colour-validation-success-onlight: rgba(10, 128, 53, 1);
  --wds2-colour-validation-success-ondark: rgba(14, 190, 79, 1);
  --wds2-colour-validation-error-onlight: rgba(224, 0, 52, 1);
  --wds2-colour-validation-error-ondark: rgba(255, 133, 161, 1);
  --wds2-colour-validation-background-success-onlight: rgba(231, 242, 235, 1);
  --wds2-colour-validation-background-error-onlight: rgba(245, 231, 234, 1);
  --wds2-colour-validation-background-info-onlight: rgba(239, 239, 239, 1);
  --wds2-colour-action-hover-onlight: rgba(76, 76, 76, 1);
  --wds2-colour-keyline-onlight: rgba(204, 204, 204, 1);
  --wds2-colour-background-grey: rgba(246, 246, 246, 1);
  --wds2-colour-offers: rgba(0, 118, 171, 1);
  --wds2-colour-action-focus-onlight: rgba(84, 133, 240, 1);
  --wds2-colour-action-disabled-onlight: rgba(204, 204, 204, 1);
  --wds2-colour-action-hover-ondark: rgba(204, 204, 204, 1);
  --wds2-colour-action-focus-ondark: rgba(84, 133, 240, 1);
  --wds2-colour-action-disabled-ondark: rgba(76, 76, 76, 1);
  /**
  * @tokens Border Radius
  * @presenter BorderRadius
  */
  --wds2-radius-l: 40px;
  /**
  * @tokens Borders
  * @presenter Border
  */
  --wds2-stroke-s: 1px;
  --wds2-stroke-m: 2px;
  --wds2-stroke-l: 4px;
  /**
  * @tokens Font Families
  * @presenter FontFamily
  */
  --wds2-type-display-m-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-display-m-fontWeight: 400;
  --wds2-type-display-m-fontSize: 32px;
  --wds2-type-display-m-letterSpacing: 1.5px;
  --wds2-type-display-m-lineHeight: 42px;
  --wds2-type-display-s-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-display-s-fontWeight: 400;
  --wds2-type-display-s-fontSize: 24px;
  --wds2-type-display-s-letterSpacing: 1.5px;
  --wds2-type-display-s-lineHeight: 34px;
  --wds2-type-display-xs-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-display-xs-fontWeight: 400;
  --wds2-type-display-xs-fontSize: 20px;
  --wds2-type-display-xs-letterSpacing: 1.5px;
  --wds2-type-display-xs-lineHeight: 26px;
  --wds2-type-subtitle-m-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-subtitle-m-fontWeight: 700;
  --wds2-type-subtitle-m-fontSize: 16px;
  --wds2-type-subtitle-m-letterSpacing: 2px;
  --wds2-type-subtitle-m-lineHeight: 26px;
  --wds2-type-subtitle-s-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-subtitle-s-fontWeight: 700;
  --wds2-type-subtitle-s-fontSize: 14px;
  --wds2-type-subtitle-s-letterSpacing: 2px;
  --wds2-type-subtitle-s-lineHeight: 24px;
  --wds2-type-body-light-m-fontFamily: NissanBrand-Light, NotoSans-Arabic;
  --wds2-type-body-light-m-fontWeight: 300;
  --wds2-type-body-light-m-fontSize: 16px;
  --wds2-type-body-light-m-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-light-m-lineHeight: 26px;
  --wds2-type-body-regular-m-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-body-regular-m-fontWeight: 400;
  --wds2-type-body-regular-m-fontSize: 16px;
  --wds2-type-body-regular-m-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-regular-m-lineHeight: 26px;
  --wds2-type-body-link-m-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-body-link-m-fontWeight: 400;
  --wds2-type-body-link-m-fontSize: 16px;
  --wds2-type-body-link-m-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-link-m-lineHeight: 26px;
  --wds2-type-body-bold-m-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-body-bold-m-fontWeight: 700;
  --wds2-type-body-bold-m-fontSize: 16px;
  --wds2-type-body-bold-m-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-bold-m-lineHeight: 26px;
  --wds2-type-body-regular-s-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-body-regular-s-fontWeight: 400;
  --wds2-type-body-regular-s-fontSize: 14px;
  --wds2-type-body-regular-s-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-regular-s-lineHeight: 24px;
  --wds2-type-body-light-s-fontFamily: NissanBrand-Light, NotoSans-Arabic;
  --wds2-type-body-light-s-fontWeight: 300;
  --wds2-type-body-light-s-fontSize: 14px;
  --wds2-type-body-light-s-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-light-s-lineHeight: 24px;
  --wds2-type-body-link-s-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-body-link-s-fontWeight: 400;
  --wds2-type-body-link-s-fontSize: 14px;
  --wds2-type-body-link-s-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-link-s-lineHeight: 24px;
  --wds2-type-body-bold-s-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-body-bold-s-fontWeight: 700;
  --wds2-type-body-bold-s-fontSize: 14px;
  --wds2-type-body-bold-s-letterSpacing: 0.8999999761581421px;
  --wds2-type-body-bold-s-lineHeight: 24px;
  --wds2-type-disclaimer-light-fontFamily: NissanBrand-Light, NotoSans-Arabic;
  --wds2-type-disclaimer-light-fontWeight: 300;
  --wds2-type-disclaimer-light-fontSize: 12px;
  --wds2-type-disclaimer-light-letterSpacing: 0.8999999761581421px;
  --wds2-type-disclaimer-light-lineHeight: 18px;
  --wds2-type-disclaimer-bold-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-disclaimer-bold-fontWeight: 700;
  --wds2-type-disclaimer-bold-fontSize: 12px;
  --wds2-type-disclaimer-bold-letterSpacing: 0.8999999761581421px;
  --wds2-type-disclaimer-bold-lineHeight: 18px;
  --wds2-type-action-button-m-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-action-button-m-fontWeight: 700;
  --wds2-type-action-button-m-fontSize: 16px;
  --wds2-type-action-button-m-letterSpacing: 2px;
  --wds2-type-action-button-m-lineHeight: 24px;
  --wds2-type-action-button-m-hover-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-action-button-m-hover-fontWeight: 700;
  --wds2-type-action-button-m-hover-fontSize: 16px;
  --wds2-type-action-button-m-hover-letterSpacing: 2px;
  --wds2-type-action-button-m-hover-lineHeight: 24px;
  --wds2-type-action-filter-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-action-filter-fontWeight: 700;
  --wds2-type-action-filter-fontSize: 12px;
  --wds2-type-action-filter-letterSpacing: 2px;
  --wds2-type-action-filter-lineHeight: 20px;
  --wds2-type-action-filter-hover-fontFamily: NissanBrand-Bold, NotoSans-Arabic;
  --wds2-type-action-filter-hover-fontWeight: 700;
  --wds2-type-action-filter-hover-fontSize: 12px;
  --wds2-type-action-filter-hover-letterSpacing: 2px;
  --wds2-type-action-filter-hover-lineHeight: 20px;
  --wds2-type-quote-l-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-quote-l-fontWeight: 400;
  --wds2-type-quote-l-fontSize: 42px;
  --wds2-type-quote-l-letterSpacing: 2px;
  --wds2-type-quote-l-lineHeight: 52px;
  --wds2-type-quote-s-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-quote-s-fontWeight: 400;
  --wds2-type-quote-s-fontSize: 24px;
  --wds2-type-quote-s-letterSpacing: 2px;
  --wds2-type-quote-s-lineHeight: 34px;
  --wds2-type-display-l-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-display-l-fontWeight: 400;
  --wds2-type-display-l-fontSize: 42px;
  --wds2-type-display-l-letterSpacing: 1.5px;
  --wds2-type-display-l-lineHeight: 52px;
  --wds2-type-display-xl-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-display-xl-fontWeight: 400;
  --wds2-type-display-xl-fontSize: 68px;
  --wds2-type-display-xl-letterSpacing: 1.5px;
  --wds2-type-display-xl-lineHeight: 78px;
  --wds2-type-disclaimer-link-light-fontFamily: NissanBrand-Light, NotoSans-Arabic;
  --wds2-type-disclaimer-link-light-fontWeight: 300;
  --wds2-type-disclaimer-link-light-fontSize: 12px;
  --wds2-type-disclaimer-link-light-letterSpacing: 0.8999999761581421px;
  --wds2-type-disclaimer-link-light-lineHeight: 18px;
  --wds2-type-disclaimer-regular-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-disclaimer-regular-fontWeight: 400;
  --wds2-type-disclaimer-regular-fontSize: 12px;
  --wds2-type-disclaimer-regular-letterSpacing: 0.8999999761581421px;
  --wds2-type-disclaimer-regular-lineHeight: 18px;
  --wds2-type-disclaimer-link-regular-fontFamily: NissanBrand-Regular, NotoSans-Arabic;
  --wds2-type-disclaimer-link-regular-fontWeight: 400;
  --wds2-type-disclaimer-link-regular-fontSize: 12px;
  --wds2-type-disclaimer-link-regular-letterSpacing: 0.8999999761581421px;
  --wds2-type-disclaimer-link-regular-lineHeight: 18px;
  --wds2-type-noto-sans-arabic-fontFamily: NotoSans-Arabic;
  --wds2-grid-l-column: 12;
  --wds2-grid-l-padding: 40px;
  --wds2-grid-l-margin: 80px;
  --wds2-grid-l-minViewport: 1024px;
  --wds2-grid-l-maxViewport: 1499px;
  --wds2-grid-xl-column: 12;
  --wds2-grid-xl-padding: 40px;
  --wds2-grid-xl-margin: 0px;
  --wds2-grid-xl-minViewport: 1500px;
  --wds2-grid-m-column: 12;
  --wds2-grid-m-padding: 30px;
  --wds2-grid-m-margin: 40px;
  --wds2-grid-m-minViewport: 768px;
  --wds2-grid-m-maxViewport: 1023px;
  --wds2-grid-s-column: 2;
  --wds2-grid-s-padding: 20px;
  --wds2-grid-s-margin: 20px;
  --wds2-grid-s-minViewport: 320px;
  --wds2-grid-s-maxViewport: 767px;
  --wds2-radio-element-margin: 24px;
  --wds2-dropdown-element-margin: 40px;
  --wds2-icon-fontFamily: nissan-modernized-icons-font;
  --wds2-icon-fontWeight: normal;
  --wds2-icon-lineHeight: 1;
  --wds2-icon-alert: "";
  --wds2-icon-anchor-link-mobile: "";
  --wds2-icon-arrow-up: "";
  --wds2-icon-automatic: "";
  --wds2-icon-battery: "";
  --wds2-icon-battery-leasing: "";
  --wds2-icon-body-type: "";
  --wds2-icon-book-a-service: "";
  --wds2-icon-download-a-brochure: "";
  --wds2-icon-build: "";
  --wds2-icon-burger-menu: "";
  --wds2-icon-cab-type: "";
  --wds2-icon-calculator: "";
  --wds2-icon-calendar: "";
  --wds2-icon-capacity: "";
  --wds2-icon-car: "";
  --wds2-icon-carwings: "";
  --wds2-icon-cargo-length: "";
  --wds2-icon-charging-cost: "";
  --wds2-icon-chassis: "";
  --wds2-icon-circle-outline: "";
  --wds2-icon-clock: "";
  --wds2-icon-close-cross: "";
  --wds2-icon-coins: "";
  --wds2-icon-colour: "";
  --wds2-icon-compare: "";
  --wds2-icon-configure: "";
  --wds2-icon-contact-email: "";
  --wds2-icon-contact-phone: "";
  --wds2-icon-cookie: "";
  --wds2-icon-cubic_volume: "";
  --wds2-icon-dimensions: "";
  --wds2-icon-directions: "";
  --wds2-icon-discount: "";
  --wds2-icon-document: "";
  --wds2-icon-doors: "";
  --wds2-icon-double-slider: "";
  --wds2-icon-down-arrow: "";
  --wds2-icon-download-brochure: "";
  --wds2-icon-efficiency-class: "";
  --wds2-icon-elipsis: "";
  --wds2-icon-email-us: "";
  --wds2-icon-emission: "";
  --wds2-icon-emission-control-standard: "";
  --wds2-icon-Engine: "";
  --wds2-icon-engine-capacity: "";
  --wds2-icon-engine-size: "";
  --wds2-icon-explore: "";
  --wds2-icon-external-link: "";
  --wds2-icon-social-facebook: "";
  --wds2-icon-feedback-star: "";
  --wds2-icon-feedback-star-empty: "";
  --wds2-icon-feedback-star-half-filled: "";
  --wds2-icon-find-a-dealer: "";
  --wds2-icon-fuel-type: "";
  --wds2-icon-full-screen-close: "";
  --wds2-icon-full-screen: "";
  --wds2-icon-geolocator: "";
  --wds2-icon-globe: "";
  --wds2-icon-google-plus: "";
  --wds2-icon-gross-weight: "";
  --wds2-icon-height: "";
  --wds2-icon-horsepower: "";
  --wds2-icon-image-gallery-all: "";
  --wds2-icon-image-gallery-one: "";
  --wds2-icon-image-slider-control: "";
  --wds2-icon-info: "";
  --wds2-icon-information: "";
  --wds2-icon-instagram: "";
  --wds2-icon-inventory: "";
  --wds2-icon-i-nventory-funnel: "";
  --wds2-icon-inventory-results: "";
  --wds2-icon-left-arrow: "";
  --wds2-icon-length: "";
  --wds2-icon-linkedin: "";
  --wds2-icon-list: "";
  --wds2-icon-list-view: "";
  --wds2-icon-list-view-2: "";
  --wds2-icon-live-chat: "";
  --wds2-icon-loading-spinner: "";
  --wds2-icon-log-out: "";
  --wds2-icon-mpg: "";
  --wds2-icon-mph: "";
  --wds2-icon-manual: "";
  --wds2-icon-map-view: "";
  --wds2-icon-map-view-2: "";
  --wds2-icon-mileage: "";
  --wds2-icon-minus: "";
  --wds2-icon-more-dealer-details: "";
  --wds2-icon-new-cars: "";
  --wds2-icon-bas-express-booking: "";
  --wds2-icon-bas-maintenance-package: "";
  --wds2-icon-number-of-seats: "";
  --wds2-icon-offers: "";
  --wds2-icon-options: "";
  --wds2-icon-pdf: "";
  --wds2-icon-package: "";
  --wds2-icon-packs: "";
  --wds2-icon-pagination-off: "";
  --wds2-icon-pagination-on: "";
  --wds2-icon-pan: "";
  --wds2-icon-payload: "";
  --wds2-icon-phone: "";
  --wds2-icon-photo: "";
  --wds2-icon-play: "";
  --wds2-icon-player--control-fullscreen: "";
  --wds2-icon-player-control-no-volume: "";
  --wds2-icon-player-control-pause: "";
  --wds2-icon-player-control-play: "";
  --wds2-icon-player-control-volume: "";
  --wds2-icon-plus: "";
  --wds2-icon-preferred-dealer: "";
  --wds2-icon-preferred-dealer-solid: "";
  --wds2-icon-print: "";
  --wds2-icon-quick-view: "";
  --wds2-icon-registration-date: "";
  --wds2-icon-reset: "";
  --wds2-icon-review: "";
  --wds2-icon-right-arrow: "";
  --wds2-icon-road-tax: "";
  --wds2-icon-road-side-assistance: "";
  --wds2-icon-running-cost: "";
  --wds2-icon-save: "";
  --wds2-icon-save-2: "";
  --wds2-icon-search: "";
  --wds2-icon-seat: "";
  --wds2-icon-services: "";
  --wds2-icon-share: "";
  --wds2-icon-share-cfg: "";
  --wds2-icon-share-save: "";
  --wds2-icon-slider-arrow-left: "";
  --wds2-icon-slider-arrow-right: "";
  --wds2-icon-social-draugiem: "";
  --wds2-icon-social-email-us-fill: "";
  --wds2-icon-social-facebook-fill: "";
  --wds2-icon-social-google-plus-fill: "";
  --wds2-icon-social-instagram-fill: "";
  --wds2-icon-social-line-fill: "";
  --wds2-icon-social-linkedin-fill: "";
  --wds2-icon-social-ok-fill: "";
  --wds2-icon-social-ok-outline: "";
  --wds2-icon-social-pinterest-fill: "";
  --wds2-icon-social-twitter-fill: "";
  --wds2-icon-social-vk-fill: "";
  --wds2-icon-social-vk-outline: "";
  --wds2-icon-social-wechat-fill: "";
  --wds2-icon-social-wechat-outline: "";
  --wds2-icon-social-weibo: "";
  --wds2-icon-social-weibo-outline: "";
  --wds2-icon-social-youtube: "";
  --wds2-icon-social-youku-fill: "";
  --wds2-icon-social-youku-outline: "";
  --wds2-icon-speed: "";
  --wds2-icon-sponsored-dealer-award: "";
  --wds2-icon-style-packs: "";
  --wds2-icon-summary: "";
  --wds2-icon-test-drive: "";
  --wds2-icon-Tick: "";
  --wds2-icon-towing: "";
  --wds2-icon-trade-in: "";
  --wds2-icon-trade-in-quote: "";
  --wds2-icon-trash: "";
  --wds2-icon-trims: "";
  --wds2-icon-social-twitter: "";
  --wds2-icon-tyre: "";
  --wds2-icon-universal-price: "";
  --wds2-icon-up-arrow: "";
  --wds2-icon-van: "";
  --wds2-icon-version-grade: "";
  --wds2-icon-video-carousel-link: "";
  --wds2-icon-warranty: "";
  --wds2-icon-wheel: "";
  --wds2-icon-world: "";
  --wds2-icon-wreath: "";
  --wds2-icon-your-choice: "";
  --wds2-icon-your-choice-light: "";
  --wds2-icon-social-youtube1: "";
  --wds2-icon-zoom: "";
  --wds2-icon-accessories: "";
  --wds2-icon-aerodynamic_body_kit: "";
  --wds2-icon-after_sales: "";
  --wds2-icon-ambient_lighting: "";
  --wds2-icon-android_compatibility: "";
  --wds2-icon-assistance: "";
  --wds2-icon-assisted_steering: "";
  --wds2-icon-aux: "";
  --wds2-icon-available: "";
  --wds2-icon-battery_service: "";
  --wds2-icon-bed_channel_system: "";
  --wds2-icon-best_seller: "";
  --wds2-icon-bluetooth: "";
  --wds2-icon-car_location: "";
  --wds2-icon-clear: "";
  --wds2-icon-climate_control: "";
  --wds2-icon-commerce: "";
  --wds2-icon-continuously_variable_transmission: "";
  --wds2-icon-cylinder: "";
  --wds2-icon-device_compatibility: "";
  --wds2-icon-drive_train_2wd: "";
  --wds2-icon-drive_train_4wd: "";
  --wds2-icon-dual_climate_control: "";
  --wds2-icon-editpencil2: "";
  --wds2-icon-engine: "";
  --wds2-icon-enginePower: "";
  --wds2-icon-epedal_driving: "";
  --wds2-icon-exclaimation: "";
  --wds2-icon-extended_range: "";
  --wds2-icon-exterior_view: "";
  --wds2-icon-faqs: "";
  --wds2-icon-fuel_type_ev: "";
  --wds2-icon-fully_boxed_frame: "";
  --wds2-icon-grants_savings_incentive: "";
  --wds2-icon-heated_seats: "";
  --wds2-icon-heated_steering_wheel: "";
  --wds2-icon-home_and_public_charging_stations: "";
  --wds2-icon-horn: "";
  --wds2-icon-indicator: "";
  --wds2-icon-instant_acceleration: "";
  --wds2-icon-intelligent_key: "";
  --wds2-icon-interior_view: "";
  --wds2-icon-keep_me_informed: "";
  --wds2-icon-lights: "";
  --wds2-icon-lights_and_horn: "";
  --wds2-icon-maintain_speed: "";
  --wds2-icon-managing_my_device_on_the_go: "";
  --wds2-icon-map_updates: "";
  --wds2-icon-nissan_concierge_entertainment: "";
  --wds2-icon-nissan_fleet: "";
  --wds2-icon-noise_cancellation: "";
  --wds2-icon-oil_and_filter_change: "";
  --wds2-icon-onboarding_to_ownership: "";
  --wds2-icon-player_control_back: "";
  --wds2-icon-player_control_forward: "";
  --wds2-icon-player_control_rewind: "";
  --wds2-icon-player_control_skip: "";
  --wds2-icon-public_charging_stations: "";
  --wds2-icon-rapid_charge: "";
  --wds2-icon-rear_entertainment: "";
  --wds2-icon-request_a_call_back: "";
  --wds2-icon-restaurant: "";
  --wds2-icon-running_cost: "";
  --wds2-icon-seat_capacity: "";
  --wds2-icon-service_booking_date: "";
  --wds2-icon-service_log: "";
  --wds2-icon-slide_in: "";
  --wds2-icon-soundproof: "";
  --wds2-icon-tick: "";
  --wds2-icon-torque: "";
  --wds2-icon-touch_screen: "";
  --wds2-icon-usb: "";
  --wds2-icon-voice_recognition: "";
  --wds2-icon-warning: "";
  --wds2-icon-width: "";
  --wds2-icon-wiper_blade_replacement: "";
  --wds2-icon-work_location: "";
  --wds2-icon-zoom_in: "";
  --wds2-icon-zoom_out: "";
  --wds2-icon-drive_train_awd: "";
  --wds2-icon-driving_log_history: "";
  --wds2-icon-dealer_review: "";
  --wds2-icon-nissan_intelligent_mobility: "";
  --wds2-icon-slider_arrow_down: "";
  --wds2-icon-upholstery: "";
  --wds2-icon-copy: "";
  --wds2-icon-settings: "";
  --wds2-icon-offers_horizontal: "";
  --wds2-icon-rotate_device: "";
  --wds2-icon-Gallery-View-List: "";
  --wds2-icon-Gallery-View-Grid: "";
  --wds2-icon-connected-car: "";
  --wds2-icon-wrench: "";
  --wds2-icon-social-fb-messenger: "";
  --wds2-icon-social-whatsapp: "";
  --wds2-icon-abs-alert: "";
  --wds2-icon-accelerate: "";
  --wds2-icon-airbag-status: "";
  --wds2-icon-airbag: "";
  --wds2-icon-alexa: "";
  --wds2-icon-android-auto: "";
  --wds2-icon-apple-carplay: "";
  --wds2-icon-area-alert: "";
  --wds2-icon-area: "";
  --wds2-icon-autonomous-driving: "";
  --wds2-icon-brake-alert: "";
  --wds2-icon-brake-fluid: "";
  --wds2-icon-brake: "";
  --wds2-icon-buy-at-home: "";
  --wds2-icon-camera: "";
  --wds2-icon-cant-connect: "";
  --wds2-icon-car-locator: "";
  --wds2-icon-change-driver: "";
  --wds2-icon-charging: "";
  --wds2-icon-check-in: "";
  --wds2-icon-check-out: "";
  --wds2-icon-co2: "";
  --wds2-icon-crossing-boutique: "";
  --wds2-icon-crossing-cafe: "";
  --wds2-icon-curfew-alert: "";
  --wds2-icon-delivery-follow-up: "";
  --wds2-icon-delivery: "";
  --wds2-icon-direction-walking: "";
  --wds2-icon-discover-at-home: "";
  --wds2-icon-door-to-door-navigation: "";
  --wds2-icon-download-document: "";
  --wds2-icon-drivers-profiles: "";
  --wds2-icon-driving-history: "";
  --wds2-icon-driving-restriction: "";
  --wds2-icon-engine-oil: "";
  --wds2-icon-engine-start-stop: "";
  --wds2-icon-engine-stop: "";
  --wds2-icon-entertainment: "";
  --wds2-icon-error-installing-update: "";
  --wds2-icon-export-document: "";
  --wds2-icon-extended-test-drive: "";
  --wds2-icon-eyes-on-the-road: "";
  --wds2-icon-face-happy: "";
  --wds2-icon-face-neutral: "";
  --wds2-icon-face-unhappy: "";
  --wds2-icon-floor-guide: "";
  --wds2-icon-fuel-prices-gbp: "";
  --wds2-icon-fuel-prices-dollar: "";
  --wds2-icon-fuel-prices-jpy: "";
  --wds2-icon-google-assistant: "";
  --wds2-icon-guest-driver: "";
  --wds2-icon-hands-off-wheel: "";
  --wds2-icon-hd-radio-technology: "";
  --wds2-icon-hood-open: "";
  --wds2-icon-horsepower-boost: "";
  --wds2-icon-install-update: "";
  --wds2-icon-installation-completed: "";
  --wds2-icon-interior-vehicle-camera: "";
  --wds2-icon-invisible: "";
  --wds2-icon-license-plate: "";
  --wds2-icon-live-traffic-information: "";
  --wds2-icon-lock: "";
  --wds2-icon-low-tyre-pressure: "";
  --wds2-icon-mobile-internet-hotspot: "";
  --wds2-icon-multiple-drivers: "";
  --wds2-icon-new-feature: "";
  --wds2-icon-oil-alert: "";
  --wds2-icon-oil-level: "";
  --wds2-icon-pandora: "";
  --wds2-icon-parking: "";
  --wds2-icon-password: "";
  --wds2-icon-payment-methods: "";
  --wds2-icon-payment: "";
  --wds2-icon-power-on: "";
  --wds2-icon-destination-search: "";
  --wds2-icon-ranking: "";
  --wds2-icon-receive-package: "";
  --wds2-icon-remote-battery-management: "";
  --wds2-icon-remote-charging: "";
  --wds2-icon-remote-climate-control: "";
  --wds2-icon-remote-control: "";
  --wds2-icon-remote-diagnostics: "";
  --wds2-icon-remote-door-control: "";
  --wds2-icon-remote-engine-start-stop: "";
  --wds2-icon-remote-horn-light: "";
  --wds2-icon-remote-parking: "";
  --wds2-icon-remote-vehicle-servicing: "";
  --wds2-icon-road-ahead: "";
  --wds2-icon-safety: "";
  --wds2-icon-schedule-an-update-installation: "";
  --wds2-icon-self-driving-car: "";
  --wds2-icon-self-driving-wheel: "";
  --wds2-icon-service-at-home: "";
  --wds2-icon-shared-vehicle: "";
  --wds2-icon-sharing-permissions: "";
  --wds2-icon-siriusxm: "";
  --wds2-icon-sleep: "";
  --wds2-icon-smart-alerts: "";
  --wds2-icon-speed-alert: "";
  --wds2-icon-speed-cameras: "";
  --wds2-icon-split-billing: "";
  --wds2-icon-start-at-home: "";
  --wds2-icon-stolen-vehicle-tracking: "";
  --wds2-icon-streaming-audio-via-bluetooth: "";
  --wds2-icon-street-view: "";
  --wds2-icon-support: "";
  --wds2-icon-support-at-home: "";
  --wds2-icon-sync-driver-profile: "";
  --wds2-icon-take-control: "";
  --wds2-icon-test-drive-at-home: "";
  --wds2-icon-tom-tom-weather: "";
  --wds2-icon-traffic: "";
  --wds2-icon-transportation: "";
  --wds2-icon-trip-advisor: "";
  --wds2-icon-trunk-open: "";
  --wds2-icon-tyre-pressure: "";
  --wds2-icon-update--required: "";
  --wds2-icon-upload-offers: "";
  --wds2-icon-usb1: "";
  --wds2-icon-vehicle-damage: "";
  --wds2-icon-vehicle-delivery: "";
  --wds2-icon-vehicle-health: "";
  --wds2-icon-vehicle-status: "";
  --wds2-icon-vehicle-towed: "";
  --wds2-icon-vehicle-unlock: "";
  --wds2-icon-weather: "";
  --wds2-icon-wifi: "";
  --wds2-icon-yen: "";
  --wds-icon-elevator: "";
  --wds-icon-escalator-up: "";
  --wds-icon-escalator-down: "";
  --wds-icon-dealer-sales-staff: "";
  --wds-icon-desktop: "";
  --wds-icon-tablet: "";
  --wds-icon-body-repair: "";
  --wds-icon-communication-preference: "";
  --wds-icon-fingerprint: "";
  --wds-icon-language: "";
  --wds-icon-link: "";
  --wds-icon-qibla: "";
  --wds-icon-share-location: "";
  --wds-icon-upload: "";
  --wds-icon-virtual-showroom: "";
  --wds-icon-wallet: "";
  --wds-icon-contact-linkedin: "";
  --wds-icon-contact-spotify: "";
  --wds-icon-contact-tiktok: "";
  --wds-icon-dealership: "";
  --wds-icon-mail-checked: "";
  --wds-icon-pin-ev: "";
  --wds-icon-alert-fill: "";
  --wds-icon-alert-outline: "";
  --wds-icon-bell-fill: "";
  --wds-icon-bell-outline: "";
  --wds-icon-car-fill: "";
  --wds-icon-car-outline: "";
  --wds-icon-direction-fill: "";
  --wds-icon-direction-outline: "";
  --wds-icon-document-fill: "";
  --wds-icon-document-outline: "";
  --wds-icon-garage-fill: "";
  --wds-icon-garage-outline: "";
  --wds-icon-headset-fill: "";
  --wds-icon-headset-outline: "";
  --wds-icon-info-book-fill: "";
  --wds-icon-info-book-outline: "";
  --wds-icon-info-fill: "";
  --wds-icon-info-outline: "";
  --wds-icon-mail-fill: "";
  --wds-icon-mail-outline: "";
  --wds-icon-map-fill: "";
  --wds-icon-map-outline: "";
  --wds-icon-map-pin-fill: "";
  --wds-icon-map-pin-outline: "";
  --wds-icon-more-fill: "";
  --wds-icon-more-outline: "";
  --wds-icon-news-fill: "";
  --wds-icon-news-outline: "";
  --wds-icon-shield-fill: "";
  --wds-icon-shield-outline: "";
  --wds-icon-shopping-basket-fill: "";
  --wds-icon-shopping-basket-outline: "";
  --wds-icon-shopping-cart-fill: "";
  --wds-icon-shopping-cart-outline: "";
  --wds-icon-user-fill: "";
  --wds-icon-user-outline: "";
  --wds-icon-campaigns-fill: "";
  --wds-icon-campaigns-outline: "";
  --wds2-motion-hover-on-bezierCurve: cubic-bezier(0.77, 0, 0.18, 1);
  --wds2-motion-hover-on-transitionDuration: 0.3s;
  --wds2-motion-hover-off-bezierCurve: cubic-bezier(0.77, 0, 0.18, 1);
  --wds2-motion-hover-off-transitionDuration: 0.3s;
  --wds2-motion-hero-start-bezierCurve: cubic-bezier(0.77, 0, 0.18, 1);
  --wds2-motion-hero-start-transitionDuration: 1.2s;
  --wds2-motion-hero-end-bezierCurve: cubic-bezier(0.77, 0, 0.18, 1);
  --wds2-motion-hero-end-transitionDuration: NaNs;
  --wds2-motion-slide-out-bezierCurve: cubic-bezier(0.77, 0, 0.18, 1);
  --wds2-motion-slide-out-transitionDuration: 0.3s;
  --wds2-motion-slide-in-bezierCurve: cubic-bezier(0.77, 0, 0.18, 1);
  --wds2-motion-slide-in-transitionDuration: 0.3s;
}

:host, :root {
  font-family: var(--wds2-type-display-m-fontFamily);
}

[class*=" icon-"], [class^=icon-] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--wds2-icon-fontFamily) !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.container {
  display: block;
  margin: var(--wds2-grid-s-margin);
}

.row {
  display: grid;
  grid-template-columns: repeat(var(--wds2-grid-s-column), 1fr);
  column-gap: var(--wds2-grid-s-padding);
}

.col-sm-1 {
  grid-column: auto/span 1;
}

.col-sm-2 {
  grid-column: auto/span 2;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    display: block;
    margin: var(--wds2-grid-m-margin);
  }
  .row {
    display: grid;
    grid-template-columns: repeat(var(--wds2-grid-m-column), 1fr);
    column-gap: var(--wds2-grid-m-padding);
  }
  .col-md-1 {
    grid-column: auto/span 1;
  }
  .col-md-2 {
    grid-column: auto/span 2;
  }
  .col-md-3 {
    grid-column: auto/span 3;
  }
  .col-md-4 {
    grid-column: auto/span 4;
  }
  .col-md-5 {
    grid-column: auto/span 5;
  }
  .col-md-6 {
    grid-column: auto/span 6;
  }
  .col-md-7 {
    grid-column: auto/span 7;
  }
  .col-md-8 {
    grid-column: auto/span 8;
  }
  .col-md-9 {
    grid-column: auto/span 9;
  }
  .col-md-10 {
    grid-column: auto/span 10;
  }
  .col-md-11 {
    grid-column: auto/span 11;
  }
  .col-md-12 {
    grid-column: auto/span 12;
  }
}
@media (min-width: 1024px) and (max-width: 1499px) {
  .container {
    display: block;
    margin: var(--wds2-grid-l-margin);
  }
  .row {
    display: grid;
    grid-template-columns: repeat(var(--wds2-grid-l-column), 1fr);
    column-gap: var(--wds2-grid-l-padding);
  }
  .col-l-1 {
    grid-column: auto/span 1;
  }
  .col-l-2 {
    grid-column: auto/span 2;
  }
  .col-l-3 {
    grid-column: auto/span 3;
  }
  .col-l-4 {
    grid-column: auto/span 4;
  }
  .col-l-5 {
    grid-column: auto/span 5;
  }
  .col-l-6 {
    grid-column: auto/span 6;
  }
  .col-l-7 {
    grid-column: auto/span 7;
  }
  .col-l-8 {
    grid-column: auto/span 8;
  }
  .col-l-9 {
    grid-column: auto/span 9;
  }
  .col-l-10 {
    grid-column: auto/span 10;
  }
  .col-l-11 {
    grid-column: auto/span 11;
  }
  .col-l-12 {
    grid-column: auto/span 12;
  }
}
@media (min-width: 1500px) {
  .container {
    display: block;
    margin: var(--wds2-grid-xl-margin);
  }
  .row {
    display: grid;
    grid-template-columns: repeat(var(--wds2-grid-xl-column), 1fr);
    column-gap: var(--wds2-grid-xl-padding);
  }
  .col-xl-1 {
    grid-column: auto/span 1;
  }
  .col-xl-2 {
    grid-column: auto/span 2;
  }
  .col-xl-3 {
    grid-column: auto/span 3;
  }
  .col-xl-4 {
    grid-column: auto/span 4;
  }
  .col-xl-5 {
    grid-column: auto/span 5;
  }
  .col-xl-6 {
    grid-column: auto/span 6;
  }
  .col-xl-7 {
    grid-column: auto/span 7;
  }
  .col-xl-8 {
    grid-column: auto/span 8;
  }
  .col-xl-9 {
    grid-column: auto/span 9;
  }
  .col-xl-10 {
    grid-column: auto/span 10;
  }
  .col-xl-11 {
    grid-column: auto/span 11;
  }
  .col-xl-12 {
    grid-column: auto/span 12;
  }
}
.wds2-type-display-m {
  font-family: var(--wds2-type-display-m-fontFamily);
  font-weight: var(--wds2-type-display-m-fontWeight);
  font-size: var(--wds2-type-display-m-fontSize);
  letter-spacing: var(--wds2-type-display-m-letterSpacing);
  line-height: var(--wds2-type-display-m-lineHeight);
}

.wds2-type-display-s {
  font-family: var(--wds2-type-display-s-fontFamily);
  font-weight: var(--wds2-type-display-s-fontWeight);
  font-size: var(--wds2-type-display-s-fontSize);
  letter-spacing: var(--wds2-type-display-s-letterSpacing);
  line-height: var(--wds2-type-display-s-lineHeight);
}

.wds2-type-display-xs {
  font-family: var(--wds2-type-display-xs-fontFamily);
  font-weight: var(--wds2-type-display-xs-fontWeight);
  font-size: var(--wds2-type-display-xs-fontSize);
  letter-spacing: var(--wds2-type-display-xs-letterSpacing);
  line-height: var(--wds2-type-display-xs-lineHeight);
}

.wds2-type-subtitle-m {
  font-family: var(--wds2-type-subtitle-m-fontFamily);
  font-weight: var(--wds2-type-subtitle-m-fontWeight);
  font-size: var(--wds2-type-subtitle-m-fontSize);
  letter-spacing: var(--wds2-type-subtitle-m-letterSpacing);
  line-height: var(--wds2-type-subtitle-m-lineHeight);
}

.wds2-type-subtitle-s {
  font-family: var(--wds2-type-subtitle-s-fontFamily);
  font-weight: var(--wds2-type-subtitle-s-fontWeight);
  font-size: var(--wds2-type-subtitle-s-fontSize);
  letter-spacing: var(--wds2-type-subtitle-s-letterSpacing);
  line-height: var(--wds2-type-subtitle-s-lineHeight);
}

.wds2-type-body-light-m {
  font-family: var(--wds2-type-body-light-m-fontFamily);
  font-weight: var(--wds2-type-body-light-m-fontWeight);
  font-size: var(--wds2-type-body-light-m-fontSize);
  letter-spacing: var(--wds2-type-body-light-m-letterSpacing);
  line-height: var(--wds2-type-body-light-m-lineHeight);
}

.wds2-type-body-regular-m {
  font-family: var(--wds2-type-body-regular-m-fontFamily);
  font-weight: var(--wds2-type-body-regular-m-fontWeight);
  font-size: var(--wds2-type-body-regular-m-fontSize);
  letter-spacing: var(--wds2-type-body-regular-m-letterSpacing);
  line-height: var(--wds2-type-body-regular-m-lineHeight);
}

.wds2-type-body-link-m {
  font-family: var(--wds2-type-body-link-m-fontFamily);
  font-weight: var(--wds2-type-body-link-m-fontWeight);
  font-size: var(--wds2-type-body-link-m-fontSize);
  letter-spacing: var(--wds2-type-body-link-m-letterSpacing);
  line-height: var(--wds2-type-body-link-m-lineHeight);
  text-decoration: underline;
}

.wds2-type-body-bold-m {
  font-family: var(--wds2-type-body-bold-m-fontFamily);
  font-weight: var(--wds2-type-body-bold-m-fontWeight);
  font-size: var(--wds2-type-body-bold-m-fontSize);
  letter-spacing: var(--wds2-type-body-bold-m-letterSpacing);
  line-height: var(--wds2-type-body-bold-m-lineHeight);
}

.wds2-type-body-regular-s {
  font-family: var(--wds2-type-body-regular-s-fontFamily);
  font-weight: var(--wds2-type-body-regular-s-fontWeight);
  font-size: var(--wds2-type-body-regular-s-fontSize);
  letter-spacing: var(--wds2-type-body-regular-s-letterSpacing);
  line-height: var(--wds2-type-body-regular-s-lineHeight);
}

.wds2-type-body-light-s {
  font-family: var(--wds2-type-body-light-s-fontFamily);
  font-weight: var(--wds2-type-body-light-s-fontWeight);
  font-size: var(--wds2-type-body-light-s-fontSize);
  letter-spacing: var(--wds2-type-body-light-s-letterSpacing);
  line-height: var(--wds2-type-body-light-s-lineHeight);
}

.wds2-type-body-link-s {
  font-family: var(--wds2-type-body-link-s-fontFamily);
  font-weight: var(--wds2-type-body-link-s-fontWeight);
  font-size: var(--wds2-type-body-link-s-fontSize);
  letter-spacing: var(--wds2-type-body-link-s-letterSpacing);
  line-height: var(--wds2-type-body-link-s-lineHeight);
  text-decoration: underline;
}

.wds2-type-body-bold-s {
  font-family: var(--wds2-type-body-bold-s-fontFamily);
  font-weight: var(--wds2-type-body-bold-s-fontWeight);
  font-size: var(--wds2-type-body-bold-s-fontSize);
  letter-spacing: var(--wds2-type-body-bold-s-letterSpacing);
  line-height: var(--wds2-type-body-bold-s-lineHeight);
}

.wds2-type-disclaimer-light {
  font-family: var(--wds2-type-disclaimer-light-fontFamily);
  font-weight: var(--wds2-type-disclaimer-light-fontWeight);
  font-size: var(--wds2-type-disclaimer-light-fontSize);
  letter-spacing: var(--wds2-type-disclaimer-light-letterSpacing);
  line-height: var(--wds2-type-disclaimer-light-lineHeight);
}

.wds2-type-disclaimer-bold {
  font-family: var(--wds2-type-disclaimer-bold-fontFamily);
  font-weight: var(--wds2-type-disclaimer-bold-fontWeight);
  font-size: var(--wds2-type-disclaimer-bold-fontSize);
  letter-spacing: var(--wds2-type-disclaimer-bold-letterSpacing);
  line-height: var(--wds2-type-disclaimer-bold-lineHeight);
}

.wds2-type-disclaimer-link-light {
  font-family: var(--wds2-type-disclaimer-link-light-fontFamily);
  font-weight: var(--wds2-type-disclaimer-link-light-fontWeight);
  font-size: var(--wds2-type-disclaimer-link-light-fontSize);
  letter-spacing: var(--wds2-type-disclaimer-link-light-letterSpacing);
  line-height: var(--wds2-type-disclaimer-link-light-lineHeight);
  text-decoration: underline;
}

.wds2-type-disclaimer-regular {
  font-family: var(--wds2-type-disclaimer-regular-fontFamily);
  font-weight: var(--wds2-type-disclaimer-regular-fontWeight);
  font-size: var(--wds2-type-disclaimer-regular-fontSize);
  letter-spacing: var(--wds2-type-disclaimer-regular-letterSpacing);
  line-height: var(--wds2-type-disclaimer-regular-lineHeight);
}

.wds2-type-disclaimer-link-regular {
  font-family: var(--wds2-type-disclaimer-link-regular-fontFamily);
  font-weight: var(--wds2-type-disclaimer-link-regular-fontWeight);
  font-size: var(--wds2-type-disclaimer-link-regular-fontSize);
  letter-spacing: var(--wds2-type-disclaimer-link-regular-letterSpacing);
  line-height: var(--wds2-type-disclaimer-link-regularlineHeight);
  text-decoration: underline;
}

.wds2-type-action-button-m {
  font-family: var(--wds2-type-action-button-m-fontFamily);
  font-weight: var(--wds2-type-action-button-m-fontWeight);
  font-size: var(--wds2-type-action-button-m-fontSize);
  letter-spacing: var(--wds2-type-action-button-m-letterSpacing);
  line-height: var(--wds2-type-action-button-m-lineHeight);
}

.wds2-type-action-button-m-hover {
  font-family: var(--wds2-type-action-button-m-hover-fontFamily);
  font-weight: var(--wds2-type-action-button-m-hover-fontWeight);
  font-size: var(--wds2-type-action-button-m-hover-fontSize);
  letter-spacing: var(--wds2-type-action-button-m-hover-letterSpacing);
  line-height: var(--wds2-type-action-button-m-hover-lineHeight);
}

.wds2-type-action-filter {
  font-family: var(--wds2-type-action-filter-fontFamily);
  font-weight: var(--wds2-type-action-filter-fontWeight);
  font-size: var(--wds2-type-action-filter-fontSize);
  letter-spacing: var(--wds2-type-action-filter-letterSpacing);
  line-height: var(--wds2-type-action-filter-lineHeight);
}

.wds2-type-action-filter-hover {
  font-family: var(--wds2-type-action-filter-hover-fontFamily);
  font-weight: var(--wds2-type-action-filter-hover-fontWeight);
  font-size: var(--wds2-type-action-filter-hover-fontSize);
  letter-spacing: var(--wds2-type-action-filter-hover-letterSpacing);
  line-height: var(--wds2-type-action-filter-hover-lineHeight);
}

.wds2-type-quote-l {
  font-family: var(--wds2-type-quote-l-fontFamily);
  font-weight: var(--wds2-type-quote-l-fontWeight);
  font-size: var(--wds2-type-quote-l-fontSize);
  letter-spacing: var(--wds2-type-quote-l-letterSpacing);
  line-height: var(--wds2-type-quote-l-lineHeight);
}

.wds2-type-quote-s {
  font-family: var(--wds2-type-quote-s-fontFamily);
  font-weight: var(--wds2-type-quote-s-fontWeight);
  font-size: var(--wds2-type-quote-s-fontSize);
  letter-spacing: var(--wds2-type-quote-s-letterSpacing);
  line-height: var(--wds2-type-quote-s-lineHeight);
}

.wds2-type-display-l {
  font-family: var(--wds2-type-display-l-fontFamily);
  font-weight: var(--wds2-type-display-l-fontWeight);
  font-size: var(--wds2-type-display-l-fontSize);
  letter-spacing: var(--wds2-type-display-l-letterSpacing);
  line-height: var(--wds2-type-display-l-lineHeight);
}

.wds2-type-display-xl {
  font-family: var(--wds2-type-display-xl-fontFamily);
  font-weight: var(--wds2-type-display-xl-fontWeight);
  font-size: var(--wds2-type-display-xl-fontSize);
  letter-spacing: var(--wds2-type-display-xl-letterSpacing);
  line-height: var(--wds2-type-display-xl-lineHeight);
}

/* ========== Header ========== */
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
@media (min-width: 960px) {
  header {
    padding-left: 60px;
    padding-top: 60px;
    padding-right: 60px;
  }
}
header .brand-name {
  display: block;
}
header .brand-name img {
  width: 80px;
  height: 67px;
}
header .brand-logo img {
  width: 155.8px;
  height: 41px;
  aspect-ratio: 155.8/41;
}
@media (min-width: 960px) {
  header .brand-name img {
    width: 100px;
    height: 84px;
  }
  header .brand-logo {
    display: block;
  }
  header .brand-logo img {
    width: 221px;
    height: 58px;
    aspect-ratio: 221/58;
  }
}

/* ========== Inputs ========== */
input,
.header-text {
  width: 100%;
}

#searchBox {
  height: 50px;
  padding: 11px 12px;
  margin: 4px 0 8px;
  border: 1px solid #000;
  border-radius: 4px;
  font-size: var(--wds2-type-body-regular-m-fontSize);
  font-family: var(--wds2-type-body-regular-m-fontFamily);
  font-style: var(--wds2-type-body-regular-m-fontStyle);
  font-weight: var(--wds2-type-body-regular-m-fontWeight);
  letter-spacing: var(--wds2-type-body-regular-m-letterSpacing);
  line-height: var(--wds2-type-body-regular-m-lineHeight);
  padding-left: 33px;
}
#searchBox::placeholder {
  opacity: 0.5;
  /* Override default lower opacity */
}

.location-section {
  display: flex;
  flex-direction: column;
}
.location-section .location-search-container .label {
  margin-bottom: 4px;
}
.location-section .location-search-container .dropdown-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.location-section .location-search-container .input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.location-section .location-search-container .search-input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 4px;
  border: 1px solid var(--wds2-colour-nissanblack, #000);
}
.location-section .location-search-container .arrow-icon {
  position: absolute;
  right: 16px;
  top: 22px;
}
.location-section .location-search-container .arrow-icon .icon-content {
  font-size: 16px;
}
.location-section .location-search-container .search-icon {
  position: absolute;
  left: 8px;
  top: 20px;
  pointer-events: none;
}
.location-section .location-search-container .search-icon .icon-content {
  font-size: 15px;
}
.location-section .location-search-container .country-dropdown {
  margin-top: 4px;
  width: 100%;
  padding: 0;
  list-style: none;
  border-radius: 4px;
  max-height: 216px;
  overflow-y: auto;
  border: 1px solid var(--wds2-colour-nissanblack, #000);
  background: var(--wds2-colour-nissanwhite, #FFF);
}
.location-section .location-search-container .country-dropdown .country-item {
  border-bottom: 1px solid var(--wds2-colour-keyline-onlight, #CCC);
}
.location-section .location-search-container .country-dropdown .country-item.selected {
  background: #000;
  color: var(--wds2-colour-nissanwhite, #FFF);
}
.location-section .location-search-container .country-dropdown .country-item:hover {
  background: var(---wds2-colour-nissanblack, #000);
  color: var(--wds2-colour-nissanwhite, #FFF);
}
.location-section .location-search-container .country-option {
  padding: 8px 16px;
  cursor: pointer;
}
.location-section .location-search-container .country-option:hover,
.location-section .location-search-container .country-option.selected {
  background-color: black;
  color: white;
}
.location-section .location-search-container .use-location-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.location-section .location-search-container .use-location-cta .vehicle-tracking .icon-content {
  font-size: 16px;
  position: relative;
  top: 4px;
  width: 16px;
}
.location-section .location-search-container .use-location-cta .detectLocationBtn {
  padding: 3px 0;
}
.location-section .location-search-container .use-location-cta .location-icon {
  width: 16px;
  height: 16px;
}
.location-section .location-search-container #error-wrapper {
  color: red;
  margin-top: 6px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .location-section .location-search-container {
    width: 50%;
  }
}
@media (min-width: 1440px) {
  .location-section .location-search-container {
    width: 40%;
  }
}

.input-header-wrapper {
  width: 100%;
  position: sticky;
  top: 60px;
  background: #fff;
  z-index: 999;
}
.input-header-wrapper .input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-header-wrapper .input-icon-wrapper .search-icon {
  position: absolute;
  right: 12px;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .input-header-wrapper {
    max-width: 33.33%;
  }
}
@media (min-width: 960px) {
  .input-header-wrapper {
    top: 92px;
  }
}

.use-location-cta button {
  cursor: pointer;
  border: none;
  background: transparent;
  letter-spacing: 0.9px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  padding: 0;
  text-align: left;
  font-size: var(--wds2-type-body-link-s-fontSize);
  font-family: var(--wds2-type-body-link-s-fontFamily);
  font-style: var(--wds2-type-body-link-s-fontStyle);
  font-weight: var(--wds2-type-body-link-s-fontWeight);
  letter-spacing: var(--wds2-type-body-link-s-letterSpacing);
  line-height: var(--wds2-type-body-link-s-lineHeight);
  color: var(--wds2-colour-nissanblack);
}
.use-location-cta .location-icon {
  position: relative;
  pointer-events: none;
}

/* ========== Section Header ========== */
.section-header-wrapper {
  width: 100%;
  padding-top: 60px;
}
.section-header-wrapper .area-icon-wrapper .area-icon {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .section-header-wrapper .area-icon-wrapper .area-icon {
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1024px) {
  .section-header-wrapper .area-icon-wrapper {
    text-align: center;
  }
}
.section-header-wrapper h2 {
  font-family: "Nissan Regular", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 1.5px;
}
@media (min-width: 1024px) {
  .section-header-wrapper h2 {
    text-align: center;
  }
}
.section-header-wrapper p {
  font-family: "Nissan Light", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.9px;
}
@media (min-width: 1024px) {
  .section-header-wrapper p {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .section-header-wrapper {
    max-width: 33.33%;
  }
}

/* ========== Country List ========== */
ul#countryList {
  position: absolute;
  z-index: 99;
  display: none;
}
@media (min-width: 768px) {
  ul#countryList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  ul#countryList {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}

/* ========== Country Selector ========== */
.hidden-radio {
  display: none;
}

.country-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding: 14px 12px;
}
.country-label .tick-icon {
  display: none;
  color: #000;
  font-size: 16px;
}
.country-label.selected {
  border-color: #000;
}
.country-label.selected .country-name {
  font-family: "Nissan Bold", Verdana, Arial, sans-serif;
  font-weight: 700;
}
.country-label.selected .tick-icon {
  display: inline;
}
.country-label .country-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.9px;
}

/* ========== Error Message ========== */
.error-message .error-banner {
  display: flex;
  align-items: center;
  background-color: #F5E7EA;
  line-height: 1.714;
  padding: 16px 20px 16px 12px;
  border-radius: 4px;
  position: relative;
}
.error-message .error-banner .error-icon {
  width: 29px;
  height: 29px;
  background-color: #E00034;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.error-message .error-banner .error-icon .error-cross {
  width: 22px;
  height: 22px;
}
.error-message .error-banner .error-text {
  color: #000;
  font-size: var(--wds2-type-body-link-s-fontSize);
  font-family: var(--wds2-type-body-light-s-fontFamily);
  font-style: var(--wds2-type-body-light-s-fontStyle);
  font-weight: var(--wds2-type-body-light-s-fontWeight);
  letter-spacing: var(--wds2-type-body-light-s-letterSpacing);
  line-height: var(--wds2-type-body-light-s-lineHeight);
}

/* ========== Page Layout ========== */
.page-wrapper {
  position: relative;
  top: 0;
  display: block;
  width: 100%;
}

/* ========== Buttons ========== */
.common-btn-style, .cookieButton, #continueBtn {
  padding: 12px 30px !important;
  border-radius: 40px;
  background-color: var(--Nissan-Brand-wds2-colour-nissanblack, #000) !important;
  border: none;
  cursor: pointer;
  font-size: var(--wds2-type-action-button-m-fontSize);
  font-family: var(--wds2-type-action-button-m-fontFamily);
  font-style: var(--wds2-type-action-button-m-fontStyle);
  font-weight: var(--wds2-type-action-button-m-fontWeight);
  letter-spacing: var(--wds2-type-action-button-m-letterSpacing);
  line-height: var(--wds2-type-action-button-m-lineHeight);
  color: var(--wds2-colour-nissanwhite);
  text-transform: uppercase;
}

#continueBtn.selected {
  background: #000;
}

.cookieButton {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .cookieButton {
    width: 265px;
  }
}

/* ========== Lists ========== */
ul {
  list-style: none;
  padding: 0;
}

/* ========== Hero Intro ========== */
main > .section.hero-intro-container {
  margin: auto;
}

main > .section > div.hero-intro-wrapper {
  padding: 0;
  color: var(--Nissan-Brand-wds2-colour-nissanblack, #000);
  background-color: var(--Nissan-Brand-wds2-colour-nissanwhite, #fff);
  max-width: 100%;
}

.hero-intro-container {
  min-height: 700px;
}

.hero-intro-comp h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.hero-intro-comp .full-bleed {
  max-width: 100%;
  margin: 0 auto;
}

.hero-intro-comp .bleed {
  max-width: 1500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-intro-comp .container {
  padding: var(--wds2-grid-xl-padding) var(--wds2-grid-s-padding);
}

.hero-image {
  width: 100%;
  min-height: 450px;
}
.hero-image picture {
  position: relative;
  top: 0;
}
@media (min-width: 1024px) {
  .hero-image picture {
    top: -2%;
  }
}
.hero-image video {
  width: 100%;
}

.hero-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  max-height: 1232.132px;
}

.hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background: var(--Nissan-Brand-wds2-colour-nissanwhite, #FFF);
}

.hero-overlay .subheadline {
  order: 2;
}

.hero-overlay .cta-wrapper {
  order: 3;
  display: flex;
  padding-top: 16px;
  width: 100%;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-overlay .cta-wrapper wds-button {
  width: 100%;
}

.hero-features {
  gap: 20px;
  width: 100%;
  order: 1;
}

.hero-overlay .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.hero-overlay-m .hero-features {
  display: none;
}

.hero-intro-comp .cta-wrapper a {
  text-decoration: none;
  color: inherit;
  background: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  display: inline;
  border: none;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hero-overlay-s .hero-features {
    display: none;
  }
  .hero-overlay-s {
    padding-right: 40px;
  }
  .hero-overlay-m .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero-intro-comp .container {
    padding: 60px var(--wds2-grid-xl-padding);
  }
  .hero-overlay .cta-wrapper wds-button {
    width: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1499px) {
  .hero-overlay-s .hero-features {
    display: none;
  }
  .hero-overlay-s {
    padding-right: 40px;
  }
  .hero-overlay-m .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hero-intro-comp .container {
    padding: var(--wds2-grid-l-margin);
  }
  .hero-overlay .cta-wrapper wds-button {
    width: auto;
  }
}
@media screen and (min-width: 1500px) {
  .hero-overlay-s .hero-features {
    display: none;
  }
  .hero-overlay-s {
    padding-right: 40px;
  }
  .hero-overlay-m .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hero-intro-comp .container {
    padding: var(--wds2-grid-l-margin);
  }
  .hero-overlay .cta-wrapper wds-button {
    width: auto;
  }
}
/*** Media Carousel ***/
main > .section.media-carousel-container {
  margin: auto;
  background-color: var(--wds2-colour-nissanwhite);
}

main > .section > div.media-carousel-wrapper {
  max-width: 100%;
  padding: 0;
  margin: auto;
}

.media-carousel-block-container {
  padding: 0 0 40px;
}

.media-carousel-list-container {
  margin: 0;
  list-style: none;
  gap: 12px;
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  padding: 0 var(--wds2-grid-s-padding);
  scroll-behavior: smooth;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.18, 1);
}

.media-carousel-content-description {
  margin-top: 8px;
}

.media-carousel-image.aspect-ratio--16x9 {
  aspect-ratio: 16/9;
}

.media-carousel-image.aspect-ratio--1x1 {
  aspect-ratio: 1/1;
}

.media-carousel-control-section {
  margin-top: var(--wds2-grid-s-margin);
  padding: 0 var(--wds2-grid-s-padding);
  display: flex;
  justify-content: space-between;
}

.media-carousel-visible-cards,
.media-carousel-total-cards,
.media-carousel-separator {
  color: var(--wds2-colour-nissanblack);
  text-transform: uppercase;
}

.media-carousel-control-icons-wrapper .icon-carousel-left {
  opacity: 0.4;
  pointer-events: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.media-carousel-control-icons-wrapper .icon-carousel-left.enabled {
  opacity: 1;
  pointer-events: all;
}

.media-carousel-control-icons-wrapper .icon-carousel-right {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.aspect-ratio--1x1 {
  width: 100%;
  position: relative;
}

.aspect-ratio--1x1::after {
  display: block;
  content: "";
  padding-bottom: 100%;
}

.aspect-ratio--1x1 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio--16x9 {
  width: 100%;
  position: relative;
}

.aspect-ratio--16x9::after {
  display: block;
  content: "";
  padding-bottom: 56.25%;
}

.aspect-ratio--16x9 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.media-carousel-control-icons-wrapper .icon-carousel-left:focus-visible img,
.media-carousel-control-icons-wrapper .icon-carousel-right:focus-visible img {
  padding: 3px;
}

.media-carousel-control-icons-wrapper .icon-carousel-left:focus-visible,
.media-carousel-control-icons-wrapper .icon-carousel-right:focus-visible {
  outline: 4px solid var(--wds2-colour-action-focus-onlight);
  border-radius: 4px;
}

.media-carousel-control-icons-wrapper .icon-carousel-right.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.media-carousel-control-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.media-carousel-current-card-number-wrapper {
  display: block;
}

.media-carousel-cards-slider {
  display: none;
}

@media (min-width: 768px) {
  .media-carousel-block-container {
    padding: 0 0 60px;
  }
  .media-carousel-list-container {
    display: grid;
    column-gap: 30px;
    grid-auto-flow: column;
    /* Arrange items horizontally */
    grid-template-columns: 83.3333333333%;
    padding: 0 var(--wds2-grid-l-padding);
  }
  .media-carousel-control-section {
    padding: 0 var(--wds2-grid-l-padding);
    margin-top: 28px;
  }
  .media-carousel-cards-slider {
    gap: 8px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  .media-carousel-cards-slider li {
    display: flex;
    align-items: center;
    height: 24px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .media-carousel-indicator-button {
    background: var(--wds2-colour-nissanblack);
    border: none;
    padding: 0;
    outline: none;
    width: 50px;
    height: 2px;
    opacity: 0.3;
    transition: width 0.3s ease;
  }
  .media-carousel-indicator-button.active {
    background: var(--wds2-colour-nissanblack);
    width: 100px;
    opacity: 1;
  }
  .media-carousel-cards-slider li:hover .media-carousel-indicator-button {
    background: var(--wds2-colour-action-hover-onlight);
    opacity: 1;
  }
  .media-carousel-cards-slider li:hover .media-carousel-indicator-button.active {
    background: var(--wds2-colour-nissanblack);
  }
  .media-carousel-current-card-number-wrapper {
    display: none;
  }
}
@media (min-width: 1024px) {
  .media-carousel-block-container {
    padding: 0 0 80px;
  }
  .media-carousel-list-container {
    column-gap: 40px;
    grid-template-columns: 75%;
    padding: 0 80px;
  }
  .media-carousel-control-section {
    padding: 0 80px;
  }
  .media-carousel-current-card-number-wrapper {
    display: none;
  }
}
@media (min-width: 1500px) {
  .media-carousel-block-container {
    padding: 0 0 80px;
  }
  main > .section > div.media-carousel-wrapper {
    max-width: 1500px;
  }
  .media-carousel-block-container {
    padding-left: 80px;
    padding-right: 80px;
  }
  .media-carousel-control-section {
    padding: 0;
  }
  .media-carousel-list-container {
    padding: 0;
  }
  .media-carousel-current-card-number-wrapper {
    display: none;
  }
}
/*** Subpage css ***/
main > .section.subpage-headline-container {
  margin: auto;
  background-color: var(--wds2-colour-nissanwhite);
}

main > .section > div.subpage-headline-wrapper {
  max-width: 100%;
  padding: 0;
  margin: auto;
}

.subpage-headline-content-wrapper {
  padding: var(--wds2-grid-s-padding) var(--wds2-grid-s-padding) var(--wds2-grid-l-padding);
}

.subpage-headline-content-title {
  margin: 0 0 8px;
}

.subpage-headline-content-title,
.subpage-headline-content-description {
  color: var(--wds2-colour-nissanblack);
}

@media (min-width: 768px) {
  .subpage-headline-content-wrapper {
    padding: var(--wds2-grid-l-padding) var(--wds2-grid-l-padding);
    grid-template-columns: 75%;
    display: grid;
  }
  .subpage-headline-content-wrapper button {
    width: max-content;
  }
}
@media (min-width: 1024px) {
  .subpage-headline-content-wrapper {
    padding: 80px 80px 60px;
  }
  .subpage-headline-content-wrapper button {
    width: max-content;
  }
}
@media (min-width: 1501px) {
  main > .section > div.subpage-headline-wrapper {
    max-width: 1500px;
  }
  .subpage-headline-content-wrapper button {
    width: max-content;
  }
  .row-container {
    max-width: 1500px;
    margin: auto;
  }
}
.row-container {
  padding: var(--wds2-grid-l-padding) var(--wds2-grid-s-padding);
}
.row-container .discover-all-region {
  max-width: 252px;
}
.row-container .find-region {
  font-size: var(--wds2-type-body-regular-m-fontSize);
  font-family: var(--wds2-type-body-regular-m-fontFamily);
  font-style: var(--wds2-type-body-regular-m-fontStyle);
  font-weight: var(--wds2-type-body-regular-m-fontWeight);
  letter-spacing: var(--wds2-type-body-regular-m-letterSpacing);
  line-height: var(--wds2-type-body-regular-m-lineHeight);
  color: var(--wds2-colour-nissanblack);
  margin-bottom: 8px;
}
.row-container .discover-region {
  font-size: var(--wds2-type-body-regular-m-fontSize);
  font-family: var(--wds2-type-body-regular-m-fontFamily);
  font-style: var(--wds2-type-body-regular-m-fontStyle);
  font-weight: var(--wds2-type-body-regular-m-fontWeight);
  letter-spacing: var(--wds2-type-body-regular-m-letterSpacing);
  line-height: var(--wds2-type-body-regular-m-lineHeight);
  color: var(--wds2-colour-nissanblack);
  margin-bottom: 8px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.row-container .title {
  font-size: var(--wds2-type-display-s-fontSize);
  font-family: var(--wds2-type-display-s-fontFamily);
  font-style: var(--wds2-type-display-s-fontStyle);
  font-weight: var(--wds2-type-display-s-fontWeight);
  letter-spacing: var(--wds2-type-display-s-letterSpacing);
  line-height: var(--wds2-type-display-s-lineHeight);
  color: var(--wds2-colour-nissanblack);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .row-container .title {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .row-container .title {
    font-size: var(--wds2-type-display-l-fontSize);
    font-family: var(--wds2-type-display-l-fontFamily);
    font-style: var(--wds2-type-display-l-fontStyle);
    font-weight: var(--wds2-type-display-l-fontWeight);
    letter-spacing: var(--wds2-type-display-l-letterSpacing);
    line-height: var(--wds2-type-display-l-lineHeight);
    color: var(--wds2-colour-nissanblack);
  }
}
@media (min-width: 1440px) {
  .row-container .title {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .row-container {
    padding: 60px 80px 24px;
  }
}
.row-container .cta-wrapper {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .row-container .cta-wrapper {
    display: block;
  }
}

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-container .discover-all-region {
  text-align: center;
  max-width: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .cta-container .discover-all-region {
    text-align: left;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cta-container {
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .cta-container {
    gap: 40px;
  }
}

.dropdown-wrapper {
  position: relative;
}

.cta-wrapper {
  padding-top: 20px;
}
.cta-wrapper.cta {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cta-wrapper.cta {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cta-wrapper {
    width: fit-content;
    padding-top: 24px;
  }
}

/*** Tab CSS ***/
main > .section.tab-container {
  margin: auto;
  background-color: var(--wds2-colour-background-grey);
}

main > .section.tab-container.variation-two {
  background-color: var(--wds2-colour-background-white);
}

main > .section > div.tab-wrapper {
  max-width: 100%;
  margin: auto;
  padding: 0;
}

.tabs-block-wrapper {
  padding: 0 var(--wds2-grid-s-padding);
}

.title-wrapper {
  padding: var(--wds2-grid-xl-padding) 0 24px;
}

.tab-block-title {
  color: var(--wds2-colour-nissanblack);
}

.tabs-container {
  position: relative;
  overflow: hidden;
}

.tabs-container ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--wds2-colour-keyline-onlight);
  line-height: normal;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.tabs-container li {
  padding-top: 14px;
  padding-bottom: 12px;
  height: fit-content;
  z-index: 1;
}

.tabs-container li.active {
  border-bottom: 2px solid var(--wds2-colour-nissanblack);
}

.tabs-container li:focus-visible {
  outline: 3px solid var(--wds2-colour-action-focus-onlight);
  border-radius: 3px;
  outline-offset: -3px;
}
.tabs-container li:focus-visible span {
  padding: 0 5px;
}

.tabs-container li span:hover {
  color: var(--wds2-colour-action-hover-onlight);
}

.tabs-container li.active span:hover {
  color: var(--wds2-colour-nissanblack);
}

.tabs-container span {
  color: var(--wds2-colour-nissanblack);
  cursor: pointer;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
}

.tabs-content {
  padding: 24px 0 var(--wds2-grid-xl-padding);
}

.tabs-content.variation-two ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
  display: grid;
  gap: 24px;
}

.tabs-content.variation-two .dimension {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.tabs-content.variation-two .dimension img {
  margin-right: 12px;
}

.tabs-content.variation-two .dimension-heading {
  margin-right: 20px;
  flex: 1;
}

.tabs-content .row-heading {
  color: var(--Nissan-Brand-wds2-colour-nissanblack, #000);
  margin-bottom: 12px;
}

.tabs-content .row-description {
  color: var(--Nissan-Brand-wds2-colour-nissanblack, #000);
  margin-bottom: 24px;
}

.tabs-content .row-image {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.row-image.no-button {
  margin-bottom: 0;
}

.arrow-right {
  position: absolute;
  right: 0;
  top: 41%;
  font-size: 12px;
  cursor: pointer;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

.arrow-right.hidden {
  opacity: 0;
  pointer-events: none;
}

.arrow-left {
  position: absolute;
  left: 0;
  top: 41%;
  font-size: 12px;
  cursor: pointer;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

.arrow-left.hidden {
  opacity: 0;
  pointer-events: none;
}

.arrow-right-wrapper {
  right: -2px;
}

.arrow-left-wrapper {
  left: 0;
}

.arrow-left-wrapper,
.arrow-right-wrapper {
  width: 28px;
  height: 46px;
  background: var(--wds2-colour-background-grey);
  position: absolute;
  top: 50%;
  transform: translateY(-57%);
}

.arrow-left-wrapper.variation-two,
.arrow-right-wrapper.variation-two {
  background: var(--wds2-colour-nissanwhite);
}

.tabs-container .gradient-left,
.tabs-container .gradient-right {
  position: absolute;
  top: 0;
  height: 46px;
  width: 40px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(246, 246, 246, 0) 0%, var(--wds2-colour-background-grey) 100%);
  opacity: 0;
}

.tabs-container .gradient-left {
  left: 15px;
  background: linear-gradient(90deg, var(--wds2-colour-background-grey) 0%, rgba(246, 246, 246, 0) 100%);
}

.tabs-container .gradient-right {
  right: 15px;
}

.tabs-container .gradient-left.variation-two,
.tabs-container .gradient-right.variation-two {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--wds2-colour-nissanwhite) 100%);
}

.row-image.aspect-ratio--16x9 {
  aspect-ratio: 16/9;
}

.row-image.aspect-ratio--1x1 {
  aspect-ratio: 1/1;
}

.tabs-content button {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .tabs-block-wrapper {
    padding: 0 var(--wds2-grid-xl-padding);
  }
  .title-wrapper {
    padding: 60px 0 24px;
  }
  .tabs-content {
    padding: var(--wds2-grid-xl-padding) 0 60px;
  }
  .tabs-content .row-image {
    margin-bottom: 40px;
  }
  .row-image.no-button {
    margin-bottom: 0;
  }
  .tabs-content.variation-two {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  .tabs-content.variation-two .variation-two-content {
    grid-column: 1/span 6;
    align-self: center;
    margin-right: 30px;
  }
  .tabs-content.variation-two .variation-two-content ul {
    display: grid;
    gap: 24px;
    margin-bottom: 0;
  }
  .tabs-content.variation-two .variation-two-image {
    grid-column: 7/span 6;
    grid-row: 1/span auto;
  }
  .tabs-content button {
    width: max-content;
  }
}
@media (min-width: 1024px) {
  .title-wrapper {
    padding: 80px 0 24px;
  }
  .tabs-block-wrapper {
    padding: 0 80px;
  }
  .tabs-content {
    padding: var(--wds2-grid-xl-padding) 0 80px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  .tabs-content .text-content {
    grid-column: 1/span 5;
    grid-row: 1/span 3;
  }
  .tabs-content .text-content.no-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .tabs-content .row-image {
    grid-column: 7/span 6;
    grid-row: 1/span 3;
    margin-bottom: 0;
  }
  .text-content .row-heading {
    margin-bottom: 24px;
  }
  .text-content .row-description {
    margin-bottom: 40px;
  }
  .text-content.no-button .row-description {
    margin-bottom: 0;
  }
  .tabs-content.variation-two .variation-two-content {
    grid-column: 1/span 5;
    align-self: center;
  }
  .tabs-content.variation-two .variation-two-image {
    grid-column: 7/span 6;
    grid-row: 1/span auto;
  }
  .tabs-content button {
    width: max-content;
  }
}
@media (min-width: 1440px) {
  .tabs-content .text-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
@media (min-width: 1501px) {
  main > .section > div.tab-wrapper {
    max-width: 1500px;
  }
  .tabs-content button {
    width: max-content;
  }
}
.aspect-ratio--1x1 {
  width: 100%;
  position: relative;
}

.aspect-ratio--1x1::after {
  display: block;
  content: "";
  padding-bottom: 100%;
}

.aspect-ratio--1x1 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio--16x9 {
  width: 100%;
  position: relative;
}

.aspect-ratio--16x9::after {
  display: block;
  content: "";
  padding-bottom: 56.25%;
}

.aspect-ratio--16x9 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*** Footer CSS ***/
footer {
  background-color: var(--wds2-colour-nissanblack);
  color: var(--wds2-colour-nissanwhite);
}

.footer-wrapper {
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--wds2-grid-s-padding);
  flex-direction: column-reverse;
}

.footer-wrapper ul li {
  list-style: none;
  color: var(--wds2-colour-nissanwhite);
}

.footer-wrapper ul li a {
  text-decoration: none;
  color: var(--wds2-colour-nissanwhite);
}

.footer-copyright {
  display: flex;
  gap: 28px;
  margin: 30px 0 40px;
  flex-direction: column-reverse;
}

.footer-options {
  display: flex;
  gap: 12px;
  margin: 26px 0;
  flex-direction: column;
}

.footer-copyright ul,
.footer-copyright p {
  margin: 0;
}

.footer-social {
  padding: 40px 0 30px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--wds2-colour-keyline-onlight, #CCC);
  gap: 24px;
}

.footer-social ul {
  margin: 0;
  display: flex;
  gap: 14px;
}

@media (min-width: 768px) {
  .footer-wrapper {
    padding: 0 var(--wds2-grid-xl-padding);
    flex-direction: unset;
  }
  .footer-copyright,
  .footer-options,
  .footer-social {
    flex-direction: unset;
    gap: 28px;
  }
  .footer-copyright {
    margin: 26px 0;
  }
  .footer-social {
    padding: 0;
    margin: 26px 0;
    border: none;
  }
}
@media (min-width: 1024px) {
  .footer-wrapper {
    padding: 0 80px;
    flex-direction: unset;
  }
  .footer-copyright,
  .footer-options,
  .footer-social {
    flex-direction: unset;
  }
  .footer-copyright {
    margin: 26px 0;
  }
  .footer-social {
    padding: 0;
    margin: 26px 0;
    border: none;
  }
}
@media (min-width: 1501px) {
  .footer-wrapper {
    max-width: 1500px;
    flex-direction: unset;
  }
  .footer-copyright,
  .footer-options,
  .footer-social {
    flex-direction: unset;
  }
  .footer-copyright {
    margin: 26px 0;
  }
  .footer-social {
    padding: 0;
    margin: 26px 0;
    border: none;
  }
}
.icon-content {
  font-family: var(--wds2-icon-fontFamily) !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon-content::before {
  content: var(--icon-content);
}

.hero-intro-comp {
  position: relative;
}

.search-location {
  padding-top: 0;
  position: relative;
}
@media (max-width: 767px) {
  .search-location {
    margin-top: -200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search-location {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: -20%;
    z-index: 99;
  }
}
@media (min-width: 1023px) {
  .search-location {
    margin: auto;
    width: 100%;
    max-width: 100%;
    margin-top: -3%;
    max-width: 1500px;
  }
}

#hero-video {
  display: none;
}

#hero-image.active,
#hero-video.active {
  display: block;
}

.privacy-notice-container {
  position: relative;
}
.privacy-notice-container .brand-name {
  cursor: pointer;
}
.privacy-notice-container .page-wrapper .hero-intro-wrapper img {
  width: 100%;
}

.cokkie-container {
  margin: 20px auto;
  padding: 30px;
  background-color: #fff;
  margin-top: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: -32%;
  z-index: 999;
  position: relative;
  /* Responsive adjustments */
}
@media (min-width: 1440px) {
  .cokkie-container {
    padding-left: 80px;
    padding-right: 330px;
  }
}
.cokkie-container h1 {
  color: #000;
  /* Assuming black for the main title as in the screenshot */
  margin-bottom: 30px;
  text-align: left;
  /* Align to left as per screenshot */
}
.cokkie-container p,
.cokkie-container li,
.cokkie-container td {
  font-size: var(--wds2-type-body-light-m-fontSize);
  font-family: var(--wds2-type-body-light-m-fontFamily);
  font-style: var(--wds2-type-body-light-m-fontStyle);
  font-weight: var(--wds2-type-body-light-m-fontWeight);
  letter-spacing: var(--wds2-type-body-light-m-letterSpacing);
  line-height: var(--wds2-type-body-light-m-lineHeight);
}
.cokkie-container h2,
.cokkie-container h3 {
  margin-top: 40px;
  font-size: var(--wds2-type-display-s-fontSize);
  font-family: var(--wds2-type-display-s-fontFamily);
  font-style: var(--wds2-type-display-s-fontStyle);
  font-weight: var(--wds2-type-display-s-fontWeight);
  letter-spacing: var(--wds2-type-display-s-letterSpacing);
  line-height: var(--wds2-type-display-s-lineHeight);
}
.cokkie-container th {
  font-size: var(--wds2-type-body-bold-m-fontSize);
  font-family: var(--wds2-type-body-bold-m-fontFamily);
  font-style: var(--wds2-type-body-bold-m-fontStyle);
  font-weight: var(--wds2-type-body-bold-m-fontWeight);
  letter-spacing: var(--wds2-type-body-bold-m-letterSpacing);
  line-height: var(--wds2-type-body-bold-m-lineHeight);
}
.cokkie-container table {
  margin-top: 40px;
}
.cokkie-container table ul {
  list-style-type: disc;
}
.cokkie-container .section-title {
  margin-bottom: 24px;
  padding: 0;
}
@media (min-width: 1023px) {
  .cokkie-container .section-title {
    margin-bottom: 50px;
  }
}
.cokkie-container .section-title h2 {
  margin: 0;
  padding: 0;
  font-size: 1em;
  /* Adjusting for the visual size in the screenshot */
  font-weight: normal;
}
.cokkie-container .content-block p {
  margin-bottom: 15px;
}
.cokkie-container .content-block ul {
  list-style-type: disc;
  /* Filled circles */
  margin-left: 25px;
  margin-bottom: 20px;
}
.cokkie-container .content-block ul li {
  margin-bottom: 8px;
}
.cokkie-container a {
  color: var(--wds2-colour-nissanblack);
  text-decoration: underline;
  word-wrap: break-word;
}
.cokkie-container a:hover {
  text-decoration: none;
}
.cokkie-container .contact-card {
  border: 1px solid #ddd;
  padding: 20px;
  margin-top: 30px;
  border-radius: 5px;
  background-color: #F6F7F7;
  margin-bottom: 32px;
}
.cokkie-container .contact-card .email {
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Nissan Brand";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.9px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: var(--wds2-colour-nissanblack);
  word-wrap: break-word;
}
.cokkie-container .contact-card h3 {
  margin-top: 0;
  color: #000;
  /* Assuming black for the contact card title */
  font-size: 1.1em;
}
.cokkie-container .contact-card p {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .cokkie-container .container {
    padding: 20px;
    margin: 10px auto;
  }
  .cokkie-container h1 {
    font-size: 1.8em;
  }
  .cokkie-container .section-title h2 {
    font-size: 0.9em;
  }
}
@media (max-width: 480px) {
  .cokkie-container body {
    padding: 10px;
  }
  .cokkie-container .container {
    padding: 15px;
  }
  .cokkie-container h1 {
    font-size: 1.5em;
  }
  .cokkie-container .content-block ul {
    margin-left: 15px;
  }
}
.cokkie-container .data-table-section {
  overflow-x: auto;
}
.cokkie-container .data-table-section .data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.cokkie-container .data-table-section .data-table th,
.cokkie-container .data-table-section .data-table td {
  border: 1px solid #D2D2D2;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}
.cokkie-container .data-table-section .data-table th {
  background-color: #f9f9f9;
  font-size: var(--wds2-type-body-bold-m-fontSize);
  font-family: var(--wds2-type-body-bold-m-fontFamily);
  font-style: var(--wds2-type-body-bold-m-fontStyle);
  font-weight: var(--wds2-type-body-bold-m-fontWeight);
  letter-spacing: var(--wds2-type-body-bold-m-letterSpacing);
  line-height: var(--wds2-type-body-bold-m-lineHeight);
}
.cokkie-container .data-table-section .data-table ul {
  margin: 0;
  padding-left: 20px;
}
.cokkie-container .data-table-section .data-table li {
  margin-bottom: 5px;
}
.cokkie-container .data-table-section .data-table a {
  text-decoration: underline;
}