@-webkit-keyframes loading-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90,150;
    stroke-dashoffset: -40px;
  }

  100% {
    stroke-dasharray: 90,150;
    stroke-dashoffset: -120px;
  }
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90,150;
    stroke-dashoffset: -40px;
  }

  100% {
    stroke-dasharray: 90,150;
    stroke-dashoffset: -120px;
  }
}

@-webkit-keyframes loading-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.LoadingOverlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(241, 245, 246, 0.9);
}

.LoadingOverlay__spinner {
  width: 42px;
  height: 42px;
  -webkit-animation: loading-rotate 2s linear infinite;
          animation: loading-rotate 2s linear infinite;
}

.LoadingOverlay__spinner-path {
  -webkit-animation: loading-dash 1.5s ease-in-out infinite;
          animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90,150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #001E50;
  stroke-linecap: round;
}

.Calculator {
  padding-bottom: 40px;
  position: relative;
}

.Calculator__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 992px) {
  .Calculator__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.Calculator__column {
  width: 100%;
}

.Calculator__column--body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 992px) {
  .Calculator__column--body {
    width: 60%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.Calculator__column--sidebar {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 992px) {
  .Calculator__column--sidebar {
    width: 40%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.Calculator__column--finance {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (min-width: 992px) {
  .Calculator__column--finance {
    width: 40%;
  }
}

.Calculator__column--details {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  padding: 20px;
  margin-top: 40px;
}

@media (min-width: 601px) {
  .Calculator__column--details {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .Calculator__column--details {
    width: calc(60% - 80px);
    margin-left: 40px;
  }
}

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

.Calculator__sm-pad {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .Calculator__sm-pad {
    padding: 0;
  }
}

.Calculations__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 250%;
}

.Calculations__label {
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 14px;
  width: 70%;
}

@media (min-width: 576px) {
  .Calculations__label {
    font-size: 18px;
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .Calculations__label {
    width: 80%;
  }
}

.Calculations__label--bold {
  color: #00204f;
}

.Calculations__value {
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30%;
}

.Calculations__value--bold {
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  color: #00204f;
}

@media (min-width: 576px) {
  .Calculations__value {
    font-size: 16px;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .Calculations__value {
    width: 20%;
  }
}

.ModelSelector {
  margin-top: 20px;
}

.ModelSelector__models {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ModelSelector__model {
  width: 100%;
  margin-bottom: 30px;
  display: block;
}

.ModelSelector__model:hover {
  text-decoration: none;
}

@media (min-width: 576px) {
  .ModelSelector__model {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .ModelSelector__model {
    width: 33.3%;
  }
}

@media (min-width: 992px) {
  .ModelSelector__model {
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .ModelSelector__model {
    width: 16.6666666667%;
  }
}

.ModelSelector__model--selected {
  width: 100%;
}

.ModelSelector__model-image {
  max-width: 100%;
}

.ModelSelector__model-name {
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
  color: #333;
  display: block;
  padding-left: 20px;
}

.ModelSelector__change {
  display: block;
  text-align: center;
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  color: #001E50;
  text-decoration: none;
}

.ModelSelector__change:hover {
  text-decoration: none;
}

@media (min-width: 992px) {
  .ModelSelector__change {
    text-align: right;
    padding-right: 50px;
  }
}

.ModelSelector__selected {
  text-align: center;
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 20px;
}

@media (min-width: 992px) {
  .ModelSelector__selected {
    text-align: right;
    padding-right: 50px;
  }
}

.TileLayout {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px 28px;
  padding: 28px 0px;
  margin: 0px;
}

@media (min-width: 560px) {
  .TileLayout {
    grid-template-columns: repeat(2, 1fr);
    gap: 52px 52px;
    padding: 52px 0px;
  }
}

@media (min-width: 960px) {
  .TileLayout {
    grid-template-columns: repeat(3, 1fr);
  }
}

.CarTile {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
  cursor: pointer;
}

.CarTile:focus,
.CarTile:hover {
  color: #000 !important;
}

.CarTile__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  text-align: inherit;
  cursor: pointer;
}

.CarTile__background {
  padding-top: 59.8802%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  background: #dfe4e8;
  cursor: pointer;
}

@media (min-width: 560px) {
  .CarTile__background {
    padding-top: 69.9301%;
  }
}

@media (min-width: 960px) {
  .CarTile__background {
    padding-top: 64.9351%;
  }
}

@media (min-width: 1280px) {
  .CarTile__background {
    padding-top: 50%;
  }
}

.CarTile__text {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  cursor: pointer;
  padding: 16px 20px 20px;
  font-weight: 700;
  font-size: 16px;
}

.CarTile__image-container {
  margin-top: 37.1927%;
  position: relative;
  cursor: pointer;
  padding-top: 37.8125%;
}

@media (min-width: 560px) {
  .CarTile__image-container {
    margin-top: 47.2426%;
  }
}

@media (min-width: 960px) {
  .CarTile__image-container {
    margin-top: 42.2476%;
  }
}

@media (min-width: 1280px) {
  .CarTile__image-container {
    margin-top: 27.3125%;
  }
}

.CarTile__image-wrapper {
  position: absolute;
  cursor: pointer;
  top: 0px;
}

.CarTile__image-wrapper img {
  display: block;
  cursor: pointer;
  width: 100%;
}

.CarTile__content {
  margin-top: 24px;
}

.Form__field-group {
  position: relative;
}

.Form__field-prefix {
  position: absolute;
  height: 38px;
  width: 40px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  font-size: 16px;
}

.Form__field {
  padding: 7px 10px;
  background: white;
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  border: none;
  border-bottom: 1px solid #dee1e3;
  position: relative;
  margin-bottom: 40px;
  display: block;
  width: 100%;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 38px;
}

.Form__field-group .Form__field {
  padding-left: 20px;
}

.RadioButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.RadioButtons li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .RadioButtons li {
    width: 50%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.RadioButtons__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 3px solid #dee1e3;
  background: white;
}

.RadioButtons__button:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.RadioButtons__button--selected:after {
  background-color: #00204f;
}

.RadioButtons__label {
  margin-bottom: 0;
  padding-left: 20px;
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
}

.Select {
  padding: 6px 10px;
  font-family: VWTextWeb-Regular, -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  border-bottom: 1px solid #dee1e3;
  position: relative;
  color: #001E50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  height: 38px;
}

.Select__search {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  color: #333;
}

.Select__arrow {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  cursor: pointer;
}

.Select__arrow:before {
  margin-top: -5px;
  display: block;
  pointer-events: none;
}

.Select__arrow--open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.Select__arrow--open:before {
  margin-top: -10px;
}

.Select--disabled .Select__arrow {
  color: #c6c9cb;
}

.Select__clear {
  font-size: 16px;
  margin-top: 1px;
  margin-right: -1px;
  color: #bfcbd9;
  cursor: pointer;
}

.Select__options-container {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  border: 1px solid #dee1e3;
  z-index: 999;
  background: white;
  width: 100%;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  font-size: 16px;
  font-family: "vw-text", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  max-height: 166px;
  overflow: hidden;
}

.Select__options {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.Select__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 10px;
  color: #48576a;
  text-decoration: none;
  line-height: normal;
}

.Select__option:hover {
  background: #e4e8f1;
  color: #48576a;
  text-decoration: none;
}

.Select__option--selected {
  background: #001E50;
  color: white !important;
}

.Select__option--muted {
  color: #999;
  font-size: 14px;
  text-align: center;
}

.Select__option--muted:hover {
  background: transparent;
  color: #999;
}

.Select ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #98a8bd;
}

.Select ::-moz-placeholder {
  /* Firefox 19+ */
  color: #98a8bd;
}

.Select :-ms-input-placeholder {
  /* IE 10+ */
  color: #98a8bd;
}

.Select :-moz-placeholder {
  /* Firefox 18- */
  color: #98a8bd;
}

.Slider__bar {
  position: relative;
  cursor: pointer;
  background: #dee1e3;
  height: 2px;
  border: none !important;
  border-radius: 7px;
}

.Slider__point {
  display: block;
  background: #bdc6c7;
  border: 7px solid #dee1e3;
  width: 5px;
  height: 5px;
  border-radius: 13px;
  position: absolute;
  top: -6px;
  margin-left: -7px;
}

.Slider__marker {
  width: 18px !important;
  height: 18px !important;
  background: #00287E !important;
  border-width: 0 !important;
  border-radius: 50%;
  margin-top: -4px !important;
  position: absolute;
  margin-left: -9px;
  top: -4px;
  -webkit-transition: left .5s;
  transition: left .5s;
}

.Slider__marker:hover,
.Slider__marker:focus {
  -webkit-box-shadow: 0 0 5px #00287E;
          box-shadow: 0 0 5px #00287E;
  outline: none;
}

.Slider__marker--dragging {
  -webkit-transition: left 0s;
  transition: left 0s;
}

.Radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.Radio:hover,
.Radio:focus {
  text-decoration: none;
}

.Radio:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 6px solid white;
  -webkit-box-shadow: 0 0 0 1px #001E50;
          box-shadow: 0 0 0 1px #001E50;
  border-radius: 50%;
  background: white;
  -webkit-transition: background .3s;
  transition: background .3s;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.Radio--selected:before {
  background: #001E50;
}

.Radio__label {
  display: inline-block;
  color: #001E50;
  font-size: 16px;
  padding-left: 10px;
}

.Heading {
  margin: 0;
  font-weight: normal;
}

.Heading--h1 {
  padding: 15px 0;
}

.Heading--h2 {
  padding: 20px 0;
}

.Heading--h3 {
  padding: 20px 0;
}

@media (min-width: 576px) {
  .Heading--h3 {
    text-align: left;
  }
}

.Heading--pt-0 {
  padding-top: 0;
}

.Heading--pb-0 {
  padding-bottom: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: vw-text,Helvetica,Arial,sans-serif;
}

#app {
  padding: 100px 15px 0;
}

@media (min-width: 601px) {
  #app {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 1200px) {
  #app {
    padding-left: 160px;
    padding-right: 160px;
  }
}

a:not(.Form__button):not(.ButtonD6):not(.eGLuid):not(.bdomQM):not(.bGuEgG):not(.cQvtxr) {
  color: #001e50;
}

a:not(.Form__button):not(.ButtonD6):not(.eGLuid):not(.bdomQM):not(.bGuEgG):not(.cQvtxr):hover {
  color: #0040C5;
}

img {
  max-width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-no-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.w-full {
  width: 100%;
}

#vw_content {
  z-index: 1;
}

.ButtonD6 {
  text-decoration: none !important;
  -webkit-text-decoration-color: transparent !important;
  text-decoration-color: transparent !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 44px;
  margin: 20px 0 0;
  padding: 0 40px;
  border-radius: 22px;
  outline: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  cursor: pointer;
  background: #001e50;
  border: 2px solid #001e50;
  color: #fff;
}

.ButtonD6:hover {
  background: #0040c5;
  border-color: #0040c5;
  color: #fff;
  text-decoration: none;
}

